@arrowsphere/api-client 3.220.0 → 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,30 +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
+
6
12
  ## [3.220.0] - 2025.09.08
13
+
7
14
  ### Added
15
+
8
16
  - [catalog] Added ignoreCatalogPlan property
17
+
9
18
  ### Fixed
19
+
10
20
  - [supportCenter] Field topic is optional
11
21
 
12
22
  ## [3.219.0] - 2025.09.08
23
+
13
24
  ### Added
25
+
14
26
  - [graphql-api] add export feature
15
27
 
16
28
  ## [3.218.0] - 2025.08.27
29
+
17
30
  ### Added
31
+
18
32
  - [license] add field endDate on license
19
33
 
20
34
  ## [3.217.0] - 2025.08.18
35
+
21
36
  ### Added
37
+
22
38
  - [license] add field startDate on license event
23
39
 
24
40
  ## [3.216.0] - 2025.08.14
41
+
25
42
  ### Added
43
+
26
44
  - [license] add field impersonator on license event
27
45
 
28
46
  ## [3.215.0] - 2025.08.06
47
+
29
48
  ### Added
49
+
30
50
  - [customer] add endpoint to bulk update customers
31
51
  - [customer] add endpoint to export customers
32
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",
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",