@arrowsphere/api-client 3.378.2 → 3.379.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 -2
- package/build/abstractRestfulClient.d.ts +5 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,13 +3,17 @@
|
|
|
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.379.0] - 2026.06.25
|
|
7
|
+
### Added
|
|
8
|
+
- [register] Add `processingStatus` to `RegisterCheckReturnData` and update `RegisterCheckReturnSyncStatusError` structure
|
|
9
|
+
|
|
6
10
|
## [3.378.2] - 2026.06.24
|
|
7
11
|
### Added
|
|
8
12
|
- [graphql-api] Add `fromId` and `toId` fields to `GraphqlApiOrderLinkType`
|
|
9
13
|
|
|
10
14
|
## [3.378.1] - 2026.06.23
|
|
11
15
|
### Updated
|
|
12
|
-
- [customer] fix GDAP relationship export payload
|
|
16
|
+
- [customer] fix GDAP relationship export payload
|
|
13
17
|
|
|
14
18
|
## [3.378.0] - 2026.06.22
|
|
15
19
|
### Added
|
|
@@ -99,7 +103,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
99
103
|
|
|
100
104
|
### Updated
|
|
101
105
|
|
|
102
|
-
- [license] Add enum `EST` to AutoRenewStatuses
|
|
106
|
+
- [license] Add enum `EST` to AutoRenewStatuses
|
|
103
107
|
|
|
104
108
|
## [3.361.0] - 2026.04.21
|
|
105
109
|
|
|
@@ -42,8 +42,10 @@ export declare type Options = {
|
|
|
42
42
|
returnAxiosData?: boolean;
|
|
43
43
|
};
|
|
44
44
|
export declare type RegisterCheckReturnSyncStatusError = {
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
error: {
|
|
46
|
+
statusCode?: number;
|
|
47
|
+
message?: string;
|
|
48
|
+
};
|
|
47
49
|
};
|
|
48
50
|
export declare type RegisterCheckReturnVendorStatus = {
|
|
49
51
|
code?: number;
|
|
@@ -63,6 +65,7 @@ export declare type RegisterCheckReturnData = {
|
|
|
63
65
|
customerReference?: string;
|
|
64
66
|
isLocked?: boolean;
|
|
65
67
|
marketplace?: string;
|
|
68
|
+
processingStatus?: string;
|
|
66
69
|
resellerName?: string;
|
|
67
70
|
resellerReference?: string;
|
|
68
71
|
subscriptionReference?: string;
|
package/package.json
CHANGED