@arrowsphere/api-client 3.354.0-rc.jpb.3 → 3.355.0-rc.fdi.1

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,26 @@
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.355.0] - 2026.03.30
7
+
8
+ ### Added
9
+ - [Customer] Add endpoint to active invitation
10
+
11
+ ## [3.354.0] - 2026.03.30
12
+
13
+ ### Added
14
+ - [License find] Add attributes in filter, vendorName in keyword and sort
15
+
16
+ ## [3.353.1] - 2026.03.23
17
+
18
+ ### Updated
19
+ - [License] fix toJSON in licenseFindResult
20
+
21
+ ## [3.353.0] - 2026.03.17
22
+
23
+ ### Added
24
+ - [License] add discountUnprotected to RateTypeEnum
25
+
6
26
  ## [3.352.3] - 2026.03.17
7
27
 
8
28
  ### Updated
@@ -11,6 +11,7 @@ import { ContactFields } from './entities/customers/contact/contact';
11
11
  import { CustomerProvision } from './entities/customerProvision';
12
12
  import { CustomerCredentials } from './entities/customerCredentials';
13
13
  import { CustomerAgreements } from './entities/customers/agreements/customerAgreements';
14
+ import { DataInvitationActivate } from './entities/dataInvitationActivate';
14
15
  export declare enum CustomerMigrationAttributeFields {
15
16
  NAME = "name",
16
17
  VALUE = "value"
@@ -106,6 +107,12 @@ export declare type PostCustomerInvitation = {
106
107
  [PostCustomerInvitationFields.COLUMN_CONTACT_ID]: number;
107
108
  [PostCustomerInvitationFields.COLUMN_POLICY]: string;
108
109
  };
110
+ export declare enum PostCustomerInvitationActivateFields {
111
+ COLUMN_PASSWORD = "password"
112
+ }
113
+ export declare type PostCustomerInvitationActivate = {
114
+ [PostCustomerInvitationActivateFields.COLUMN_PASSWORD]: string;
115
+ };
109
116
  export declare type APIResponseResourceCreated = {
110
117
  status: number;
111
118
  data: {
@@ -181,4 +188,5 @@ export declare class CustomersClient extends AbstractRestfulClient {
181
188
  getCheckMicrosoftCustomerAgreement(parameters?: {
182
189
  customerReference?: string;
183
190
  } & Parameters): Promise<GetResult<CustomerAgreements>>;
191
+ postCustomerInvitationActivate(code: string, payload: PostCustomerInvitationActivate, parameters?: Parameters): Promise<GetResult<DataInvitationActivate>>;
184
192
  }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CustomersClient = exports.UploadAttachmentInputFields = exports.PostCustomerInvitationFields = exports.CustomersFilterInputFields = exports.ExportCustomersInputFields = exports.CustomerContactPayloadFields = exports.CustomerMigrationPayloadFields = exports.CustomerMigrationAttributeFields = void 0;
3
+ exports.CustomersClient = exports.UploadAttachmentInputFields = exports.PostCustomerInvitationActivateFields = exports.PostCustomerInvitationFields = exports.CustomersFilterInputFields = exports.ExportCustomersInputFields = exports.CustomerContactPayloadFields = exports.CustomerMigrationPayloadFields = exports.CustomerMigrationAttributeFields = void 0;
4
4
  const abstractRestfulClient_1 = require("../abstractRestfulClient");
5
5
  const getResult_1 = require("../getResult");
6
6
  const dataCustomers_1 = require("./entities/dataCustomers");
@@ -14,6 +14,7 @@ const contact_1 = require("./entities/customers/contact/contact");
14
14
  const customerProvision_1 = require("./entities/customerProvision");
15
15
  const customerCredentials_1 = require("./entities/customerCredentials");
16
16
  const customerAgreements_1 = require("./entities/customers/agreements/customerAgreements");
17
+ const dataInvitationActivate_1 = require("./entities/dataInvitationActivate");
17
18
  var CustomerMigrationAttributeFields;
18
19
  (function (CustomerMigrationAttributeFields) {
19
20
  CustomerMigrationAttributeFields["NAME"] = "name";
@@ -58,6 +59,10 @@ var PostCustomerInvitationFields;
58
59
  PostCustomerInvitationFields["COLUMN_CONTACT_ID"] = "contactId";
59
60
  PostCustomerInvitationFields["COLUMN_POLICY"] = "policy";
60
61
  })(PostCustomerInvitationFields = exports.PostCustomerInvitationFields || (exports.PostCustomerInvitationFields = {}));
62
+ var PostCustomerInvitationActivateFields;
63
+ (function (PostCustomerInvitationActivateFields) {
64
+ PostCustomerInvitationActivateFields["COLUMN_PASSWORD"] = "password";
65
+ })(PostCustomerInvitationActivateFields = exports.PostCustomerInvitationActivateFields || (exports.PostCustomerInvitationActivateFields = {}));
61
66
  var UploadAttachmentInputFields;
62
67
  (function (UploadAttachmentInputFields) {
63
68
  UploadAttachmentInputFields["COLUMN_FILE_ENCODED"] = "fileEncoded";
@@ -167,6 +172,10 @@ class CustomersClient extends abstractRestfulClient_1.AbstractRestfulClient {
167
172
  this.path = '/checkMicrosoftCustomerAgreement';
168
173
  return new getResult_1.GetResult(customerAgreements_1.CustomerAgreements, await this.get(parameters));
169
174
  }
175
+ async postCustomerInvitationActivate(code, payload, parameters = {}) {
176
+ this.path = `/invitations/${code}/activate`;
177
+ return new getResult_1.GetResult(dataInvitationActivate_1.DataInvitationActivate, await this.post(payload, parameters));
178
+ }
170
179
  }
171
180
  exports.CustomersClient = CustomersClient;
172
181
  //# sourceMappingURL=customersClient.js.map
@@ -0,0 +1,13 @@
1
+ import { AbstractEntity } from '../../abstractEntity';
2
+ export declare enum DataInvitationActivateFields {
3
+ COLUMN_USERNAME = "username"
4
+ }
5
+ export declare type DataInvitationActivateType = {
6
+ [DataInvitationActivateFields.COLUMN_USERNAME]: string;
7
+ };
8
+ export declare class DataInvitationActivate extends AbstractEntity<DataInvitationActivateType> {
9
+ #private;
10
+ constructor(getDataInvitationActivateInput: DataInvitationActivateType);
11
+ get username(): string;
12
+ toJSON(): DataInvitationActivateType;
13
+ }
@@ -0,0 +1,38 @@
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 _DataInvitationActivate_username;
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.DataInvitationActivate = exports.DataInvitationActivateFields = void 0;
16
+ const abstractEntity_1 = require("../../abstractEntity");
17
+ var DataInvitationActivateFields;
18
+ (function (DataInvitationActivateFields) {
19
+ DataInvitationActivateFields["COLUMN_USERNAME"] = "username";
20
+ })(DataInvitationActivateFields = exports.DataInvitationActivateFields || (exports.DataInvitationActivateFields = {}));
21
+ class DataInvitationActivate extends abstractEntity_1.AbstractEntity {
22
+ constructor(getDataInvitationActivateInput) {
23
+ super(getDataInvitationActivateInput);
24
+ _DataInvitationActivate_username.set(this, void 0);
25
+ __classPrivateFieldSet(this, _DataInvitationActivate_username, getDataInvitationActivateInput[DataInvitationActivateFields.COLUMN_USERNAME], "f");
26
+ }
27
+ get username() {
28
+ return __classPrivateFieldGet(this, _DataInvitationActivate_username, "f");
29
+ }
30
+ toJSON() {
31
+ return {
32
+ [DataInvitationActivateFields.COLUMN_USERNAME]: this.username,
33
+ };
34
+ }
35
+ }
36
+ exports.DataInvitationActivate = DataInvitationActivate;
37
+ _DataInvitationActivate_username = new WeakMap();
38
+ //# sourceMappingURL=dataInvitationActivate.js.map
@@ -12,3 +12,4 @@ export * from './entities/invitations/contact/invitationContact';
12
12
  export * from './entities/unknownLicenses/relation';
13
13
  export * from './entities/unknownLicenses/unknownLicense';
14
14
  export * from './entities/customerCredentials';
15
+ export * from './entities/dataInvitationActivate';
@@ -28,4 +28,5 @@ __exportStar(require("./entities/invitations/contact/invitationContact"), export
28
28
  __exportStar(require("./entities/unknownLicenses/relation"), exports);
29
29
  __exportStar(require("./entities/unknownLicenses/unknownLicense"), exports);
30
30
  __exportStar(require("./entities/customerCredentials"), exports);
31
+ __exportStar(require("./entities/dataInvitationActivate"), exports);
31
32
  //# sourceMappingURL=index.js.map
@@ -22,7 +22,6 @@ 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",
26
25
  COLUMN_PAUSE = "pause",
27
26
  COLUMN_UPGRADE = "upgrade",
28
27
  COLUMN_UPDATE_FRIENDLY_NAME = "updateFriendlyName",
@@ -42,7 +41,6 @@ export declare type ActionsGetData = {
42
41
  [ActionsGetFields.COLUMN_AUTO_RENEW_ON]?: string;
43
42
  [ActionsGetFields.COLUMN_CANCEL]?: string;
44
43
  [ActionsGetFields.COLUMN_CONVERSION]?: string;
45
- [ActionsGetFields.COLUMN_LATE_RENEWAL]?: string;
46
44
  [ActionsGetFields.COLUMN_PAUSE]?: string;
47
45
  [ActionsGetFields.COLUMN_UPGRADE]?: string;
48
46
  [ActionsGetFields.COLUMN_UPDATE_FRIENDLY_NAME]?: string;
@@ -64,7 +62,6 @@ export declare class ActionsGetResult extends AbstractEntity<ActionsGetData> {
64
62
  get autoRenewToEst(): string | undefined;
65
63
  get cancel(): string | undefined;
66
64
  get conversion(): string | undefined;
67
- get lateRenewal(): string | undefined;
68
65
  get pause(): string | undefined;
69
66
  get upgrade(): string | undefined;
70
67
  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_lateRenewal, _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_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,7 +34,6 @@ 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";
38
37
  ActionsGetFields["COLUMN_PAUSE"] = "pause";
39
38
  ActionsGetFields["COLUMN_UPGRADE"] = "upgrade";
40
39
  ActionsGetFields["COLUMN_UPDATE_FRIENDLY_NAME"] = "updateFriendlyName";
@@ -56,7 +55,6 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
56
55
  _ActionsGetResult_autoRenewToEst.set(this, void 0);
57
56
  _ActionsGetResult_cancel.set(this, void 0);
58
57
  _ActionsGetResult_conversion.set(this, void 0);
59
- _ActionsGetResult_lateRenewal.set(this, void 0);
60
58
  _ActionsGetResult_pause.set(this, void 0);
61
59
  _ActionsGetResult_upgrade.set(this, void 0);
62
60
  _ActionsGetResult_updateFriendlyName.set(this, void 0);
@@ -74,7 +72,6 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
74
72
  __classPrivateFieldSet(this, _ActionsGetResult_autoRenewToEst, data[ActionsGetFields.COLUMN_AUTO_RENEW_TO_EST], "f");
75
73
  __classPrivateFieldSet(this, _ActionsGetResult_cancel, data[ActionsGetFields.COLUMN_CANCEL], "f");
76
74
  __classPrivateFieldSet(this, _ActionsGetResult_conversion, data[ActionsGetFields.COLUMN_CONVERSION], "f");
77
- __classPrivateFieldSet(this, _ActionsGetResult_lateRenewal, data[ActionsGetFields.COLUMN_LATE_RENEWAL], "f");
78
75
  __classPrivateFieldSet(this, _ActionsGetResult_pause, data[ActionsGetFields.COLUMN_PAUSE], "f");
79
76
  __classPrivateFieldSet(this, _ActionsGetResult_upgrade, data[ActionsGetFields.COLUMN_UPGRADE], "f");
80
77
  __classPrivateFieldSet(this, _ActionsGetResult_updateFriendlyName, data[ActionsGetFields.COLUMN_UPDATE_FRIENDLY_NAME], "f");
@@ -117,9 +114,6 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
117
114
  get conversion() {
118
115
  return __classPrivateFieldGet(this, _ActionsGetResult_conversion, "f");
119
116
  }
120
- get lateRenewal() {
121
- return __classPrivateFieldGet(this, _ActionsGetResult_lateRenewal, "f");
122
- }
123
117
  get pause() {
124
118
  return __classPrivateFieldGet(this, _ActionsGetResult_pause, "f");
125
119
  }
@@ -149,7 +143,6 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
149
143
  [ActionsGetFields.COLUMN_AUTO_RENEW_TO_EST]: this.autoRenewToEst,
150
144
  [ActionsGetFields.COLUMN_CANCEL]: this.cancel,
151
145
  [ActionsGetFields.COLUMN_CONVERSION]: this.conversion,
152
- [ActionsGetFields.COLUMN_LATE_RENEWAL]: this.lateRenewal,
153
146
  [ActionsGetFields.COLUMN_PAUSE]: this.pause,
154
147
  [ActionsGetFields.COLUMN_UPGRADE]: this.upgrade,
155
148
  [ActionsGetFields.COLUMN_UPDATE_FRIENDLY_NAME]: this.updateFriendlyName,
@@ -160,5 +153,5 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
160
153
  }
161
154
  }
162
155
  exports.ActionsGetResult = ActionsGetResult;
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();
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();
164
157
  //# sourceMappingURL=actionsGetResult.js.map
@@ -256,6 +256,7 @@ export declare type LicenceFindDataFiltersParameters = {
256
256
  [LicenseFindResultFields.COLUMN_VENDOR_CODE]?: FiltersParameters;
257
257
  [LicenseFindResultFields.COLUMN_VENDOR_NAME]?: FiltersParameters;
258
258
  [LicenseFindResultFields.COLUMN_VENDOR_SUBSCRIPTION_ID]?: FiltersParameters;
259
+ [LicenseFindResultFields.COLUMN_ATTRIBUTES]?: Record<string, FiltersParameters>;
259
260
  };
260
261
  export declare class LicenseFindResult extends AbstractEntity<LicenseFindResultData> {
261
262
  #private;
@@ -312,6 +313,7 @@ export declare class LicenseFindResult extends AbstractEntity<LicenseFindResultD
312
313
  get vendorName(): string;
313
314
  get vendorSubscriptionId(): string | null;
314
315
  get highlight(): Highlight;
316
+ get attributes(): Record<string, string> | undefined;
315
317
  /**
316
318
  * Plain JSON object representation of the license entity.
317
319
  * @returns {@link LicenseData}
@@ -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 _LicenseFindResult_acceptEula, _LicenseFindResult_activeSeats, _LicenseFindResult_autoRenew, _LicenseFindResult_baseSeat, _LicenseFindResult_category, _LicenseFindResult_classification, _LicenseFindResult_configs, _LicenseFindResult_warnings, _LicenseFindResult_customerName, _LicenseFindResult_customerRef, _LicenseFindResult_endDate, _LicenseFindResult_friendlyName, _LicenseFindResult_id, _LicenseFindResult_enabled, _LicenseFindResult_lastUpdate, _LicenseFindResult_marketplace, _LicenseFindResult_message, _LicenseFindResult_offer, _LicenseFindResult_offerArrowsphereSku, _LicenseFindResult_orderRef, _LicenseFindResult_pricebandVendorSku, _LicenseFindResult_nextRenewalDate, _LicenseFindResult_parentLineId, _LicenseFindResult_parentOrderRef, _LicenseFindResult_partnerRef, _LicenseFindResult_periodicity, _LicenseFindResult_price, _LicenseFindResult_resellerName, _LicenseFindResult_resellerRef, _LicenseFindResult_seat, _LicenseFindResult_security, _LicenseFindResult_serviceRef, _LicenseFindResult_sku, _LicenseFindResult_startDate, _LicenseFindResult_statusCode, _LicenseFindResult_statusLabel, _LicenseFindResult_subscriptionId, _LicenseFindResult_subsidiaryName, _LicenseFindResult_term, _LicenseFindResult_trial, _LicenseFindResult_type, _LicenseFindResult_uom, _LicenseFindResult_vendorCode, _LicenseFindResult_vendorName, _LicenseFindResult_vendorSubscriptionId, _LicenseFindResult_highlight;
13
+ var _LicenseFindResult_acceptEula, _LicenseFindResult_activeSeats, _LicenseFindResult_autoRenew, _LicenseFindResult_baseSeat, _LicenseFindResult_category, _LicenseFindResult_classification, _LicenseFindResult_configs, _LicenseFindResult_warnings, _LicenseFindResult_customerName, _LicenseFindResult_customerRef, _LicenseFindResult_endDate, _LicenseFindResult_friendlyName, _LicenseFindResult_id, _LicenseFindResult_enabled, _LicenseFindResult_lastUpdate, _LicenseFindResult_marketplace, _LicenseFindResult_message, _LicenseFindResult_offer, _LicenseFindResult_offerArrowsphereSku, _LicenseFindResult_orderRef, _LicenseFindResult_pricebandVendorSku, _LicenseFindResult_nextRenewalDate, _LicenseFindResult_parentLineId, _LicenseFindResult_parentOrderRef, _LicenseFindResult_partnerRef, _LicenseFindResult_periodicity, _LicenseFindResult_price, _LicenseFindResult_resellerName, _LicenseFindResult_resellerRef, _LicenseFindResult_seat, _LicenseFindResult_security, _LicenseFindResult_serviceRef, _LicenseFindResult_sku, _LicenseFindResult_startDate, _LicenseFindResult_statusCode, _LicenseFindResult_statusLabel, _LicenseFindResult_subscriptionId, _LicenseFindResult_subsidiaryName, _LicenseFindResult_term, _LicenseFindResult_trial, _LicenseFindResult_type, _LicenseFindResult_uom, _LicenseFindResult_vendorCode, _LicenseFindResult_vendorName, _LicenseFindResult_vendorSubscriptionId, _LicenseFindResult_highlight, _LicenseFindResult_attributes;
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
15
  exports.LicenseFindResult = exports.LicenseFindResultFields = void 0;
16
16
  const activeSeatsFindResult_1 = require("./activeSeatsFindResult");
@@ -147,6 +147,7 @@ class LicenseFindResult extends abstractEntity_1.AbstractEntity {
147
147
  _LicenseFindResult_vendorName.set(this, void 0);
148
148
  _LicenseFindResult_vendorSubscriptionId.set(this, void 0);
149
149
  _LicenseFindResult_highlight.set(this, void 0);
150
+ _LicenseFindResult_attributes.set(this, void 0);
150
151
  __classPrivateFieldSet(this, _LicenseFindResult_acceptEula, data[LicenseFindResultFields.COLUMN_ACCEPT_EULA], "f");
151
152
  const activeSeats = {
152
153
  [activeSeatsFindResult_1.ActiveSeatsFindResultFields.COLUMN_LAST_UPDATE]: data[LicenseFindResultFields.COLUMN_ACTIVE_SEATS][activeSeatsFindResult_1.ActiveSeatsFindResultFields.COLUMN_LAST_UPDATE],
@@ -206,6 +207,7 @@ class LicenseFindResult extends abstractEntity_1.AbstractEntity {
206
207
  __classPrivateFieldSet(this, _LicenseFindResult_vendorName, data[LicenseFindResultFields.COLUMN_VENDOR_NAME], "f");
207
208
  __classPrivateFieldSet(this, _LicenseFindResult_vendorSubscriptionId, data[LicenseFindResultFields.COLUMN_VENDOR_SUBSCRIPTION_ID], "f");
208
209
  __classPrivateFieldSet(this, _LicenseFindResult_highlight, (_d = data[LicenseFindResultFields.COLUMN_HIGHLIGHT]) !== null && _d !== void 0 ? _d : {}, "f");
210
+ __classPrivateFieldSet(this, _LicenseFindResult_attributes, data[LicenseFindResultFields.COLUMN_ATTRIBUTES], "f");
209
211
  }
210
212
  get id() {
211
213
  return __classPrivateFieldGet(this, _LicenseFindResult_id, "f");
@@ -345,6 +347,9 @@ class LicenseFindResult extends abstractEntity_1.AbstractEntity {
345
347
  get highlight() {
346
348
  return __classPrivateFieldGet(this, _LicenseFindResult_highlight, "f");
347
349
  }
350
+ get attributes() {
351
+ return __classPrivateFieldGet(this, _LicenseFindResult_attributes, "f");
352
+ }
348
353
  /**
349
354
  * Plain JSON object representation of the license entity.
350
355
  * @returns {@link LicenseData}
@@ -401,9 +406,10 @@ class LicenseFindResult extends abstractEntity_1.AbstractEntity {
401
406
  [LicenseFindResultFields.COLUMN_VENDOR_SUBSCRIPTION_ID]: this
402
407
  .vendorSubscriptionId,
403
408
  [LicenseFindResultFields.COLUMN_HIGHLIGHT]: this.highlight,
409
+ [LicenseFindResultFields.COLUMN_ATTRIBUTES]: this.attributes,
404
410
  };
405
411
  }
406
412
  }
407
413
  exports.LicenseFindResult = LicenseFindResult;
408
- _LicenseFindResult_acceptEula = new WeakMap(), _LicenseFindResult_activeSeats = new WeakMap(), _LicenseFindResult_autoRenew = new WeakMap(), _LicenseFindResult_baseSeat = new WeakMap(), _LicenseFindResult_category = new WeakMap(), _LicenseFindResult_classification = new WeakMap(), _LicenseFindResult_configs = new WeakMap(), _LicenseFindResult_warnings = new WeakMap(), _LicenseFindResult_customerName = new WeakMap(), _LicenseFindResult_customerRef = new WeakMap(), _LicenseFindResult_endDate = new WeakMap(), _LicenseFindResult_friendlyName = new WeakMap(), _LicenseFindResult_id = new WeakMap(), _LicenseFindResult_enabled = new WeakMap(), _LicenseFindResult_lastUpdate = new WeakMap(), _LicenseFindResult_marketplace = new WeakMap(), _LicenseFindResult_message = new WeakMap(), _LicenseFindResult_offer = new WeakMap(), _LicenseFindResult_offerArrowsphereSku = new WeakMap(), _LicenseFindResult_orderRef = new WeakMap(), _LicenseFindResult_pricebandVendorSku = new WeakMap(), _LicenseFindResult_nextRenewalDate = new WeakMap(), _LicenseFindResult_parentLineId = new WeakMap(), _LicenseFindResult_parentOrderRef = new WeakMap(), _LicenseFindResult_partnerRef = new WeakMap(), _LicenseFindResult_periodicity = new WeakMap(), _LicenseFindResult_price = new WeakMap(), _LicenseFindResult_resellerName = new WeakMap(), _LicenseFindResult_resellerRef = new WeakMap(), _LicenseFindResult_seat = new WeakMap(), _LicenseFindResult_security = new WeakMap(), _LicenseFindResult_serviceRef = new WeakMap(), _LicenseFindResult_sku = new WeakMap(), _LicenseFindResult_startDate = new WeakMap(), _LicenseFindResult_statusCode = new WeakMap(), _LicenseFindResult_statusLabel = new WeakMap(), _LicenseFindResult_subscriptionId = new WeakMap(), _LicenseFindResult_subsidiaryName = new WeakMap(), _LicenseFindResult_term = new WeakMap(), _LicenseFindResult_trial = new WeakMap(), _LicenseFindResult_type = new WeakMap(), _LicenseFindResult_uom = new WeakMap(), _LicenseFindResult_vendorCode = new WeakMap(), _LicenseFindResult_vendorName = new WeakMap(), _LicenseFindResult_vendorSubscriptionId = new WeakMap(), _LicenseFindResult_highlight = new WeakMap();
414
+ _LicenseFindResult_acceptEula = new WeakMap(), _LicenseFindResult_activeSeats = new WeakMap(), _LicenseFindResult_autoRenew = new WeakMap(), _LicenseFindResult_baseSeat = new WeakMap(), _LicenseFindResult_category = new WeakMap(), _LicenseFindResult_classification = new WeakMap(), _LicenseFindResult_configs = new WeakMap(), _LicenseFindResult_warnings = new WeakMap(), _LicenseFindResult_customerName = new WeakMap(), _LicenseFindResult_customerRef = new WeakMap(), _LicenseFindResult_endDate = new WeakMap(), _LicenseFindResult_friendlyName = new WeakMap(), _LicenseFindResult_id = new WeakMap(), _LicenseFindResult_enabled = new WeakMap(), _LicenseFindResult_lastUpdate = new WeakMap(), _LicenseFindResult_marketplace = new WeakMap(), _LicenseFindResult_message = new WeakMap(), _LicenseFindResult_offer = new WeakMap(), _LicenseFindResult_offerArrowsphereSku = new WeakMap(), _LicenseFindResult_orderRef = new WeakMap(), _LicenseFindResult_pricebandVendorSku = new WeakMap(), _LicenseFindResult_nextRenewalDate = new WeakMap(), _LicenseFindResult_parentLineId = new WeakMap(), _LicenseFindResult_parentOrderRef = new WeakMap(), _LicenseFindResult_partnerRef = new WeakMap(), _LicenseFindResult_periodicity = new WeakMap(), _LicenseFindResult_price = new WeakMap(), _LicenseFindResult_resellerName = new WeakMap(), _LicenseFindResult_resellerRef = new WeakMap(), _LicenseFindResult_seat = new WeakMap(), _LicenseFindResult_security = new WeakMap(), _LicenseFindResult_serviceRef = new WeakMap(), _LicenseFindResult_sku = new WeakMap(), _LicenseFindResult_startDate = new WeakMap(), _LicenseFindResult_statusCode = new WeakMap(), _LicenseFindResult_statusLabel = new WeakMap(), _LicenseFindResult_subscriptionId = new WeakMap(), _LicenseFindResult_subsidiaryName = new WeakMap(), _LicenseFindResult_term = new WeakMap(), _LicenseFindResult_trial = new WeakMap(), _LicenseFindResult_type = new WeakMap(), _LicenseFindResult_uom = new WeakMap(), _LicenseFindResult_vendorCode = new WeakMap(), _LicenseFindResult_vendorName = new WeakMap(), _LicenseFindResult_vendorSubscriptionId = new WeakMap(), _LicenseFindResult_highlight = new WeakMap(), _LicenseFindResult_attributes = new WeakMap();
409
415
  //# sourceMappingURL=licenseFindResult.js.map
@@ -10,7 +10,8 @@ export declare enum OfferFindResultFields {
10
10
  COLUMN_LAST_UPDATE = "lastUpdate",
11
11
  COLUMN_NAME = "name",
12
12
  COLUMN_PRICE_BAND = "priceBand",
13
- COLUMN_ARROW_SUB_CATEGORIES = "arrowSubCategories"
13
+ COLUMN_ARROW_SUB_CATEGORIES = "arrowSubCategories",
14
+ COLUMN_VENDOR_NAME = "vendorName"
14
15
  }
15
16
  export declare type OfferFindResultData = {
16
17
  [OfferFindResultFields.COLUMN_ACTION_FLAGS]: ActionFlagsFindResultData;
@@ -20,6 +21,7 @@ export declare type OfferFindResultData = {
20
21
  [OfferFindResultFields.COLUMN_NAME]: string;
21
22
  [OfferFindResultFields.COLUMN_PRICE_BAND]: PriceBandFindResultData;
22
23
  [OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES]: Array<string> | null;
24
+ [OfferFindResultFields.COLUMN_VENDOR_NAME]?: string;
23
25
  };
24
26
  export declare type OfferFindResultDataKeywords = {
25
27
  [OfferFindResultFields.COLUMN_ACTION_FLAGS]?: ActionFlagsFindResultDataKeywords;
@@ -29,6 +31,7 @@ export declare type OfferFindResultDataKeywords = {
29
31
  [OfferFindResultFields.COLUMN_NAME]?: DataKeywords;
30
32
  [OfferFindResultFields.COLUMN_PRICE_BAND]?: PriceBandFindResultDataKeywords;
31
33
  [OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES]?: DataKeywords;
34
+ [OfferFindResultFields.COLUMN_VENDOR_NAME]?: DataKeywords;
32
35
  };
33
36
  export declare type OfferFindResultDataSortParameters = {
34
37
  [OfferFindResultFields.COLUMN_ACTION_FLAGS]?: ActionFlagsFindResultDataSortParameters;
@@ -38,6 +41,7 @@ export declare type OfferFindResultDataSortParameters = {
38
41
  [OfferFindResultFields.COLUMN_NAME]?: SortParameters;
39
42
  [OfferFindResultFields.COLUMN_PRICE_BAND]?: PriceBandFindResultDataSortParameters;
40
43
  [OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES]?: SortParameters;
44
+ [OfferFindResultFields.COLUMN_VENDOR_NAME]?: SortParameters;
41
45
  };
42
46
  export declare type OfferFindResultDataFiltersParameters = {
43
47
  [OfferFindResultFields.COLUMN_ACTION_FLAGS]?: ActionFlagsFindResultDataFiltersParameters;
@@ -59,5 +63,6 @@ export declare class OfferFindResult extends AbstractEntity<OfferFindResultData>
59
63
  get name(): string;
60
64
  get priceBand(): PriceBandFindResult;
61
65
  get arrowSubCategories(): Array<string> | null;
66
+ get vendorName(): string | undefined;
62
67
  toJSON(): OfferFindResultData;
63
68
  }
@@ -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 _OfferFindResult_actionFlags, _OfferFindResult_classification, _OfferFindResult_isEnabled, _OfferFindResult_lastUpdate, _OfferFindResult_name, _OfferFindResult_priceBand, _OfferFindResult_arrowSubCategories;
13
+ var _OfferFindResult_actionFlags, _OfferFindResult_classification, _OfferFindResult_isEnabled, _OfferFindResult_lastUpdate, _OfferFindResult_name, _OfferFindResult_priceBand, _OfferFindResult_arrowSubCategories, _OfferFindResult_vendorName;
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
15
  exports.OfferFindResult = exports.OfferFindResultFields = void 0;
16
16
  const abstractEntity_1 = require("../../../abstractEntity");
@@ -25,6 +25,7 @@ var OfferFindResultFields;
25
25
  OfferFindResultFields["COLUMN_NAME"] = "name";
26
26
  OfferFindResultFields["COLUMN_PRICE_BAND"] = "priceBand";
27
27
  OfferFindResultFields["COLUMN_ARROW_SUB_CATEGORIES"] = "arrowSubCategories";
28
+ OfferFindResultFields["COLUMN_VENDOR_NAME"] = "vendorName";
28
29
  })(OfferFindResultFields = exports.OfferFindResultFields || (exports.OfferFindResultFields = {}));
29
30
  class OfferFindResult extends abstractEntity_1.AbstractEntity {
30
31
  constructor(data) {
@@ -45,6 +46,7 @@ class OfferFindResult extends abstractEntity_1.AbstractEntity {
45
46
  _OfferFindResult_name.set(this, void 0);
46
47
  _OfferFindResult_priceBand.set(this, void 0);
47
48
  _OfferFindResult_arrowSubCategories.set(this, void 0);
49
+ _OfferFindResult_vendorName.set(this, void 0);
48
50
  const actionFlags = {
49
51
  [actionFlagsFindResult_1.ActionFlagsFindResultFields.COLUMN_IS_AUTO_RENEW]: data[OfferFindResultFields.COLUMN_ACTION_FLAGS][actionFlagsFindResult_1.ActionFlagsFindResultFields.COLUMN_IS_AUTO_RENEW],
50
52
  [actionFlagsFindResult_1.ActionFlagsFindResultFields.COLUMN_MANUAL_PROVISIONING]: data[OfferFindResultFields.COLUMN_ACTION_FLAGS][actionFlagsFindResult_1.ActionFlagsFindResultFields.COLUMN_MANUAL_PROVISIONING],
@@ -67,6 +69,7 @@ class OfferFindResult extends abstractEntity_1.AbstractEntity {
67
69
  };
68
70
  __classPrivateFieldSet(this, _OfferFindResult_priceBand, new priceBandFindResult_1.PriceBandFindResult(priceBand), "f");
69
71
  __classPrivateFieldSet(this, _OfferFindResult_arrowSubCategories, data[OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES], "f");
72
+ __classPrivateFieldSet(this, _OfferFindResult_vendorName, data[OfferFindResultFields.COLUMN_VENDOR_NAME], "f");
70
73
  }
71
74
  get actionFlags() {
72
75
  return __classPrivateFieldGet(this, _OfferFindResult_actionFlags, "f");
@@ -89,6 +92,9 @@ class OfferFindResult extends abstractEntity_1.AbstractEntity {
89
92
  get arrowSubCategories() {
90
93
  return __classPrivateFieldGet(this, _OfferFindResult_arrowSubCategories, "f");
91
94
  }
95
+ get vendorName() {
96
+ return __classPrivateFieldGet(this, _OfferFindResult_vendorName, "f");
97
+ }
92
98
  toJSON() {
93
99
  return {
94
100
  [OfferFindResultFields.COLUMN_ACTION_FLAGS]: this.actionFlags.toJSON(),
@@ -99,9 +105,10 @@ class OfferFindResult extends abstractEntity_1.AbstractEntity {
99
105
  [OfferFindResultFields.COLUMN_PRICE_BAND]: this.priceBand.toJSON(),
100
106
  [OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES]: this
101
107
  .arrowSubCategories,
108
+ [OfferFindResultFields.COLUMN_VENDOR_NAME]: this.vendorName,
102
109
  };
103
110
  }
104
111
  }
105
112
  exports.OfferFindResult = OfferFindResult;
106
- _OfferFindResult_actionFlags = new WeakMap(), _OfferFindResult_classification = new WeakMap(), _OfferFindResult_isEnabled = new WeakMap(), _OfferFindResult_lastUpdate = new WeakMap(), _OfferFindResult_name = new WeakMap(), _OfferFindResult_priceBand = new WeakMap(), _OfferFindResult_arrowSubCategories = new WeakMap();
113
+ _OfferFindResult_actionFlags = new WeakMap(), _OfferFindResult_classification = new WeakMap(), _OfferFindResult_isEnabled = new WeakMap(), _OfferFindResult_lastUpdate = new WeakMap(), _OfferFindResult_name = new WeakMap(), _OfferFindResult_priceBand = new WeakMap(), _OfferFindResult_arrowSubCategories = new WeakMap(), _OfferFindResult_vendorName = new WeakMap();
107
114
  //# sourceMappingURL=offerFindResult.js.map
@@ -7,6 +7,7 @@ export declare enum CompanyTypeEnum {
7
7
  }
8
8
  export declare enum RateTypeEnum {
9
9
  DISCOUNT = "discount",
10
+ DISCOUNT_UNPROTECTED = "discountUnprotected",
10
11
  UPLIFT = "uplift"
11
12
  }
12
13
  declare type RateType = {
@@ -24,6 +24,7 @@ var CompanyTypeEnum;
24
24
  var RateTypeEnum;
25
25
  (function (RateTypeEnum) {
26
26
  RateTypeEnum["DISCOUNT"] = "discount";
27
+ RateTypeEnum["DISCOUNT_UNPROTECTED"] = "discountUnprotected";
27
28
  RateTypeEnum["UPLIFT"] = "uplift";
28
29
  })(RateTypeEnum = exports.RateTypeEnum || (exports.RateTypeEnum = {}));
29
30
  class GetPricingRateResult extends abstractEntity_1.AbstractEntity {
@@ -31,7 +31,6 @@ 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 { LateRenewableLicenseResult } from './entities/lateRenewalLicense/lateRenewableLicenseResult';
35
34
  /**
36
35
  * Parameters passable to the request for refining search.
37
36
  */
@@ -423,7 +422,6 @@ export declare class LicensesClient extends AbstractRestfulClient {
423
422
  bulkAction(bulkData: BulkBodyArgument): Promise<void>;
424
423
  updateConfig(reference: string, config: ConfigFindResult): Promise<GetResult<ConfigFindResult>>;
425
424
  getLicense(licenseReference: string, parameters?: Parameters): Promise<GetResult<GetLicenseResult>>;
426
- getLateRenewableLicenses(parameters?: Parameters): Promise<GetResult<LateRenewableLicenseResult>>;
427
425
  updateLicense(licenseReference: string, payload: UpdateLicenseData, parameters?: Parameters): Promise<void | PartialResponse>;
428
426
  updateSeats(licenseReference: string, putData: UpdateSeatsData, parameters?: Parameters): Promise<void>;
429
427
  suspendLicense(licenseReference: string, payload?: PutSuspend, parameters?: Parameters): Promise<void>;
@@ -25,7 +25,6 @@ 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 lateRenewableLicenseResult_1 = require("./entities/lateRenewalLicense/lateRenewableLicenseResult");
29
28
  /**
30
29
  * Parameters passable to the request for refining search.
31
30
  */
@@ -410,10 +409,6 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
410
409
  this.path = `/${licenseReference}`;
411
410
  return new getResult_1.GetResult(getLicenseResult_1.GetLicenseResult, await this.get(parameters));
412
411
  }
413
- async getLateRenewableLicenses(parameters = {}) {
414
- this.path = `/listEligibleAdobeLateRenew`;
415
- return new getResult_1.GetResult(lateRenewableLicenseResult_1.LateRenewableLicenseResult, await this.get(parameters));
416
- }
417
412
  async updateLicense(licenseReference, payload, parameters = {}) {
418
413
  this.path = `/${licenseReference}`;
419
414
  const response = await this.patch(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.354.0-rc.jpb.3",
7
+ "version": "3.355.0-rc.fdi.1",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",
@@ -1,6 +0,0 @@
1
- export declare type LateRenewableLicenseData = {
2
- vendorSku: string;
3
- quantity: number;
4
- licenseRef?: string;
5
- offerName?: string;
6
- };
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=LicenseRenewableLicenseData.js.map
@@ -1,7 +0,0 @@
1
- import { AbstractEntity } from '../../../abstractEntity';
2
- import { LateRenewableLicenseData } from './LicenseRenewableLicenseData';
3
- export declare class LateRenewableLicenseResult extends AbstractEntity<LateRenewableLicenseData> {
4
- #private;
5
- constructor(data: LateRenewableLicenseData);
6
- toJSON(): LateRenewableLicenseData;
7
- }
@@ -1,40 +0,0 @@
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 _LateRenewableLicenseResult_vendorSku, _LateRenewableLicenseResult_quantity, _LateRenewableLicenseResult_licenseRef, _LateRenewableLicenseResult_offerName;
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- exports.LateRenewableLicenseResult = void 0;
16
- const abstractEntity_1 = require("../../../abstractEntity");
17
- class LateRenewableLicenseResult extends abstractEntity_1.AbstractEntity {
18
- constructor(data) {
19
- super(data !== null && data !== void 0 ? data : {});
20
- _LateRenewableLicenseResult_vendorSku.set(this, void 0);
21
- _LateRenewableLicenseResult_quantity.set(this, void 0);
22
- _LateRenewableLicenseResult_licenseRef.set(this, void 0);
23
- _LateRenewableLicenseResult_offerName.set(this, void 0);
24
- __classPrivateFieldSet(this, _LateRenewableLicenseResult_vendorSku, data.vendorSku, "f");
25
- __classPrivateFieldSet(this, _LateRenewableLicenseResult_quantity, data.quantity, "f");
26
- __classPrivateFieldSet(this, _LateRenewableLicenseResult_licenseRef, data === null || data === void 0 ? void 0 : data.licenseRef, "f");
27
- __classPrivateFieldSet(this, _LateRenewableLicenseResult_offerName, data === null || data === void 0 ? void 0 : data.offerName, "f");
28
- }
29
- toJSON() {
30
- return {
31
- vendorSku: __classPrivateFieldGet(this, _LateRenewableLicenseResult_vendorSku, "f"),
32
- quantity: __classPrivateFieldGet(this, _LateRenewableLicenseResult_quantity, "f"),
33
- ...(__classPrivateFieldGet(this, _LateRenewableLicenseResult_licenseRef, "f") ? { licenseRef: __classPrivateFieldGet(this, _LateRenewableLicenseResult_licenseRef, "f") } : {}),
34
- ...(__classPrivateFieldGet(this, _LateRenewableLicenseResult_offerName, "f") ? { offerName: __classPrivateFieldGet(this, _LateRenewableLicenseResult_offerName, "f") } : {}),
35
- };
36
- }
37
- }
38
- exports.LateRenewableLicenseResult = LateRenewableLicenseResult;
39
- _LateRenewableLicenseResult_vendorSku = new WeakMap(), _LateRenewableLicenseResult_quantity = new WeakMap(), _LateRenewableLicenseResult_licenseRef = new WeakMap(), _LateRenewableLicenseResult_offerName = new WeakMap();
40
- //# sourceMappingURL=lateRenewableLicenseResult.js.map