Files
documenso/packages/lib/stripe/data/plans.ts
2023-05-05 19:29:42 +10:00

13 lines
293 B
TypeScript

export const STRIPE_PLANS = [
{
name: "Community Plan",
period: "monthly",
priceId: process.env.STRIPE_COMMUNITY_PLAN_MONTHLY_PRICE_ID ?? "",
},
{
name: "Community Plan",
period: "yearly",
priceId: process.env.STRIPE_COMMUNITY_PLAN_YEARLY_PRICE_ID ?? "",
},
];