@arrowsphere/api-client 3.73.0-rc.bdj.1 → 3.73.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,11 @@
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.73.0] - 2023-12-06
7
+
8
+ ### Changed
9
+ - Add License priceBand saleConstrainst
10
+
6
11
  ## [3.72.0] - 2023-12-05
7
12
 
8
13
  ### Changed
@@ -311,7 +311,7 @@ class LicenseGetResult extends abstractEntity_1.AbstractEntity {
311
311
  [LicenseGetFields.COLUMN_PROMOTION]: (_d = this.promotion) === null || _d === void 0 ? void 0 : _d.toJSON(),
312
312
  [LicenseGetFields.COLUMN_ASSETS]: (_e = this.assets) === null || _e === void 0 ? void 0 : _e.toJSON(),
313
313
  [LicenseGetFields.COLUMN_EXTRA_DATA]: (_f = this.extraData) === null || _f === void 0 ? void 0 : _f.map((extraData) => extraData.toJSON()),
314
- [LicenseGetFields.COLUMN_PRICE_BAND]: (_g = __classPrivateFieldGet(this, _LicenseGetResult_priceBand, "f")) === null || _g === void 0 ? void 0 : _g.toJSON(),
314
+ [LicenseGetFields.COLUMN_PRICE_BAND]: (_g = this.priceBand) === null || _g === void 0 ? void 0 : _g.toJSON(),
315
315
  };
316
316
  }
317
317
  }
@@ -1,5 +1,5 @@
1
1
  import { AbstractEntity } from '../../../abstractEntity';
2
- import { SaleConstraintsFindResultData } from '../offer/priceband/saleConstraintsFindResult';
2
+ import { SaleConstraintsFindResult, SaleConstraintsFindResultData } from '../offer/priceband/saleConstraintsFindResult';
3
3
  export declare enum PriceBandDataFields {
4
4
  SALE_CONTRAINSTS = "saleConstraints"
5
5
  }
@@ -9,5 +9,6 @@ export declare type PriceBandData = {
9
9
  export declare class PriceBandGetResult extends AbstractEntity<PriceBandData> {
10
10
  #private;
11
11
  constructor(data: PriceBandData);
12
+ get saleConstraints(): SaleConstraintsFindResult | undefined;
12
13
  toJSON(): PriceBandData;
13
14
  }
@@ -27,11 +27,13 @@ class PriceBandGetResult extends abstractEntity_1.AbstractEntity {
27
27
  ? new saleConstraintsFindResult_1.SaleConstraintsFindResult(data[PriceBandDataFields.SALE_CONTRAINSTS])
28
28
  : undefined, "f");
29
29
  }
30
+ get saleConstraints() {
31
+ return __classPrivateFieldGet(this, _PriceBandGetResult_saleConstraints, "f");
32
+ }
30
33
  toJSON() {
34
+ var _a;
31
35
  return {
32
- [PriceBandDataFields.SALE_CONTRAINSTS]: __classPrivateFieldGet(this, _PriceBandGetResult_saleConstraints, "f")
33
- ? __classPrivateFieldGet(this, _PriceBandGetResult_saleConstraints, "f").toJSON()
34
- : undefined,
36
+ [PriceBandDataFields.SALE_CONTRAINSTS]: (_a = this.saleConstraints) === null || _a === void 0 ? void 0 : _a.toJSON(),
35
37
  };
36
38
  }
37
39
  }
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.73.0-rc.bdj.1",
7
+ "version": "3.73.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",