@arrowsphere/api-client 3.354.0-rc.jpb.1 → 3.354.0-rc.jpb.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -64,6 +64,7 @@ export declare class ActionsGetResult extends AbstractEntity<ActionsGetData> {
|
|
|
64
64
|
get autoRenewToEst(): string | undefined;
|
|
65
65
|
get cancel(): string | undefined;
|
|
66
66
|
get conversion(): string | undefined;
|
|
67
|
+
get lateRenewal(): string | undefined;
|
|
67
68
|
get pause(): string | undefined;
|
|
68
69
|
get upgrade(): string | undefined;
|
|
69
70
|
get updateFriendlyName(): string | undefined;
|
|
@@ -10,7 +10,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
10
10
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
11
11
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
12
12
|
};
|
|
13
|
-
var _ActionsGetResult_history, _ActionsGetResult_update, _ActionsGetResult_increaseSeats, _ActionsGetResult_decreaseSeats, _ActionsGetResult_addons_catalog, _ActionsGetResult_suspend, _ActionsGetResult_reactivate, _ActionsGetResult_autoRenewOff, _ActionsGetResult_autoRenewOn, _ActionsGetResult_autoRenewToEst, _ActionsGetResult_cancel, _ActionsGetResult_conversion, _ActionsGetResult_pause, _ActionsGetResult_upgrade, _ActionsGetResult_updateFriendlyName, _ActionsGetResult_scheduledTask, _ActionsGetResult_scheduledTaskDetails;
|
|
13
|
+
var _ActionsGetResult_history, _ActionsGetResult_update, _ActionsGetResult_increaseSeats, _ActionsGetResult_decreaseSeats, _ActionsGetResult_addons_catalog, _ActionsGetResult_suspend, _ActionsGetResult_reactivate, _ActionsGetResult_autoRenewOff, _ActionsGetResult_autoRenewOn, _ActionsGetResult_autoRenewToEst, _ActionsGetResult_cancel, _ActionsGetResult_conversion, _ActionsGetResult_lateRenewal, _ActionsGetResult_pause, _ActionsGetResult_upgrade, _ActionsGetResult_updateFriendlyName, _ActionsGetResult_scheduledTask, _ActionsGetResult_scheduledTaskDetails;
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.ActionsGetResult = exports.ActionsGetFields = exports.ScheduledTaskDetailsFields = void 0;
|
|
16
16
|
const abstractEntity_1 = require("../../../abstractEntity");
|
|
@@ -56,6 +56,7 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
56
56
|
_ActionsGetResult_autoRenewToEst.set(this, void 0);
|
|
57
57
|
_ActionsGetResult_cancel.set(this, void 0);
|
|
58
58
|
_ActionsGetResult_conversion.set(this, void 0);
|
|
59
|
+
_ActionsGetResult_lateRenewal.set(this, void 0);
|
|
59
60
|
_ActionsGetResult_pause.set(this, void 0);
|
|
60
61
|
_ActionsGetResult_upgrade.set(this, void 0);
|
|
61
62
|
_ActionsGetResult_updateFriendlyName.set(this, void 0);
|
|
@@ -73,6 +74,7 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
73
74
|
__classPrivateFieldSet(this, _ActionsGetResult_autoRenewToEst, data[ActionsGetFields.COLUMN_AUTO_RENEW_TO_EST], "f");
|
|
74
75
|
__classPrivateFieldSet(this, _ActionsGetResult_cancel, data[ActionsGetFields.COLUMN_CANCEL], "f");
|
|
75
76
|
__classPrivateFieldSet(this, _ActionsGetResult_conversion, data[ActionsGetFields.COLUMN_CONVERSION], "f");
|
|
77
|
+
__classPrivateFieldSet(this, _ActionsGetResult_lateRenewal, data[ActionsGetFields.COLUMN_LATE_RENEWAL], "f");
|
|
76
78
|
__classPrivateFieldSet(this, _ActionsGetResult_pause, data[ActionsGetFields.COLUMN_PAUSE], "f");
|
|
77
79
|
__classPrivateFieldSet(this, _ActionsGetResult_upgrade, data[ActionsGetFields.COLUMN_UPGRADE], "f");
|
|
78
80
|
__classPrivateFieldSet(this, _ActionsGetResult_updateFriendlyName, data[ActionsGetFields.COLUMN_UPDATE_FRIENDLY_NAME], "f");
|
|
@@ -115,6 +117,9 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
115
117
|
get conversion() {
|
|
116
118
|
return __classPrivateFieldGet(this, _ActionsGetResult_conversion, "f");
|
|
117
119
|
}
|
|
120
|
+
get lateRenewal() {
|
|
121
|
+
return __classPrivateFieldGet(this, _ActionsGetResult_lateRenewal, "f");
|
|
122
|
+
}
|
|
118
123
|
get pause() {
|
|
119
124
|
return __classPrivateFieldGet(this, _ActionsGetResult_pause, "f");
|
|
120
125
|
}
|
|
@@ -144,6 +149,7 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
144
149
|
[ActionsGetFields.COLUMN_AUTO_RENEW_TO_EST]: this.autoRenewToEst,
|
|
145
150
|
[ActionsGetFields.COLUMN_CANCEL]: this.cancel,
|
|
146
151
|
[ActionsGetFields.COLUMN_CONVERSION]: this.conversion,
|
|
152
|
+
[ActionsGetFields.COLUMN_LATE_RENEWAL]: this.lateRenewal,
|
|
147
153
|
[ActionsGetFields.COLUMN_PAUSE]: this.pause,
|
|
148
154
|
[ActionsGetFields.COLUMN_UPGRADE]: this.upgrade,
|
|
149
155
|
[ActionsGetFields.COLUMN_UPDATE_FRIENDLY_NAME]: this.updateFriendlyName,
|
|
@@ -154,5 +160,5 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
154
160
|
}
|
|
155
161
|
}
|
|
156
162
|
exports.ActionsGetResult = ActionsGetResult;
|
|
157
|
-
_ActionsGetResult_history = new WeakMap(), _ActionsGetResult_update = new WeakMap(), _ActionsGetResult_increaseSeats = new WeakMap(), _ActionsGetResult_decreaseSeats = new WeakMap(), _ActionsGetResult_addons_catalog = new WeakMap(), _ActionsGetResult_suspend = new WeakMap(), _ActionsGetResult_reactivate = new WeakMap(), _ActionsGetResult_autoRenewOff = new WeakMap(), _ActionsGetResult_autoRenewOn = new WeakMap(), _ActionsGetResult_autoRenewToEst = new WeakMap(), _ActionsGetResult_cancel = new WeakMap(), _ActionsGetResult_conversion = new WeakMap(), _ActionsGetResult_pause = new WeakMap(), _ActionsGetResult_upgrade = new WeakMap(), _ActionsGetResult_updateFriendlyName = new WeakMap(), _ActionsGetResult_scheduledTask = new WeakMap(), _ActionsGetResult_scheduledTaskDetails = new WeakMap();
|
|
163
|
+
_ActionsGetResult_history = new WeakMap(), _ActionsGetResult_update = new WeakMap(), _ActionsGetResult_increaseSeats = new WeakMap(), _ActionsGetResult_decreaseSeats = new WeakMap(), _ActionsGetResult_addons_catalog = new WeakMap(), _ActionsGetResult_suspend = new WeakMap(), _ActionsGetResult_reactivate = new WeakMap(), _ActionsGetResult_autoRenewOff = new WeakMap(), _ActionsGetResult_autoRenewOn = new WeakMap(), _ActionsGetResult_autoRenewToEst = new WeakMap(), _ActionsGetResult_cancel = new WeakMap(), _ActionsGetResult_conversion = new WeakMap(), _ActionsGetResult_lateRenewal = new WeakMap(), _ActionsGetResult_pause = new WeakMap(), _ActionsGetResult_upgrade = new WeakMap(), _ActionsGetResult_updateFriendlyName = new WeakMap(), _ActionsGetResult_scheduledTask = new WeakMap(), _ActionsGetResult_scheduledTaskDetails = new WeakMap();
|
|
158
164
|
//# sourceMappingURL=actionsGetResult.js.map
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/ArrowSphere/nodejs-api-client.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "3.354.0-rc.jpb.
|
|
7
|
+
"version": "3.354.0-rc.jpb.2",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|