Types/attaching license to account (#9065)

* adding license type to account

* removing planDuration
This commit is contained in:
Martin McKeaveney 2022-12-16 10:22:48 +00:00 committed by GitHub
parent bf93d5b6a3
commit 2264f83ebd
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
import { import {
Feature, Feature,
Hosting, Hosting,
License,
MonthlyQuotaName, MonthlyQuotaName,
PlanType, PlanType,
PriceDuration, PriceDuration,
@ -47,7 +48,7 @@ export interface Account extends CreateAccount {
tier: string // deprecated tier: string // deprecated
planType?: PlanType planType?: PlanType
planTier?: number planTier?: number
planDuration?: PriceDuration license?: License
stripeCustomerId?: string stripeCustomerId?: string
licenseKey?: string licenseKey?: string
licenseKeyActivatedAt?: number licenseKeyActivatedAt?: number