@arrowsphere/api-client 3.352.2 → 3.353.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,16 @@
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.353.0] - 2026.03.17
7
+
8
+ ### Added
9
+ - [License] add discountUnprotected to RateTypeEnum
10
+
11
+ ## [3.352.3] - 2026.03.17
12
+
13
+ ### Updated
14
+ - Updated the right of deployment to use npm publish on github
15
+
6
16
  ## [3.352.2] - 2026.03.17
7
17
 
8
18
  ### Updated
@@ -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 {
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.352.2",
7
+ "version": "3.353.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",