From 2264f83ebd2c4d9c321fb189c0491d292d00eb51 Mon Sep 17 00:00:00 2001 From: Martin McKeaveney Date: Fri, 16 Dec 2022 10:22:48 +0000 Subject: [PATCH] Types/attaching license to account (#9065) * adding license type to account * removing planDuration --- packages/types/src/documents/account/account.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/types/src/documents/account/account.ts b/packages/types/src/documents/account/account.ts index cf92002744..a8684f8427 100644 --- a/packages/types/src/documents/account/account.ts +++ b/packages/types/src/documents/account/account.ts @@ -1,6 +1,7 @@ import { Feature, Hosting, + License, MonthlyQuotaName, PlanType, PriceDuration, @@ -47,7 +48,7 @@ export interface Account extends CreateAccount { tier: string // deprecated planType?: PlanType planTier?: number - planDuration?: PriceDuration + license?: License stripeCustomerId?: string licenseKey?: string licenseKeyActivatedAt?: number