Added annual subscription type

This commit is contained in:
Vins 2024-04-24 17:21:31 +02:00
parent 888194736e
commit 34967fb232
3 changed files with 7 additions and 1 deletions

View File

@ -14,7 +14,9 @@ export default class Subscription extends Resource {
}
export declare enum EType {
Standard = "STANDARD",
Unlimited = "UNLIMITED"
Unlimited = "UNLIMITED",
Standard_annual = "STANDARD_ANNUAL",
Unlimited_annual = "UNLIMITED_ANNUAL"
}
export declare enum EStatus {
Active = "ACTIVE",

View File

@ -71,6 +71,8 @@ var EType;
(function (EType) {
EType["Standard"] = "STANDARD";
EType["Unlimited"] = "UNLIMITED";
EType["Standard_annual"] = "STANDARD_ANNUAL";
EType["Unlimited_annual"] = "UNLIMITED_ANNUAL";
})(EType = exports.EType || (exports.EType = {}));
var EStatus;
(function (EStatus) {

View File

@ -46,6 +46,8 @@ export default class Subscription extends Resource {
export enum EType {
Standard = "STANDARD",
Unlimited = "UNLIMITED",
Standard_annual = "STANDARD_ANNUAL",
Unlimited_annual = "UNLIMITED_ANNUAL",
}
export enum EStatus {