@sp-api-sdk/fulfillment-outbound-api-2020-07-01 4.0.2 → 4.1.1

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.
Files changed (50) hide show
  1. package/dist/cjs/api-model/api/fulfillment-outbound-api.js +93 -31
  2. package/dist/cjs/api-model/models/delivery-offering.js +15 -0
  3. package/dist/cjs/api-model/models/delivery-quantity.js +19 -0
  4. package/dist/cjs/api-model/models/fulfillment-policy.js +1 -1
  5. package/dist/cjs/api-model/models/get-delivery-offerings-request.js +15 -0
  6. package/dist/cjs/api-model/models/get-delivery-offerings-response.js +15 -0
  7. package/dist/cjs/api-model/models/get-delivery-offerings-result.js +15 -0
  8. package/dist/cjs/api-model/models/index.js +5 -0
  9. package/dist/cjs/client.js +7 -0
  10. package/dist/es/api-model/api/fulfillment-outbound-api.js +93 -31
  11. package/dist/es/api-model/models/delivery-offering.js +14 -0
  12. package/dist/es/api-model/models/delivery-quantity.js +16 -0
  13. package/dist/es/api-model/models/fulfillment-policy.js +1 -1
  14. package/dist/es/api-model/models/get-delivery-offerings-request.js +14 -0
  15. package/dist/es/api-model/models/get-delivery-offerings-response.js +14 -0
  16. package/dist/es/api-model/models/get-delivery-offerings-result.js +14 -0
  17. package/dist/es/api-model/models/index.js +5 -0
  18. package/dist/es/client.js +7 -0
  19. package/dist/types/api-model/api/fulfillment-outbound-api.d.ts +79 -34
  20. package/dist/types/api-model/models/create-fulfillment-order-item.d.ts +1 -1
  21. package/dist/types/api-model/models/create-fulfillment-order-request.d.ts +2 -2
  22. package/dist/types/api-model/models/create-fulfillment-return-request.d.ts +1 -1
  23. package/dist/types/api-model/models/create-fulfillment-return-result.d.ts +1 -1
  24. package/dist/types/api-model/models/create-return-item.d.ts +1 -1
  25. package/dist/types/api-model/models/delivery-message.d.ts +1 -1
  26. package/dist/types/api-model/models/delivery-offering.d.ts +24 -0
  27. package/dist/types/api-model/models/delivery-quantity.d.ts +28 -0
  28. package/dist/types/api-model/models/feature-settings.d.ts +1 -1
  29. package/dist/types/api-model/models/fulfillment-policy.d.ts +1 -1
  30. package/dist/types/api-model/models/fulfillment-shipment-package.d.ts +4 -0
  31. package/dist/types/api-model/models/fulfillment-shipment.d.ts +2 -2
  32. package/dist/types/api-model/models/get-delivery-offerings-request.d.ts +28 -0
  33. package/dist/types/api-model/models/get-delivery-offerings-response.d.ts +22 -0
  34. package/dist/types/api-model/models/get-delivery-offerings-result.d.ts +21 -0
  35. package/dist/types/api-model/models/get-delivery-offers-request.d.ts +1 -1
  36. package/dist/types/api-model/models/get-delivery-offers-response.d.ts +1 -1
  37. package/dist/types/api-model/models/get-feature-inventory-result.d.ts +1 -1
  38. package/dist/types/api-model/models/get-feature-sku-result.d.ts +1 -1
  39. package/dist/types/api-model/models/get-fulfillment-order-result.d.ts +1 -1
  40. package/dist/types/api-model/models/get-fulfillment-preview-request.d.ts +2 -2
  41. package/dist/types/api-model/models/index.d.ts +5 -0
  42. package/dist/types/api-model/models/invalid-return-item.d.ts +1 -1
  43. package/dist/types/api-model/models/list-all-fulfillment-orders-result.d.ts +1 -1
  44. package/dist/types/api-model/models/list-return-reason-codes-result.d.ts +1 -1
  45. package/dist/types/api-model/models/package-tracking-details.d.ts +1 -1
  46. package/dist/types/api-model/models/reason-code-details.d.ts +1 -1
  47. package/dist/types/api-model/models/return-authorization.d.ts +1 -1
  48. package/dist/types/api-model/models/return-item.d.ts +1 -1
  49. package/dist/types/api-model/models/update-fulfillment-order-item.d.ts +1 -1
  50. package/package.json +3 -3
@@ -87,8 +87,8 @@ const FulfillmentOutboundApiAxiosParamCreator = function (configuration) {
87
87
  },
88
88
  /**
89
89
  * Creates a fulfillment return. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
90
- * @param {string} sellerFulfillmentOrderId An identifier assigned by the seller to the fulfillment order at the time it was created. The seller uses their own records to find the correct `SellerFulfillmentOrderId` value based on the buyer\'s request to return items.
91
- * @param {CreateFulfillmentReturnRequest} body CreateFulfillmentReturnRequest parameter
90
+ * @param {string} sellerFulfillmentOrderId An identifier the seller assigns to the fulfillment order at the time it was created. The seller uses their own records to find the correct `sellerFulfillmentOrderId` value based on the buyer\'s request to return items.
91
+ * @param {CreateFulfillmentReturnRequest} body The request body of the `createFulfillmentReturn` operation.
92
92
  * @param {*} [options] Override http request option.
93
93
  * @throws {RequiredError}
94
94
  */
@@ -118,6 +118,35 @@ const FulfillmentOutboundApiAxiosParamCreator = function (configuration) {
118
118
  options: localVarRequestOptions,
119
119
  };
120
120
  },
121
+ /**
122
+ * Returns fast delivery estimates for Product Detail and Collection pages, based on criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
123
+ * @param {GetDeliveryOfferingsRequest} body GetDeliveryOfferingsRequest parameter
124
+ * @param {*} [options] Override http request option.
125
+ * @throws {RequiredError}
126
+ */
127
+ deliveryOfferings: async (body, options = {}) => {
128
+ // verify required parameter 'body' is not null or undefined
129
+ (0, common_1.assertParamExists)('deliveryOfferings', 'body', body);
130
+ const localVarPath = `/fba/outbound/2020-07-01/deliveryOfferings`;
131
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
132
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
133
+ let baseOptions;
134
+ if (configuration) {
135
+ baseOptions = configuration.baseOptions;
136
+ }
137
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
138
+ const localVarHeaderParameter = {};
139
+ const localVarQueryParameter = {};
140
+ localVarHeaderParameter['Content-Type'] = 'application/json';
141
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
142
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
143
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
144
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
145
+ return {
146
+ url: (0, common_1.toPathString)(localVarUrlObj),
147
+ options: localVarRequestOptions,
148
+ };
149
+ },
121
150
  /**
122
151
  * Returns delivery options that include an estimated delivery date and offer expiration, based on criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
123
152
  * @param {GetDeliveryOffersRequest} body GetDeliveryOffersRequest parameter
@@ -151,8 +180,8 @@ const FulfillmentOutboundApiAxiosParamCreator = function (configuration) {
151
180
  * Returns a list of inventory items that are eligible for the fulfillment feature you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api)..
152
181
  * @param {string} marketplaceId The marketplace for which to return a list of the inventory that is eligible for the specified feature.
153
182
  * @param {string} featureName The name of the feature for which to return a list of eligible inventory.
154
- * @param {string} [nextToken] A string token returned in the response to your previous request that is used to return the next response page. A value of null will return the first page.
155
- * @param {string} [queryStartDate] A date that you can use to select inventory that has been updated since a specified date. An update is defined as any change in feature-enabled inventory availability. The date must be in the format yyyy-MM-ddTHH:mm:ss.sssZ
183
+ * @param {string} [nextToken] A string token returned in the response to your previous request that is used to return the next response page. A value of `null` will return the first page.
184
+ * @param {string} [queryStartDate] A date that you can use to select inventory that has been updated since a specified date. An update is defined as any change in feature-enabled inventory availability. The date must be in the format `yyyy-MM-ddTHH:mm:ss.sssZ`
156
185
  * @param {*} [options] Override http request option.
157
186
  * @throws {RequiredError}
158
187
  */
@@ -192,10 +221,10 @@ const FulfillmentOutboundApiAxiosParamCreator = function (configuration) {
192
221
  };
193
222
  },
194
223
  /**
195
- * Returns the number of items with the sellerSKU you specify that can have orders fulfilled using the specified feature. Note that if the sellerSKU isn\'t eligible, the response will contain an empty skuInfo object. The parameters for this operation may contain special characters that require URL encoding. To avoid errors with SKUs when encoding URLs, refer to [URL Encoding](https://developer-docs.amazon.com/sp-api/docs/url-encoding). **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
224
+ * Returns the number of items with the `sellerSku` you specify that can have orders fulfilled using the specified feature. Note that if the `sellerSku` isn\'t eligible, the response will contain an empty `skuInfo` object. The parameters for this operation may contain special characters that require URL encoding. To avoid errors with SKUs when encoding URLs, refer to [URL Encoding](https://developer-docs.amazon.com/sp-api/docs/url-encoding). **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
196
225
  * @param {string} marketplaceId The marketplace for which to return the count.
197
226
  * @param {string} featureName The name of the feature.
198
- * @param {string} sellerSku Used to identify an item in the given marketplace. `SellerSKU` is qualified by the seller\'s `SellerId`, which is included with every operation that you submit.
227
+ * @param {string} sellerSku Used to identify an item in the given marketplace. `sellerSku` is qualified by the seller\'s `sellerId`, which is included with every operation that you submit.
199
228
  * @param {*} [options] Override http request option.
200
229
  * @throws {RequiredError}
201
230
  */
@@ -318,13 +347,12 @@ const FulfillmentOutboundApiAxiosParamCreator = function (configuration) {
318
347
  },
319
348
  /**
320
349
  * Returns delivery tracking information for a package in an outbound shipment for a Multi-Channel Fulfillment order. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
321
- * @param {number} packageNumber The unencrypted package identifier returned by the `getFulfillmentOrder` operation.
350
+ * @param {number} [packageNumber] The unencrypted package identifier. You can obtain this value from the `getFulfillmentOrder` operation.
351
+ * @param {string} [amazonFulfillmentTrackingNumber] The Amazon fulfillment tracking number. You can obtain this value from the `getFulfillmentOrder` operation.
322
352
  * @param {*} [options] Override http request option.
323
353
  * @throws {RequiredError}
324
354
  */
325
- getPackageTrackingDetails: async (packageNumber, options = {}) => {
326
- // verify required parameter 'packageNumber' is not null or undefined
327
- (0, common_1.assertParamExists)('getPackageTrackingDetails', 'packageNumber', packageNumber);
355
+ getPackageTrackingDetails: async (packageNumber, amazonFulfillmentTrackingNumber, options = {}) => {
328
356
  const localVarPath = `/fba/outbound/2020-07-01/tracking`;
329
357
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
330
358
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -338,6 +366,9 @@ const FulfillmentOutboundApiAxiosParamCreator = function (configuration) {
338
366
  if (packageNumber !== undefined) {
339
367
  localVarQueryParameter['packageNumber'] = packageNumber;
340
368
  }
369
+ if (amazonFulfillmentTrackingNumber !== undefined) {
370
+ localVarQueryParameter['amazonFulfillmentTrackingNumber'] = amazonFulfillmentTrackingNumber;
371
+ }
341
372
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
342
373
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
343
374
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
@@ -347,7 +378,7 @@ const FulfillmentOutboundApiAxiosParamCreator = function (configuration) {
347
378
  };
348
379
  },
349
380
  /**
350
- * Returns a list of fulfillment orders fulfilled after (or at) a specified date-time, or indicated by the next token parameter. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api)
381
+ * Returns a list of fulfillment orders fulfilled after (or at) a specified date-time, or indicated by the `nextToken` parameter. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api)
351
382
  * @param {string} [queryStartDate] A date used to select fulfillment orders that were last updated after (or at) a specified time. An update is defined as any change in fulfillment order status, including the creation of a new fulfillment order.
352
383
  * @param {string} [nextToken] A string token returned in the response to your previous request.
353
384
  * @param {*} [options] Override http request option.
@@ -458,7 +489,7 @@ const FulfillmentOutboundApiAxiosParamCreator = function (configuration) {
458
489
  /**
459
490
  * Updates and/or requests shipment for a fulfillment order with an order hold on it. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
460
491
  * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.
461
- * @param {UpdateFulfillmentOrderRequest} body UpdateFulfillmentOrderRequest parameter
492
+ * @param {UpdateFulfillmentOrderRequest} body The request body of the `updateFulfillmentOrder` operation.
462
493
  * @param {*} [options] Override http request option.
463
494
  * @throws {RequiredError}
464
495
  */
@@ -523,8 +554,8 @@ const FulfillmentOutboundApiFp = function (configuration) {
523
554
  },
524
555
  /**
525
556
  * Creates a fulfillment return. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
526
- * @param {string} sellerFulfillmentOrderId An identifier assigned by the seller to the fulfillment order at the time it was created. The seller uses their own records to find the correct `SellerFulfillmentOrderId` value based on the buyer\'s request to return items.
527
- * @param {CreateFulfillmentReturnRequest} body CreateFulfillmentReturnRequest parameter
557
+ * @param {string} sellerFulfillmentOrderId An identifier the seller assigns to the fulfillment order at the time it was created. The seller uses their own records to find the correct `sellerFulfillmentOrderId` value based on the buyer\'s request to return items.
558
+ * @param {CreateFulfillmentReturnRequest} body The request body of the `createFulfillmentReturn` operation.
528
559
  * @param {*} [options] Override http request option.
529
560
  * @throws {RequiredError}
530
561
  */
@@ -534,6 +565,18 @@ const FulfillmentOutboundApiFp = function (configuration) {
534
565
  const localVarOperationServerBasePath = base_1.operationServerMap['FulfillmentOutboundApi.createFulfillmentReturn']?.[localVarOperationServerIndex]?.url;
535
566
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
536
567
  },
568
+ /**
569
+ * Returns fast delivery estimates for Product Detail and Collection pages, based on criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
570
+ * @param {GetDeliveryOfferingsRequest} body GetDeliveryOfferingsRequest parameter
571
+ * @param {*} [options] Override http request option.
572
+ * @throws {RequiredError}
573
+ */
574
+ async deliveryOfferings(body, options) {
575
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deliveryOfferings(body, options);
576
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
577
+ const localVarOperationServerBasePath = base_1.operationServerMap['FulfillmentOutboundApi.deliveryOfferings']?.[localVarOperationServerIndex]?.url;
578
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
579
+ },
537
580
  /**
538
581
  * Returns delivery options that include an estimated delivery date and offer expiration, based on criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
539
582
  * @param {GetDeliveryOffersRequest} body GetDeliveryOffersRequest parameter
@@ -550,8 +593,8 @@ const FulfillmentOutboundApiFp = function (configuration) {
550
593
  * Returns a list of inventory items that are eligible for the fulfillment feature you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api)..
551
594
  * @param {string} marketplaceId The marketplace for which to return a list of the inventory that is eligible for the specified feature.
552
595
  * @param {string} featureName The name of the feature for which to return a list of eligible inventory.
553
- * @param {string} [nextToken] A string token returned in the response to your previous request that is used to return the next response page. A value of null will return the first page.
554
- * @param {string} [queryStartDate] A date that you can use to select inventory that has been updated since a specified date. An update is defined as any change in feature-enabled inventory availability. The date must be in the format yyyy-MM-ddTHH:mm:ss.sssZ
596
+ * @param {string} [nextToken] A string token returned in the response to your previous request that is used to return the next response page. A value of `null` will return the first page.
597
+ * @param {string} [queryStartDate] A date that you can use to select inventory that has been updated since a specified date. An update is defined as any change in feature-enabled inventory availability. The date must be in the format `yyyy-MM-ddTHH:mm:ss.sssZ`
555
598
  * @param {*} [options] Override http request option.
556
599
  * @throws {RequiredError}
557
600
  */
@@ -562,10 +605,10 @@ const FulfillmentOutboundApiFp = function (configuration) {
562
605
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
563
606
  },
564
607
  /**
565
- * Returns the number of items with the sellerSKU you specify that can have orders fulfilled using the specified feature. Note that if the sellerSKU isn\'t eligible, the response will contain an empty skuInfo object. The parameters for this operation may contain special characters that require URL encoding. To avoid errors with SKUs when encoding URLs, refer to [URL Encoding](https://developer-docs.amazon.com/sp-api/docs/url-encoding). **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
608
+ * Returns the number of items with the `sellerSku` you specify that can have orders fulfilled using the specified feature. Note that if the `sellerSku` isn\'t eligible, the response will contain an empty `skuInfo` object. The parameters for this operation may contain special characters that require URL encoding. To avoid errors with SKUs when encoding URLs, refer to [URL Encoding](https://developer-docs.amazon.com/sp-api/docs/url-encoding). **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
566
609
  * @param {string} marketplaceId The marketplace for which to return the count.
567
610
  * @param {string} featureName The name of the feature.
568
- * @param {string} sellerSku Used to identify an item in the given marketplace. `SellerSKU` is qualified by the seller\'s `SellerId`, which is included with every operation that you submit.
611
+ * @param {string} sellerSku Used to identify an item in the given marketplace. `sellerSku` is qualified by the seller\'s `sellerId`, which is included with every operation that you submit.
569
612
  * @param {*} [options] Override http request option.
570
613
  * @throws {RequiredError}
571
614
  */
@@ -613,18 +656,19 @@ const FulfillmentOutboundApiFp = function (configuration) {
613
656
  },
614
657
  /**
615
658
  * Returns delivery tracking information for a package in an outbound shipment for a Multi-Channel Fulfillment order. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
616
- * @param {number} packageNumber The unencrypted package identifier returned by the `getFulfillmentOrder` operation.
659
+ * @param {number} [packageNumber] The unencrypted package identifier. You can obtain this value from the `getFulfillmentOrder` operation.
660
+ * @param {string} [amazonFulfillmentTrackingNumber] The Amazon fulfillment tracking number. You can obtain this value from the `getFulfillmentOrder` operation.
617
661
  * @param {*} [options] Override http request option.
618
662
  * @throws {RequiredError}
619
663
  */
620
- async getPackageTrackingDetails(packageNumber, options) {
621
- const localVarAxiosArgs = await localVarAxiosParamCreator.getPackageTrackingDetails(packageNumber, options);
664
+ async getPackageTrackingDetails(packageNumber, amazonFulfillmentTrackingNumber, options) {
665
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getPackageTrackingDetails(packageNumber, amazonFulfillmentTrackingNumber, options);
622
666
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
623
667
  const localVarOperationServerBasePath = base_1.operationServerMap['FulfillmentOutboundApi.getPackageTrackingDetails']?.[localVarOperationServerIndex]?.url;
624
668
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
625
669
  },
626
670
  /**
627
- * Returns a list of fulfillment orders fulfilled after (or at) a specified date-time, or indicated by the next token parameter. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api)
671
+ * Returns a list of fulfillment orders fulfilled after (or at) a specified date-time, or indicated by the `nextToken` parameter. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api)
628
672
  * @param {string} [queryStartDate] A date used to select fulfillment orders that were last updated after (or at) a specified time. An update is defined as any change in fulfillment order status, including the creation of a new fulfillment order.
629
673
  * @param {string} [nextToken] A string token returned in the response to your previous request.
630
674
  * @param {*} [options] Override http request option.
@@ -667,7 +711,7 @@ const FulfillmentOutboundApiFp = function (configuration) {
667
711
  /**
668
712
  * Updates and/or requests shipment for a fulfillment order with an order hold on it. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
669
713
  * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.
670
- * @param {UpdateFulfillmentOrderRequest} body UpdateFulfillmentOrderRequest parameter
714
+ * @param {UpdateFulfillmentOrderRequest} body The request body of the `updateFulfillmentOrder` operation.
671
715
  * @param {*} [options] Override http request option.
672
716
  * @throws {RequiredError}
673
717
  */
@@ -713,6 +757,15 @@ const FulfillmentOutboundApiFactory = function (configuration, basePath, axios)
713
757
  createFulfillmentReturn(requestParameters, options) {
714
758
  return localVarFp.createFulfillmentReturn(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(axios, basePath));
715
759
  },
760
+ /**
761
+ * Returns fast delivery estimates for Product Detail and Collection pages, based on criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
762
+ * @param {FulfillmentOutboundApiDeliveryOfferingsRequest} requestParameters Request parameters.
763
+ * @param {*} [options] Override http request option.
764
+ * @throws {RequiredError}
765
+ */
766
+ deliveryOfferings(requestParameters, options) {
767
+ return localVarFp.deliveryOfferings(requestParameters.body, options).then((request) => request(axios, basePath));
768
+ },
716
769
  /**
717
770
  * Returns delivery options that include an estimated delivery date and offer expiration, based on criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
718
771
  * @param {FulfillmentOutboundApiDeliveryOffersRequest} requestParameters Request parameters.
@@ -732,7 +785,7 @@ const FulfillmentOutboundApiFactory = function (configuration, basePath, axios)
732
785
  return localVarFp.getFeatureInventory(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.nextToken, requestParameters.queryStartDate, options).then((request) => request(axios, basePath));
733
786
  },
734
787
  /**
735
- * Returns the number of items with the sellerSKU you specify that can have orders fulfilled using the specified feature. Note that if the sellerSKU isn\'t eligible, the response will contain an empty skuInfo object. The parameters for this operation may contain special characters that require URL encoding. To avoid errors with SKUs when encoding URLs, refer to [URL Encoding](https://developer-docs.amazon.com/sp-api/docs/url-encoding). **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
788
+ * Returns the number of items with the `sellerSku` you specify that can have orders fulfilled using the specified feature. Note that if the `sellerSku` isn\'t eligible, the response will contain an empty `skuInfo` object. The parameters for this operation may contain special characters that require URL encoding. To avoid errors with SKUs when encoding URLs, refer to [URL Encoding](https://developer-docs.amazon.com/sp-api/docs/url-encoding). **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
736
789
  * @param {FulfillmentOutboundApiGetFeatureSKURequest} requestParameters Request parameters.
737
790
  * @param {*} [options] Override http request option.
738
791
  * @throws {RequiredError}
@@ -773,11 +826,11 @@ const FulfillmentOutboundApiFactory = function (configuration, basePath, axios)
773
826
  * @param {*} [options] Override http request option.
774
827
  * @throws {RequiredError}
775
828
  */
776
- getPackageTrackingDetails(requestParameters, options) {
777
- return localVarFp.getPackageTrackingDetails(requestParameters.packageNumber, options).then((request) => request(axios, basePath));
829
+ getPackageTrackingDetails(requestParameters = {}, options) {
830
+ return localVarFp.getPackageTrackingDetails(requestParameters.packageNumber, requestParameters.amazonFulfillmentTrackingNumber, options).then((request) => request(axios, basePath));
778
831
  },
779
832
  /**
780
- * Returns a list of fulfillment orders fulfilled after (or at) a specified date-time, or indicated by the next token parameter. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api)
833
+ * Returns a list of fulfillment orders fulfilled after (or at) a specified date-time, or indicated by the `nextToken` parameter. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api)
781
834
  * @param {FulfillmentOutboundApiListAllFulfillmentOrdersRequest} requestParameters Request parameters.
782
835
  * @param {*} [options] Override http request option.
783
836
  * @throws {RequiredError}
@@ -846,6 +899,15 @@ class FulfillmentOutboundApi extends base_1.BaseAPI {
846
899
  createFulfillmentReturn(requestParameters, options) {
847
900
  return (0, exports.FulfillmentOutboundApiFp)(this.configuration).createFulfillmentReturn(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
848
901
  }
902
+ /**
903
+ * Returns fast delivery estimates for Product Detail and Collection pages, based on criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
904
+ * @param {FulfillmentOutboundApiDeliveryOfferingsRequest} requestParameters Request parameters.
905
+ * @param {*} [options] Override http request option.
906
+ * @throws {RequiredError}
907
+ */
908
+ deliveryOfferings(requestParameters, options) {
909
+ return (0, exports.FulfillmentOutboundApiFp)(this.configuration).deliveryOfferings(requestParameters.body, options).then((request) => request(this.axios, this.basePath));
910
+ }
849
911
  /**
850
912
  * Returns delivery options that include an estimated delivery date and offer expiration, based on criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
851
913
  * @param {FulfillmentOutboundApiDeliveryOffersRequest} requestParameters Request parameters.
@@ -865,7 +927,7 @@ class FulfillmentOutboundApi extends base_1.BaseAPI {
865
927
  return (0, exports.FulfillmentOutboundApiFp)(this.configuration).getFeatureInventory(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.nextToken, requestParameters.queryStartDate, options).then((request) => request(this.axios, this.basePath));
866
928
  }
867
929
  /**
868
- * Returns the number of items with the sellerSKU you specify that can have orders fulfilled using the specified feature. Note that if the sellerSKU isn\'t eligible, the response will contain an empty skuInfo object. The parameters for this operation may contain special characters that require URL encoding. To avoid errors with SKUs when encoding URLs, refer to [URL Encoding](https://developer-docs.amazon.com/sp-api/docs/url-encoding). **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
930
+ * Returns the number of items with the `sellerSku` you specify that can have orders fulfilled using the specified feature. Note that if the `sellerSku` isn\'t eligible, the response will contain an empty `skuInfo` object. The parameters for this operation may contain special characters that require URL encoding. To avoid errors with SKUs when encoding URLs, refer to [URL Encoding](https://developer-docs.amazon.com/sp-api/docs/url-encoding). **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
869
931
  * @param {FulfillmentOutboundApiGetFeatureSKURequest} requestParameters Request parameters.
870
932
  * @param {*} [options] Override http request option.
871
933
  * @throws {RequiredError}
@@ -906,11 +968,11 @@ class FulfillmentOutboundApi extends base_1.BaseAPI {
906
968
  * @param {*} [options] Override http request option.
907
969
  * @throws {RequiredError}
908
970
  */
909
- getPackageTrackingDetails(requestParameters, options) {
910
- return (0, exports.FulfillmentOutboundApiFp)(this.configuration).getPackageTrackingDetails(requestParameters.packageNumber, options).then((request) => request(this.axios, this.basePath));
971
+ getPackageTrackingDetails(requestParameters = {}, options) {
972
+ return (0, exports.FulfillmentOutboundApiFp)(this.configuration).getPackageTrackingDetails(requestParameters.packageNumber, requestParameters.amazonFulfillmentTrackingNumber, options).then((request) => request(this.axios, this.basePath));
911
973
  }
912
974
  /**
913
- * Returns a list of fulfillment orders fulfilled after (or at) a specified date-time, or indicated by the next token parameter. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api)
975
+ * Returns a list of fulfillment orders fulfilled after (or at) a specified date-time, or indicated by the `nextToken` parameter. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api)
914
976
  * @param {FulfillmentOutboundApiListAllFulfillmentOrdersRequest} requestParameters Request parameters.
915
977
  * @param {*} [options] Override http request option.
916
978
  * @throws {RequiredError}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Selling Partner APIs for Fulfillment Outbound
6
+ * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders.
7
+ *
8
+ * The version of the OpenAPI document: 2020-07-01
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Selling Partner APIs for Fulfillment Outbound
6
+ * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders.
7
+ *
8
+ * The version of the OpenAPI document: 2020-07-01
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.DeliveryQuantityUnitOfMeasureEnum = void 0;
17
+ exports.DeliveryQuantityUnitOfMeasureEnum = {
18
+ Each: 'Each'
19
+ };
@@ -15,7 +15,7 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.FulfillmentPolicy = void 0;
17
17
  /**
18
- * The `FulfillmentPolicy` value specified when you submitted the `createFulfillmentOrder` operation.
18
+ * The `FulfillmentPolicy` value specified when you called the `createFulfillmentOrder` operation.
19
19
  */
20
20
  exports.FulfillmentPolicy = {
21
21
  FillOrKill: 'FillOrKill',
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Selling Partner APIs for Fulfillment Outbound
6
+ * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders.
7
+ *
8
+ * The version of the OpenAPI document: 2020-07-01
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Selling Partner APIs for Fulfillment Outbound
6
+ * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders.
7
+ *
8
+ * The version of the OpenAPI document: 2020-07-01
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Selling Partner APIs for Fulfillment Outbound
6
+ * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders.
7
+ *
8
+ * The version of the OpenAPI document: 2020-07-01
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -32,8 +32,10 @@ __exportStar(require("./delivery-document"), exports);
32
32
  __exportStar(require("./delivery-information"), exports);
33
33
  __exportStar(require("./delivery-message"), exports);
34
34
  __exportStar(require("./delivery-offer"), exports);
35
+ __exportStar(require("./delivery-offering"), exports);
35
36
  __exportStar(require("./delivery-policy"), exports);
36
37
  __exportStar(require("./delivery-preferences"), exports);
38
+ __exportStar(require("./delivery-quantity"), exports);
37
39
  __exportStar(require("./delivery-window"), exports);
38
40
  __exportStar(require("./destination"), exports);
39
41
  __exportStar(require("./drop-off-location"), exports);
@@ -54,6 +56,9 @@ __exportStar(require("./fulfillment-return-item-status"), exports);
54
56
  __exportStar(require("./fulfillment-shipment"), exports);
55
57
  __exportStar(require("./fulfillment-shipment-item"), exports);
56
58
  __exportStar(require("./fulfillment-shipment-package"), exports);
59
+ __exportStar(require("./get-delivery-offerings-request"), exports);
60
+ __exportStar(require("./get-delivery-offerings-response"), exports);
61
+ __exportStar(require("./get-delivery-offerings-result"), exports);
57
62
  __exportStar(require("./get-delivery-offers-product"), exports);
58
63
  __exportStar(require("./get-delivery-offers-request"), exports);
59
64
  __exportStar(require("./get-delivery-offers-response"), exports);
@@ -11,6 +11,13 @@ exports.clientRateLimits = [
11
11
  rate: 2,
12
12
  burst: 30,
13
13
  },
14
+ {
15
+ method: 'post',
16
+ // eslint-disable-next-line prefer-regex-literals
17
+ urlRegex: new RegExp('^/fba/outbound/2020-07-01/deliveryOfferings$'),
18
+ rate: 5,
19
+ burst: 30,
20
+ },
14
21
  {
15
22
  method: 'post',
16
23
  // eslint-disable-next-line prefer-regex-literals