ebay-api 9.0.2 → 9.0.3
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/README.md +1 -1
- package/dist/errors/index.d.ts +2 -2
- package/lib/errors/index.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ It supports `client credentials grant` and `authorization code grant` \(Auth'N'A
|
|
|
22
22
|
|
|
23
23
|
## Changelog
|
|
24
24
|
|
|
25
|
-
* `
|
|
25
|
+
* `v9.0.3` is the latest release.
|
|
26
26
|
* See [here](https://github.com/hendt/ebay-api/blob/master/CHANGELOG.md) for the full changelog.
|
|
27
27
|
|
|
28
28
|
## Implementation status
|
package/dist/errors/index.d.ts
CHANGED
|
@@ -89,7 +89,7 @@ export type EBayApiErrorResponse = string | EBayPostOrderErrorResponse | EBayRes
|
|
|
89
89
|
export type ApiRequestResult = {
|
|
90
90
|
response: {
|
|
91
91
|
data?: EBayApiErrorResponse;
|
|
92
|
-
status?:
|
|
92
|
+
status?: number;
|
|
93
93
|
statusText?: string;
|
|
94
94
|
headers?: Record<string, string>;
|
|
95
95
|
};
|
|
@@ -103,7 +103,7 @@ export type ApiRequestResult = {
|
|
|
103
103
|
export type ErrorCommonMeta = {
|
|
104
104
|
res?: {
|
|
105
105
|
data: any;
|
|
106
|
-
status?:
|
|
106
|
+
status?: number;
|
|
107
107
|
statusText?: string;
|
|
108
108
|
headers?: Record<string, string>;
|
|
109
109
|
};
|
package/lib/errors/index.d.ts
CHANGED
|
@@ -89,7 +89,7 @@ export type EBayApiErrorResponse = string | EBayPostOrderErrorResponse | EBayRes
|
|
|
89
89
|
export type ApiRequestResult = {
|
|
90
90
|
response: {
|
|
91
91
|
data?: EBayApiErrorResponse;
|
|
92
|
-
status?:
|
|
92
|
+
status?: number;
|
|
93
93
|
statusText?: string;
|
|
94
94
|
headers?: Record<string, string>;
|
|
95
95
|
};
|
|
@@ -103,7 +103,7 @@ export type ApiRequestResult = {
|
|
|
103
103
|
export type ErrorCommonMeta = {
|
|
104
104
|
res?: {
|
|
105
105
|
data: any;
|
|
106
|
-
status?:
|
|
106
|
+
status?: number;
|
|
107
107
|
statusText?: string;
|
|
108
108
|
headers?: Record<string, string>;
|
|
109
109
|
};
|