@arrowsphere/api-client 3.216.0-rc.tbo.2 → 3.216.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,9 +3,9 @@
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.216.0] - 2025.08.06
6
+ ## [3.216.0] - 2025.08.14
7
7
  ### Added
8
- - [subscription] update type for handling subscription upgrade
8
+ - [license] add field impersonator on license event
9
9
 
10
10
  ## [3.215.0] - 2025.08.06
11
11
  ### Added
@@ -10,8 +10,7 @@ export declare enum LicenseEventActionType {
10
10
  RENEW = "renew",
11
11
  SUSPENDED = "suspended",
12
12
  PRORATA = "prorata",
13
- RECURRING = "recurring",
14
- CONVERSION = "conversion"
13
+ RECURRING = "recurring"
15
14
  }
16
15
  export declare enum LicenseEventType {
17
16
  ACKNOWLEDGED = "acknowledged",
@@ -78,6 +77,10 @@ export interface LicenseEventDetails {
78
77
  message?: string;
79
78
  source?: string | null;
80
79
  }
80
+ export declare type LicenseEventImpersonatorType = {
81
+ email?: string;
82
+ name?: string;
83
+ };
81
84
  export interface LicenseEvent {
82
85
  id?: number;
83
86
  partnerRef?: string;
@@ -99,4 +102,5 @@ export interface LicenseEvent {
99
102
  user?: LicenseEventUser;
100
103
  actionType?: LicenseEventActionType;
101
104
  eventDetails?: LicenseEventDetails;
105
+ impersonator?: LicenseEventImpersonatorType;
102
106
  }
@@ -15,7 +15,6 @@ var LicenseEventActionType;
15
15
  LicenseEventActionType["SUSPENDED"] = "suspended";
16
16
  LicenseEventActionType["PRORATA"] = "prorata";
17
17
  LicenseEventActionType["RECURRING"] = "recurring";
18
- LicenseEventActionType["CONVERSION"] = "conversion";
19
18
  })(LicenseEventActionType = exports.LicenseEventActionType || (exports.LicenseEventActionType = {}));
20
19
  var LicenseEventType;
21
20
  (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.216.0-rc.tbo.2",
7
+ "version": "3.216.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",
@@ -90,4 +90,4 @@
90
90
  "type-fest": "^2.19.0",
91
91
  "validatorjs": "3.22.1"
92
92
  }
93
- }
93
+ }