@arrowsphere/api-client 3.353.1 → 3.354.0-rc-cpe-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.
@@ -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;
@@ -59,5 +61,6 @@ export declare class OfferFindResult extends AbstractEntity<OfferFindResultData>
59
61
  get name(): string;
60
62
  get priceBand(): PriceBandFindResult;
61
63
  get arrowSubCategories(): Array<string> | null;
64
+ get vendorName(): string | undefined;
62
65
  toJSON(): OfferFindResultData;
63
66
  }
@@ -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
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/ArrowSphere/nodejs-api-client.git"
6
6
  },
7
- "version": "3.353.1",
7
+ "version": "3.354.0-rc-cpe-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",