@arrowsphere/api-client 3.244.0-rc-cpe-3 → 3.245.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 CHANGED
@@ -3,6 +3,20 @@
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.245.0] - 2026.02.13
7
+
8
+ ### Added
9
+
10
+ - [graphql-api] Add new fields to SubscribedProgramType: `programLevel`, `programType`, `levelInternalName`
11
+ - [graphql-api] Add new SubscriptionStatusType and add `status` field to SubscriptionType
12
+
13
+ ## [3.244.0] - 2026.02.12
14
+
15
+ ### Added
16
+
17
+ - [license] add endpoint to set Renew To Extended Service Term
18
+ - [license] add renewalPolicy to LicenseGetData
19
+
6
20
  ## [3.243.0] - 2026.02.10
7
21
 
8
22
  ### Added
@@ -76,9 +76,12 @@ export declare type SubscribedProgramType = {
76
76
  subscriptionEndedAt?: string;
77
77
  partner?: PartnerType;
78
78
  program?: GraphqlApiProgramType;
79
+ programLevel?: GraphqlApiProgramLevelType;
79
80
  subscription?: SubscriptionType;
80
81
  vendor?: VendorsType;
81
82
  vendorCode?: string;
82
83
  vendorName?: string;
83
84
  workgroupCode?: string;
85
+ programType?: string;
86
+ levelInternalName?: string;
84
87
  };
@@ -1,6 +1,10 @@
1
1
  import { PartnerType } from './company';
2
2
  import { ContactsType } from './contact';
3
3
  import { GraphqlApiProgramLevelType, GraphqlApiProgramType } from './program';
4
+ export declare type SubscriptionStatusType = {
5
+ id?: number;
6
+ name?: string;
7
+ };
4
8
  export declare type SubscriptionType = {
5
9
  id?: number;
6
10
  autoReporting?: boolean;
@@ -15,4 +19,5 @@ export declare type SubscriptionType = {
15
19
  startedAt?: string;
16
20
  userNote?: string;
17
21
  validatedAt?: string;
22
+ status?: SubscriptionStatusType;
18
23
  };
@@ -17,9 +17,9 @@ export declare enum ActionsGetFields {
17
17
  COLUMN_ADDONS_CATALOG = "addons catalog",
18
18
  COLUMN_SUSPEND = "suspend",
19
19
  COLUMN_REACTIVATE = "reactivate",
20
+ COLUMN_AUTO_RENEW_TO_EST = "autoRenewToEst",
20
21
  COLUMN_AUTO_RENEW_OFF = "autoRenewOff",
21
22
  COLUMN_AUTO_RENEW_ON = "autoRenewOn",
22
- COLUMN_AUTO_RENEW_TO_EST = "autoRenewToEst",
23
23
  COLUMN_CANCEL = "cancel",
24
24
  COLUMN_CONVERSION = "conversion",
25
25
  COLUMN_PAUSE = "pause",
@@ -36,9 +36,9 @@ export declare type ActionsGetData = {
36
36
  [ActionsGetFields.COLUMN_ADDONS_CATALOG]?: string;
37
37
  [ActionsGetFields.COLUMN_SUSPEND]?: string;
38
38
  [ActionsGetFields.COLUMN_REACTIVATE]?: string;
39
+ [ActionsGetFields.COLUMN_AUTO_RENEW_TO_EST]?: string;
39
40
  [ActionsGetFields.COLUMN_AUTO_RENEW_OFF]?: string;
40
41
  [ActionsGetFields.COLUMN_AUTO_RENEW_ON]?: string;
41
- [ActionsGetFields.COLUMN_AUTO_RENEW_TO_EST]?: string;
42
42
  [ActionsGetFields.COLUMN_CANCEL]?: string;
43
43
  [ActionsGetFields.COLUMN_CONVERSION]?: string;
44
44
  [ActionsGetFields.COLUMN_PAUSE]?: string;
@@ -29,9 +29,9 @@ var ActionsGetFields;
29
29
  ActionsGetFields["COLUMN_ADDONS_CATALOG"] = "addons catalog";
30
30
  ActionsGetFields["COLUMN_SUSPEND"] = "suspend";
31
31
  ActionsGetFields["COLUMN_REACTIVATE"] = "reactivate";
32
+ ActionsGetFields["COLUMN_AUTO_RENEW_TO_EST"] = "autoRenewToEst";
32
33
  ActionsGetFields["COLUMN_AUTO_RENEW_OFF"] = "autoRenewOff";
33
34
  ActionsGetFields["COLUMN_AUTO_RENEW_ON"] = "autoRenewOn";
34
- ActionsGetFields["COLUMN_AUTO_RENEW_TO_EST"] = "autoRenewToEst";
35
35
  ActionsGetFields["COLUMN_CANCEL"] = "cancel";
36
36
  ActionsGetFields["COLUMN_CONVERSION"] = "conversion";
37
37
  ActionsGetFields["COLUMN_PAUSE"] = "pause";
@@ -32,6 +32,7 @@ export declare enum LicenseGetFields {
32
32
  COLUMN_ACTIVATION_DATETIME = "activation_datetime",
33
33
  COLUMN_EXPIRY_DATETIME = "expiry_datetime",
34
34
  COLUMN_AUTO_RENEW = "autoRenew",
35
+ COLUMN_RENEWAL_POLICY = "renewalPolicy",
35
36
  COLUMN_MARKETPLACE = "marketplace",
36
37
  COLUMN_MESSAGE = "message",
37
38
  COLUMN_ACTIONS = "actions",
@@ -65,8 +66,7 @@ export declare enum LicenseGetFields {
65
66
  COLUMN_CONFIGS = "configs",
66
67
  COLUMN_WARNINGS = "warnings",
67
68
  COLUMN_END_DATE = "endDate",
68
- COLUMN_ATTRIBUTES = "attributes",
69
- COLUMN_RENEWAL_POLICY = "renewalPolicy"
69
+ COLUMN_ATTRIBUTES = "attributes"
70
70
  }
71
71
  export declare enum RenewalPolicyEnum {
72
72
  CANCEL = "cancel",
@@ -93,6 +93,7 @@ export declare type LicenseGetData = {
93
93
  [LicenseGetFields.COLUMN_ACTIVATION_DATETIME]: string | null;
94
94
  [LicenseGetFields.COLUMN_EXPIRY_DATETIME]: string | null;
95
95
  [LicenseGetFields.COLUMN_AUTO_RENEW]?: boolean;
96
+ [LicenseGetFields.COLUMN_RENEWAL_POLICY]?: RenewalPolicyEnum;
96
97
  [LicenseGetFields.COLUMN_MARKETPLACE]: string;
97
98
  [LicenseGetFields.COLUMN_MESSAGE]: string;
98
99
  [LicenseGetFields.COLUMN_ACTIONS]?: ActionsGetData;
@@ -126,7 +127,6 @@ export declare type LicenseGetData = {
126
127
  [LicenseGetFields.COLUMN_WARNINGS]?: Array<WarningFindResultData> | null;
127
128
  [LicenseGetFields.COLUMN_END_DATE]: string;
128
129
  [LicenseGetFields.COLUMN_ATTRIBUTES]: Record<string, string>;
129
- [LicenseGetFields.COLUMN_RENEWAL_POLICY]?: RenewalPolicyEnum;
130
130
  };
131
131
  export declare class LicenseGetResult extends AbstractEntity<LicenseGetData> {
132
132
  #private;
@@ -150,6 +150,7 @@ export declare class LicenseGetResult extends AbstractEntity<LicenseGetData> {
150
150
  get activationDatetime(): string | null;
151
151
  get expiryDatetime(): string | null;
152
152
  get autoRenew(): boolean | undefined;
153
+ get renewalPolicy(): RenewalPolicyEnum | undefined;
153
154
  get marketplace(): string;
154
155
  get message(): string;
155
156
  get actions(): ActionsGetResult | undefined;
@@ -183,6 +184,5 @@ export declare class LicenseGetResult extends AbstractEntity<LicenseGetData> {
183
184
  get warnings(): Array<WarningFindResult> | null | undefined;
184
185
  get endDate(): string;
185
186
  get attributes(): Record<string, string>;
186
- get renewalPolicy(): RenewalPolicyEnum | undefined;
187
187
  toJSON(): LicenseGetData;
188
188
  }
@@ -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 _LicenseGetResult_additionalInformation, _LicenseGetResult_classification, _LicenseGetResult_license_id, _LicenseGetResult_parent_license_id, _LicenseGetResult_friendlyName, _LicenseGetResult_customer_ref, _LicenseGetResult_state, _LicenseGetResult_statusCode, _LicenseGetResult_isTrial, _LicenseGetResult_isAddon, _LicenseGetResult_service_ref, _LicenseGetResult_sku, _LicenseGetResult_name, _LicenseGetResult_seats, _LicenseGetResult_activeSeats, _LicenseGetResult_security, _LicenseGetResult_activation_datetime, _LicenseGetResult_expiry_datetime, _LicenseGetResult_autoRenew, _LicenseGetResult_marketplace, _LicenseGetResult_message, _LicenseGetResult_actions, _LicenseGetResult_actionMessages, _LicenseGetResult_order_reference, _LicenseGetResult_order, _LicenseGetResult_vendor_license_id, _LicenseGetResult_periodicity, _LicenseGetResult_periodicityCode, _LicenseGetResult_term, _LicenseGetResult_termCode, _LicenseGetResult_category, _LicenseGetResult_program, _LicenseGetResult_associatedSubscriptionProgram, _LicenseGetResult_price, _LicenseGetResult_arrowSubCategories, _LicenseGetResult_nextRenewalDate, _LicenseGetResult_promotion, _LicenseGetResult_assets, _LicenseGetResult_vendorBillingId, _LicenseGetResult_extraData, _LicenseGetResult_priceBand, _LicenseGetResult_vendorCode, _LicenseGetResult_vendor_code, _LicenseGetResult_vendorSku, _LicenseGetResult_rates, _LicenseGetResult_organizationUnitId, _LicenseGetResult_relation, _LicenseGetResult_marketSegment, _LicenseGetResult_configs, _LicenseGetResult_warnings, _LicenseGetResult_endDate, _LicenseGetResult_attributes, _LicenseGetResult_renewalPolicy;
13
+ var _LicenseGetResult_additionalInformation, _LicenseGetResult_classification, _LicenseGetResult_license_id, _LicenseGetResult_parent_license_id, _LicenseGetResult_friendlyName, _LicenseGetResult_customer_ref, _LicenseGetResult_state, _LicenseGetResult_statusCode, _LicenseGetResult_isTrial, _LicenseGetResult_isAddon, _LicenseGetResult_service_ref, _LicenseGetResult_sku, _LicenseGetResult_name, _LicenseGetResult_seats, _LicenseGetResult_activeSeats, _LicenseGetResult_security, _LicenseGetResult_activation_datetime, _LicenseGetResult_expiry_datetime, _LicenseGetResult_autoRenew, _LicenseGetResult_renewalPolicy, _LicenseGetResult_marketplace, _LicenseGetResult_message, _LicenseGetResult_actions, _LicenseGetResult_actionMessages, _LicenseGetResult_order_reference, _LicenseGetResult_order, _LicenseGetResult_vendor_license_id, _LicenseGetResult_periodicity, _LicenseGetResult_periodicityCode, _LicenseGetResult_term, _LicenseGetResult_termCode, _LicenseGetResult_category, _LicenseGetResult_program, _LicenseGetResult_associatedSubscriptionProgram, _LicenseGetResult_price, _LicenseGetResult_arrowSubCategories, _LicenseGetResult_nextRenewalDate, _LicenseGetResult_promotion, _LicenseGetResult_assets, _LicenseGetResult_vendorBillingId, _LicenseGetResult_extraData, _LicenseGetResult_priceBand, _LicenseGetResult_vendorCode, _LicenseGetResult_vendor_code, _LicenseGetResult_vendorSku, _LicenseGetResult_rates, _LicenseGetResult_organizationUnitId, _LicenseGetResult_relation, _LicenseGetResult_marketSegment, _LicenseGetResult_configs, _LicenseGetResult_warnings, _LicenseGetResult_endDate, _LicenseGetResult_attributes;
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
15
  exports.LicenseGetResult = exports.RenewalPolicyEnum = exports.LicenseGetFields = void 0;
16
16
  const actionsGetResult_1 = require("./actionsGetResult");
@@ -48,6 +48,7 @@ var LicenseGetFields;
48
48
  LicenseGetFields["COLUMN_ACTIVATION_DATETIME"] = "activation_datetime";
49
49
  LicenseGetFields["COLUMN_EXPIRY_DATETIME"] = "expiry_datetime";
50
50
  LicenseGetFields["COLUMN_AUTO_RENEW"] = "autoRenew";
51
+ LicenseGetFields["COLUMN_RENEWAL_POLICY"] = "renewalPolicy";
51
52
  LicenseGetFields["COLUMN_MARKETPLACE"] = "marketplace";
52
53
  LicenseGetFields["COLUMN_MESSAGE"] = "message";
53
54
  LicenseGetFields["COLUMN_ACTIONS"] = "actions";
@@ -82,7 +83,6 @@ var LicenseGetFields;
82
83
  LicenseGetFields["COLUMN_WARNINGS"] = "warnings";
83
84
  LicenseGetFields["COLUMN_END_DATE"] = "endDate";
84
85
  LicenseGetFields["COLUMN_ATTRIBUTES"] = "attributes";
85
- LicenseGetFields["COLUMN_RENEWAL_POLICY"] = "renewalPolicy";
86
86
  })(LicenseGetFields = exports.LicenseGetFields || (exports.LicenseGetFields = {}));
87
87
  var RenewalPolicyEnum;
88
88
  (function (RenewalPolicyEnum) {
@@ -113,6 +113,7 @@ class LicenseGetResult extends abstractEntity_1.AbstractEntity {
113
113
  _LicenseGetResult_activation_datetime.set(this, void 0);
114
114
  _LicenseGetResult_expiry_datetime.set(this, void 0);
115
115
  _LicenseGetResult_autoRenew.set(this, void 0);
116
+ _LicenseGetResult_renewalPolicy.set(this, void 0);
116
117
  _LicenseGetResult_marketplace.set(this, void 0);
117
118
  _LicenseGetResult_message.set(this, void 0);
118
119
  _LicenseGetResult_actions.set(this, void 0);
@@ -146,7 +147,6 @@ class LicenseGetResult extends abstractEntity_1.AbstractEntity {
146
147
  _LicenseGetResult_warnings.set(this, void 0);
147
148
  _LicenseGetResult_endDate.set(this, void 0);
148
149
  _LicenseGetResult_attributes.set(this, void 0);
149
- _LicenseGetResult_renewalPolicy.set(this, void 0);
150
150
  __classPrivateFieldSet(this, _LicenseGetResult_additionalInformation, licenseGetDataInput[LicenseGetFields.COLUMN_ADDITIONAL_INFORMATION], "f");
151
151
  __classPrivateFieldSet(this, _LicenseGetResult_classification, licenseGetDataInput[LicenseGetFields.COLUMN_CLASSIFICATION], "f");
152
152
  __classPrivateFieldSet(this, _LicenseGetResult_license_id, licenseGetDataInput[LicenseGetFields.COLUMN_LICENSE_ID], "f");
@@ -168,6 +168,7 @@ class LicenseGetResult extends abstractEntity_1.AbstractEntity {
168
168
  __classPrivateFieldSet(this, _LicenseGetResult_activation_datetime, licenseGetDataInput[LicenseGetFields.COLUMN_ACTIVATION_DATETIME], "f");
169
169
  __classPrivateFieldSet(this, _LicenseGetResult_expiry_datetime, licenseGetDataInput[LicenseGetFields.COLUMN_EXPIRY_DATETIME], "f");
170
170
  __classPrivateFieldSet(this, _LicenseGetResult_autoRenew, licenseGetDataInput[LicenseGetFields.COLUMN_AUTO_RENEW], "f");
171
+ __classPrivateFieldSet(this, _LicenseGetResult_renewalPolicy, licenseGetDataInput[LicenseGetFields.COLUMN_RENEWAL_POLICY], "f");
171
172
  __classPrivateFieldSet(this, _LicenseGetResult_marketplace, licenseGetDataInput[LicenseGetFields.COLUMN_MARKETPLACE], "f");
172
173
  __classPrivateFieldSet(this, _LicenseGetResult_message, licenseGetDataInput[LicenseGetFields.COLUMN_MESSAGE], "f");
173
174
  __classPrivateFieldSet(this, _LicenseGetResult_actions, licenseGetDataInput[LicenseGetFields.COLUMN_ACTIONS]
@@ -213,7 +214,6 @@ class LicenseGetResult extends abstractEntity_1.AbstractEntity {
213
214
  __classPrivateFieldSet(this, _LicenseGetResult_warnings, (_e = licenseGetDataInput[LicenseGetFields.COLUMN_WARNINGS]) === null || _e === void 0 ? void 0 : _e.map((warningData) => new warningFindResult_1.WarningFindResult(warningData)), "f");
214
215
  __classPrivateFieldSet(this, _LicenseGetResult_endDate, (_f = licenseGetDataInput[LicenseGetFields.COLUMN_END_DATE]) !== null && _f !== void 0 ? _f : '', "f");
215
216
  __classPrivateFieldSet(this, _LicenseGetResult_attributes, (_g = licenseGetDataInput[LicenseGetFields.COLUMN_ATTRIBUTES]) !== null && _g !== void 0 ? _g : {}, "f");
216
- __classPrivateFieldSet(this, _LicenseGetResult_renewalPolicy, licenseGetDataInput[LicenseGetFields.COLUMN_RENEWAL_POLICY], "f");
217
217
  }
218
218
  get classification() {
219
219
  return __classPrivateFieldGet(this, _LicenseGetResult_classification, "f");
@@ -272,6 +272,9 @@ class LicenseGetResult extends abstractEntity_1.AbstractEntity {
272
272
  get autoRenew() {
273
273
  return __classPrivateFieldGet(this, _LicenseGetResult_autoRenew, "f");
274
274
  }
275
+ get renewalPolicy() {
276
+ return __classPrivateFieldGet(this, _LicenseGetResult_renewalPolicy, "f");
277
+ }
275
278
  get marketplace() {
276
279
  return __classPrivateFieldGet(this, _LicenseGetResult_marketplace, "f");
277
280
  }
@@ -374,9 +377,6 @@ class LicenseGetResult extends abstractEntity_1.AbstractEntity {
374
377
  get attributes() {
375
378
  return __classPrivateFieldGet(this, _LicenseGetResult_attributes, "f");
376
379
  }
377
- get renewalPolicy() {
378
- return __classPrivateFieldGet(this, _LicenseGetResult_renewalPolicy, "f");
379
- }
380
380
  toJSON() {
381
381
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
382
382
  return {
@@ -400,6 +400,7 @@ class LicenseGetResult extends abstractEntity_1.AbstractEntity {
400
400
  [LicenseGetFields.COLUMN_ACTIVATION_DATETIME]: this.activationDatetime,
401
401
  [LicenseGetFields.COLUMN_EXPIRY_DATETIME]: this.expiryDatetime,
402
402
  [LicenseGetFields.COLUMN_AUTO_RENEW]: this.autoRenew,
403
+ [LicenseGetFields.COLUMN_RENEWAL_POLICY]: this.renewalPolicy,
403
404
  [LicenseGetFields.COLUMN_MARKETPLACE]: this.marketplace,
404
405
  [LicenseGetFields.COLUMN_MESSAGE]: this.message,
405
406
  [LicenseGetFields.COLUMN_ACTIONS]: (_b = this.actions) === null || _b === void 0 ? void 0 : _b.toJSON(),
@@ -434,10 +435,9 @@ class LicenseGetResult extends abstractEntity_1.AbstractEntity {
434
435
  [LicenseGetFields.COLUMN_WARNINGS]: (_l = this.warnings) === null || _l === void 0 ? void 0 : _l.map((warning) => warning.toJSON()),
435
436
  [LicenseGetFields.COLUMN_END_DATE]: this.endDate,
436
437
  [LicenseGetFields.COLUMN_ATTRIBUTES]: this.attributes,
437
- [LicenseGetFields.COLUMN_RENEWAL_POLICY]: this.renewalPolicy,
438
438
  };
439
439
  }
440
440
  }
441
441
  exports.LicenseGetResult = LicenseGetResult;
442
- _LicenseGetResult_additionalInformation = new WeakMap(), _LicenseGetResult_classification = new WeakMap(), _LicenseGetResult_license_id = new WeakMap(), _LicenseGetResult_parent_license_id = new WeakMap(), _LicenseGetResult_friendlyName = new WeakMap(), _LicenseGetResult_customer_ref = new WeakMap(), _LicenseGetResult_state = new WeakMap(), _LicenseGetResult_statusCode = new WeakMap(), _LicenseGetResult_isTrial = new WeakMap(), _LicenseGetResult_isAddon = new WeakMap(), _LicenseGetResult_service_ref = new WeakMap(), _LicenseGetResult_sku = new WeakMap(), _LicenseGetResult_name = new WeakMap(), _LicenseGetResult_seats = new WeakMap(), _LicenseGetResult_activeSeats = new WeakMap(), _LicenseGetResult_security = new WeakMap(), _LicenseGetResult_activation_datetime = new WeakMap(), _LicenseGetResult_expiry_datetime = new WeakMap(), _LicenseGetResult_autoRenew = new WeakMap(), _LicenseGetResult_marketplace = new WeakMap(), _LicenseGetResult_message = new WeakMap(), _LicenseGetResult_actions = new WeakMap(), _LicenseGetResult_actionMessages = new WeakMap(), _LicenseGetResult_order_reference = new WeakMap(), _LicenseGetResult_order = new WeakMap(), _LicenseGetResult_vendor_license_id = new WeakMap(), _LicenseGetResult_periodicity = new WeakMap(), _LicenseGetResult_periodicityCode = new WeakMap(), _LicenseGetResult_term = new WeakMap(), _LicenseGetResult_termCode = new WeakMap(), _LicenseGetResult_category = new WeakMap(), _LicenseGetResult_program = new WeakMap(), _LicenseGetResult_associatedSubscriptionProgram = new WeakMap(), _LicenseGetResult_price = new WeakMap(), _LicenseGetResult_arrowSubCategories = new WeakMap(), _LicenseGetResult_nextRenewalDate = new WeakMap(), _LicenseGetResult_promotion = new WeakMap(), _LicenseGetResult_assets = new WeakMap(), _LicenseGetResult_vendorBillingId = new WeakMap(), _LicenseGetResult_extraData = new WeakMap(), _LicenseGetResult_priceBand = new WeakMap(), _LicenseGetResult_vendorCode = new WeakMap(), _LicenseGetResult_vendor_code = new WeakMap(), _LicenseGetResult_vendorSku = new WeakMap(), _LicenseGetResult_rates = new WeakMap(), _LicenseGetResult_organizationUnitId = new WeakMap(), _LicenseGetResult_relation = new WeakMap(), _LicenseGetResult_marketSegment = new WeakMap(), _LicenseGetResult_configs = new WeakMap(), _LicenseGetResult_warnings = new WeakMap(), _LicenseGetResult_endDate = new WeakMap(), _LicenseGetResult_attributes = new WeakMap(), _LicenseGetResult_renewalPolicy = new WeakMap();
442
+ _LicenseGetResult_additionalInformation = new WeakMap(), _LicenseGetResult_classification = new WeakMap(), _LicenseGetResult_license_id = new WeakMap(), _LicenseGetResult_parent_license_id = new WeakMap(), _LicenseGetResult_friendlyName = new WeakMap(), _LicenseGetResult_customer_ref = new WeakMap(), _LicenseGetResult_state = new WeakMap(), _LicenseGetResult_statusCode = new WeakMap(), _LicenseGetResult_isTrial = new WeakMap(), _LicenseGetResult_isAddon = new WeakMap(), _LicenseGetResult_service_ref = new WeakMap(), _LicenseGetResult_sku = new WeakMap(), _LicenseGetResult_name = new WeakMap(), _LicenseGetResult_seats = new WeakMap(), _LicenseGetResult_activeSeats = new WeakMap(), _LicenseGetResult_security = new WeakMap(), _LicenseGetResult_activation_datetime = new WeakMap(), _LicenseGetResult_expiry_datetime = new WeakMap(), _LicenseGetResult_autoRenew = new WeakMap(), _LicenseGetResult_renewalPolicy = new WeakMap(), _LicenseGetResult_marketplace = new WeakMap(), _LicenseGetResult_message = new WeakMap(), _LicenseGetResult_actions = new WeakMap(), _LicenseGetResult_actionMessages = new WeakMap(), _LicenseGetResult_order_reference = new WeakMap(), _LicenseGetResult_order = new WeakMap(), _LicenseGetResult_vendor_license_id = new WeakMap(), _LicenseGetResult_periodicity = new WeakMap(), _LicenseGetResult_periodicityCode = new WeakMap(), _LicenseGetResult_term = new WeakMap(), _LicenseGetResult_termCode = new WeakMap(), _LicenseGetResult_category = new WeakMap(), _LicenseGetResult_program = new WeakMap(), _LicenseGetResult_associatedSubscriptionProgram = new WeakMap(), _LicenseGetResult_price = new WeakMap(), _LicenseGetResult_arrowSubCategories = new WeakMap(), _LicenseGetResult_nextRenewalDate = new WeakMap(), _LicenseGetResult_promotion = new WeakMap(), _LicenseGetResult_assets = new WeakMap(), _LicenseGetResult_vendorBillingId = new WeakMap(), _LicenseGetResult_extraData = new WeakMap(), _LicenseGetResult_priceBand = new WeakMap(), _LicenseGetResult_vendorCode = new WeakMap(), _LicenseGetResult_vendor_code = new WeakMap(), _LicenseGetResult_vendorSku = new WeakMap(), _LicenseGetResult_rates = new WeakMap(), _LicenseGetResult_organizationUnitId = new WeakMap(), _LicenseGetResult_relation = new WeakMap(), _LicenseGetResult_marketSegment = new WeakMap(), _LicenseGetResult_configs = new WeakMap(), _LicenseGetResult_warnings = new WeakMap(), _LicenseGetResult_endDate = new WeakMap(), _LicenseGetResult_attributes = new WeakMap();
443
443
  //# sourceMappingURL=licenseGetResult.js.map
@@ -239,6 +239,7 @@ export declare type PutSuspend = ExtraInformationType;
239
239
  export declare type PutCancel = ExtraInformationType;
240
240
  export declare type PutCancelAutoRenew = ExtraInformationType;
241
241
  export declare type PutReactivateAutoRenew = ExtraInformationType;
242
+ export declare type PutActivateRenewEst = ExtraInformationType;
242
243
  export declare type PostUpgrade = {
243
244
  sku: string;
244
245
  billingCycle: number;
@@ -344,9 +345,9 @@ export declare class LicensesClient extends AbstractRestfulClient {
344
345
  */
345
346
  private REACTIVATE_AUTO_RENEW_PATH;
346
347
  /**
347
- * The path of license auto-renew to est
348
+ * The path of activate license renew extended service term
348
349
  */
349
- private AUTO_RENEW_TO_EST_PATH;
350
+ private ACTIVATE_RENEW_EST_PATH;
350
351
  /**
351
352
  * The path of reactivate license auto-renew
352
353
  */
@@ -431,7 +432,7 @@ export declare class LicensesClient extends AbstractRestfulClient {
431
432
  getCouponCodeHistory(licenseReference: string, parameters?: Parameters): Promise<GetResult<LicenceCouponCodeHistoryResult>>;
432
433
  cancelAutoRenew(licenseReference: string, payload?: PutCancelAutoRenew, parameters?: Parameters): Promise<void>;
433
434
  reactivateAutoRenew(licenseReference: string, payload?: PutReactivateAutoRenew, parameters?: Parameters): Promise<void>;
434
- autoRenewToEst(licenseReference: string, payload?: PutReactivateAutoRenew, parameters?: Parameters): Promise<void>;
435
+ activeRenewExtendedServiceTerm(licenseReference: string, payload?: PutActivateRenewEst, parameters?: Parameters): Promise<void>;
435
436
  upgrade(licenseReference: string, payload: PostUpgrade, parameters?: Parameters): Promise<GetResult<UpgradeResult>>;
436
437
  upgradeToExisting(licenseReference: string, targetLicenseReference: string, quantity: number, parameters?: Parameters): Promise<void>;
437
438
  saveBillingComments(licenseReference: string, payload: SaveBillingCommentsInputType, parameters?: Parameters): Promise<void>;
@@ -201,9 +201,9 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
201
201
  */
202
202
  this.REACTIVATE_AUTO_RENEW_PATH = '/autorenew/reactivate';
203
203
  /**
204
- * The path of license auto-renew to est
204
+ * The path of activate license renew extended service term
205
205
  */
206
- this.AUTO_RENEW_TO_EST_PATH = '/autorenew/est';
206
+ this.ACTIVATE_RENEW_EST_PATH = '/autorenew/est';
207
207
  /**
208
208
  * The path of reactivate license auto-renew
209
209
  */
@@ -376,22 +376,20 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
376
376
  postData = postAutoRenewData;
377
377
  }
378
378
  else if (bulkData.actionType == bulkArguments_1.ActionTypes.SET_RATE) {
379
- const postSetRateData = {
379
+ postData = {
380
380
  [bulkArguments_1.BulkBodyFields.ACTION_TYPE]: bulkData.actionType,
381
381
  [bulkArguments_1.BulkBodyFields.LICENSES]: bulkData.licenses,
382
382
  [bulkArguments_1.BulkBodyFields.SPECIAL_PRICE_RATE_TYPE]: bulkData.specialPriceRateType,
383
383
  [bulkArguments_1.BulkBodyFields.SPECIAL_PRICE_RATE_VALUE]: bulkData.specialPriceRateValue,
384
384
  [bulkArguments_1.BulkBodyFields.SPECIAL_RATE_EFFECTIVE_APPLICATION_DATE]: bulkData.specialRateEffectiveApplicationDate,
385
385
  };
386
- postData = postSetRateData;
387
386
  }
388
387
  else if (bulkData.actionType == bulkArguments_1.ActionTypes.UPLOAD_CHANGES) {
389
- const postUploadChanges = {
388
+ postData = {
390
389
  [bulkArguments_1.BulkBodyFields.ACTION_TYPE]: bulkData[bulkArguments_1.BulkBodyFields.ACTION_TYPE],
391
390
  [bulkArguments_1.BulkBodyFields.FILE_BASE64]: bulkData[bulkArguments_1.BulkBodyFields.FILE_BASE64],
392
391
  [bulkArguments_1.BulkBodyFields.FILE_NAME]: bulkData[bulkArguments_1.BulkBodyFields.FILE_NAME],
393
392
  };
394
- postData = postUploadChanges;
395
393
  }
396
394
  else {
397
395
  throw new Error('actionType does not exist');
@@ -454,8 +452,8 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
454
452
  this.path = `/${licenseReference}${this.REACTIVATE_AUTO_RENEW_PATH}`;
455
453
  return await this.put(payload, parameters);
456
454
  }
457
- async autoRenewToEst(licenseReference, payload, parameters = {}) {
458
- this.path = `/${licenseReference}${this.AUTO_RENEW_TO_EST_PATH}`;
455
+ async activeRenewExtendedServiceTerm(licenseReference, payload, parameters = {}) {
456
+ this.path = `/${licenseReference}${this.ACTIVATE_RENEW_EST_PATH}`;
459
457
  return await this.put(payload, parameters);
460
458
  }
461
459
  async upgrade(licenseReference, payload, parameters = {}) {
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.244.0-rc-cpe-3",
7
+ "version": "3.245.0",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",