@sp-api-sdk/vendor-direct-fulfillment-shipping-api-v1 1.11.9 → 1.11.11
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 -0
- package/dist/cjs/src/api-model/api/vendor-shipping-api.js +27 -42
- package/dist/cjs/src/api-model/base.js +1 -3
- package/dist/cjs/src/api-model/common.js +2 -0
- package/dist/es/src/api-model/api/vendor-shipping-api.js +27 -42
- package/dist/es/src/api-model/base.js +1 -3
- package/dist/es/src/api-model/common.js +2 -0
- package/dist/types/src/api-model/api/vendor-shipping-api.d.ts +20 -35
- package/dist/types/src/api-model/base.d.ts +2 -3
- package/dist/types/src/api-model/common.d.ts +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -493,99 +493,84 @@ const VendorShippingApiFactory = function (configuration, basePath, axios) {
|
|
|
493
493
|
return {
|
|
494
494
|
/**
|
|
495
495
|
* Returns a customer invoice based on the purchaseOrderNumber that you specify. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
496
|
-
* @param {
|
|
496
|
+
* @param {VendorShippingApiGetCustomerInvoiceRequest} requestParameters Request parameters.
|
|
497
497
|
* @param {*} [options] Override http request option.
|
|
498
498
|
* @throws {RequiredError}
|
|
499
499
|
*/
|
|
500
|
-
getCustomerInvoice(
|
|
501
|
-
return localVarFp.getCustomerInvoice(purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
500
|
+
getCustomerInvoice(requestParameters, options) {
|
|
501
|
+
return localVarFp.getCustomerInvoice(requestParameters.purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
502
502
|
},
|
|
503
503
|
/**
|
|
504
504
|
* Returns a list of customer invoices created during a time frame that you specify. You define the time frame using the createdAfter and createdBefore parameters. You must use both of these parameters. The date range to search must be no more than 7 days. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
505
|
-
* @param {
|
|
506
|
-
* @param {string} createdBefore Orders that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
507
|
-
* @param {string} [shipFromPartyId] The vendor warehouseId for order fulfillment. If not specified, the result will contain orders for all warehouses.
|
|
508
|
-
* @param {number} [limit] The limit to the number of records returned
|
|
509
|
-
* @param {'ASC' | 'DESC'} [sortOrder] Sort ASC or DESC by order creation date.
|
|
510
|
-
* @param {string} [nextToken] Used for pagination when there are more orders than the specified result size limit. The token value is returned in the previous API call.
|
|
505
|
+
* @param {VendorShippingApiGetCustomerInvoicesRequest} requestParameters Request parameters.
|
|
511
506
|
* @param {*} [options] Override http request option.
|
|
512
507
|
* @throws {RequiredError}
|
|
513
508
|
*/
|
|
514
|
-
getCustomerInvoices(
|
|
515
|
-
return localVarFp.getCustomerInvoices(createdAfter, createdBefore, shipFromPartyId, limit, sortOrder, nextToken, options).then((request) => request(axios, basePath));
|
|
509
|
+
getCustomerInvoices(requestParameters, options) {
|
|
510
|
+
return localVarFp.getCustomerInvoices(requestParameters.createdAfter, requestParameters.createdBefore, requestParameters.shipFromPartyId, requestParameters.limit, requestParameters.sortOrder, requestParameters.nextToken, options).then((request) => request(axios, basePath));
|
|
516
511
|
},
|
|
517
512
|
/**
|
|
518
513
|
* Returns a packing slip based on the purchaseOrderNumber that you specify. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
519
|
-
* @param {
|
|
514
|
+
* @param {VendorShippingApiGetPackingSlipRequest} requestParameters Request parameters.
|
|
520
515
|
* @param {*} [options] Override http request option.
|
|
521
516
|
* @throws {RequiredError}
|
|
522
517
|
*/
|
|
523
|
-
getPackingSlip(
|
|
524
|
-
return localVarFp.getPackingSlip(purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
518
|
+
getPackingSlip(requestParameters, options) {
|
|
519
|
+
return localVarFp.getPackingSlip(requestParameters.purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
525
520
|
},
|
|
526
521
|
/**
|
|
527
522
|
* Returns a list of packing slips for the purchase orders that match the criteria specified. Date range to search must not be more than 7 days. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
528
|
-
* @param {
|
|
529
|
-
* @param {string} createdBefore Packing slips that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
530
|
-
* @param {string} [shipFromPartyId] The vendor warehouseId for order fulfillment. If not specified the result will contain orders for all warehouses.
|
|
531
|
-
* @param {number} [limit] The limit to the number of records returned
|
|
532
|
-
* @param {'ASC' | 'DESC'} [sortOrder] Sort ASC or DESC by packing slip creation date.
|
|
533
|
-
* @param {string} [nextToken] Used for pagination when there are more packing slips than the specified result size limit. The token value is returned in the previous API call.
|
|
523
|
+
* @param {VendorShippingApiGetPackingSlipsRequest} requestParameters Request parameters.
|
|
534
524
|
* @param {*} [options] Override http request option.
|
|
535
525
|
* @throws {RequiredError}
|
|
536
526
|
*/
|
|
537
|
-
getPackingSlips(
|
|
538
|
-
return localVarFp.getPackingSlips(createdAfter, createdBefore, shipFromPartyId, limit, sortOrder, nextToken, options).then((request) => request(axios, basePath));
|
|
527
|
+
getPackingSlips(requestParameters, options) {
|
|
528
|
+
return localVarFp.getPackingSlips(requestParameters.createdAfter, requestParameters.createdBefore, requestParameters.shipFromPartyId, requestParameters.limit, requestParameters.sortOrder, requestParameters.nextToken, options).then((request) => request(axios, basePath));
|
|
539
529
|
},
|
|
540
530
|
/**
|
|
541
531
|
* Returns a shipping label for the purchaseOrderNumber that you specify. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
542
|
-
* @param {
|
|
532
|
+
* @param {VendorShippingApiGetShippingLabelRequest} requestParameters Request parameters.
|
|
543
533
|
* @param {*} [options] Override http request option.
|
|
544
534
|
* @throws {RequiredError}
|
|
545
535
|
*/
|
|
546
|
-
getShippingLabel(
|
|
547
|
-
return localVarFp.getShippingLabel(purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
536
|
+
getShippingLabel(requestParameters, options) {
|
|
537
|
+
return localVarFp.getShippingLabel(requestParameters.purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
548
538
|
},
|
|
549
539
|
/**
|
|
550
540
|
* Returns a list of shipping labels created during the time frame that you specify. You define that time frame using the createdAfter and createdBefore parameters. You must use both of these parameters. The date range to search must not be more than 7 days. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
551
|
-
* @param {
|
|
552
|
-
* @param {string} createdBefore Shipping labels that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
553
|
-
* @param {string} [shipFromPartyId] The vendor warehouseId for order fulfillment. If not specified, the result will contain orders for all warehouses.
|
|
554
|
-
* @param {number} [limit] The limit to the number of records returned.
|
|
555
|
-
* @param {'ASC' | 'DESC'} [sortOrder] Sort ASC or DESC by order creation date.
|
|
556
|
-
* @param {string} [nextToken] Used for pagination when there are more ship labels than the specified result size limit. The token value is returned in the previous API call.
|
|
541
|
+
* @param {VendorShippingApiGetShippingLabelsRequest} requestParameters Request parameters.
|
|
557
542
|
* @param {*} [options] Override http request option.
|
|
558
543
|
* @throws {RequiredError}
|
|
559
544
|
*/
|
|
560
|
-
getShippingLabels(
|
|
561
|
-
return localVarFp.getShippingLabels(createdAfter, createdBefore, shipFromPartyId, limit, sortOrder, nextToken, options).then((request) => request(axios, basePath));
|
|
545
|
+
getShippingLabels(requestParameters, options) {
|
|
546
|
+
return localVarFp.getShippingLabels(requestParameters.createdAfter, requestParameters.createdBefore, requestParameters.shipFromPartyId, requestParameters.limit, requestParameters.sortOrder, requestParameters.nextToken, options).then((request) => request(axios, basePath));
|
|
562
547
|
},
|
|
563
548
|
/**
|
|
564
549
|
* Submits one or more shipment confirmations for vendor orders. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
565
|
-
* @param {
|
|
550
|
+
* @param {VendorShippingApiSubmitShipmentConfirmationsRequest} requestParameters Request parameters.
|
|
566
551
|
* @param {*} [options] Override http request option.
|
|
567
552
|
* @throws {RequiredError}
|
|
568
553
|
*/
|
|
569
|
-
submitShipmentConfirmations(
|
|
570
|
-
return localVarFp.submitShipmentConfirmations(body, options).then((request) => request(axios, basePath));
|
|
554
|
+
submitShipmentConfirmations(requestParameters, options) {
|
|
555
|
+
return localVarFp.submitShipmentConfirmations(requestParameters.body, options).then((request) => request(axios, basePath));
|
|
571
556
|
},
|
|
572
557
|
/**
|
|
573
558
|
* This API call is only to be used by Vendor-Own-Carrier (VOC) vendors. Calling this API will submit a shipment status update for the package that a vendor has shipped. It will provide the Amazon customer visibility on their order, when the package is outside of Amazon Network visibility. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
574
|
-
* @param {
|
|
559
|
+
* @param {VendorShippingApiSubmitShipmentStatusUpdatesRequest} requestParameters Request parameters.
|
|
575
560
|
* @param {*} [options] Override http request option.
|
|
576
561
|
* @throws {RequiredError}
|
|
577
562
|
*/
|
|
578
|
-
submitShipmentStatusUpdates(
|
|
579
|
-
return localVarFp.submitShipmentStatusUpdates(body, options).then((request) => request(axios, basePath));
|
|
563
|
+
submitShipmentStatusUpdates(requestParameters, options) {
|
|
564
|
+
return localVarFp.submitShipmentStatusUpdates(requestParameters.body, options).then((request) => request(axios, basePath));
|
|
580
565
|
},
|
|
581
566
|
/**
|
|
582
567
|
* Creates a shipping label for a purchase order and returns a transactionId for reference. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
583
|
-
* @param {
|
|
568
|
+
* @param {VendorShippingApiSubmitShippingLabelRequestRequest} requestParameters Request parameters.
|
|
584
569
|
* @param {*} [options] Override http request option.
|
|
585
570
|
* @throws {RequiredError}
|
|
586
571
|
*/
|
|
587
|
-
submitShippingLabelRequest(
|
|
588
|
-
return localVarFp.submitShippingLabelRequest(body, options).then((request) => request(axios, basePath));
|
|
572
|
+
submitShippingLabelRequest(requestParameters, options) {
|
|
573
|
+
return localVarFp.submitShippingLabelRequest(requestParameters.body, options).then((request) => request(axios, basePath));
|
|
589
574
|
},
|
|
590
575
|
};
|
|
591
576
|
};
|
|
@@ -15,8 +15,6 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
|
|
17
17
|
const tslib_1 = require("tslib");
|
|
18
|
-
// Some imports not used depending on template conditions
|
|
19
|
-
// @ts-ignore
|
|
20
18
|
const axios_1 = tslib_1.__importDefault(require("axios"));
|
|
21
19
|
exports.BASE_PATH = "https://sellingpartnerapi-na.amazon.com".replace(/\/+$/, "");
|
|
22
20
|
/**
|
|
@@ -57,10 +55,10 @@ exports.BaseAPI = BaseAPI;
|
|
|
57
55
|
*/
|
|
58
56
|
class RequiredError extends Error {
|
|
59
57
|
field;
|
|
60
|
-
name = "RequiredError";
|
|
61
58
|
constructor(field, msg) {
|
|
62
59
|
super(msg);
|
|
63
60
|
this.field = field;
|
|
61
|
+
this.name = "RequiredError";
|
|
64
62
|
}
|
|
65
63
|
}
|
|
66
64
|
exports.RequiredError = RequiredError;
|
|
@@ -81,6 +81,8 @@ const setOAuthToObject = async function (object, name, scopes, configuration) {
|
|
|
81
81
|
};
|
|
82
82
|
exports.setOAuthToObject = setOAuthToObject;
|
|
83
83
|
function setFlattenedQueryParams(urlSearchParams, parameter, key = "") {
|
|
84
|
+
if (parameter == null)
|
|
85
|
+
return;
|
|
84
86
|
if (typeof parameter === "object") {
|
|
85
87
|
if (Array.isArray(parameter)) {
|
|
86
88
|
parameter.forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));
|
|
@@ -487,99 +487,84 @@ export const VendorShippingApiFactory = function (configuration, basePath, axios
|
|
|
487
487
|
return {
|
|
488
488
|
/**
|
|
489
489
|
* Returns a customer invoice based on the purchaseOrderNumber that you specify. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
490
|
-
* @param {
|
|
490
|
+
* @param {VendorShippingApiGetCustomerInvoiceRequest} requestParameters Request parameters.
|
|
491
491
|
* @param {*} [options] Override http request option.
|
|
492
492
|
* @throws {RequiredError}
|
|
493
493
|
*/
|
|
494
|
-
getCustomerInvoice(
|
|
495
|
-
return localVarFp.getCustomerInvoice(purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
494
|
+
getCustomerInvoice(requestParameters, options) {
|
|
495
|
+
return localVarFp.getCustomerInvoice(requestParameters.purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
496
496
|
},
|
|
497
497
|
/**
|
|
498
498
|
* Returns a list of customer invoices created during a time frame that you specify. You define the time frame using the createdAfter and createdBefore parameters. You must use both of these parameters. The date range to search must be no more than 7 days. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
499
|
-
* @param {
|
|
500
|
-
* @param {string} createdBefore Orders that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
501
|
-
* @param {string} [shipFromPartyId] The vendor warehouseId for order fulfillment. If not specified, the result will contain orders for all warehouses.
|
|
502
|
-
* @param {number} [limit] The limit to the number of records returned
|
|
503
|
-
* @param {'ASC' | 'DESC'} [sortOrder] Sort ASC or DESC by order creation date.
|
|
504
|
-
* @param {string} [nextToken] Used for pagination when there are more orders than the specified result size limit. The token value is returned in the previous API call.
|
|
499
|
+
* @param {VendorShippingApiGetCustomerInvoicesRequest} requestParameters Request parameters.
|
|
505
500
|
* @param {*} [options] Override http request option.
|
|
506
501
|
* @throws {RequiredError}
|
|
507
502
|
*/
|
|
508
|
-
getCustomerInvoices(
|
|
509
|
-
return localVarFp.getCustomerInvoices(createdAfter, createdBefore, shipFromPartyId, limit, sortOrder, nextToken, options).then((request) => request(axios, basePath));
|
|
503
|
+
getCustomerInvoices(requestParameters, options) {
|
|
504
|
+
return localVarFp.getCustomerInvoices(requestParameters.createdAfter, requestParameters.createdBefore, requestParameters.shipFromPartyId, requestParameters.limit, requestParameters.sortOrder, requestParameters.nextToken, options).then((request) => request(axios, basePath));
|
|
510
505
|
},
|
|
511
506
|
/**
|
|
512
507
|
* Returns a packing slip based on the purchaseOrderNumber that you specify. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
513
|
-
* @param {
|
|
508
|
+
* @param {VendorShippingApiGetPackingSlipRequest} requestParameters Request parameters.
|
|
514
509
|
* @param {*} [options] Override http request option.
|
|
515
510
|
* @throws {RequiredError}
|
|
516
511
|
*/
|
|
517
|
-
getPackingSlip(
|
|
518
|
-
return localVarFp.getPackingSlip(purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
512
|
+
getPackingSlip(requestParameters, options) {
|
|
513
|
+
return localVarFp.getPackingSlip(requestParameters.purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
519
514
|
},
|
|
520
515
|
/**
|
|
521
516
|
* Returns a list of packing slips for the purchase orders that match the criteria specified. Date range to search must not be more than 7 days. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
522
|
-
* @param {
|
|
523
|
-
* @param {string} createdBefore Packing slips that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
524
|
-
* @param {string} [shipFromPartyId] The vendor warehouseId for order fulfillment. If not specified the result will contain orders for all warehouses.
|
|
525
|
-
* @param {number} [limit] The limit to the number of records returned
|
|
526
|
-
* @param {'ASC' | 'DESC'} [sortOrder] Sort ASC or DESC by packing slip creation date.
|
|
527
|
-
* @param {string} [nextToken] Used for pagination when there are more packing slips than the specified result size limit. The token value is returned in the previous API call.
|
|
517
|
+
* @param {VendorShippingApiGetPackingSlipsRequest} requestParameters Request parameters.
|
|
528
518
|
* @param {*} [options] Override http request option.
|
|
529
519
|
* @throws {RequiredError}
|
|
530
520
|
*/
|
|
531
|
-
getPackingSlips(
|
|
532
|
-
return localVarFp.getPackingSlips(createdAfter, createdBefore, shipFromPartyId, limit, sortOrder, nextToken, options).then((request) => request(axios, basePath));
|
|
521
|
+
getPackingSlips(requestParameters, options) {
|
|
522
|
+
return localVarFp.getPackingSlips(requestParameters.createdAfter, requestParameters.createdBefore, requestParameters.shipFromPartyId, requestParameters.limit, requestParameters.sortOrder, requestParameters.nextToken, options).then((request) => request(axios, basePath));
|
|
533
523
|
},
|
|
534
524
|
/**
|
|
535
525
|
* Returns a shipping label for the purchaseOrderNumber that you specify. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
536
|
-
* @param {
|
|
526
|
+
* @param {VendorShippingApiGetShippingLabelRequest} requestParameters Request parameters.
|
|
537
527
|
* @param {*} [options] Override http request option.
|
|
538
528
|
* @throws {RequiredError}
|
|
539
529
|
*/
|
|
540
|
-
getShippingLabel(
|
|
541
|
-
return localVarFp.getShippingLabel(purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
530
|
+
getShippingLabel(requestParameters, options) {
|
|
531
|
+
return localVarFp.getShippingLabel(requestParameters.purchaseOrderNumber, options).then((request) => request(axios, basePath));
|
|
542
532
|
},
|
|
543
533
|
/**
|
|
544
534
|
* Returns a list of shipping labels created during the time frame that you specify. You define that time frame using the createdAfter and createdBefore parameters. You must use both of these parameters. The date range to search must not be more than 7 days. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
545
|
-
* @param {
|
|
546
|
-
* @param {string} createdBefore Shipping labels that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
547
|
-
* @param {string} [shipFromPartyId] The vendor warehouseId for order fulfillment. If not specified, the result will contain orders for all warehouses.
|
|
548
|
-
* @param {number} [limit] The limit to the number of records returned.
|
|
549
|
-
* @param {'ASC' | 'DESC'} [sortOrder] Sort ASC or DESC by order creation date.
|
|
550
|
-
* @param {string} [nextToken] Used for pagination when there are more ship labels than the specified result size limit. The token value is returned in the previous API call.
|
|
535
|
+
* @param {VendorShippingApiGetShippingLabelsRequest} requestParameters Request parameters.
|
|
551
536
|
* @param {*} [options] Override http request option.
|
|
552
537
|
* @throws {RequiredError}
|
|
553
538
|
*/
|
|
554
|
-
getShippingLabels(
|
|
555
|
-
return localVarFp.getShippingLabels(createdAfter, createdBefore, shipFromPartyId, limit, sortOrder, nextToken, options).then((request) => request(axios, basePath));
|
|
539
|
+
getShippingLabels(requestParameters, options) {
|
|
540
|
+
return localVarFp.getShippingLabels(requestParameters.createdAfter, requestParameters.createdBefore, requestParameters.shipFromPartyId, requestParameters.limit, requestParameters.sortOrder, requestParameters.nextToken, options).then((request) => request(axios, basePath));
|
|
556
541
|
},
|
|
557
542
|
/**
|
|
558
543
|
* Submits one or more shipment confirmations for vendor orders. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
559
|
-
* @param {
|
|
544
|
+
* @param {VendorShippingApiSubmitShipmentConfirmationsRequest} requestParameters Request parameters.
|
|
560
545
|
* @param {*} [options] Override http request option.
|
|
561
546
|
* @throws {RequiredError}
|
|
562
547
|
*/
|
|
563
|
-
submitShipmentConfirmations(
|
|
564
|
-
return localVarFp.submitShipmentConfirmations(body, options).then((request) => request(axios, basePath));
|
|
548
|
+
submitShipmentConfirmations(requestParameters, options) {
|
|
549
|
+
return localVarFp.submitShipmentConfirmations(requestParameters.body, options).then((request) => request(axios, basePath));
|
|
565
550
|
},
|
|
566
551
|
/**
|
|
567
552
|
* This API call is only to be used by Vendor-Own-Carrier (VOC) vendors. Calling this API will submit a shipment status update for the package that a vendor has shipped. It will provide the Amazon customer visibility on their order, when the package is outside of Amazon Network visibility. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
568
|
-
* @param {
|
|
553
|
+
* @param {VendorShippingApiSubmitShipmentStatusUpdatesRequest} requestParameters Request parameters.
|
|
569
554
|
* @param {*} [options] Override http request option.
|
|
570
555
|
* @throws {RequiredError}
|
|
571
556
|
*/
|
|
572
|
-
submitShipmentStatusUpdates(
|
|
573
|
-
return localVarFp.submitShipmentStatusUpdates(body, options).then((request) => request(axios, basePath));
|
|
557
|
+
submitShipmentStatusUpdates(requestParameters, options) {
|
|
558
|
+
return localVarFp.submitShipmentStatusUpdates(requestParameters.body, options).then((request) => request(axios, basePath));
|
|
574
559
|
},
|
|
575
560
|
/**
|
|
576
561
|
* Creates a shipping label for a purchase order and returns a transactionId for reference. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
577
|
-
* @param {
|
|
562
|
+
* @param {VendorShippingApiSubmitShippingLabelRequestRequest} requestParameters Request parameters.
|
|
578
563
|
* @param {*} [options] Override http request option.
|
|
579
564
|
* @throws {RequiredError}
|
|
580
565
|
*/
|
|
581
|
-
submitShippingLabelRequest(
|
|
582
|
-
return localVarFp.submitShippingLabelRequest(body, options).then((request) => request(axios, basePath));
|
|
566
|
+
submitShippingLabelRequest(requestParameters, options) {
|
|
567
|
+
return localVarFp.submitShippingLabelRequest(requestParameters.body, options).then((request) => request(axios, basePath));
|
|
583
568
|
},
|
|
584
569
|
};
|
|
585
570
|
};
|
|
@@ -11,8 +11,6 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
-
// Some imports not used depending on template conditions
|
|
15
|
-
// @ts-ignore
|
|
16
14
|
import globalAxios from 'axios';
|
|
17
15
|
export const BASE_PATH = "https://sellingpartnerapi-na.amazon.com".replace(/\/+$/, "");
|
|
18
16
|
/**
|
|
@@ -52,9 +50,9 @@ export class BaseAPI {
|
|
|
52
50
|
*/
|
|
53
51
|
export class RequiredError extends Error {
|
|
54
52
|
field;
|
|
55
|
-
name = "RequiredError";
|
|
56
53
|
constructor(field, msg) {
|
|
57
54
|
super(msg);
|
|
58
55
|
this.field = field;
|
|
56
|
+
this.name = "RequiredError";
|
|
59
57
|
}
|
|
60
58
|
}
|
|
@@ -73,6 +73,8 @@ export const setOAuthToObject = async function (object, name, scopes, configurat
|
|
|
73
73
|
}
|
|
74
74
|
};
|
|
75
75
|
function setFlattenedQueryParams(urlSearchParams, parameter, key = "") {
|
|
76
|
+
if (parameter == null)
|
|
77
|
+
return;
|
|
76
78
|
if (typeof parameter === "object") {
|
|
77
79
|
if (Array.isArray(parameter)) {
|
|
78
80
|
parameter.forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
12
|
+
import type { Configuration } from '../configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import { GetCustomerInvoiceResponse } from '../models';
|
|
16
16
|
import { GetCustomerInvoicesResponse } from '../models';
|
|
@@ -199,82 +199,67 @@ export declare const VendorShippingApiFp: (configuration?: Configuration) => {
|
|
|
199
199
|
export declare const VendorShippingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
200
200
|
/**
|
|
201
201
|
* Returns a customer invoice based on the purchaseOrderNumber that you specify. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
202
|
-
* @param {
|
|
202
|
+
* @param {VendorShippingApiGetCustomerInvoiceRequest} requestParameters Request parameters.
|
|
203
203
|
* @param {*} [options] Override http request option.
|
|
204
204
|
* @throws {RequiredError}
|
|
205
205
|
*/
|
|
206
|
-
getCustomerInvoice(
|
|
206
|
+
getCustomerInvoice(requestParameters: VendorShippingApiGetCustomerInvoiceRequest, options?: AxiosRequestConfig): AxiosPromise<GetCustomerInvoiceResponse>;
|
|
207
207
|
/**
|
|
208
208
|
* Returns a list of customer invoices created during a time frame that you specify. You define the time frame using the createdAfter and createdBefore parameters. You must use both of these parameters. The date range to search must be no more than 7 days. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
209
|
-
* @param {
|
|
210
|
-
* @param {string} createdBefore Orders that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
211
|
-
* @param {string} [shipFromPartyId] The vendor warehouseId for order fulfillment. If not specified, the result will contain orders for all warehouses.
|
|
212
|
-
* @param {number} [limit] The limit to the number of records returned
|
|
213
|
-
* @param {'ASC' | 'DESC'} [sortOrder] Sort ASC or DESC by order creation date.
|
|
214
|
-
* @param {string} [nextToken] Used for pagination when there are more orders than the specified result size limit. The token value is returned in the previous API call.
|
|
209
|
+
* @param {VendorShippingApiGetCustomerInvoicesRequest} requestParameters Request parameters.
|
|
215
210
|
* @param {*} [options] Override http request option.
|
|
216
211
|
* @throws {RequiredError}
|
|
217
212
|
*/
|
|
218
|
-
getCustomerInvoices(
|
|
213
|
+
getCustomerInvoices(requestParameters: VendorShippingApiGetCustomerInvoicesRequest, options?: AxiosRequestConfig): AxiosPromise<GetCustomerInvoicesResponse>;
|
|
219
214
|
/**
|
|
220
215
|
* Returns a packing slip based on the purchaseOrderNumber that you specify. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
221
|
-
* @param {
|
|
216
|
+
* @param {VendorShippingApiGetPackingSlipRequest} requestParameters Request parameters.
|
|
222
217
|
* @param {*} [options] Override http request option.
|
|
223
218
|
* @throws {RequiredError}
|
|
224
219
|
*/
|
|
225
|
-
getPackingSlip(
|
|
220
|
+
getPackingSlip(requestParameters: VendorShippingApiGetPackingSlipRequest, options?: AxiosRequestConfig): AxiosPromise<GetPackingSlipResponse>;
|
|
226
221
|
/**
|
|
227
222
|
* Returns a list of packing slips for the purchase orders that match the criteria specified. Date range to search must not be more than 7 days. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
228
|
-
* @param {
|
|
229
|
-
* @param {string} createdBefore Packing slips that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
230
|
-
* @param {string} [shipFromPartyId] The vendor warehouseId for order fulfillment. If not specified the result will contain orders for all warehouses.
|
|
231
|
-
* @param {number} [limit] The limit to the number of records returned
|
|
232
|
-
* @param {'ASC' | 'DESC'} [sortOrder] Sort ASC or DESC by packing slip creation date.
|
|
233
|
-
* @param {string} [nextToken] Used for pagination when there are more packing slips than the specified result size limit. The token value is returned in the previous API call.
|
|
223
|
+
* @param {VendorShippingApiGetPackingSlipsRequest} requestParameters Request parameters.
|
|
234
224
|
* @param {*} [options] Override http request option.
|
|
235
225
|
* @throws {RequiredError}
|
|
236
226
|
*/
|
|
237
|
-
getPackingSlips(
|
|
227
|
+
getPackingSlips(requestParameters: VendorShippingApiGetPackingSlipsRequest, options?: AxiosRequestConfig): AxiosPromise<GetPackingSlipListResponse>;
|
|
238
228
|
/**
|
|
239
229
|
* Returns a shipping label for the purchaseOrderNumber that you specify. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
240
|
-
* @param {
|
|
230
|
+
* @param {VendorShippingApiGetShippingLabelRequest} requestParameters Request parameters.
|
|
241
231
|
* @param {*} [options] Override http request option.
|
|
242
232
|
* @throws {RequiredError}
|
|
243
233
|
*/
|
|
244
|
-
getShippingLabel(
|
|
234
|
+
getShippingLabel(requestParameters: VendorShippingApiGetShippingLabelRequest, options?: AxiosRequestConfig): AxiosPromise<GetShippingLabelResponse>;
|
|
245
235
|
/**
|
|
246
236
|
* Returns a list of shipping labels created during the time frame that you specify. You define that time frame using the createdAfter and createdBefore parameters. You must use both of these parameters. The date range to search must not be more than 7 days. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
247
|
-
* @param {
|
|
248
|
-
* @param {string} createdBefore Shipping labels that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
249
|
-
* @param {string} [shipFromPartyId] The vendor warehouseId for order fulfillment. If not specified, the result will contain orders for all warehouses.
|
|
250
|
-
* @param {number} [limit] The limit to the number of records returned.
|
|
251
|
-
* @param {'ASC' | 'DESC'} [sortOrder] Sort ASC or DESC by order creation date.
|
|
252
|
-
* @param {string} [nextToken] Used for pagination when there are more ship labels than the specified result size limit. The token value is returned in the previous API call.
|
|
237
|
+
* @param {VendorShippingApiGetShippingLabelsRequest} requestParameters Request parameters.
|
|
253
238
|
* @param {*} [options] Override http request option.
|
|
254
239
|
* @throws {RequiredError}
|
|
255
240
|
*/
|
|
256
|
-
getShippingLabels(
|
|
241
|
+
getShippingLabels(requestParameters: VendorShippingApiGetShippingLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<GetShippingLabelListResponse>;
|
|
257
242
|
/**
|
|
258
243
|
* Submits one or more shipment confirmations for vendor orders. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
259
|
-
* @param {
|
|
244
|
+
* @param {VendorShippingApiSubmitShipmentConfirmationsRequest} requestParameters Request parameters.
|
|
260
245
|
* @param {*} [options] Override http request option.
|
|
261
246
|
* @throws {RequiredError}
|
|
262
247
|
*/
|
|
263
|
-
submitShipmentConfirmations(
|
|
248
|
+
submitShipmentConfirmations(requestParameters: VendorShippingApiSubmitShipmentConfirmationsRequest, options?: AxiosRequestConfig): AxiosPromise<SubmitShipmentConfirmationsResponse>;
|
|
264
249
|
/**
|
|
265
250
|
* This API call is only to be used by Vendor-Own-Carrier (VOC) vendors. Calling this API will submit a shipment status update for the package that a vendor has shipped. It will provide the Amazon customer visibility on their order, when the package is outside of Amazon Network visibility. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
266
|
-
* @param {
|
|
251
|
+
* @param {VendorShippingApiSubmitShipmentStatusUpdatesRequest} requestParameters Request parameters.
|
|
267
252
|
* @param {*} [options] Override http request option.
|
|
268
253
|
* @throws {RequiredError}
|
|
269
254
|
*/
|
|
270
|
-
submitShipmentStatusUpdates(
|
|
255
|
+
submitShipmentStatusUpdates(requestParameters: VendorShippingApiSubmitShipmentStatusUpdatesRequest, options?: AxiosRequestConfig): AxiosPromise<SubmitShipmentStatusUpdatesResponse>;
|
|
271
256
|
/**
|
|
272
257
|
* Creates a shipping label for a purchase order and returns a transactionId for reference. **Usage Plans:** | Plan type | Rate (requests per second) | Burst | | ---- | ---- | ---- | |Default| 10 | 10 | |Selling partner specific| Variable | Variable | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see \"Usage Plans and Rate Limits\" in the Selling Partner API documentation.
|
|
273
|
-
* @param {
|
|
258
|
+
* @param {VendorShippingApiSubmitShippingLabelRequestRequest} requestParameters Request parameters.
|
|
274
259
|
* @param {*} [options] Override http request option.
|
|
275
260
|
* @throws {RequiredError}
|
|
276
261
|
*/
|
|
277
|
-
submitShippingLabelRequest(
|
|
262
|
+
submitShippingLabelRequest(requestParameters: VendorShippingApiSubmitShippingLabelRequestRequest, options?: AxiosRequestConfig): AxiosPromise<SubmitShippingLabelsResponse>;
|
|
278
263
|
};
|
|
279
264
|
/**
|
|
280
265
|
* Request parameters for getCustomerInvoice operation in VendorShippingApi.
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { Configuration } from
|
|
13
|
-
import { AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
12
|
+
import type { Configuration } from './configuration';
|
|
13
|
+
import type { AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
14
14
|
export declare const BASE_PATH: string;
|
|
15
15
|
/**
|
|
16
16
|
*
|
|
@@ -50,6 +50,5 @@ export declare class BaseAPI {
|
|
|
50
50
|
*/
|
|
51
51
|
export declare class RequiredError extends Error {
|
|
52
52
|
field: string;
|
|
53
|
-
name: "RequiredError";
|
|
54
53
|
constructor(field: string, msg?: string);
|
|
55
54
|
}
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/// <reference types="node" />
|
|
13
|
-
import { Configuration } from "./configuration";
|
|
14
|
-
import { RequestArgs } from "./base";
|
|
15
|
-
import { AxiosInstance, AxiosResponse } from 'axios';
|
|
13
|
+
import type { Configuration } from "./configuration";
|
|
14
|
+
import type { RequestArgs } from "./base";
|
|
15
|
+
import type { AxiosInstance, AxiosResponse } from 'axios';
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
18
18
|
* @export
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@sp-api-sdk/vendor-direct-fulfillment-shipping-api-v1",
|
|
3
3
|
"author": "Vincent Mesquita <vincent.mesquita@bizon.solutions>",
|
|
4
4
|
"description": "The Selling Partner API for Direct Fulfillment Shipping provides programmatic access to a direct fulfillment vendor's shipping data.",
|
|
5
|
-
"version": "1.11.
|
|
5
|
+
"version": "1.11.11",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
7
7
|
"module": "dist/es/index.js",
|
|
8
8
|
"types": "dist/types/index.d.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"test": "jest"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@sp-api-sdk/common": "^1.
|
|
29
|
+
"@sp-api-sdk/common": "^1.10.0",
|
|
30
30
|
"axios": "^0.27.2"
|
|
31
31
|
},
|
|
32
32
|
"repository": {
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"typedoc": {
|
|
52
52
|
"entryPoint": "./index.ts"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "3a4bc7db3349aaf06b421f0e89c9fb3f60a76cd1"
|
|
55
55
|
}
|