mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
* chore: add current period start date * chore: is trial ended * chore: Billing page and Product updates. * fix: seat purchase * chore: self-hosted `env` updates. * fix: lint error. * fix: bugfixes in types package * fix: build errors. * chore: update yarn.lock file. --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
9 lines
142 B
TypeScript
9 lines
142 B
TypeScript
// Product subscription tiers
|
|
export enum EProductSubscriptionTier {
|
|
FREE = 0,
|
|
ONE = 5,
|
|
PRO = 10,
|
|
BUSINESS = 20,
|
|
ENTERPRISE = 30,
|
|
}
|