Added annual subscription type
This commit is contained in:
parent
888194736e
commit
34967fb232
4
dist/Admin/Subscription.d.ts
vendored
4
dist/Admin/Subscription.d.ts
vendored
@ -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",
|
||||
|
2
dist/Admin/Subscription.js
vendored
2
dist/Admin/Subscription.js
vendored
@ -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) {
|
||||
|
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user