1 import { CYCLE, DEFAULT_CURRENCY, DEFAULT_CYCLE, PLANS, PLAN_SERVICES, PLAN_TYPES } from '../constants';
2 import type { Currency, Cycle, FreePlanDefault, SubscriptionCheckResponse } from '../interfaces';
4 export const FREE_PLAN: FreePlanDefault = {
14 Type: PLAN_TYPES.PLAN,
15 Currency: DEFAULT_CURRENCY,
21 MaxBaseSpace: 524288000,
22 MaxDriveSpace: 524288000,
24 MaxRewardSpace: 524288000,
25 MaxBaseRewardSpace: 524288000,
26 MaxDriveRewardSpace: 524288000,
31 Services: PLAN_SERVICES.MAIL + PLAN_SERVICES.VPN,
44 export const getFreeCheckResult = (
45 currency: Currency = DEFAULT_CURRENCY,
46 cycle: Cycle = DEFAULT_CYCLE
47 ): SubscriptionCheckResponse => {