e1731bb31e
Co-authored-by: etiennejouan <jouan.etienne@gmail.com>
12 lines
355 B
TypeScript
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,
|
|
};
|