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 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
- * `v8.7.2-RC.0` is the latest release.
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
@@ -89,7 +89,7 @@ export type EBayApiErrorResponse = string | EBayPostOrderErrorResponse | EBayRes
89
89
  export type ApiRequestResult = {
90
90
  response: {
91
91
  data?: EBayApiErrorResponse;
92
- status?: string;
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?: string;
106
+ status?: number;
107
107
  statusText?: string;
108
108
  headers?: Record<string, string>;
109
109
  };
@@ -89,7 +89,7 @@ export type EBayApiErrorResponse = string | EBayPostOrderErrorResponse | EBayRes
89
89
  export type ApiRequestResult = {
90
90
  response: {
91
91
  data?: EBayApiErrorResponse;
92
- status?: string;
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?: string;
106
+ status?: number;
107
107
  statusText?: string;
108
108
  headers?: Record<string, string>;
109
109
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ebay-api",
3
3
  "author": "Daniil Tomilow",
4
- "version": "9.0.2",
4
+ "version": "9.0.3",
5
5
  "description": "eBay API for Node and Browser",
6
6
  "type": "module",
7
7
  "main": "./lib/index.js",