@arrowsphere/api-client 3.353.1 → 3.354.0-rc-cpe-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -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;
|
|
@@ -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
|
package/package.json
CHANGED