@arrowsphere/api-client 3.62.0-rc.bdj.1 → 3.63.0-rc.wev.1
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,11 @@
|
|
|
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.62.0] - 2023-11-08
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- add partners delete endpoint
|
|
10
|
+
|
|
6
11
|
## [3.61.0] - 2023-11-02
|
|
7
12
|
|
|
8
13
|
### Changed
|
|
@@ -10,12 +10,34 @@ export declare enum LicenseEventActionType {
|
|
|
10
10
|
RENEW = "renew",
|
|
11
11
|
SUSPENDED = "suspended"
|
|
12
12
|
}
|
|
13
|
+
export declare enum LicenseEventType {
|
|
14
|
+
ACTIVATION_FAILURE = "activation_failure",
|
|
15
|
+
ACTIVATION_SUCCESS = "activation_success",
|
|
16
|
+
CANCELLED = "cancelled",
|
|
17
|
+
CREATED = "created",
|
|
18
|
+
PREPARATION = "preparation",
|
|
19
|
+
SUSPENDED = "suspended",
|
|
20
|
+
TRANSFERRED = "transferred",
|
|
21
|
+
TRANSMISSION_FAILURE = "transmission_failure",
|
|
22
|
+
TRANSMISSION_IN_PROGRESS = "transmission_in_progress",
|
|
23
|
+
TRANSMISSION_SUCCESS = "transmission_success",
|
|
24
|
+
UPDATED = "updated",
|
|
25
|
+
PENDING = "pending"
|
|
26
|
+
}
|
|
13
27
|
export declare enum LicenseEventStatusCode {
|
|
28
|
+
PREPARATION = "40",
|
|
29
|
+
TRANSMISSION_IN_PROGRESS = "42",
|
|
30
|
+
TRANSMISSION_FAILURE = "43",
|
|
14
31
|
PENDING = "62",
|
|
32
|
+
TRANSMISSION_SUCCESS = "44",
|
|
15
33
|
IN_PROGRESS = "72",
|
|
16
34
|
REJECTED = "85",
|
|
17
|
-
COMPLETED = "86"
|
|
35
|
+
COMPLETED = "86",
|
|
36
|
+
SUSPENDED = "87",
|
|
37
|
+
CANCELLED = "89",
|
|
38
|
+
TRANSFERRED = "126"
|
|
18
39
|
}
|
|
40
|
+
export declare const LicenseEventStatusActionCodes: Partial<Record<LicenseEventStatusCode, LicenseEventType>>;
|
|
19
41
|
export interface LicenseEventVendor {
|
|
20
42
|
name: string;
|
|
21
43
|
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";
|
|
@@ -14,11 +14,45 @@ var LicenseEventActionType;
|
|
|
14
14
|
LicenseEventActionType["RENEW"] = "renew";
|
|
15
15
|
LicenseEventActionType["SUSPENDED"] = "suspended";
|
|
16
16
|
})(LicenseEventActionType = exports.LicenseEventActionType || (exports.LicenseEventActionType = {}));
|
|
17
|
+
var LicenseEventType;
|
|
18
|
+
(function (LicenseEventType) {
|
|
19
|
+
LicenseEventType["ACTIVATION_FAILURE"] = "activation_failure";
|
|
20
|
+
LicenseEventType["ACTIVATION_SUCCESS"] = "activation_success";
|
|
21
|
+
LicenseEventType["CANCELLED"] = "cancelled";
|
|
22
|
+
LicenseEventType["CREATED"] = "created";
|
|
23
|
+
LicenseEventType["PREPARATION"] = "preparation";
|
|
24
|
+
LicenseEventType["SUSPENDED"] = "suspended";
|
|
25
|
+
LicenseEventType["TRANSFERRED"] = "transferred";
|
|
26
|
+
LicenseEventType["TRANSMISSION_FAILURE"] = "transmission_failure";
|
|
27
|
+
LicenseEventType["TRANSMISSION_IN_PROGRESS"] = "transmission_in_progress";
|
|
28
|
+
LicenseEventType["TRANSMISSION_SUCCESS"] = "transmission_success";
|
|
29
|
+
LicenseEventType["UPDATED"] = "updated";
|
|
30
|
+
LicenseEventType["PENDING"] = "pending";
|
|
31
|
+
})(LicenseEventType = exports.LicenseEventType || (exports.LicenseEventType = {}));
|
|
17
32
|
var LicenseEventStatusCode;
|
|
18
33
|
(function (LicenseEventStatusCode) {
|
|
34
|
+
LicenseEventStatusCode["PREPARATION"] = "40";
|
|
35
|
+
LicenseEventStatusCode["TRANSMISSION_IN_PROGRESS"] = "42";
|
|
36
|
+
LicenseEventStatusCode["TRANSMISSION_FAILURE"] = "43";
|
|
19
37
|
LicenseEventStatusCode["PENDING"] = "62";
|
|
38
|
+
LicenseEventStatusCode["TRANSMISSION_SUCCESS"] = "44";
|
|
20
39
|
LicenseEventStatusCode["IN_PROGRESS"] = "72";
|
|
21
40
|
LicenseEventStatusCode["REJECTED"] = "85";
|
|
22
41
|
LicenseEventStatusCode["COMPLETED"] = "86";
|
|
42
|
+
LicenseEventStatusCode["SUSPENDED"] = "87";
|
|
43
|
+
LicenseEventStatusCode["CANCELLED"] = "89";
|
|
44
|
+
LicenseEventStatusCode["TRANSFERRED"] = "126";
|
|
23
45
|
})(LicenseEventStatusCode = exports.LicenseEventStatusCode || (exports.LicenseEventStatusCode = {}));
|
|
46
|
+
exports.LicenseEventStatusActionCodes = {
|
|
47
|
+
[LicenseEventStatusCode.PREPARATION]: LicenseEventType.PREPARATION,
|
|
48
|
+
[LicenseEventStatusCode.TRANSMISSION_IN_PROGRESS]: LicenseEventType.TRANSMISSION_IN_PROGRESS,
|
|
49
|
+
[LicenseEventStatusCode.TRANSMISSION_FAILURE]: LicenseEventType.TRANSMISSION_FAILURE,
|
|
50
|
+
[LicenseEventStatusCode.TRANSMISSION_SUCCESS]: LicenseEventType.TRANSMISSION_SUCCESS,
|
|
51
|
+
[LicenseEventStatusCode.REJECTED]: LicenseEventType.ACTIVATION_FAILURE,
|
|
52
|
+
[LicenseEventStatusCode.COMPLETED]: LicenseEventType.ACTIVATION_SUCCESS,
|
|
53
|
+
[LicenseEventStatusCode.SUSPENDED]: LicenseEventType.SUSPENDED,
|
|
54
|
+
[LicenseEventStatusCode.CANCELLED]: LicenseEventType.CANCELLED,
|
|
55
|
+
[LicenseEventStatusCode.TRANSFERRED]: LicenseEventType.TRANSFERRED,
|
|
56
|
+
[LicenseEventStatusCode.PENDING]: LicenseEventType.PENDING,
|
|
57
|
+
};
|
|
24
58
|
//# sourceMappingURL=licenseEvent.js.map
|
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.
|
|
7
|
+
"version": "3.63.0-rc.wev.1",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|