fix: add regular plan to price type enum

This commit is contained in:
Mythie
2024-06-12 21:27:05 +10:00
parent cc43139573
commit 8c2f61a004
3 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ export enum STRIPE_CUSTOMER_TYPE {
}
export enum STRIPE_PLAN_TYPE {
REGULAR = 'regular',
TEAM = 'team',
COMMUNITY = 'community',
ENTERPRISE = 'enterprise',