@arrowsphere/api-client 3.215.0 → 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,6 +3,10 @@
|
|
|
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.14
|
|
7
|
+
### Added
|
|
8
|
+
- [license] add field impersonator on license event
|
|
9
|
+
|
|
6
10
|
## [3.215.0] - 2025.08.06
|
|
7
11
|
### Added
|
|
8
12
|
- [customer] add endpoint to bulk update customers
|
|
@@ -77,6 +77,10 @@ export interface LicenseEventDetails {
|
|
|
77
77
|
message?: string;
|
|
78
78
|
source?: string | null;
|
|
79
79
|
}
|
|
80
|
+
export declare type LicenseEventImpersonatorType = {
|
|
81
|
+
email?: string;
|
|
82
|
+
name?: string;
|
|
83
|
+
};
|
|
80
84
|
export interface LicenseEvent {
|
|
81
85
|
id?: number;
|
|
82
86
|
partnerRef?: string;
|
|
@@ -98,4 +102,5 @@ export interface LicenseEvent {
|
|
|
98
102
|
user?: LicenseEventUser;
|
|
99
103
|
actionType?: LicenseEventActionType;
|
|
100
104
|
eventDetails?: LicenseEventDetails;
|
|
105
|
+
impersonator?: LicenseEventImpersonatorType;
|
|
101
106
|
}
|
package/package.json
CHANGED