@arrowsphere/api-client 3.63.0-rc.wev.1 → 3.63.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 +6 -0
- package/build/licenses/entities/event/licenseEvent.d.ts +1 -23
- package/build/licenses/entities/event/licenseEvent.js +1 -35
- package/build/wellArchitected/register/entity/registrationLink.d.ts +3 -0
- package/build/wellArchitected/register/entity/registrationLink.js +9 -2
- package/package.json +1 -1
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.63.0] - 2023-11-13
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- Add ExtraParams to the RegisterLink type
|
|
10
|
+
|
|
11
|
+
|
|
6
12
|
## [3.62.0] - 2023-11-08
|
|
7
13
|
|
|
8
14
|
### Changed
|
|
@@ -10,34 +10,12 @@ 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
|
-
}
|
|
27
13
|
export declare enum LicenseEventStatusCode {
|
|
28
|
-
PREPARATION = "40",
|
|
29
|
-
TRANSMISSION_IN_PROGRESS = "42",
|
|
30
|
-
TRANSMISSION_FAILURE = "43",
|
|
31
14
|
PENDING = "62",
|
|
32
|
-
TRANSMISSION_SUCCESS = "44",
|
|
33
15
|
IN_PROGRESS = "72",
|
|
34
16
|
REJECTED = "85",
|
|
35
|
-
COMPLETED = "86"
|
|
36
|
-
SUSPENDED = "87",
|
|
37
|
-
CANCELLED = "89",
|
|
38
|
-
TRANSFERRED = "126"
|
|
17
|
+
COMPLETED = "86"
|
|
39
18
|
}
|
|
40
|
-
export declare const LicenseEventStatusActionCodes: Partial<Record<LicenseEventStatusCode, LicenseEventType>>;
|
|
41
19
|
export interface LicenseEventVendor {
|
|
42
20
|
name: string;
|
|
43
21
|
code: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.LicenseEventStatusCode = exports.LicenseEventActionType = void 0;
|
|
4
4
|
var LicenseEventActionType;
|
|
5
5
|
(function (LicenseEventActionType) {
|
|
6
6
|
LicenseEventActionType["AUTO_RENEW_OFF"] = "autoRenewOff";
|
|
@@ -14,45 +14,11 @@ 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 = {}));
|
|
32
17
|
var LicenseEventStatusCode;
|
|
33
18
|
(function (LicenseEventStatusCode) {
|
|
34
|
-
LicenseEventStatusCode["PREPARATION"] = "40";
|
|
35
|
-
LicenseEventStatusCode["TRANSMISSION_IN_PROGRESS"] = "42";
|
|
36
|
-
LicenseEventStatusCode["TRANSMISSION_FAILURE"] = "43";
|
|
37
19
|
LicenseEventStatusCode["PENDING"] = "62";
|
|
38
|
-
LicenseEventStatusCode["TRANSMISSION_SUCCESS"] = "44";
|
|
39
20
|
LicenseEventStatusCode["IN_PROGRESS"] = "72";
|
|
40
21
|
LicenseEventStatusCode["REJECTED"] = "85";
|
|
41
22
|
LicenseEventStatusCode["COMPLETED"] = "86";
|
|
42
|
-
LicenseEventStatusCode["SUSPENDED"] = "87";
|
|
43
|
-
LicenseEventStatusCode["CANCELLED"] = "89";
|
|
44
|
-
LicenseEventStatusCode["TRANSFERRED"] = "126";
|
|
45
23
|
})(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
|
-
};
|
|
58
24
|
//# sourceMappingURL=licenseEvent.js.map
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import { AbstractEntity } from '../../../abstractEntity';
|
|
2
2
|
export declare enum RegistrationLinkFields {
|
|
3
|
+
COLUMN_EXTRA_PARAMS = "extraParams",
|
|
3
4
|
COLUMN_REGISTRATION_LINK = "registrationLink"
|
|
4
5
|
}
|
|
5
6
|
export declare type RegistrationLinkType = {
|
|
7
|
+
[RegistrationLinkFields.COLUMN_EXTRA_PARAMS]?: Record<string, string>;
|
|
6
8
|
[RegistrationLinkFields.COLUMN_REGISTRATION_LINK]: string;
|
|
7
9
|
};
|
|
8
10
|
export declare class RegistrationLink extends AbstractEntity<RegistrationLinkType> {
|
|
9
11
|
#private;
|
|
10
12
|
constructor(registrationLinkInput: RegistrationLinkType);
|
|
13
|
+
get extraParams(): Record<string, string> | undefined;
|
|
11
14
|
get registrationLink(): string;
|
|
12
15
|
toJSON(): RegistrationLinkType;
|
|
13
16
|
}
|
|
@@ -10,29 +10,36 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
10
10
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
11
11
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
12
12
|
};
|
|
13
|
-
var _RegistrationLink_registrationLink;
|
|
13
|
+
var _RegistrationLink_extraParams, _RegistrationLink_registrationLink;
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.RegistrationLink = exports.RegistrationLinkFields = void 0;
|
|
16
16
|
const abstractEntity_1 = require("../../../abstractEntity");
|
|
17
17
|
var RegistrationLinkFields;
|
|
18
18
|
(function (RegistrationLinkFields) {
|
|
19
|
+
RegistrationLinkFields["COLUMN_EXTRA_PARAMS"] = "extraParams";
|
|
19
20
|
RegistrationLinkFields["COLUMN_REGISTRATION_LINK"] = "registrationLink";
|
|
20
21
|
})(RegistrationLinkFields = exports.RegistrationLinkFields || (exports.RegistrationLinkFields = {}));
|
|
21
22
|
class RegistrationLink extends abstractEntity_1.AbstractEntity {
|
|
22
23
|
constructor(registrationLinkInput) {
|
|
23
24
|
super(registrationLinkInput);
|
|
25
|
+
_RegistrationLink_extraParams.set(this, void 0);
|
|
24
26
|
_RegistrationLink_registrationLink.set(this, void 0);
|
|
25
27
|
__classPrivateFieldSet(this, _RegistrationLink_registrationLink, registrationLinkInput[RegistrationLinkFields.COLUMN_REGISTRATION_LINK], "f");
|
|
28
|
+
__classPrivateFieldSet(this, _RegistrationLink_extraParams, registrationLinkInput[RegistrationLinkFields.COLUMN_EXTRA_PARAMS], "f");
|
|
29
|
+
}
|
|
30
|
+
get extraParams() {
|
|
31
|
+
return __classPrivateFieldGet(this, _RegistrationLink_extraParams, "f");
|
|
26
32
|
}
|
|
27
33
|
get registrationLink() {
|
|
28
34
|
return __classPrivateFieldGet(this, _RegistrationLink_registrationLink, "f");
|
|
29
35
|
}
|
|
30
36
|
toJSON() {
|
|
31
37
|
return {
|
|
38
|
+
[RegistrationLinkFields.COLUMN_EXTRA_PARAMS]: this.extraParams,
|
|
32
39
|
[RegistrationLinkFields.COLUMN_REGISTRATION_LINK]: this.registrationLink,
|
|
33
40
|
};
|
|
34
41
|
}
|
|
35
42
|
}
|
|
36
43
|
exports.RegistrationLink = RegistrationLink;
|
|
37
|
-
_RegistrationLink_registrationLink = new WeakMap();
|
|
44
|
+
_RegistrationLink_extraParams = new WeakMap(), _RegistrationLink_registrationLink = new WeakMap();
|
|
38
45
|
//# sourceMappingURL=registrationLink.js.map
|
package/package.json
CHANGED