barsa bde9f706ce feat: add VPN services and call history management features
- Implemented VpnServicesService for managing VPN plans and activation fees.
- Created SimCallHistoryFormatterService for formatting call history data.
- Developed SimCallHistoryParserService to parse call history CSV files.
- Added AnimatedContainer and AnimatedBackground components for UI animations.
- Introduced BentoServiceCard, FloatingGlassCard, GlowButton, and ValuePropCard components for landing page.
- Implemented useCountUp hook for animated number counting.
- Added cancellation months utility functions for subscription management.
2026-01-13 16:19:39 +09:00

15 lines
333 B
TypeScript

/**
* Subscription Utilities
*
* Shared utility functions for subscription management.
*/
export {
generateCancellationMonths,
getCancellationEffectiveDate,
getRunDateFromMonth,
type BaseCancellationMonth,
type CancellationMonthWithRunDate,
type GenerateCancellationMonthsOptions,
} from "./cancellation-months.js";