@sp-api-sdk/vendor-orders-api-v1 1.7.1 → 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 +3 -0
- package/dist/cjs/src/client.js +12 -9
- package/dist/es/src/client.js +12 -9
- package/dist/types/src/client.d.ts +3 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
The Selling Partner API for Retail Procurement Orders provides programmatic access to vendor orders data.
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/@sp-api-sdk/vendor-orders-api-v1)
|
|
6
|
+
[](https://github.com/xojs/xo)
|
|
7
|
+
|
|
5
8
|
## Documentation
|
|
6
9
|
|
|
7
10
|
Learn more about this Selling Partner API by visiting the [official documentation](https://github.com/amzn/selling-partner-api-docs/tree/main/references/vendor-orders-api/vendorOrders.md).
|
package/dist/cjs/src/client.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.VendorOrdersApiClient = exports.
|
|
3
|
+
exports.VendorOrdersApiClient = exports.clientRateLimits = void 0;
|
|
4
4
|
/* eslint-disable prefer-regex-literals */
|
|
5
5
|
const common_1 = require("@sp-api-sdk/common");
|
|
6
6
|
const api_model_1 = require("./api-model");
|
|
7
7
|
const error_1 = require("./error");
|
|
8
|
-
exports.
|
|
8
|
+
exports.clientRateLimits = [
|
|
9
9
|
{
|
|
10
10
|
method: 'get',
|
|
11
11
|
urlRegex: new RegExp('^/vendor/orders/v1/purchaseOrders$'),
|
|
@@ -33,20 +33,23 @@ exports.RATE_LIMITS = [
|
|
|
33
33
|
];
|
|
34
34
|
class VendorOrdersApiClient extends api_model_1.VendorOrdersApi {
|
|
35
35
|
constructor(parameters) {
|
|
36
|
-
const
|
|
36
|
+
const config = common_1.sellingPartnerRegions[parameters.region];
|
|
37
|
+
if (!config) {
|
|
38
|
+
throw new error_1.VendorOrdersApiError(`Unknown region: ${parameters.region}`);
|
|
39
|
+
}
|
|
37
40
|
const { rateLimiting, ...clientParameters } = parameters;
|
|
38
|
-
const axiosParameters = {
|
|
41
|
+
const axiosParameters = {
|
|
42
|
+
...clientParameters,
|
|
43
|
+
region: config.awsRegion,
|
|
44
|
+
};
|
|
39
45
|
if (rateLimiting?.retry) {
|
|
40
|
-
axiosParameters.rateLimits = exports.
|
|
46
|
+
axiosParameters.rateLimits = exports.clientRateLimits;
|
|
41
47
|
axiosParameters.onRetry = rateLimiting.onRetry;
|
|
42
48
|
}
|
|
43
49
|
const axiosInstance = (0, common_1.createAxiosInstance)(axiosParameters);
|
|
44
50
|
const configuration = new api_model_1.Configuration();
|
|
45
51
|
const environment = parameters.sandbox ? 'sandbox' : 'production';
|
|
46
|
-
const endpoint =
|
|
47
|
-
if (!endpoint) {
|
|
48
|
-
throw new error_1.VendorOrdersApiError(`Unknown region : ${region}`);
|
|
49
|
-
}
|
|
52
|
+
const endpoint = config.endpoints[environment];
|
|
50
53
|
super(configuration, endpoint, axiosInstance);
|
|
51
54
|
}
|
|
52
55
|
}
|
package/dist/es/src/client.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* eslint-disable prefer-regex-literals */
|
|
2
|
-
import {
|
|
2
|
+
import { sellingPartnerRegions, createAxiosInstance } from '@sp-api-sdk/common';
|
|
3
3
|
import { Configuration, VendorOrdersApi } from './api-model';
|
|
4
4
|
import { VendorOrdersApiError } from './error';
|
|
5
|
-
export const
|
|
5
|
+
export const clientRateLimits = [
|
|
6
6
|
{
|
|
7
7
|
method: 'get',
|
|
8
8
|
urlRegex: new RegExp('^/vendor/orders/v1/purchaseOrders$'),
|
|
@@ -30,20 +30,23 @@ export const RATE_LIMITS = [
|
|
|
30
30
|
];
|
|
31
31
|
export class VendorOrdersApiClient extends VendorOrdersApi {
|
|
32
32
|
constructor(parameters) {
|
|
33
|
-
const
|
|
33
|
+
const config = sellingPartnerRegions[parameters.region];
|
|
34
|
+
if (!config) {
|
|
35
|
+
throw new VendorOrdersApiError(`Unknown region: ${parameters.region}`);
|
|
36
|
+
}
|
|
34
37
|
const { rateLimiting, ...clientParameters } = parameters;
|
|
35
|
-
const axiosParameters = {
|
|
38
|
+
const axiosParameters = {
|
|
39
|
+
...clientParameters,
|
|
40
|
+
region: config.awsRegion,
|
|
41
|
+
};
|
|
36
42
|
if (rateLimiting?.retry) {
|
|
37
|
-
axiosParameters.rateLimits =
|
|
43
|
+
axiosParameters.rateLimits = clientRateLimits;
|
|
38
44
|
axiosParameters.onRetry = rateLimiting.onRetry;
|
|
39
45
|
}
|
|
40
46
|
const axiosInstance = createAxiosInstance(axiosParameters);
|
|
41
47
|
const configuration = new Configuration();
|
|
42
48
|
const environment = parameters.sandbox ? 'sandbox' : 'production';
|
|
43
|
-
const endpoint = endpoints[environment]
|
|
44
|
-
if (!endpoint) {
|
|
45
|
-
throw new VendorOrdersApiError(`Unknown region : ${region}`);
|
|
46
|
-
}
|
|
49
|
+
const endpoint = config.endpoints[environment];
|
|
47
50
|
super(configuration, endpoint, axiosInstance);
|
|
48
51
|
}
|
|
49
52
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import type { ClientConfiguration, RateLimit, OnRetryHandler } from '@sp-api-sdk/common';
|
|
1
|
+
import type { ClientConfiguration, SellingPartnerRegion, RateLimit, OnRetryHandler } from '@sp-api-sdk/common';
|
|
2
2
|
import { VendorOrdersApi } from './api-model';
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const clientRateLimits: RateLimit[];
|
|
4
4
|
export interface ClientParameters extends Omit<ClientConfiguration, 'rateLimits' | 'onRetry'> {
|
|
5
|
+
region: SellingPartnerRegion;
|
|
5
6
|
rateLimiting?: {
|
|
6
7
|
retry: boolean;
|
|
7
8
|
onRetry?: OnRetryHandler;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@sp-api-sdk/vendor-orders-api-v1",
|
|
3
3
|
"author": "Vincent Mesquita <vincent.mesquita@bizon.solutions>",
|
|
4
4
|
"description": "The Selling Partner API for Retail Procurement Orders provides programmatic access to vendor orders data.",
|
|
5
|
-
"version": "1.7.
|
|
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",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"test": "NODE_ENV='test' yarn jest"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@sp-api-sdk/auth": "^1.9.
|
|
29
|
-
"@sp-api-sdk/common": "^1.7.
|
|
28
|
+
"@sp-api-sdk/auth": "^1.9.6",
|
|
29
|
+
"@sp-api-sdk/common": "^1.7.8",
|
|
30
30
|
"axios": "^0.24.0"
|
|
31
31
|
},
|
|
32
32
|
"repository": {
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"sp sdk",
|
|
49
49
|
"vendor orders api"
|
|
50
50
|
],
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "f21b5cb511abd110bf1f07843558719993f36187"
|
|
52
52
|
}
|