@sp-api-sdk/fulfillment-outbound-api-2020-07-01 2.2.0 → 2.3.0

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 (83) hide show
  1. package/dist/cjs/src/api-model/api/fba-outbound-api.js +82 -15
  2. package/dist/cjs/src/api-model/models/amount.js +19 -0
  3. package/dist/cjs/src/api-model/models/date-range.js +15 -0
  4. package/dist/cjs/src/api-model/models/delivery-message.js +15 -0
  5. package/dist/cjs/src/api-model/models/delivery-offer.js +15 -0
  6. package/dist/cjs/src/api-model/models/delivery-policy.js +15 -0
  7. package/dist/cjs/src/api-model/models/delivery-preferences.js +15 -0
  8. package/dist/cjs/src/api-model/models/delivery-quantity.js +19 -0
  9. package/dist/cjs/src/api-model/models/destination.js +15 -0
  10. package/dist/cjs/src/api-model/models/drop-off-location.js +26 -0
  11. package/dist/cjs/src/api-model/models/get-delivery-offers-product.js +15 -0
  12. package/dist/cjs/src/api-model/models/get-delivery-offers-request.js +15 -0
  13. package/dist/cjs/src/api-model/models/get-delivery-offers-response.js +15 -0
  14. package/dist/cjs/src/api-model/models/get-delivery-offers-result.js +15 -0
  15. package/dist/cjs/src/api-model/models/get-delivery-offers-terms.js +15 -0
  16. package/dist/cjs/src/api-model/models/index.js +18 -0
  17. package/dist/cjs/src/api-model/models/locker-details.js +15 -0
  18. package/dist/cjs/src/api-model/models/origin.js +15 -0
  19. package/dist/cjs/src/api-model/models/product-identifier.js +15 -0
  20. package/dist/cjs/src/api-model/models/variable-precision-address.js +15 -0
  21. package/dist/cjs/src/client.js +7 -0
  22. package/dist/es/src/api-model/api/fba-outbound-api.js +82 -15
  23. package/dist/es/src/api-model/models/amount.js +16 -0
  24. package/dist/es/src/api-model/models/date-range.js +14 -0
  25. package/dist/es/src/api-model/models/delivery-message.js +14 -0
  26. package/dist/es/src/api-model/models/delivery-offer.js +14 -0
  27. package/dist/es/src/api-model/models/delivery-policy.js +14 -0
  28. package/dist/es/src/api-model/models/delivery-preferences.js +14 -0
  29. package/dist/es/src/api-model/models/delivery-quantity.js +16 -0
  30. package/dist/es/src/api-model/models/destination.js +14 -0
  31. package/dist/es/src/api-model/models/drop-off-location.js +23 -0
  32. package/dist/es/src/api-model/models/get-delivery-offers-product.js +14 -0
  33. package/dist/es/src/api-model/models/get-delivery-offers-request.js +14 -0
  34. package/dist/es/src/api-model/models/get-delivery-offers-response.js +14 -0
  35. package/dist/es/src/api-model/models/get-delivery-offers-result.js +14 -0
  36. package/dist/es/src/api-model/models/get-delivery-offers-terms.js +14 -0
  37. package/dist/es/src/api-model/models/index.js +18 -0
  38. package/dist/es/src/api-model/models/locker-details.js +14 -0
  39. package/dist/es/src/api-model/models/origin.js +14 -0
  40. package/dist/es/src/api-model/models/product-identifier.js +14 -0
  41. package/dist/es/src/api-model/models/variable-precision-address.js +14 -0
  42. package/dist/es/src/client.js +7 -0
  43. package/dist/types/src/api-model/api/fba-outbound-api.d.ts +69 -17
  44. package/dist/types/src/api-model/models/amount.d.ts +34 -0
  45. package/dist/types/src/api-model/models/create-fulfillment-order-request.d.ts +8 -1
  46. package/dist/types/src/api-model/models/create-fulfillment-return-result.d.ts +1 -1
  47. package/dist/types/src/api-model/models/date-range.d.ts +30 -0
  48. package/dist/types/src/api-model/models/delivery-message.d.ts +30 -0
  49. package/dist/types/src/api-model/models/delivery-offer.d.ts +38 -0
  50. package/dist/types/src/api-model/models/delivery-policy.d.ts +25 -0
  51. package/dist/types/src/api-model/models/delivery-preferences.d.ts +31 -0
  52. package/dist/types/src/api-model/models/delivery-quantity.d.ts +34 -0
  53. package/dist/types/src/api-model/models/delivery-window.d.ts +2 -2
  54. package/dist/types/src/api-model/models/destination.d.ts +31 -0
  55. package/dist/types/src/api-model/models/drop-off-location.d.ts +43 -0
  56. package/dist/types/src/api-model/models/fulfillment-order-item.d.ts +2 -2
  57. package/dist/types/src/api-model/models/fulfillment-order.d.ts +3 -3
  58. package/dist/types/src/api-model/models/fulfillment-preview-shipment.d.ts +4 -4
  59. package/dist/types/src/api-model/models/fulfillment-preview.d.ts +1 -1
  60. package/dist/types/src/api-model/models/fulfillment-shipment-item.d.ts +6 -0
  61. package/dist/types/src/api-model/models/fulfillment-shipment-package.d.ts +8 -1
  62. package/dist/types/src/api-model/models/fulfillment-shipment.d.ts +2 -2
  63. package/dist/types/src/api-model/models/get-delivery-offers-product.d.ts +32 -0
  64. package/dist/types/src/api-model/models/get-delivery-offers-request.d.ts +32 -0
  65. package/dist/types/src/api-model/models/get-delivery-offers-response.d.ts +31 -0
  66. package/dist/types/src/api-model/models/get-delivery-offers-result.d.ts +25 -0
  67. package/dist/types/src/api-model/models/get-delivery-offers-terms.d.ts +32 -0
  68. package/dist/types/src/api-model/models/get-fulfillment-order-result.d.ts +1 -1
  69. package/dist/types/src/api-model/models/get-fulfillment-preview-request.d.ts +1 -1
  70. package/dist/types/src/api-model/models/index.d.ts +18 -0
  71. package/dist/types/src/api-model/models/list-all-fulfillment-orders-result.d.ts +1 -1
  72. package/dist/types/src/api-model/models/list-return-reason-codes-result.d.ts +1 -1
  73. package/dist/types/src/api-model/models/locker-details.d.ts +30 -0
  74. package/dist/types/src/api-model/models/origin.d.ts +24 -0
  75. package/dist/types/src/api-model/models/package-tracking-details.d.ts +3 -3
  76. package/dist/types/src/api-model/models/payment-information.d.ts +1 -1
  77. package/dist/types/src/api-model/models/product-identifier.d.ts +24 -0
  78. package/dist/types/src/api-model/models/return-item.d.ts +1 -1
  79. package/dist/types/src/api-model/models/tracking-event.d.ts +1 -1
  80. package/dist/types/src/api-model/models/unfulfillable-preview-item.d.ts +1 -1
  81. package/dist/types/src/api-model/models/update-fulfillment-order-request.d.ts +1 -1
  82. package/dist/types/src/api-model/models/variable-precision-address.d.ts +66 -0
  83. package/package.json +4 -4
@@ -59,7 +59,7 @@ const FbaOutboundApiAxiosParamCreator = function (configuration) {
59
59
  },
60
60
  /**
61
61
  * Requests that Amazon ship items from the seller\'s inventory in Amazon\'s fulfillment network to a destination address. **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 see 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)
62
- * @param {CreateFulfillmentOrderRequest} body
62
+ * @param {CreateFulfillmentOrderRequest} body CreateFulfillmentOrderRequest parameter
63
63
  * @param {*} [options] Override http request option.
64
64
  * @throws {RequiredError}
65
65
  */
@@ -89,7 +89,7 @@ const FbaOutboundApiAxiosParamCreator = function (configuration) {
89
89
  /**
90
90
  * 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 see 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).
91
91
  * @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.
92
- * @param {CreateFulfillmentReturnRequest} body
92
+ * @param {CreateFulfillmentReturnRequest} body CreateFulfillmentReturnRequest parameter
93
93
  * @param {*} [options] Override http request option.
94
94
  * @throws {RequiredError}
95
95
  */
@@ -119,15 +119,45 @@ const FbaOutboundApiAxiosParamCreator = function (configuration) {
119
119
  options: localVarRequestOptions,
120
120
  };
121
121
  },
122
+ /**
123
+ * 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 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).
124
+ * @param {GetDeliveryOffersRequest} body GetDeliveryOffersRequest parameter
125
+ * @param {*} [options] Override http request option.
126
+ * @throws {RequiredError}
127
+ */
128
+ deliveryOffers: async (body, options = {}) => {
129
+ // verify required parameter 'body' is not null or undefined
130
+ (0, common_1.assertParamExists)('deliveryOffers', 'body', body);
131
+ const localVarPath = `/fba/outbound/2020-07-01/deliveryOffers`;
132
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
133
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
134
+ let baseOptions;
135
+ if (configuration) {
136
+ baseOptions = configuration.baseOptions;
137
+ }
138
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
139
+ const localVarHeaderParameter = {};
140
+ const localVarQueryParameter = {};
141
+ localVarHeaderParameter['Content-Type'] = 'application/json';
142
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
143
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
144
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
145
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
146
+ return {
147
+ url: (0, common_1.toPathString)(localVarUrlObj),
148
+ options: localVarRequestOptions,
149
+ };
150
+ },
122
151
  /**
123
152
  * 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 see 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)..
124
153
  * @param {string} marketplaceId The marketplace for which to return a list of the inventory that is eligible for the specified feature.
125
154
  * @param {string} featureName The name of the feature for which to return a list of eligible inventory.
126
155
  * @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.
156
+ * @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
127
157
  * @param {*} [options] Override http request option.
128
158
  * @throws {RequiredError}
129
159
  */
130
- getFeatureInventory: async (marketplaceId, featureName, nextToken, options = {}) => {
160
+ getFeatureInventory: async (marketplaceId, featureName, nextToken, queryStartDate, options = {}) => {
131
161
  // verify required parameter 'marketplaceId' is not null or undefined
132
162
  (0, common_1.assertParamExists)('getFeatureInventory', 'marketplaceId', marketplaceId);
133
163
  // verify required parameter 'featureName' is not null or undefined
@@ -149,6 +179,11 @@ const FbaOutboundApiAxiosParamCreator = function (configuration) {
149
179
  if (nextToken !== undefined) {
150
180
  localVarQueryParameter['nextToken'] = nextToken;
151
181
  }
182
+ if (queryStartDate !== undefined) {
183
+ localVarQueryParameter['queryStartDate'] = (queryStartDate instanceof Date) ?
184
+ queryStartDate.toISOString() :
185
+ queryStartDate;
186
+ }
152
187
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
153
188
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
154
189
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
@@ -255,7 +290,7 @@ const FbaOutboundApiAxiosParamCreator = function (configuration) {
255
290
  },
256
291
  /**
257
292
  * Returns a list of fulfillment order previews based on shipping criteria that 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 see 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).
258
- * @param {GetFulfillmentPreviewRequest} body
293
+ * @param {GetFulfillmentPreviewRequest} body GetFulfillmentPreviewRequest parameter
259
294
  * @param {*} [options] Override http request option.
260
295
  * @throws {RequiredError}
261
296
  */
@@ -391,7 +426,7 @@ const FbaOutboundApiAxiosParamCreator = function (configuration) {
391
426
  /**
392
427
  * Requests that Amazon update the status of an order in the sandbox testing environment. This is a sandbox-only operation and must be directed to a sandbox endpoint. Refer to [Fulfillment Outbound Dynamic Sandbox Guide](https://developer-docs.amazon.com/sp-api/docs/fulfillment-outbound-dynamic-sandbox-guide) and [Selling Partner API sandbox](https://developer-docs.amazon.com/sp-api/docs/the-selling-partner-api-sandbox) for more information.
393
428
  * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.
394
- * @param {SubmitFulfillmentOrderStatusUpdateRequest} body
429
+ * @param {SubmitFulfillmentOrderStatusUpdateRequest} body The identifier assigned to the item by the seller when the fulfillment order was created.
395
430
  * @param {*} [options] Override http request option.
396
431
  * @throws {RequiredError}
397
432
  */
@@ -424,7 +459,7 @@ const FbaOutboundApiAxiosParamCreator = function (configuration) {
424
459
  /**
425
460
  * 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 see 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).
426
461
  * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.
427
- * @param {UpdateFulfillmentOrderRequest} body
462
+ * @param {UpdateFulfillmentOrderRequest} body UpdateFulfillmentOrderRequest parameter
428
463
  * @param {*} [options] Override http request option.
429
464
  * @throws {RequiredError}
430
465
  */
@@ -478,7 +513,7 @@ const FbaOutboundApiFp = function (configuration) {
478
513
  },
479
514
  /**
480
515
  * Requests that Amazon ship items from the seller\'s inventory in Amazon\'s fulfillment network to a destination address. **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 see 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)
481
- * @param {CreateFulfillmentOrderRequest} body
516
+ * @param {CreateFulfillmentOrderRequest} body CreateFulfillmentOrderRequest parameter
482
517
  * @param {*} [options] Override http request option.
483
518
  * @throws {RequiredError}
484
519
  */
@@ -491,7 +526,7 @@ const FbaOutboundApiFp = function (configuration) {
491
526
  /**
492
527
  * 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 see 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).
493
528
  * @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.
494
- * @param {CreateFulfillmentReturnRequest} body
529
+ * @param {CreateFulfillmentReturnRequest} body CreateFulfillmentReturnRequest parameter
495
530
  * @param {*} [options] Override http request option.
496
531
  * @throws {RequiredError}
497
532
  */
@@ -501,16 +536,29 @@ const FbaOutboundApiFp = function (configuration) {
501
536
  const localVarOperationServerBasePath = base_1.operationServerMap['FbaOutboundApi.createFulfillmentReturn']?.[localVarOperationServerIndex]?.url;
502
537
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
503
538
  },
539
+ /**
540
+ * 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 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).
541
+ * @param {GetDeliveryOffersRequest} body GetDeliveryOffersRequest parameter
542
+ * @param {*} [options] Override http request option.
543
+ * @throws {RequiredError}
544
+ */
545
+ async deliveryOffers(body, options) {
546
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deliveryOffers(body, options);
547
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
548
+ const localVarOperationServerBasePath = base_1.operationServerMap['FbaOutboundApi.deliveryOffers']?.[localVarOperationServerIndex]?.url;
549
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
550
+ },
504
551
  /**
505
552
  * 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 see 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)..
506
553
  * @param {string} marketplaceId The marketplace for which to return a list of the inventory that is eligible for the specified feature.
507
554
  * @param {string} featureName The name of the feature for which to return a list of eligible inventory.
508
555
  * @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.
556
+ * @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
509
557
  * @param {*} [options] Override http request option.
510
558
  * @throws {RequiredError}
511
559
  */
512
- async getFeatureInventory(marketplaceId, featureName, nextToken, options) {
513
- const localVarAxiosArgs = await localVarAxiosParamCreator.getFeatureInventory(marketplaceId, featureName, nextToken, options);
560
+ async getFeatureInventory(marketplaceId, featureName, nextToken, queryStartDate, options) {
561
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getFeatureInventory(marketplaceId, featureName, nextToken, queryStartDate, options);
514
562
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
515
563
  const localVarOperationServerBasePath = base_1.operationServerMap['FbaOutboundApi.getFeatureInventory']?.[localVarOperationServerIndex]?.url;
516
564
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -555,7 +603,7 @@ const FbaOutboundApiFp = function (configuration) {
555
603
  },
556
604
  /**
557
605
  * Returns a list of fulfillment order previews based on shipping criteria that 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 see 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).
558
- * @param {GetFulfillmentPreviewRequest} body
606
+ * @param {GetFulfillmentPreviewRequest} body GetFulfillmentPreviewRequest parameter
559
607
  * @param {*} [options] Override http request option.
560
608
  * @throws {RequiredError}
561
609
  */
@@ -608,7 +656,7 @@ const FbaOutboundApiFp = function (configuration) {
608
656
  /**
609
657
  * Requests that Amazon update the status of an order in the sandbox testing environment. This is a sandbox-only operation and must be directed to a sandbox endpoint. Refer to [Fulfillment Outbound Dynamic Sandbox Guide](https://developer-docs.amazon.com/sp-api/docs/fulfillment-outbound-dynamic-sandbox-guide) and [Selling Partner API sandbox](https://developer-docs.amazon.com/sp-api/docs/the-selling-partner-api-sandbox) for more information.
610
658
  * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.
611
- * @param {SubmitFulfillmentOrderStatusUpdateRequest} body
659
+ * @param {SubmitFulfillmentOrderStatusUpdateRequest} body The identifier assigned to the item by the seller when the fulfillment order was created.
612
660
  * @param {*} [options] Override http request option.
613
661
  * @throws {RequiredError}
614
662
  */
@@ -621,7 +669,7 @@ const FbaOutboundApiFp = function (configuration) {
621
669
  /**
622
670
  * 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 see 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).
623
671
  * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.
624
- * @param {UpdateFulfillmentOrderRequest} body
672
+ * @param {UpdateFulfillmentOrderRequest} body UpdateFulfillmentOrderRequest parameter
625
673
  * @param {*} [options] Override http request option.
626
674
  * @throws {RequiredError}
627
675
  */
@@ -668,6 +716,15 @@ const FbaOutboundApiFactory = function (configuration, basePath, axios) {
668
716
  createFulfillmentReturn(requestParameters, options) {
669
717
  return localVarFp.createFulfillmentReturn(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(axios, basePath));
670
718
  },
719
+ /**
720
+ * 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 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).
721
+ * @param {FbaOutboundApiDeliveryOffersRequest} requestParameters Request parameters.
722
+ * @param {*} [options] Override http request option.
723
+ * @throws {RequiredError}
724
+ */
725
+ deliveryOffers(requestParameters, options) {
726
+ return localVarFp.deliveryOffers(requestParameters.body, options).then((request) => request(axios, basePath));
727
+ },
671
728
  /**
672
729
  * 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 see 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)..
673
730
  * @param {FbaOutboundApiGetFeatureInventoryRequest} requestParameters Request parameters.
@@ -675,7 +732,7 @@ const FbaOutboundApiFactory = function (configuration, basePath, axios) {
675
732
  * @throws {RequiredError}
676
733
  */
677
734
  getFeatureInventory(requestParameters, options) {
678
- return localVarFp.getFeatureInventory(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.nextToken, options).then((request) => request(axios, basePath));
735
+ return localVarFp.getFeatureInventory(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.nextToken, requestParameters.queryStartDate, options).then((request) => request(axios, basePath));
679
736
  },
680
737
  /**
681
738
  * 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 see 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).
@@ -798,6 +855,16 @@ class FbaOutboundApi extends base_1.BaseAPI {
798
855
  createFulfillmentReturn(requestParameters, options) {
799
856
  return (0, exports.FbaOutboundApiFp)(this.configuration).createFulfillmentReturn(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
800
857
  }
858
+ /**
859
+ * 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 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).
860
+ * @param {FbaOutboundApiDeliveryOffersRequest} requestParameters Request parameters.
861
+ * @param {*} [options] Override http request option.
862
+ * @throws {RequiredError}
863
+ * @memberof FbaOutboundApi
864
+ */
865
+ deliveryOffers(requestParameters, options) {
866
+ return (0, exports.FbaOutboundApiFp)(this.configuration).deliveryOffers(requestParameters.body, options).then((request) => request(this.axios, this.basePath));
867
+ }
801
868
  /**
802
869
  * 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 see 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)..
803
870
  * @param {FbaOutboundApiGetFeatureInventoryRequest} requestParameters Request parameters.
@@ -806,7 +873,7 @@ class FbaOutboundApi extends base_1.BaseAPI {
806
873
  * @memberof FbaOutboundApi
807
874
  */
808
875
  getFeatureInventory(requestParameters, options) {
809
- return (0, exports.FbaOutboundApiFp)(this.configuration).getFeatureInventory(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.nextToken, options).then((request) => request(this.axios, this.basePath));
876
+ return (0, exports.FbaOutboundApiFp)(this.configuration).getFeatureInventory(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.nextToken, requestParameters.queryStartDate, options).then((request) => request(this.axios, this.basePath));
810
877
  }
811
878
  /**
812
879
  * 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 see 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).
@@ -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.AmountUnitOfMeasureEnum = void 0;
17
+ exports.AmountUnitOfMeasureEnum = {
18
+ Eaches: 'Eaches'
19
+ };
@@ -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 });
@@ -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,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
+ };
@@ -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,26 @@
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.DropOffLocationTypeEnum = void 0;
17
+ exports.DropOffLocationTypeEnum = {
18
+ FrontDoor: 'FRONT_DOOR',
19
+ DeliveryBox: 'DELIVERY_BOX',
20
+ GasMeterBox: 'GAS_METER_BOX',
21
+ BicycleBasket: 'BICYCLE_BASKET',
22
+ Garage: 'GARAGE',
23
+ Receptionist: 'RECEPTIONIST',
24
+ FallbackNeighborDelivery: 'FALLBACK_NEIGHBOR_DELIVERY',
25
+ DoNotLeaveUnattended: 'DO_NOT_LEAVE_UNATTENDED'
26
+ };
@@ -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 });
@@ -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 });
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./additional-location-info"), exports);
18
18
  __exportStar(require("./address"), exports);
19
+ __exportStar(require("./amount"), exports);
19
20
  __exportStar(require("./codsettings"), exports);
20
21
  __exportStar(require("./cancel-fulfillment-order-response"), exports);
21
22
  __exportStar(require("./create-fulfillment-order-item"), exports);
@@ -26,7 +27,15 @@ __exportStar(require("./create-fulfillment-return-response"), exports);
26
27
  __exportStar(require("./create-fulfillment-return-result"), exports);
27
28
  __exportStar(require("./create-return-item"), exports);
28
29
  __exportStar(require("./current-status"), exports);
30
+ __exportStar(require("./date-range"), exports);
31
+ __exportStar(require("./delivery-message"), exports);
32
+ __exportStar(require("./delivery-offer"), exports);
33
+ __exportStar(require("./delivery-policy"), exports);
34
+ __exportStar(require("./delivery-preferences"), exports);
35
+ __exportStar(require("./delivery-quantity"), exports);
29
36
  __exportStar(require("./delivery-window"), exports);
37
+ __exportStar(require("./destination"), exports);
38
+ __exportStar(require("./drop-off-location"), exports);
30
39
  __exportStar(require("./event-code"), exports);
31
40
  __exportStar(require("./feature"), exports);
32
41
  __exportStar(require("./feature-settings"), exports);
@@ -44,6 +53,11 @@ __exportStar(require("./fulfillment-return-item-status"), exports);
44
53
  __exportStar(require("./fulfillment-shipment"), exports);
45
54
  __exportStar(require("./fulfillment-shipment-item"), exports);
46
55
  __exportStar(require("./fulfillment-shipment-package"), exports);
56
+ __exportStar(require("./get-delivery-offers-product"), exports);
57
+ __exportStar(require("./get-delivery-offers-request"), exports);
58
+ __exportStar(require("./get-delivery-offers-response"), exports);
59
+ __exportStar(require("./get-delivery-offers-result"), exports);
60
+ __exportStar(require("./get-delivery-offers-terms"), exports);
47
61
  __exportStar(require("./get-feature-inventory-response"), exports);
48
62
  __exportStar(require("./get-feature-inventory-result"), exports);
49
63
  __exportStar(require("./get-feature-sku-response"), exports);
@@ -64,10 +78,13 @@ __exportStar(require("./list-all-fulfillment-orders-response"), exports);
64
78
  __exportStar(require("./list-all-fulfillment-orders-result"), exports);
65
79
  __exportStar(require("./list-return-reason-codes-response"), exports);
66
80
  __exportStar(require("./list-return-reason-codes-result"), exports);
81
+ __exportStar(require("./locker-details"), exports);
67
82
  __exportStar(require("./model-error"), exports);
68
83
  __exportStar(require("./money"), exports);
84
+ __exportStar(require("./origin"), exports);
69
85
  __exportStar(require("./package-tracking-details"), exports);
70
86
  __exportStar(require("./payment-information"), exports);
87
+ __exportStar(require("./product-identifier"), exports);
71
88
  __exportStar(require("./reason-code-details"), exports);
72
89
  __exportStar(require("./return-authorization"), exports);
73
90
  __exportStar(require("./return-item"), exports);
@@ -82,4 +99,5 @@ __exportStar(require("./unfulfillable-preview-item"), exports);
82
99
  __exportStar(require("./update-fulfillment-order-item"), exports);
83
100
  __exportStar(require("./update-fulfillment-order-request"), exports);
84
101
  __exportStar(require("./update-fulfillment-order-response"), exports);
102
+ __exportStar(require("./variable-precision-address"), exports);
85
103
  __exportStar(require("./weight"), exports);
@@ -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 });
@@ -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 });