mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
## Description Add support for enterprise billing plans. Enterprise billing plans by default get access to everything early adopters do: - Unlimited teams - Unlimited documents They will also get additional features in the future. ## Notes Pending webhook updates to support enterprise onboarding. Rolled back env changes `NEXT_PUBLIC_PROJECT` since it doesn't seem to work.
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
export enum STRIPE_CUSTOMER_TYPE {
|
|
INDIVIDUAL = 'individual',
|
|
TEAM = 'team',
|
|
}
|
|
|
|
export enum STRIPE_PLAN_TYPE {
|
|
TEAM = 'team',
|
|
COMMUNITY = 'community',
|
|
ENTERPRISE = 'enterprise',
|
|
}
|