@arrowsphere/api-client 3.63.0 → 3.64.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,12 @@
|
|
|
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.64.0] - 2023-11-14
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- Add more license event types, add license event action enums
|
|
10
|
+
|
|
11
|
+
|
|
6
12
|
## [3.63.0] - 2023-11-13
|
|
7
13
|
|
|
8
14
|
### Changed
|
|
@@ -8,14 +8,37 @@ export declare enum LicenseEventActionType {
|
|
|
8
8
|
QUANTITY_UPDATE = "quantityUpdate",
|
|
9
9
|
REACTIVATED = "reactivated",
|
|
10
10
|
RENEW = "renew",
|
|
11
|
-
SUSPENDED = "suspended"
|
|
11
|
+
SUSPENDED = "suspended",
|
|
12
|
+
PRORATA = "prorata"
|
|
13
|
+
}
|
|
14
|
+
export declare enum LicenseEventType {
|
|
15
|
+
ACTIVATION_FAILURE = "activation_failure",
|
|
16
|
+
ACTIVATION_SUCCESS = "activation_success",
|
|
17
|
+
CANCELLED = "cancelled",
|
|
18
|
+
CREATED = "created",
|
|
19
|
+
PREPARATION = "preparation",
|
|
20
|
+
SUSPENDED = "suspended",
|
|
21
|
+
TRANSFERRED = "transferred",
|
|
22
|
+
TRANSMISSION_FAILURE = "transmission_failure",
|
|
23
|
+
TRANSMISSION_IN_PROGRESS = "transmission_in_progress",
|
|
24
|
+
TRANSMISSION_SUCCESS = "transmission_success",
|
|
25
|
+
UPDATED = "updated",
|
|
26
|
+
PENDING = "pending"
|
|
12
27
|
}
|
|
13
28
|
export declare enum LicenseEventStatusCode {
|
|
29
|
+
PREPARATION = "40",
|
|
30
|
+
TRANSMISSION_IN_PROGRESS = "42",
|
|
31
|
+
TRANSMISSION_FAILURE = "43",
|
|
14
32
|
PENDING = "62",
|
|
33
|
+
TRANSMISSION_SUCCESS = "44",
|
|
15
34
|
IN_PROGRESS = "72",
|
|
16
35
|
REJECTED = "85",
|
|
17
|
-
COMPLETED = "86"
|
|
36
|
+
COMPLETED = "86",
|
|
37
|
+
SUSPENDED = "87",
|
|
38
|
+
CANCELLED = "89",
|
|
39
|
+
TRANSFERRED = "126"
|
|
18
40
|
}
|
|
41
|
+
export declare const LicenseEventStatusActionCodes: Partial<Record<LicenseEventStatusCode, LicenseEventType>>;
|
|
19
42
|
export interface LicenseEventVendor {
|
|
20
43
|
name: string;
|
|
21
44
|
code: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LicenseEventStatusCode = exports.LicenseEventActionType = void 0;
|
|
3
|
+
exports.LicenseEventStatusActionCodes = exports.LicenseEventStatusCode = exports.LicenseEventType = exports.LicenseEventActionType = void 0;
|
|
4
4
|
var LicenseEventActionType;
|
|
5
5
|
(function (LicenseEventActionType) {
|
|
6
6
|
LicenseEventActionType["AUTO_RENEW_OFF"] = "autoRenewOff";
|
|
@@ -13,12 +13,47 @@ var LicenseEventActionType;
|
|
|
13
13
|
LicenseEventActionType["REACTIVATED"] = "reactivated";
|
|
14
14
|
LicenseEventActionType["RENEW"] = "renew";
|
|
15
15
|
LicenseEventActionType["SUSPENDED"] = "suspended";
|
|
16
|
+
LicenseEventActionType["PRORATA"] = "prorata";
|
|
16
17
|
})(LicenseEventActionType = exports.LicenseEventActionType || (exports.LicenseEventActionType = {}));
|
|
18
|
+
var LicenseEventType;
|
|
19
|
+
(function (LicenseEventType) {
|
|
20
|
+
LicenseEventType["ACTIVATION_FAILURE"] = "activation_failure";
|
|
21
|
+
LicenseEventType["ACTIVATION_SUCCESS"] = "activation_success";
|
|
22
|
+
LicenseEventType["CANCELLED"] = "cancelled";
|
|
23
|
+
LicenseEventType["CREATED"] = "created";
|
|
24
|
+
LicenseEventType["PREPARATION"] = "preparation";
|
|
25
|
+
LicenseEventType["SUSPENDED"] = "suspended";
|
|
26
|
+
LicenseEventType["TRANSFERRED"] = "transferred";
|
|
27
|
+
LicenseEventType["TRANSMISSION_FAILURE"] = "transmission_failure";
|
|
28
|
+
LicenseEventType["TRANSMISSION_IN_PROGRESS"] = "transmission_in_progress";
|
|
29
|
+
LicenseEventType["TRANSMISSION_SUCCESS"] = "transmission_success";
|
|
30
|
+
LicenseEventType["UPDATED"] = "updated";
|
|
31
|
+
LicenseEventType["PENDING"] = "pending";
|
|
32
|
+
})(LicenseEventType = exports.LicenseEventType || (exports.LicenseEventType = {}));
|
|
17
33
|
var LicenseEventStatusCode;
|
|
18
34
|
(function (LicenseEventStatusCode) {
|
|
35
|
+
LicenseEventStatusCode["PREPARATION"] = "40";
|
|
36
|
+
LicenseEventStatusCode["TRANSMISSION_IN_PROGRESS"] = "42";
|
|
37
|
+
LicenseEventStatusCode["TRANSMISSION_FAILURE"] = "43";
|
|
19
38
|
LicenseEventStatusCode["PENDING"] = "62";
|
|
39
|
+
LicenseEventStatusCode["TRANSMISSION_SUCCESS"] = "44";
|
|
20
40
|
LicenseEventStatusCode["IN_PROGRESS"] = "72";
|
|
21
41
|
LicenseEventStatusCode["REJECTED"] = "85";
|
|
22
42
|
LicenseEventStatusCode["COMPLETED"] = "86";
|
|
43
|
+
LicenseEventStatusCode["SUSPENDED"] = "87";
|
|
44
|
+
LicenseEventStatusCode["CANCELLED"] = "89";
|
|
45
|
+
LicenseEventStatusCode["TRANSFERRED"] = "126";
|
|
23
46
|
})(LicenseEventStatusCode = exports.LicenseEventStatusCode || (exports.LicenseEventStatusCode = {}));
|
|
47
|
+
exports.LicenseEventStatusActionCodes = {
|
|
48
|
+
[LicenseEventStatusCode.PREPARATION]: LicenseEventType.PREPARATION,
|
|
49
|
+
[LicenseEventStatusCode.TRANSMISSION_IN_PROGRESS]: LicenseEventType.TRANSMISSION_IN_PROGRESS,
|
|
50
|
+
[LicenseEventStatusCode.TRANSMISSION_FAILURE]: LicenseEventType.TRANSMISSION_FAILURE,
|
|
51
|
+
[LicenseEventStatusCode.TRANSMISSION_SUCCESS]: LicenseEventType.TRANSMISSION_SUCCESS,
|
|
52
|
+
[LicenseEventStatusCode.REJECTED]: LicenseEventType.ACTIVATION_FAILURE,
|
|
53
|
+
[LicenseEventStatusCode.COMPLETED]: LicenseEventType.ACTIVATION_SUCCESS,
|
|
54
|
+
[LicenseEventStatusCode.SUSPENDED]: LicenseEventType.SUSPENDED,
|
|
55
|
+
[LicenseEventStatusCode.CANCELLED]: LicenseEventType.CANCELLED,
|
|
56
|
+
[LicenseEventStatusCode.TRANSFERRED]: LicenseEventType.TRANSFERRED,
|
|
57
|
+
[LicenseEventStatusCode.PENDING]: LicenseEventType.PENDING,
|
|
58
|
+
};
|
|
24
59
|
//# sourceMappingURL=licenseEvent.js.map
|
package/package.json
CHANGED