Add readonly columns to premium
This commit is contained in:
parent
b0c21b01c0
commit
ee1b8c9f43
|
@ -1 +1 @@
|
||||||
Subproject commit 0fca4fb09047df7c36889c5e64f40b2d79d6da47
|
Subproject commit eab54ba6f5306ad74625dcc962e34e9b4396784a
|
|
@ -1,11 +1,5 @@
|
||||||
export enum PlanType {
|
export enum PlanType {
|
||||||
FREE = "free",
|
FREE = "free",
|
||||||
/** @deprecated */
|
|
||||||
PRO = "pro",
|
|
||||||
/** @deprecated */
|
|
||||||
TEAM = "team",
|
|
||||||
/** @deprecated */
|
|
||||||
PREMIUM = "premium",
|
|
||||||
PREMIUM_PLUS = "premium_plus",
|
PREMIUM_PLUS = "premium_plus",
|
||||||
PREMIUM_PLUS_TRIAL = "premium_plus_trial",
|
PREMIUM_PLUS_TRIAL = "premium_plus_trial",
|
||||||
/** @deprecated */
|
/** @deprecated */
|
||||||
|
@ -13,6 +7,13 @@ export enum PlanType {
|
||||||
ENTERPRISE_BASIC = "enterprise_basic",
|
ENTERPRISE_BASIC = "enterprise_basic",
|
||||||
ENTERPRISE_BASIC_TRIAL = "enterprise_basic_trial",
|
ENTERPRISE_BASIC_TRIAL = "enterprise_basic_trial",
|
||||||
ENTERPRISE = "enterprise",
|
ENTERPRISE = "enterprise",
|
||||||
|
// Deprecated plans
|
||||||
|
/** @deprecated */
|
||||||
|
PRO = "pro",
|
||||||
|
/** @deprecated */
|
||||||
|
TEAM = "team",
|
||||||
|
/** @deprecated */
|
||||||
|
PREMIUM = "premium",
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum PriceDuration {
|
export enum PriceDuration {
|
||||||
|
|
Loading…
Reference in New Issue