mirror of
https://github.com/unraid/api.git
synced 2026-01-02 22:50:02 -06:00
refactor(web): key server valid guid response type
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user