@sp-api-sdk/sellers-api-v1 1.6.23 → 1.7.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/README.md +2 -2
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/src/api-model/api/sellers-api.js +1 -1
- package/dist/cjs/src/api-model/api.js +1 -1
- package/dist/cjs/src/api-model/base.js +1 -1
- package/dist/cjs/src/api-model/index.js +3 -3
- package/dist/cjs/src/api-model/models/index.js +5 -5
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ The Selling Partner API for Sellers lets you retrieve information on behalf of s
|
|
|
7
7
|
|
|
8
8
|
## Documentation
|
|
9
9
|
|
|
10
|
-
Learn more about this Selling Partner API by visiting the [official documentation](https://
|
|
10
|
+
Learn more about this Selling Partner API by visiting the [official documentation](https://developer-docs.amazon.com/sp-api/docs).
|
|
11
11
|
|
|
12
12
|
Also, see the [generated documentation](https://bizon.github.io/selling-partner-api-sdk/modules/_sp_api_sdk_sellers_api_v1.html) for this API client.
|
|
13
13
|
|
|
@@ -62,7 +62,7 @@ const client = new SellersApiClient({
|
|
|
62
62
|
})
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
The rate limits used for each route are specified in the [API documentation](https://
|
|
65
|
+
The rate limits used for each route are specified in the [API documentation](https://developer-docs.amazon.com/sp-api/docs).
|
|
66
66
|
|
|
67
67
|
## License
|
|
68
68
|
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
tslib_1.__exportStar(require("./src/client"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./src/error"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./src/api-model/models"), exports);
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.SellersApi = exports.SellersApiFactory = exports.SellersApiFp = exports.SellersApiAxiosParamCreator = void 0;
|
|
17
17
|
const tslib_1 = require("tslib");
|
|
18
|
-
const axios_1 =
|
|
18
|
+
const axios_1 = tslib_1.__importDefault(require("axios"));
|
|
19
19
|
// Some imports not used depending on template conditions
|
|
20
20
|
// @ts-ignore
|
|
21
21
|
const common_1 = require("../common");
|
|
@@ -17,7 +17,7 @@ exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.B
|
|
|
17
17
|
const tslib_1 = require("tslib");
|
|
18
18
|
// Some imports not used depending on template conditions
|
|
19
19
|
// @ts-ignore
|
|
20
|
-
const axios_1 =
|
|
20
|
+
const axios_1 = tslib_1.__importDefault(require("axios"));
|
|
21
21
|
exports.BASE_PATH = "https://sellingpartnerapi-na.amazon.com".replace(/\/+$/, "");
|
|
22
22
|
/**
|
|
23
23
|
*
|
|
@@ -14,6 +14,6 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
const tslib_1 = require("tslib");
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
tslib_1.__exportStar(require("./api"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./configuration"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
tslib_1.__exportStar(require("./get-marketplace-participations-response"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./marketplace"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./marketplace-participation"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./model-error"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./participation"), exports);
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@sp-api-sdk/sellers-api-v1",
|
|
3
3
|
"author": "Vincent Mesquita <vincent.mesquita@bizon.solutions>",
|
|
4
4
|
"description": "The Selling Partner API for Sellers lets you retrieve information on behalf of sellers about their seller account, such as the marketplaces they participate in. Along with listing the marketplaces that a seller can sell in, the API also provides additional information about the marketplace such as the default language and the default currency. The API also provides seller-specific information such as whether the seller has suspended listings in that marketplace.",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.7.2",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
7
7
|
"module": "dist/es/index.js",
|
|
8
8
|
"types": "dist/types/index.d.ts",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"test": "NODE_ENV='test' yarn jest"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@sp-api-sdk/auth": "^1.9.
|
|
30
|
-
"@sp-api-sdk/common": "^1.7.
|
|
31
|
-
"axios": "^0.26.
|
|
29
|
+
"@sp-api-sdk/auth": "^1.9.11",
|
|
30
|
+
"@sp-api-sdk/common": "^1.7.13",
|
|
31
|
+
"axios": "^0.26.1"
|
|
32
32
|
},
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"sp sdk",
|
|
50
50
|
"sellers api"
|
|
51
51
|
],
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "61adb3dd4480de30ba48c20a1da60cebf9d4f0ac"
|
|
53
53
|
}
|