Files
twenty/packages/twenty-front/src/modules/billing/constants/BillingCheckoutSessionDefaultValue.ts
T
2025-01-21 11:34:33 +01:00

12 lines
355 B
TypeScript

import { BillingCheckoutSession } from '@/auth/types/billingCheckoutSession.type';
import {
BillingPlanKey,
SubscriptionInterval,
} from '~/generated-metadata/graphql';
export const BILLING_CHECKOUT_SESSION_DEFAULT_VALUE: BillingCheckoutSession = {
plan: BillingPlanKey.PRO,
interval: SubscriptionInterval.Month,
requirePaymentMethod: true,
};