@arrowsphere/api-client 3.355.0-rc.fdi.4 → 3.356.0
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.
- package/CHANGELOG.md +6 -1
- package/build/licenses/entities/getLicense/actionsGetResult.d.ts +3 -0
- package/build/licenses/entities/getLicense/actionsGetResult.js +9 -2
- package/build/licenses/entities/lateRenewalLicense/LicenseRenewableLicenseData.d.ts +6 -0
- package/build/licenses/entities/lateRenewalLicense/LicenseRenewableLicenseData.js +3 -0
- package/build/licenses/entities/lateRenewalLicense/executeLateRenewPayload.d.ts +8 -0
- package/build/licenses/entities/lateRenewalLicense/executeLateRenewPayload.js +3 -0
- package/build/licenses/entities/lateRenewalLicense/getLateRenewableLicenseResult.d.ts +11 -0
- package/build/licenses/entities/lateRenewalLicense/getLateRenewableLicenseResult.js +52 -0
- package/build/licenses/entities/lateRenewalLicense/getLateRenewableLicensesResult.d.ts +9 -0
- package/build/licenses/entities/lateRenewalLicense/getLateRenewableLicensesResult.js +33 -0
- package/build/licenses/licensesClient.d.ts +4 -0
- package/build/licenses/licensesClient.js +9 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,11 +3,16 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
-
## [3.
|
|
6
|
+
## [3.356.0] - 2026.03.30
|
|
7
7
|
|
|
8
8
|
### Added
|
|
9
9
|
- [Customer] Add endpoint to active invitation
|
|
10
10
|
|
|
11
|
+
## [3.355.0] - 2026.03.30
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- [License] Add endpoint late renewal
|
|
15
|
+
|
|
11
16
|
## [3.354.0] - 2026.03.30
|
|
12
17
|
|
|
13
18
|
### Added
|
|
@@ -22,6 +22,7 @@ export declare enum ActionsGetFields {
|
|
|
22
22
|
COLUMN_AUTO_RENEW_ON = "autoRenewOn",
|
|
23
23
|
COLUMN_CANCEL = "cancel",
|
|
24
24
|
COLUMN_CONVERSION = "conversion",
|
|
25
|
+
COLUMN_LATE_RENEWAL = "lateRenewal",
|
|
25
26
|
COLUMN_PAUSE = "pause",
|
|
26
27
|
COLUMN_UPGRADE = "upgrade",
|
|
27
28
|
COLUMN_UPDATE_FRIENDLY_NAME = "updateFriendlyName",
|
|
@@ -41,6 +42,7 @@ export declare type ActionsGetData = {
|
|
|
41
42
|
[ActionsGetFields.COLUMN_AUTO_RENEW_ON]?: string;
|
|
42
43
|
[ActionsGetFields.COLUMN_CANCEL]?: string;
|
|
43
44
|
[ActionsGetFields.COLUMN_CONVERSION]?: string;
|
|
45
|
+
[ActionsGetFields.COLUMN_LATE_RENEWAL]?: string;
|
|
44
46
|
[ActionsGetFields.COLUMN_PAUSE]?: string;
|
|
45
47
|
[ActionsGetFields.COLUMN_UPGRADE]?: string;
|
|
46
48
|
[ActionsGetFields.COLUMN_UPDATE_FRIENDLY_NAME]?: string;
|
|
@@ -62,6 +64,7 @@ export declare class ActionsGetResult extends AbstractEntity<ActionsGetData> {
|
|
|
62
64
|
get autoRenewToEst(): string | undefined;
|
|
63
65
|
get cancel(): string | undefined;
|
|
64
66
|
get conversion(): string | undefined;
|
|
67
|
+
get lateRenewal(): string | undefined;
|
|
65
68
|
get pause(): string | undefined;
|
|
66
69
|
get upgrade(): string | undefined;
|
|
67
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");
|
|
@@ -34,6 +34,7 @@ var ActionsGetFields;
|
|
|
34
34
|
ActionsGetFields["COLUMN_AUTO_RENEW_ON"] = "autoRenewOn";
|
|
35
35
|
ActionsGetFields["COLUMN_CANCEL"] = "cancel";
|
|
36
36
|
ActionsGetFields["COLUMN_CONVERSION"] = "conversion";
|
|
37
|
+
ActionsGetFields["COLUMN_LATE_RENEWAL"] = "lateRenewal";
|
|
37
38
|
ActionsGetFields["COLUMN_PAUSE"] = "pause";
|
|
38
39
|
ActionsGetFields["COLUMN_UPGRADE"] = "upgrade";
|
|
39
40
|
ActionsGetFields["COLUMN_UPDATE_FRIENDLY_NAME"] = "updateFriendlyName";
|
|
@@ -55,6 +56,7 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
55
56
|
_ActionsGetResult_autoRenewToEst.set(this, void 0);
|
|
56
57
|
_ActionsGetResult_cancel.set(this, void 0);
|
|
57
58
|
_ActionsGetResult_conversion.set(this, void 0);
|
|
59
|
+
_ActionsGetResult_lateRenewal.set(this, void 0);
|
|
58
60
|
_ActionsGetResult_pause.set(this, void 0);
|
|
59
61
|
_ActionsGetResult_upgrade.set(this, void 0);
|
|
60
62
|
_ActionsGetResult_updateFriendlyName.set(this, void 0);
|
|
@@ -72,6 +74,7 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
72
74
|
__classPrivateFieldSet(this, _ActionsGetResult_autoRenewToEst, data[ActionsGetFields.COLUMN_AUTO_RENEW_TO_EST], "f");
|
|
73
75
|
__classPrivateFieldSet(this, _ActionsGetResult_cancel, data[ActionsGetFields.COLUMN_CANCEL], "f");
|
|
74
76
|
__classPrivateFieldSet(this, _ActionsGetResult_conversion, data[ActionsGetFields.COLUMN_CONVERSION], "f");
|
|
77
|
+
__classPrivateFieldSet(this, _ActionsGetResult_lateRenewal, data[ActionsGetFields.COLUMN_LATE_RENEWAL], "f");
|
|
75
78
|
__classPrivateFieldSet(this, _ActionsGetResult_pause, data[ActionsGetFields.COLUMN_PAUSE], "f");
|
|
76
79
|
__classPrivateFieldSet(this, _ActionsGetResult_upgrade, data[ActionsGetFields.COLUMN_UPGRADE], "f");
|
|
77
80
|
__classPrivateFieldSet(this, _ActionsGetResult_updateFriendlyName, data[ActionsGetFields.COLUMN_UPDATE_FRIENDLY_NAME], "f");
|
|
@@ -114,6 +117,9 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
114
117
|
get conversion() {
|
|
115
118
|
return __classPrivateFieldGet(this, _ActionsGetResult_conversion, "f");
|
|
116
119
|
}
|
|
120
|
+
get lateRenewal() {
|
|
121
|
+
return __classPrivateFieldGet(this, _ActionsGetResult_lateRenewal, "f");
|
|
122
|
+
}
|
|
117
123
|
get pause() {
|
|
118
124
|
return __classPrivateFieldGet(this, _ActionsGetResult_pause, "f");
|
|
119
125
|
}
|
|
@@ -143,6 +149,7 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
143
149
|
[ActionsGetFields.COLUMN_AUTO_RENEW_TO_EST]: this.autoRenewToEst,
|
|
144
150
|
[ActionsGetFields.COLUMN_CANCEL]: this.cancel,
|
|
145
151
|
[ActionsGetFields.COLUMN_CONVERSION]: this.conversion,
|
|
152
|
+
[ActionsGetFields.COLUMN_LATE_RENEWAL]: this.lateRenewal,
|
|
146
153
|
[ActionsGetFields.COLUMN_PAUSE]: this.pause,
|
|
147
154
|
[ActionsGetFields.COLUMN_UPGRADE]: this.upgrade,
|
|
148
155
|
[ActionsGetFields.COLUMN_UPDATE_FRIENDLY_NAME]: this.updateFriendlyName,
|
|
@@ -153,5 +160,5 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
153
160
|
}
|
|
154
161
|
}
|
|
155
162
|
exports.ActionsGetResult = ActionsGetResult;
|
|
156
|
-
_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();
|
|
157
164
|
//# sourceMappingURL=actionsGetResult.js.map
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AbstractEntity } from '../../../abstractEntity';
|
|
2
|
+
import { GetLateRenewableLicenseData } from './LicenseRenewableLicenseData';
|
|
3
|
+
export declare class GetLateRenewableLicenseResult extends AbstractEntity<GetLateRenewableLicenseData> {
|
|
4
|
+
#private;
|
|
5
|
+
constructor(data: GetLateRenewableLicenseData);
|
|
6
|
+
get vendorSku(): string;
|
|
7
|
+
get quantity(): number;
|
|
8
|
+
get licenseRef(): string | undefined;
|
|
9
|
+
get offerName(): string | undefined;
|
|
10
|
+
toJSON(): GetLateRenewableLicenseData;
|
|
11
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
|
|
3
|
+
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
4
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
5
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
6
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
7
|
+
};
|
|
8
|
+
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
|
|
9
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
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
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
12
|
+
};
|
|
13
|
+
var _GetLateRenewableLicenseResult_vendorSku, _GetLateRenewableLicenseResult_quantity, _GetLateRenewableLicenseResult_licenseRef, _GetLateRenewableLicenseResult_offerName;
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.GetLateRenewableLicenseResult = void 0;
|
|
16
|
+
const abstractEntity_1 = require("../../../abstractEntity");
|
|
17
|
+
class GetLateRenewableLicenseResult extends abstractEntity_1.AbstractEntity {
|
|
18
|
+
constructor(data) {
|
|
19
|
+
super(data);
|
|
20
|
+
_GetLateRenewableLicenseResult_vendorSku.set(this, void 0);
|
|
21
|
+
_GetLateRenewableLicenseResult_quantity.set(this, void 0);
|
|
22
|
+
_GetLateRenewableLicenseResult_licenseRef.set(this, void 0);
|
|
23
|
+
_GetLateRenewableLicenseResult_offerName.set(this, void 0);
|
|
24
|
+
__classPrivateFieldSet(this, _GetLateRenewableLicenseResult_vendorSku, data.vendorSku, "f");
|
|
25
|
+
__classPrivateFieldSet(this, _GetLateRenewableLicenseResult_quantity, data.quantity, "f");
|
|
26
|
+
__classPrivateFieldSet(this, _GetLateRenewableLicenseResult_licenseRef, data === null || data === void 0 ? void 0 : data.licenseRef, "f");
|
|
27
|
+
__classPrivateFieldSet(this, _GetLateRenewableLicenseResult_offerName, data === null || data === void 0 ? void 0 : data.offerName, "f");
|
|
28
|
+
}
|
|
29
|
+
get vendorSku() {
|
|
30
|
+
return __classPrivateFieldGet(this, _GetLateRenewableLicenseResult_vendorSku, "f");
|
|
31
|
+
}
|
|
32
|
+
get quantity() {
|
|
33
|
+
return __classPrivateFieldGet(this, _GetLateRenewableLicenseResult_quantity, "f");
|
|
34
|
+
}
|
|
35
|
+
get licenseRef() {
|
|
36
|
+
return __classPrivateFieldGet(this, _GetLateRenewableLicenseResult_licenseRef, "f");
|
|
37
|
+
}
|
|
38
|
+
get offerName() {
|
|
39
|
+
return __classPrivateFieldGet(this, _GetLateRenewableLicenseResult_offerName, "f");
|
|
40
|
+
}
|
|
41
|
+
toJSON() {
|
|
42
|
+
return {
|
|
43
|
+
vendorSku: this.vendorSku,
|
|
44
|
+
quantity: this.quantity,
|
|
45
|
+
...(this.licenseRef ? { licenseRef: this.licenseRef } : {}),
|
|
46
|
+
...(this.offerName ? { offerName: this.offerName } : {}),
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
exports.GetLateRenewableLicenseResult = GetLateRenewableLicenseResult;
|
|
51
|
+
_GetLateRenewableLicenseResult_vendorSku = new WeakMap(), _GetLateRenewableLicenseResult_quantity = new WeakMap(), _GetLateRenewableLicenseResult_licenseRef = new WeakMap(), _GetLateRenewableLicenseResult_offerName = new WeakMap();
|
|
52
|
+
//# sourceMappingURL=getLateRenewableLicenseResult.js.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AbstractEntity } from '../../../abstractEntity';
|
|
2
|
+
import { GetLateRenewableLicenseData } from './LicenseRenewableLicenseData';
|
|
3
|
+
import { GetLateRenewableLicenseResult } from './getLateRenewableLicenseResult';
|
|
4
|
+
export declare class GetLateRenewableLicensesResult extends AbstractEntity<GetLateRenewableLicenseData[]> {
|
|
5
|
+
#private;
|
|
6
|
+
constructor(input: GetLateRenewableLicenseData[]);
|
|
7
|
+
get lateRenewableLicenses(): GetLateRenewableLicenseResult[];
|
|
8
|
+
toJSON(): GetLateRenewableLicenseData[];
|
|
9
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
|
|
3
|
+
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
4
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
5
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
6
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
7
|
+
};
|
|
8
|
+
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
|
|
9
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
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
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
12
|
+
};
|
|
13
|
+
var _GetLateRenewableLicensesResult_lateRenewableLicenses;
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.GetLateRenewableLicensesResult = void 0;
|
|
16
|
+
const abstractEntity_1 = require("../../../abstractEntity");
|
|
17
|
+
const getLateRenewableLicenseResult_1 = require("./getLateRenewableLicenseResult");
|
|
18
|
+
class GetLateRenewableLicensesResult extends abstractEntity_1.AbstractEntity {
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super(input);
|
|
21
|
+
_GetLateRenewableLicensesResult_lateRenewableLicenses.set(this, void 0);
|
|
22
|
+
__classPrivateFieldSet(this, _GetLateRenewableLicensesResult_lateRenewableLicenses, input.map((result) => new getLateRenewableLicenseResult_1.GetLateRenewableLicenseResult(result)), "f");
|
|
23
|
+
}
|
|
24
|
+
get lateRenewableLicenses() {
|
|
25
|
+
return __classPrivateFieldGet(this, _GetLateRenewableLicensesResult_lateRenewableLicenses, "f");
|
|
26
|
+
}
|
|
27
|
+
toJSON() {
|
|
28
|
+
return this.lateRenewableLicenses.map((result) => result.toJSON());
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
exports.GetLateRenewableLicensesResult = GetLateRenewableLicensesResult;
|
|
32
|
+
_GetLateRenewableLicensesResult_lateRenewableLicenses = new WeakMap();
|
|
33
|
+
//# sourceMappingURL=getLateRenewableLicensesResult.js.map
|
|
@@ -31,6 +31,8 @@ import { LicenceCouponCodeHistoryResult } from './entities/history/licenceCoupon
|
|
|
31
31
|
import { GetLicenseAttachmentsResult } from './entities/attachment/GetLicenseAttachmentsResult';
|
|
32
32
|
import { PostLicenseAttachmentResult } from './entities/attachment/PostLicenseAttachmentResult';
|
|
33
33
|
import { DynamicAttributesMappingResult } from './entities/license/dynamicMappingResult';
|
|
34
|
+
import { GetLateRenewableLicensesResult } from './entities/lateRenewalLicense/getLateRenewableLicensesResult';
|
|
35
|
+
import { ExecuteLateRenewPayload } from './entities/lateRenewalLicense/executeLateRenewPayload';
|
|
34
36
|
/**
|
|
35
37
|
* Parameters passable to the request for refining search.
|
|
36
38
|
*/
|
|
@@ -422,6 +424,8 @@ export declare class LicensesClient extends AbstractRestfulClient {
|
|
|
422
424
|
bulkAction(bulkData: BulkBodyArgument): Promise<void>;
|
|
423
425
|
updateConfig(reference: string, config: ConfigFindResult): Promise<GetResult<ConfigFindResult>>;
|
|
424
426
|
getLicense(licenseReference: string, parameters?: Parameters): Promise<GetResult<GetLicenseResult>>;
|
|
427
|
+
executeLateRenew(payload: ExecuteLateRenewPayload): Promise<void>;
|
|
428
|
+
getLateRenewableLicenses(parameters?: Parameters): Promise<GetResult<GetLateRenewableLicensesResult>>;
|
|
425
429
|
updateLicense(licenseReference: string, payload: UpdateLicenseData, parameters?: Parameters): Promise<void | PartialResponse>;
|
|
426
430
|
updateSeats(licenseReference: string, putData: UpdateSeatsData, parameters?: Parameters): Promise<void>;
|
|
427
431
|
suspendLicense(licenseReference: string, payload?: PutSuspend, parameters?: Parameters): Promise<void>;
|
|
@@ -25,6 +25,7 @@ const licenceCouponCodeHistoryResult_1 = require("./entities/history/licenceCoup
|
|
|
25
25
|
const GetLicenseAttachmentsResult_1 = require("./entities/attachment/GetLicenseAttachmentsResult");
|
|
26
26
|
const PostLicenseAttachmentResult_1 = require("./entities/attachment/PostLicenseAttachmentResult");
|
|
27
27
|
const dynamicMappingResult_1 = require("./entities/license/dynamicMappingResult");
|
|
28
|
+
const getLateRenewableLicensesResult_1 = require("./entities/lateRenewalLicense/getLateRenewableLicensesResult");
|
|
28
29
|
/**
|
|
29
30
|
* Parameters passable to the request for refining search.
|
|
30
31
|
*/
|
|
@@ -409,6 +410,14 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
|
409
410
|
this.path = `/${licenseReference}`;
|
|
410
411
|
return new getResult_1.GetResult(getLicenseResult_1.GetLicenseResult, await this.get(parameters));
|
|
411
412
|
}
|
|
413
|
+
async executeLateRenew(payload) {
|
|
414
|
+
this.path = '/requestLateRenew';
|
|
415
|
+
await this.post(payload);
|
|
416
|
+
}
|
|
417
|
+
async getLateRenewableLicenses(parameters = {}) {
|
|
418
|
+
this.path = `/listEligibleAdobeLateRenew`;
|
|
419
|
+
return new getResult_1.GetResult(getLateRenewableLicensesResult_1.GetLateRenewableLicensesResult, await this.get(parameters));
|
|
420
|
+
}
|
|
412
421
|
async updateLicense(licenseReference, payload, parameters = {}) {
|
|
413
422
|
this.path = `/${licenseReference}`;
|
|
414
423
|
const response = await this.patch(payload, parameters);
|
package/package.json
CHANGED