@arrowsphere/api-client 3.69.1 → 3.69.2
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 +9 -0
- package/build/abstractRestfulClient.d.ts +8 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
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.69.2] - 2023-11-24
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- Fixed the code type in RegisterCheckReturnVendorStatus as a number and not a string.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Add the isLocked key in the RegisterCheckReturnData.
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [3.69.1] - 2023-11-23
|
|
7
16
|
|
|
8
17
|
### Fixed
|
|
@@ -36,7 +36,7 @@ export declare type RegisterCheckReturnSyncStatusError = {
|
|
|
36
36
|
message?: string;
|
|
37
37
|
};
|
|
38
38
|
export declare type RegisterCheckReturnVendorStatus = {
|
|
39
|
-
code?:
|
|
39
|
+
code?: number;
|
|
40
40
|
message?: string;
|
|
41
41
|
};
|
|
42
42
|
export declare type RegisterCheckReturnSyncStatus = {
|
|
@@ -47,18 +47,19 @@ export declare type RegisterCheckReturnSyncStatus = {
|
|
|
47
47
|
};
|
|
48
48
|
export declare type RegisterCheckReturnData = {
|
|
49
49
|
accountReference?: string;
|
|
50
|
-
creationDate?: string;
|
|
51
50
|
classification?: string;
|
|
52
|
-
|
|
51
|
+
creationDate?: string;
|
|
53
52
|
customerName?: string;
|
|
54
|
-
|
|
53
|
+
customerReference?: string;
|
|
54
|
+
isLocked?: boolean;
|
|
55
|
+
marketplace?: string;
|
|
55
56
|
resellerName?: string;
|
|
57
|
+
resellerReference?: string;
|
|
56
58
|
subscriptionReference?: string;
|
|
57
|
-
marketplace?: string;
|
|
58
|
-
vendorSubscriptionId?: string;
|
|
59
|
-
vendorCode?: string;
|
|
60
59
|
syncStatus?: RegisterCheckReturnSyncStatus;
|
|
60
|
+
vendorCode?: string;
|
|
61
61
|
vendorStatus?: RegisterCheckReturnVendorStatus;
|
|
62
|
+
vendorSubscriptionId?: string;
|
|
62
63
|
};
|
|
63
64
|
export declare type CheckStatusReturn = {
|
|
64
65
|
status?: number;
|
package/package.json
CHANGED