@arrowsphere/api-client 3.216.0-rc.tbo.2 → 3.217.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,14 @@
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.217.0] - 2025.08.18
7
7
  ### Added
8
- - [subscription] update type for handling subscription upgrade
8
+ - [license] add field startDate on license event
9
+
10
+
11
+ ## [3.216.0] - 2025.08.14
12
+ ### Added
13
+ - [license] add field impersonator on license event
9
14
 
10
15
  ## [3.215.0] - 2025.08.06
11
16
  ### 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,11 +77,16 @@ 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;
84
87
  orderRef?: string;
85
88
  createdAt?: string;
89
+ startDate?: string;
86
90
  customer?: LicenseEventCustomer;
87
91
  reseller?: LicenseEventReseller;
88
92
  marketplace?: string;
@@ -99,4 +103,5 @@ export interface LicenseEvent {
99
103
  user?: LicenseEventUser;
100
104
  actionType?: LicenseEventActionType;
101
105
  eventDetails?: LicenseEventDetails;
106
+ impersonator?: LicenseEventImpersonatorType;
102
107
  }
@@ -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.217.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
+ }