refactor(web): key server valid guid response type

This commit is contained in:
Zack Spear
2023-10-03 18:01:23 -07:00
committed by Zack Spear
parent 67c2e1f3cf
commit 37d548db8c

View File

@@ -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;