@arrowsphere/api-client 3.220.0-rc-cpe-2 → 3.221.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,24 +3,50 @@
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.221.0] - 2025.09.18
7
+
8
+ ### Added
9
+
10
+ - [subscription] update type for handling subscription upgrade
11
+
12
+ ## [3.220.0] - 2025.09.08
13
+
14
+ ### Added
15
+
16
+ - [catalog] Added ignoreCatalogPlan property
17
+
18
+ ### Fixed
19
+
20
+ - [supportCenter] Field topic is optional
21
+
6
22
  ## [3.219.0] - 2025.09.08
23
+
7
24
  ### Added
25
+
8
26
  - [graphql-api] add export feature
9
27
 
10
28
  ## [3.218.0] - 2025.08.27
29
+
11
30
  ### Added
31
+
12
32
  - [license] add field endDate on license
13
33
 
14
34
  ## [3.217.0] - 2025.08.18
35
+
15
36
  ### Added
37
+
16
38
  - [license] add field startDate on license event
17
39
 
18
40
  ## [3.216.0] - 2025.08.14
41
+
19
42
  ### Added
43
+
20
44
  - [license] add field impersonator on license event
21
45
 
22
46
  ## [3.215.0] - 2025.08.06
47
+
23
48
  ### Added
49
+
24
50
  - [customer] add endpoint to bulk update customers
25
51
  - [customer] add endpoint to export customers
26
52
 
@@ -10,7 +10,8 @@ export declare enum LicenseEventActionType {
10
10
  RENEW = "renew",
11
11
  SUSPENDED = "suspended",
12
12
  PRORATA = "prorata",
13
- RECURRING = "recurring"
13
+ RECURRING = "recurring",
14
+ CONVERSION = "conversion"
14
15
  }
15
16
  export declare enum LicenseEventType {
16
17
  ACKNOWLEDGED = "acknowledged",
@@ -15,6 +15,7 @@ var LicenseEventActionType;
15
15
  LicenseEventActionType["SUSPENDED"] = "suspended";
16
16
  LicenseEventActionType["PRORATA"] = "prorata";
17
17
  LicenseEventActionType["RECURRING"] = "recurring";
18
+ LicenseEventActionType["CONVERSION"] = "conversion";
18
19
  })(LicenseEventActionType = exports.LicenseEventActionType || (exports.LicenseEventActionType = {}));
19
20
  var LicenseEventType;
20
21
  (function (LicenseEventType) {
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.220.0-rc-cpe-2",
7
+ "version": "3.221.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",