diff --git a/web/composables/services/keyServer.ts b/web/composables/services/keyServer.ts index 498b440c6..cbe3cc46e 100644 --- a/web/composables/services/keyServer.ts +++ b/web/composables/services/keyServer.ts @@ -16,11 +16,13 @@ export const startTrial = (payload: StartTrialPayload) => KeyServer .post(); export interface ValidateGuidResponse { - purchaseable: true, - registered: false, - replaceable: false, - upgradeable: false, - upgradeAllowed: 'pro' | 'plus' | 'unleashed'[], + hasNewerKeyfile : boolean; + purchaseable: true; + registered: false; + replaceable: false; + upgradeable: false; + upgradeAllowed: 'pro' | 'plus' | 'unleashed' | 'lifetime'[]; + updatesRenewable: false; } export interface ValidateGuidPayload { guid: string;