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 {
|
export declare enum EType {
|
||||||
Standard = "STANDARD",
|
Standard = "STANDARD",
|
||||||
Unlimited = "UNLIMITED"
|
Unlimited = "UNLIMITED",
|
||||||
|
Standard_annual = "STANDARD_ANNUAL",
|
||||||
|
Unlimited_annual = "UNLIMITED_ANNUAL"
|
||||||
}
|
}
|
||||||
export declare enum EStatus {
|
export declare enum EStatus {
|
||||||
Active = "ACTIVE",
|
Active = "ACTIVE",
|
||||||
|
2
dist/Admin/Subscription.js
vendored
2
dist/Admin/Subscription.js
vendored
@ -71,6 +71,8 @@ var EType;
|
|||||||
(function (EType) {
|
(function (EType) {
|
||||||
EType["Standard"] = "STANDARD";
|
EType["Standard"] = "STANDARD";
|
||||||
EType["Unlimited"] = "UNLIMITED";
|
EType["Unlimited"] = "UNLIMITED";
|
||||||
|
EType["Standard_annual"] = "STANDARD_ANNUAL";
|
||||||
|
EType["Unlimited_annual"] = "UNLIMITED_ANNUAL";
|
||||||
})(EType = exports.EType || (exports.EType = {}));
|
})(EType = exports.EType || (exports.EType = {}));
|
||||||
var EStatus;
|
var EStatus;
|
||||||
(function (EStatus) {
|
(function (EStatus) {
|
||||||
|
@ -46,6 +46,8 @@ export default class Subscription extends Resource {
|
|||||||
export enum EType {
|
export enum EType {
|
||||||
Standard = "STANDARD",
|
Standard = "STANDARD",
|
||||||
Unlimited = "UNLIMITED",
|
Unlimited = "UNLIMITED",
|
||||||
|
Standard_annual = "STANDARD_ANNUAL",
|
||||||
|
Unlimited_annual = "UNLIMITED_ANNUAL",
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum EStatus {
|
export enum EStatus {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user