mirror of
https://github.com/documenso/documenso.git
synced 2025-11-16 01:32:06 +10:00
16 lines
341 B
TypeScript
16 lines
341 B
TypeScript
import { env } from 'next-runtime-env';
|
|
|
|
export enum STRIPE_CUSTOMER_TYPE {
|
|
INDIVIDUAL = 'individual',
|
|
TEAM = 'team',
|
|
}
|
|
|
|
export enum STRIPE_PLAN_TYPE {
|
|
TEAM = 'team',
|
|
COMMUNITY = 'community',
|
|
ENTERPRISE = 'enterprise',
|
|
}
|
|
|
|
export const STRIPE_COMMUNITY_PLAN_PRODUCT_ID = () =>
|
|
env('NEXT_PUBLIC_STRIPE_COMMUNITY_PLAN_PRODUCT_ID');
|