@arrowsphere/api-client 3.93.0 → 3.94.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 -0
- package/build/licenses/entities/event/licenseEvent.d.ts +4 -1
- package/build/licenses/entities/event/licenseEvent.js +4 -1
- package/build/licenses/entities/license/licenseFindResult.d.ts +24 -0
- package/build/licenses/entities/license/licenseFindResult.js +32 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
|
|
7
|
+
## [3.94.0] - 2024.01.25
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- feat(licenses): add new fields and event types
|
|
11
|
+
|
|
6
12
|
## [3.93.0] - 2024.01.25
|
|
7
13
|
|
|
8
14
|
### Added
|
|
@@ -13,18 +13,21 @@ export declare enum LicenseEventActionType {
|
|
|
13
13
|
RECURRING = "recurring"
|
|
14
14
|
}
|
|
15
15
|
export declare enum LicenseEventType {
|
|
16
|
+
ACKNOWLEDGED = "acknowledged",
|
|
16
17
|
ACTIVATION_FAILURE = "activation_failure",
|
|
17
18
|
ACTIVATION_SUCCESS = "activation_success",
|
|
18
19
|
CANCELLED = "cancelled",
|
|
19
20
|
CREATED = "created",
|
|
21
|
+
PENDING = "pending",
|
|
20
22
|
PREPARATION = "preparation",
|
|
23
|
+
REJECTED = "rejected",
|
|
21
24
|
SUSPENDED = "suspended",
|
|
22
25
|
TRANSFERRED = "transferred",
|
|
23
26
|
TRANSMISSION_FAILURE = "transmission_failure",
|
|
24
27
|
TRANSMISSION_IN_PROGRESS = "transmission_in_progress",
|
|
25
28
|
TRANSMISSION_SUCCESS = "transmission_success",
|
|
26
29
|
UPDATED = "updated",
|
|
27
|
-
|
|
30
|
+
VALIDATED = "validated"
|
|
28
31
|
}
|
|
29
32
|
export declare enum LicenseEventStatusCode {
|
|
30
33
|
PREPARATION = "40",
|
|
@@ -18,18 +18,21 @@ var LicenseEventActionType;
|
|
|
18
18
|
})(LicenseEventActionType = exports.LicenseEventActionType || (exports.LicenseEventActionType = {}));
|
|
19
19
|
var LicenseEventType;
|
|
20
20
|
(function (LicenseEventType) {
|
|
21
|
+
LicenseEventType["ACKNOWLEDGED"] = "acknowledged";
|
|
21
22
|
LicenseEventType["ACTIVATION_FAILURE"] = "activation_failure";
|
|
22
23
|
LicenseEventType["ACTIVATION_SUCCESS"] = "activation_success";
|
|
23
24
|
LicenseEventType["CANCELLED"] = "cancelled";
|
|
24
25
|
LicenseEventType["CREATED"] = "created";
|
|
26
|
+
LicenseEventType["PENDING"] = "pending";
|
|
25
27
|
LicenseEventType["PREPARATION"] = "preparation";
|
|
28
|
+
LicenseEventType["REJECTED"] = "rejected";
|
|
26
29
|
LicenseEventType["SUSPENDED"] = "suspended";
|
|
27
30
|
LicenseEventType["TRANSFERRED"] = "transferred";
|
|
28
31
|
LicenseEventType["TRANSMISSION_FAILURE"] = "transmission_failure";
|
|
29
32
|
LicenseEventType["TRANSMISSION_IN_PROGRESS"] = "transmission_in_progress";
|
|
30
33
|
LicenseEventType["TRANSMISSION_SUCCESS"] = "transmission_success";
|
|
31
34
|
LicenseEventType["UPDATED"] = "updated";
|
|
32
|
-
LicenseEventType["
|
|
35
|
+
LicenseEventType["VALIDATED"] = "validated";
|
|
33
36
|
})(LicenseEventType = exports.LicenseEventType || (exports.LicenseEventType = {}));
|
|
34
37
|
var LicenseEventStatusCode;
|
|
35
38
|
(function (LicenseEventStatusCode) {
|
|
@@ -34,6 +34,10 @@ export declare enum LicenseFindResultFields {
|
|
|
34
34
|
COLUMN_MARKETPLACE = "marketplace",
|
|
35
35
|
COLUMN_MESSAGE = "message",
|
|
36
36
|
COLUMN_OFFER = "offer",
|
|
37
|
+
COLUMN_OFFER_ARROWSPHERE_SKU = "offer_arrowsphere_sku",
|
|
38
|
+
COLUMN_ORDER_REF = "order_ref",
|
|
39
|
+
COLUMN_PRICEBAND_VENDOR_SKU = "priceband_vendor_sku",
|
|
40
|
+
COLUMN_NEXT_RENEWAL_DATE = "next_renewal_date",
|
|
37
41
|
COLUMN_PARENT_LINE_ID = "parent_line_id",
|
|
38
42
|
COLUMN_PARENT_ORDER_REF = "parent_order_ref",
|
|
39
43
|
COLUMN_PARTNER_REF = "partner_ref",
|
|
@@ -81,6 +85,10 @@ export declare type LicenseFindResultData = {
|
|
|
81
85
|
[LicenseFindResultFields.COLUMN_MARKETPLACE]: string;
|
|
82
86
|
[LicenseFindResultFields.COLUMN_MESSAGE]: string;
|
|
83
87
|
[LicenseFindResultFields.COLUMN_OFFER]: string;
|
|
88
|
+
[LicenseFindResultFields.COLUMN_OFFER_ARROWSPHERE_SKU]: string;
|
|
89
|
+
[LicenseFindResultFields.COLUMN_ORDER_REF]: string;
|
|
90
|
+
[LicenseFindResultFields.COLUMN_PRICEBAND_VENDOR_SKU]: string;
|
|
91
|
+
[LicenseFindResultFields.COLUMN_NEXT_RENEWAL_DATE]: string;
|
|
84
92
|
[LicenseFindResultFields.COLUMN_PARENT_LINE_ID]: number | null;
|
|
85
93
|
[LicenseFindResultFields.COLUMN_PARENT_ORDER_REF]: string | null;
|
|
86
94
|
[LicenseFindResultFields.COLUMN_PARTNER_REF]: string;
|
|
@@ -125,6 +133,10 @@ export declare type LicenceFindDataKeywords = {
|
|
|
125
133
|
[LicenseFindResultFields.COLUMN_MARKETPLACE]?: DataKeywords;
|
|
126
134
|
[LicenseFindResultFields.COLUMN_MESSAGE]?: DataKeywords;
|
|
127
135
|
[LicenseFindResultFields.COLUMN_OFFER]?: DataKeywords;
|
|
136
|
+
[LicenseFindResultFields.COLUMN_OFFER_ARROWSPHERE_SKU]?: DataKeywords;
|
|
137
|
+
[LicenseFindResultFields.COLUMN_ORDER_REF]?: DataKeywords;
|
|
138
|
+
[LicenseFindResultFields.COLUMN_PRICEBAND_VENDOR_SKU]?: DataKeywords;
|
|
139
|
+
[LicenseFindResultFields.COLUMN_NEXT_RENEWAL_DATE]?: DataKeywords;
|
|
128
140
|
[LicenseFindResultFields.COLUMN_PARENT_LINE_ID]?: DataKeywords;
|
|
129
141
|
[LicenseFindResultFields.COLUMN_PARENT_ORDER_REF]?: DataKeywords;
|
|
130
142
|
[LicenseFindResultFields.COLUMN_PARTNER_REF]?: DataKeywords;
|
|
@@ -168,6 +180,10 @@ export declare type LicenceFindDataSortParameters = {
|
|
|
168
180
|
[LicenseFindResultFields.COLUMN_MARKETPLACE]?: SortParameters;
|
|
169
181
|
[LicenseFindResultFields.COLUMN_MESSAGE]?: SortParameters;
|
|
170
182
|
[LicenseFindResultFields.COLUMN_OFFER]?: SortParameters;
|
|
183
|
+
[LicenseFindResultFields.COLUMN_OFFER_ARROWSPHERE_SKU]?: SortParameters;
|
|
184
|
+
[LicenseFindResultFields.COLUMN_ORDER_REF]?: SortParameters;
|
|
185
|
+
[LicenseFindResultFields.COLUMN_PRICEBAND_VENDOR_SKU]?: SortParameters;
|
|
186
|
+
[LicenseFindResultFields.COLUMN_NEXT_RENEWAL_DATE]?: SortParameters;
|
|
171
187
|
[LicenseFindResultFields.COLUMN_PARENT_LINE_ID]?: SortParameters;
|
|
172
188
|
[LicenseFindResultFields.COLUMN_PARENT_ORDER_REF]?: SortParameters;
|
|
173
189
|
[LicenseFindResultFields.COLUMN_PARTNER_REF]?: SortParameters;
|
|
@@ -211,6 +227,10 @@ export declare type LicenceFindDataFiltersParameters = {
|
|
|
211
227
|
[LicenseFindResultFields.COLUMN_MARKETPLACE]?: FiltersParameters;
|
|
212
228
|
[LicenseFindResultFields.COLUMN_MESSAGE]?: FiltersParameters;
|
|
213
229
|
[LicenseFindResultFields.COLUMN_OFFER]?: FiltersParameters;
|
|
230
|
+
[LicenseFindResultFields.COLUMN_OFFER_ARROWSPHERE_SKU]?: FiltersParameters;
|
|
231
|
+
[LicenseFindResultFields.COLUMN_ORDER_REF]?: FiltersParameters;
|
|
232
|
+
[LicenseFindResultFields.COLUMN_PRICEBAND_VENDOR_SKU]?: FiltersParameters;
|
|
233
|
+
[LicenseFindResultFields.COLUMN_NEXT_RENEWAL_DATE]?: FiltersParameters;
|
|
214
234
|
[LicenseFindResultFields.COLUMN_PARENT_LINE_ID]?: FiltersParameters;
|
|
215
235
|
[LicenseFindResultFields.COLUMN_PARENT_ORDER_REF]?: FiltersParameters;
|
|
216
236
|
[LicenseFindResultFields.COLUMN_PARTNER_REF]?: FiltersParameters;
|
|
@@ -262,6 +282,10 @@ export declare class LicenseFindResult extends AbstractEntity<LicenseFindResultD
|
|
|
262
282
|
get marketplace(): string;
|
|
263
283
|
get message(): string;
|
|
264
284
|
get offer(): string;
|
|
285
|
+
get offerArrowsphereSku(): string;
|
|
286
|
+
get orderRef(): string;
|
|
287
|
+
get pricebandVendorSku(): string;
|
|
288
|
+
get nextRenewalDate(): string;
|
|
265
289
|
get parentLineId(): number | null;
|
|
266
290
|
get parentOrderRef(): string | null;
|
|
267
291
|
get partnerRef(): string;
|
|
@@ -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_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;
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.LicenseFindResult = exports.LicenseFindResultFields = void 0;
|
|
16
16
|
const activeSeatsFindResult_1 = require("./activeSeatsFindResult");
|
|
@@ -42,6 +42,10 @@ var LicenseFindResultFields;
|
|
|
42
42
|
LicenseFindResultFields["COLUMN_MARKETPLACE"] = "marketplace";
|
|
43
43
|
LicenseFindResultFields["COLUMN_MESSAGE"] = "message";
|
|
44
44
|
LicenseFindResultFields["COLUMN_OFFER"] = "offer";
|
|
45
|
+
LicenseFindResultFields["COLUMN_OFFER_ARROWSPHERE_SKU"] = "offer_arrowsphere_sku";
|
|
46
|
+
LicenseFindResultFields["COLUMN_ORDER_REF"] = "order_ref";
|
|
47
|
+
LicenseFindResultFields["COLUMN_PRICEBAND_VENDOR_SKU"] = "priceband_vendor_sku";
|
|
48
|
+
LicenseFindResultFields["COLUMN_NEXT_RENEWAL_DATE"] = "next_renewal_date";
|
|
45
49
|
LicenseFindResultFields["COLUMN_PARENT_LINE_ID"] = "parent_line_id";
|
|
46
50
|
LicenseFindResultFields["COLUMN_PARENT_ORDER_REF"] = "parent_order_ref";
|
|
47
51
|
LicenseFindResultFields["COLUMN_PARTNER_REF"] = "partner_ref";
|
|
@@ -114,6 +118,10 @@ class LicenseFindResult extends abstractEntity_1.AbstractEntity {
|
|
|
114
118
|
_LicenseFindResult_marketplace.set(this, void 0);
|
|
115
119
|
_LicenseFindResult_message.set(this, void 0);
|
|
116
120
|
_LicenseFindResult_offer.set(this, void 0);
|
|
121
|
+
_LicenseFindResult_offerArrowsphereSku.set(this, void 0);
|
|
122
|
+
_LicenseFindResult_orderRef.set(this, void 0);
|
|
123
|
+
_LicenseFindResult_pricebandVendorSku.set(this, void 0);
|
|
124
|
+
_LicenseFindResult_nextRenewalDate.set(this, void 0);
|
|
117
125
|
_LicenseFindResult_parentLineId.set(this, void 0);
|
|
118
126
|
_LicenseFindResult_parentOrderRef.set(this, void 0);
|
|
119
127
|
_LicenseFindResult_partnerRef.set(this, void 0);
|
|
@@ -160,6 +168,10 @@ class LicenseFindResult extends abstractEntity_1.AbstractEntity {
|
|
|
160
168
|
__classPrivateFieldSet(this, _LicenseFindResult_marketplace, data[LicenseFindResultFields.COLUMN_MARKETPLACE], "f");
|
|
161
169
|
__classPrivateFieldSet(this, _LicenseFindResult_message, data[LicenseFindResultFields.COLUMN_MESSAGE], "f");
|
|
162
170
|
__classPrivateFieldSet(this, _LicenseFindResult_offer, data[LicenseFindResultFields.COLUMN_OFFER], "f");
|
|
171
|
+
__classPrivateFieldSet(this, _LicenseFindResult_offerArrowsphereSku, data[LicenseFindResultFields.COLUMN_OFFER_ARROWSPHERE_SKU], "f");
|
|
172
|
+
__classPrivateFieldSet(this, _LicenseFindResult_orderRef, data[LicenseFindResultFields.COLUMN_ORDER_REF], "f");
|
|
173
|
+
__classPrivateFieldSet(this, _LicenseFindResult_pricebandVendorSku, data[LicenseFindResultFields.COLUMN_PRICEBAND_VENDOR_SKU], "f");
|
|
174
|
+
__classPrivateFieldSet(this, _LicenseFindResult_nextRenewalDate, data[LicenseFindResultFields.COLUMN_NEXT_RENEWAL_DATE], "f");
|
|
163
175
|
__classPrivateFieldSet(this, _LicenseFindResult_parentLineId, data[LicenseFindResultFields.COLUMN_PARENT_LINE_ID], "f");
|
|
164
176
|
__classPrivateFieldSet(this, _LicenseFindResult_parentOrderRef, data[LicenseFindResultFields.COLUMN_PARENT_ORDER_REF], "f");
|
|
165
177
|
__classPrivateFieldSet(this, _LicenseFindResult_partnerRef, data[LicenseFindResultFields.COLUMN_PARTNER_REF], "f");
|
|
@@ -248,6 +260,18 @@ class LicenseFindResult extends abstractEntity_1.AbstractEntity {
|
|
|
248
260
|
get offer() {
|
|
249
261
|
return __classPrivateFieldGet(this, _LicenseFindResult_offer, "f");
|
|
250
262
|
}
|
|
263
|
+
get offerArrowsphereSku() {
|
|
264
|
+
return __classPrivateFieldGet(this, _LicenseFindResult_offerArrowsphereSku, "f");
|
|
265
|
+
}
|
|
266
|
+
get orderRef() {
|
|
267
|
+
return __classPrivateFieldGet(this, _LicenseFindResult_orderRef, "f");
|
|
268
|
+
}
|
|
269
|
+
get pricebandVendorSku() {
|
|
270
|
+
return __classPrivateFieldGet(this, _LicenseFindResult_pricebandVendorSku, "f");
|
|
271
|
+
}
|
|
272
|
+
get nextRenewalDate() {
|
|
273
|
+
return __classPrivateFieldGet(this, _LicenseFindResult_nextRenewalDate, "f");
|
|
274
|
+
}
|
|
251
275
|
get parentLineId() {
|
|
252
276
|
return __classPrivateFieldGet(this, _LicenseFindResult_parentLineId, "f");
|
|
253
277
|
}
|
|
@@ -345,6 +369,12 @@ class LicenseFindResult extends abstractEntity_1.AbstractEntity {
|
|
|
345
369
|
[LicenseFindResultFields.COLUMN_MARKETPLACE]: this.marketplace,
|
|
346
370
|
[LicenseFindResultFields.COLUMN_MESSAGE]: this.message,
|
|
347
371
|
[LicenseFindResultFields.COLUMN_OFFER]: this.offer,
|
|
372
|
+
[LicenseFindResultFields.COLUMN_OFFER_ARROWSPHERE_SKU]: this
|
|
373
|
+
.offerArrowsphereSku,
|
|
374
|
+
[LicenseFindResultFields.COLUMN_ORDER_REF]: this.orderRef,
|
|
375
|
+
[LicenseFindResultFields.COLUMN_PRICEBAND_VENDOR_SKU]: this
|
|
376
|
+
.pricebandVendorSku,
|
|
377
|
+
[LicenseFindResultFields.COLUMN_NEXT_RENEWAL_DATE]: this.nextRenewalDate,
|
|
348
378
|
[LicenseFindResultFields.COLUMN_PARENT_LINE_ID]: this.parentLineId,
|
|
349
379
|
[LicenseFindResultFields.COLUMN_PARENT_ORDER_REF]: this.parentOrderRef,
|
|
350
380
|
[LicenseFindResultFields.COLUMN_PARTNER_REF]: this.partnerRef,
|
|
@@ -374,5 +404,5 @@ class LicenseFindResult extends abstractEntity_1.AbstractEntity {
|
|
|
374
404
|
}
|
|
375
405
|
}
|
|
376
406
|
exports.LicenseFindResult = LicenseFindResult;
|
|
377
|
-
_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_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();
|
|
407
|
+
_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();
|
|
378
408
|
//# sourceMappingURL=licenseFindResult.js.map
|
package/package.json
CHANGED