@sp-api-sdk/fulfillment-outbound-api-2020-07-01 4.0.2 → 4.1.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 (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
@@ -18,6 +18,8 @@ import type { CreateFulfillmentOrderRequest } from '../models';
18
18
  import type { CreateFulfillmentOrderResponse } from '../models';
19
19
  import type { CreateFulfillmentReturnRequest } from '../models';
20
20
  import type { CreateFulfillmentReturnResponse } from '../models';
21
+ import type { GetDeliveryOfferingsRequest } from '../models';
22
+ import type { GetDeliveryOfferingsResponse } from '../models';
21
23
  import type { GetDeliveryOffersRequest } from '../models';
22
24
  import type { GetDeliveryOffersResponse } from '../models';
23
25
  import type { GetFeatureInventoryResponse } from '../models';
@@ -53,12 +55,19 @@ export declare const FulfillmentOutboundApiAxiosParamCreator: (configuration?: C
53
55
  createFulfillmentOrder: (body: CreateFulfillmentOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54
56
  /**
55
57
  * 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).
56
- * @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 &#x60;SellerFulfillmentOrderId&#x60; value based on the buyer\&#39;s request to return items.
57
- * @param {CreateFulfillmentReturnRequest} body CreateFulfillmentReturnRequest parameter
58
+ * @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 &#x60;sellerFulfillmentOrderId&#x60; value based on the buyer\&#39;s request to return items.
59
+ * @param {CreateFulfillmentReturnRequest} body The request body of the &#x60;createFulfillmentReturn&#x60; operation.
58
60
  * @param {*} [options] Override http request option.
59
61
  * @throws {RequiredError}
60
62
  */
61
63
  createFulfillmentReturn: (sellerFulfillmentOrderId: string, body: CreateFulfillmentReturnRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
64
+ /**
65
+ * 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).
66
+ * @param {GetDeliveryOfferingsRequest} body GetDeliveryOfferingsRequest parameter
67
+ * @param {*} [options] Override http request option.
68
+ * @throws {RequiredError}
69
+ */
70
+ deliveryOfferings: (body: GetDeliveryOfferingsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
62
71
  /**
63
72
  * 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).
64
73
  * @param {GetDeliveryOffersRequest} body GetDeliveryOffersRequest parameter
@@ -70,17 +79,17 @@ export declare const FulfillmentOutboundApiAxiosParamCreator: (configuration?: C
70
79
  * 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)..
71
80
  * @param {string} marketplaceId The marketplace for which to return a list of the inventory that is eligible for the specified feature.
72
81
  * @param {string} featureName The name of the feature for which to return a list of eligible inventory.
73
- * @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.
74
- * @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
82
+ * @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 &#x60;null&#x60; will return the first page.
83
+ * @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 &#x60;yyyy-MM-ddTHH:mm:ss.sssZ&#x60;
75
84
  * @param {*} [options] Override http request option.
76
85
  * @throws {RequiredError}
77
86
  */
78
87
  getFeatureInventory: (marketplaceId: string, featureName: string, nextToken?: string, queryStartDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79
88
  /**
80
- * 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).
89
+ * 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).
81
90
  * @param {string} marketplaceId The marketplace for which to return the count.
82
91
  * @param {string} featureName The name of the feature.
83
- * @param {string} sellerSku Used to identify an item in the given marketplace. &#x60;SellerSKU&#x60; is qualified by the seller\&#39;s &#x60;SellerId&#x60;, which is included with every operation that you submit.
92
+ * @param {string} sellerSku Used to identify an item in the given marketplace. &#x60;sellerSku&#x60; is qualified by the seller\&#39;s &#x60;sellerId&#x60;, which is included with every operation that you submit.
84
93
  * @param {*} [options] Override http request option.
85
94
  * @throws {RequiredError}
86
95
  */
@@ -108,13 +117,14 @@ export declare const FulfillmentOutboundApiAxiosParamCreator: (configuration?: C
108
117
  getFulfillmentPreview: (body: GetFulfillmentPreviewRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
109
118
  /**
110
119
  * 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).
111
- * @param {number} packageNumber The unencrypted package identifier returned by the &#x60;getFulfillmentOrder&#x60; operation.
120
+ * @param {number} [packageNumber] The unencrypted package identifier. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.
121
+ * @param {string} [amazonFulfillmentTrackingNumber] The Amazon fulfillment tracking number. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.
112
122
  * @param {*} [options] Override http request option.
113
123
  * @throws {RequiredError}
114
124
  */
115
- getPackageTrackingDetails: (packageNumber: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
125
+ getPackageTrackingDetails: (packageNumber?: number, amazonFulfillmentTrackingNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
116
126
  /**
117
- * 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)
127
+ * 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)
118
128
  * @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.
119
129
  * @param {string} [nextToken] A string token returned in the response to your previous request.
120
130
  * @param {*} [options] Override http request option.
@@ -142,7 +152,7 @@ export declare const FulfillmentOutboundApiAxiosParamCreator: (configuration?: C
142
152
  /**
143
153
  * 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).
144
154
  * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.
145
- * @param {UpdateFulfillmentOrderRequest} body UpdateFulfillmentOrderRequest parameter
155
+ * @param {UpdateFulfillmentOrderRequest} body The request body of the &#x60;updateFulfillmentOrder&#x60; operation.
146
156
  * @param {*} [options] Override http request option.
147
157
  * @throws {RequiredError}
148
158
  */
@@ -168,12 +178,19 @@ export declare const FulfillmentOutboundApiFp: (configuration?: Configuration) =
168
178
  createFulfillmentOrder(body: CreateFulfillmentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateFulfillmentOrderResponse>>;
169
179
  /**
170
180
  * 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).
171
- * @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 &#x60;SellerFulfillmentOrderId&#x60; value based on the buyer\&#39;s request to return items.
172
- * @param {CreateFulfillmentReturnRequest} body CreateFulfillmentReturnRequest parameter
181
+ * @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 &#x60;sellerFulfillmentOrderId&#x60; value based on the buyer\&#39;s request to return items.
182
+ * @param {CreateFulfillmentReturnRequest} body The request body of the &#x60;createFulfillmentReturn&#x60; operation.
173
183
  * @param {*} [options] Override http request option.
174
184
  * @throws {RequiredError}
175
185
  */
176
186
  createFulfillmentReturn(sellerFulfillmentOrderId: string, body: CreateFulfillmentReturnRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateFulfillmentReturnResponse>>;
187
+ /**
188
+ * 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).
189
+ * @param {GetDeliveryOfferingsRequest} body GetDeliveryOfferingsRequest parameter
190
+ * @param {*} [options] Override http request option.
191
+ * @throws {RequiredError}
192
+ */
193
+ deliveryOfferings(body: GetDeliveryOfferingsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDeliveryOfferingsResponse>>;
177
194
  /**
178
195
  * 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).
179
196
  * @param {GetDeliveryOffersRequest} body GetDeliveryOffersRequest parameter
@@ -185,17 +202,17 @@ export declare const FulfillmentOutboundApiFp: (configuration?: Configuration) =
185
202
  * 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)..
186
203
  * @param {string} marketplaceId The marketplace for which to return a list of the inventory that is eligible for the specified feature.
187
204
  * @param {string} featureName The name of the feature for which to return a list of eligible inventory.
188
- * @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.
189
- * @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
205
+ * @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 &#x60;null&#x60; will return the first page.
206
+ * @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 &#x60;yyyy-MM-ddTHH:mm:ss.sssZ&#x60;
190
207
  * @param {*} [options] Override http request option.
191
208
  * @throws {RequiredError}
192
209
  */
193
210
  getFeatureInventory(marketplaceId: string, featureName: string, nextToken?: string, queryStartDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFeatureInventoryResponse>>;
194
211
  /**
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).
212
+ * 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
213
  * @param {string} marketplaceId The marketplace for which to return the count.
197
214
  * @param {string} featureName The name of the feature.
198
- * @param {string} sellerSku Used to identify an item in the given marketplace. &#x60;SellerSKU&#x60; is qualified by the seller\&#39;s &#x60;SellerId&#x60;, which is included with every operation that you submit.
215
+ * @param {string} sellerSku Used to identify an item in the given marketplace. &#x60;sellerSku&#x60; is qualified by the seller\&#39;s &#x60;sellerId&#x60;, which is included with every operation that you submit.
199
216
  * @param {*} [options] Override http request option.
200
217
  * @throws {RequiredError}
201
218
  */
@@ -223,13 +240,14 @@ export declare const FulfillmentOutboundApiFp: (configuration?: Configuration) =
223
240
  getFulfillmentPreview(body: GetFulfillmentPreviewRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFulfillmentPreviewResponse>>;
224
241
  /**
225
242
  * 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).
226
- * @param {number} packageNumber The unencrypted package identifier returned by the &#x60;getFulfillmentOrder&#x60; operation.
243
+ * @param {number} [packageNumber] The unencrypted package identifier. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.
244
+ * @param {string} [amazonFulfillmentTrackingNumber] The Amazon fulfillment tracking number. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.
227
245
  * @param {*} [options] Override http request option.
228
246
  * @throws {RequiredError}
229
247
  */
230
- getPackageTrackingDetails(packageNumber: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPackageTrackingDetailsResponse>>;
248
+ getPackageTrackingDetails(packageNumber?: number, amazonFulfillmentTrackingNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPackageTrackingDetailsResponse>>;
231
249
  /**
232
- * 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)
250
+ * 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)
233
251
  * @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.
234
252
  * @param {string} [nextToken] A string token returned in the response to your previous request.
235
253
  * @param {*} [options] Override http request option.
@@ -257,7 +275,7 @@ export declare const FulfillmentOutboundApiFp: (configuration?: Configuration) =
257
275
  /**
258
276
  * 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).
259
277
  * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.
260
- * @param {UpdateFulfillmentOrderRequest} body UpdateFulfillmentOrderRequest parameter
278
+ * @param {UpdateFulfillmentOrderRequest} body The request body of the &#x60;updateFulfillmentOrder&#x60; operation.
261
279
  * @param {*} [options] Override http request option.
262
280
  * @throws {RequiredError}
263
281
  */
@@ -288,6 +306,13 @@ export declare const FulfillmentOutboundApiFactory: (configuration?: Configurati
288
306
  * @throws {RequiredError}
289
307
  */
290
308
  createFulfillmentReturn(requestParameters: FulfillmentOutboundApiCreateFulfillmentReturnRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateFulfillmentReturnResponse>;
309
+ /**
310
+ * 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).
311
+ * @param {FulfillmentOutboundApiDeliveryOfferingsRequest} requestParameters Request parameters.
312
+ * @param {*} [options] Override http request option.
313
+ * @throws {RequiredError}
314
+ */
315
+ deliveryOfferings(requestParameters: FulfillmentOutboundApiDeliveryOfferingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDeliveryOfferingsResponse>;
291
316
  /**
292
317
  * 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).
293
318
  * @param {FulfillmentOutboundApiDeliveryOffersRequest} requestParameters Request parameters.
@@ -303,7 +328,7 @@ export declare const FulfillmentOutboundApiFactory: (configuration?: Configurati
303
328
  */
304
329
  getFeatureInventory(requestParameters: FulfillmentOutboundApiGetFeatureInventoryRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFeatureInventoryResponse>;
305
330
  /**
306
- * 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).
331
+ * 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).
307
332
  * @param {FulfillmentOutboundApiGetFeatureSKURequest} requestParameters Request parameters.
308
333
  * @param {*} [options] Override http request option.
309
334
  * @throws {RequiredError}
@@ -336,9 +361,9 @@ export declare const FulfillmentOutboundApiFactory: (configuration?: Configurati
336
361
  * @param {*} [options] Override http request option.
337
362
  * @throws {RequiredError}
338
363
  */
339
- getPackageTrackingDetails(requestParameters: FulfillmentOutboundApiGetPackageTrackingDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPackageTrackingDetailsResponse>;
364
+ getPackageTrackingDetails(requestParameters?: FulfillmentOutboundApiGetPackageTrackingDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPackageTrackingDetailsResponse>;
340
365
  /**
341
- * 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)
366
+ * 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)
342
367
  * @param {FulfillmentOutboundApiListAllFulfillmentOrdersRequest} requestParameters Request parameters.
343
368
  * @param {*} [options] Override http request option.
344
369
  * @throws {RequiredError}
@@ -389,14 +414,23 @@ export interface FulfillmentOutboundApiCreateFulfillmentOrderRequest {
389
414
  */
390
415
  export interface FulfillmentOutboundApiCreateFulfillmentReturnRequest {
391
416
  /**
392
- * 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 &#x60;SellerFulfillmentOrderId&#x60; value based on the buyer\&#39;s request to return items.
417
+ * 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 &#x60;sellerFulfillmentOrderId&#x60; value based on the buyer\&#39;s request to return items.
393
418
  */
394
419
  readonly sellerFulfillmentOrderId: string;
395
420
  /**
396
- * CreateFulfillmentReturnRequest parameter
421
+ * The request body of the &#x60;createFulfillmentReturn&#x60; operation.
397
422
  */
398
423
  readonly body: CreateFulfillmentReturnRequest;
399
424
  }
425
+ /**
426
+ * Request parameters for deliveryOfferings operation in FulfillmentOutboundApi.
427
+ */
428
+ export interface FulfillmentOutboundApiDeliveryOfferingsRequest {
429
+ /**
430
+ * GetDeliveryOfferingsRequest parameter
431
+ */
432
+ readonly body: GetDeliveryOfferingsRequest;
433
+ }
400
434
  /**
401
435
  * Request parameters for deliveryOffers operation in FulfillmentOutboundApi.
402
436
  */
@@ -419,11 +453,11 @@ export interface FulfillmentOutboundApiGetFeatureInventoryRequest {
419
453
  */
420
454
  readonly featureName: string;
421
455
  /**
422
- * 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.
456
+ * A string token returned in the response to your previous request that is used to return the next response page. A value of &#x60;null&#x60; will return the first page.
423
457
  */
424
458
  readonly nextToken?: string;
425
459
  /**
426
- * 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
460
+ * 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 &#x60;yyyy-MM-ddTHH:mm:ss.sssZ&#x60;
427
461
  */
428
462
  readonly queryStartDate?: string;
429
463
  }
@@ -440,7 +474,7 @@ export interface FulfillmentOutboundApiGetFeatureSKURequest {
440
474
  */
441
475
  readonly featureName: string;
442
476
  /**
443
- * Used to identify an item in the given marketplace. &#x60;SellerSKU&#x60; is qualified by the seller\&#39;s &#x60;SellerId&#x60;, which is included with every operation that you submit.
477
+ * Used to identify an item in the given marketplace. &#x60;sellerSku&#x60; is qualified by the seller\&#39;s &#x60;sellerId&#x60;, which is included with every operation that you submit.
444
478
  */
445
479
  readonly sellerSku: string;
446
480
  }
@@ -476,9 +510,13 @@ export interface FulfillmentOutboundApiGetFulfillmentPreviewRequest {
476
510
  */
477
511
  export interface FulfillmentOutboundApiGetPackageTrackingDetailsRequest {
478
512
  /**
479
- * The unencrypted package identifier returned by the &#x60;getFulfillmentOrder&#x60; operation.
513
+ * The unencrypted package identifier. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.
480
514
  */
481
- readonly packageNumber: number;
515
+ readonly packageNumber?: number;
516
+ /**
517
+ * The Amazon fulfillment tracking number. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.
518
+ */
519
+ readonly amazonFulfillmentTrackingNumber?: string;
482
520
  }
483
521
  /**
484
522
  * Request parameters for listAllFulfillmentOrders operation in FulfillmentOutboundApi.
@@ -536,7 +574,7 @@ export interface FulfillmentOutboundApiUpdateFulfillmentOrderRequest {
536
574
  */
537
575
  readonly sellerFulfillmentOrderId: string;
538
576
  /**
539
- * UpdateFulfillmentOrderRequest parameter
577
+ * The request body of the &#x60;updateFulfillmentOrder&#x60; operation.
540
578
  */
541
579
  readonly body: UpdateFulfillmentOrderRequest;
542
580
  }
@@ -565,6 +603,13 @@ export declare class FulfillmentOutboundApi extends BaseAPI {
565
603
  * @throws {RequiredError}
566
604
  */
567
605
  createFulfillmentReturn(requestParameters: FulfillmentOutboundApiCreateFulfillmentReturnRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<CreateFulfillmentReturnResponse, any>>;
606
+ /**
607
+ * 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).
608
+ * @param {FulfillmentOutboundApiDeliveryOfferingsRequest} requestParameters Request parameters.
609
+ * @param {*} [options] Override http request option.
610
+ * @throws {RequiredError}
611
+ */
612
+ deliveryOfferings(requestParameters: FulfillmentOutboundApiDeliveryOfferingsRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<GetDeliveryOfferingsResponse, any>>;
568
613
  /**
569
614
  * 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).
570
615
  * @param {FulfillmentOutboundApiDeliveryOffersRequest} requestParameters Request parameters.
@@ -580,7 +625,7 @@ export declare class FulfillmentOutboundApi extends BaseAPI {
580
625
  */
581
626
  getFeatureInventory(requestParameters: FulfillmentOutboundApiGetFeatureInventoryRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<GetFeatureInventoryResponse, any>>;
582
627
  /**
583
- * 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).
628
+ * 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).
584
629
  * @param {FulfillmentOutboundApiGetFeatureSKURequest} requestParameters Request parameters.
585
630
  * @param {*} [options] Override http request option.
586
631
  * @throws {RequiredError}
@@ -613,9 +658,9 @@ export declare class FulfillmentOutboundApi extends BaseAPI {
613
658
  * @param {*} [options] Override http request option.
614
659
  * @throws {RequiredError}
615
660
  */
616
- getPackageTrackingDetails(requestParameters: FulfillmentOutboundApiGetPackageTrackingDetailsRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<GetPackageTrackingDetailsResponse, any>>;
661
+ getPackageTrackingDetails(requestParameters?: FulfillmentOutboundApiGetPackageTrackingDetailsRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<GetPackageTrackingDetailsResponse, any>>;
617
662
  /**
618
- * 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)
663
+ * 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)
619
664
  * @param {FulfillmentOutboundApiListAllFulfillmentOrdersRequest} requestParameters Request parameters.
620
665
  * @param {*} [options] Override http request option.
621
666
  * @throws {RequiredError}
@@ -19,7 +19,7 @@ export interface CreateFulfillmentOrderItem {
19
19
  */
20
20
  'sellerSku': string;
21
21
  /**
22
- * A fulfillment order item identifier that the seller creates to track fulfillment order items. Used to disambiguate multiple fulfillment items that have the same `SellerSKU`. For example, the seller might assign different `SellerFulfillmentOrderItemId` values to two items in a fulfillment order that share the same `SellerSKU` but have different `GiftMessage` values.
22
+ * A fulfillment order item identifier that the seller creates to track fulfillment order items. Used to disambiguate multiple fulfillment items that have the same `sellerSku` value. For example, the seller might assign different `sellerFulfillmentOrderItemId` values to two items in a fulfillment order that share the same `sellerSku` value but have different `giftMessage` values.
23
23
  */
24
24
  'sellerFulfillmentOrderItemId': string;
25
25
  /**
@@ -28,11 +28,11 @@ export interface CreateFulfillmentOrderRequest {
28
28
  */
29
29
  'marketplaceId'?: string;
30
30
  /**
31
- * A fulfillment order identifier that the seller creates to track their fulfillment order. The `SellerFulfillmentOrderId` must be unique for each fulfillment order that a seller creates. If the seller\'s system already creates unique order identifiers, then these might be good values for them to use.
31
+ * A fulfillment order identifier that the seller creates to track their fulfillment order. The `sellerFulfillmentOrderId` must be unique for each fulfillment order that a seller creates. If the seller\'s system already creates unique order identifiers, then these might be good values for them to use.
32
32
  */
33
33
  'sellerFulfillmentOrderId': string;
34
34
  /**
35
- * A fulfillment order identifier that the seller creates. This value displays as the order identifier in recipient-facing materials such as the outbound shipment packing slip. The value of `DisplayableOrderId` should match the order identifier that the seller provides to the recipient. The seller can use the `SellerFulfillmentOrderId` for this value or they can specify an alternate value if they want the recipient to reference an alternate order identifier. The value must be an alpha-numeric or ISO 8859-1 compliant string from one to 40 characters in length. Cannot contain two spaces in a row. Leading and trailing white space is removed.
35
+ * A fulfillment order identifier that the seller creates. This value displays as the order identifier in recipient-facing materials such as the outbound shipment packing slip. The value of `displayableOrderId` should match the order identifier that the seller provides to the recipient. The seller can use the SellerFulfillmentOrderId for this value or they can specify an alternate value if they want the recipient to reference an alternate order identifier. The value must be an alpha-numeric or ISO 8859-1 compliant string from one to 40 characters in length. Cannot contain two spaces in a row. Leading and trailing white space is removed.
36
36
  */
37
37
  'displayableOrderId': string;
38
38
  /**
@@ -11,7 +11,7 @@
11
11
  */
12
12
  import type { CreateReturnItem } from './create-return-item';
13
13
  /**
14
- * The `createFulfillmentReturn` operation creates a fulfillment return for items that were fulfilled using the `createFulfillmentOrder` operation. For calls to `createFulfillmentReturn`, you must include `ReturnReasonCode` values returned by a previous call to the `listReturnReasonCodes` operation.
14
+ * The `createFulfillmentReturn` operation creates a fulfillment return for items that were fulfilled using the `createFulfillmentOrder` operation. For calls to `createFulfillmentReturn`, you must include `returnReasonCode` values returned by a previous call to the `listReturnReasonCodes` operation.
15
15
  */
16
16
  export interface CreateFulfillmentReturnRequest {
17
17
  /**
@@ -13,7 +13,7 @@ import type { InvalidReturnItem } from './invalid-return-item';
13
13
  import type { ReturnAuthorization } from './return-authorization';
14
14
  import type { ReturnItem } from './return-item';
15
15
  /**
16
- * The result for the createFulfillmentReturn operation.
16
+ * The result for the `createFulfillmentReturn` operation.
17
17
  */
18
18
  export interface CreateFulfillmentReturnResult {
19
19
  /**
@@ -14,7 +14,7 @@
14
14
  */
15
15
  export interface CreateReturnItem {
16
16
  /**
17
- * An identifier assigned by the seller to the return item.
17
+ * An identifier the seller assigns to the return item.
18
18
  */
19
19
  'sellerReturnItemId': string;
20
20
  /**
@@ -18,7 +18,7 @@ export interface DeliveryMessage {
18
18
  */
19
19
  'text'?: string;
20
20
  /**
21
- * The locale for the message (for example, en_US).
21
+ * The locale for the message (e.g., `en_US`).
22
22
  */
23
23
  'locale'?: string;
24
24
  }
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Selling Partner APIs for Fulfillment Outbound
3
+ * 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.
4
+ *
5
+ * The version of the OpenAPI document: 2020-07-01
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { DateRange } from './date-range';
13
+ import type { DeliveryPolicy } from './delivery-policy';
14
+ /**
15
+ * An available offering for delivery of a product.
16
+ */
17
+ export interface DeliveryOffering {
18
+ /**
19
+ * Date timestamp
20
+ */
21
+ 'expiresAt'?: string;
22
+ 'dateRange'?: DateRange;
23
+ 'policy'?: DeliveryPolicy;
24
+ }
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Selling Partner APIs for Fulfillment Outbound
3
+ * 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.
4
+ *
5
+ * The version of the OpenAPI document: 2020-07-01
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * A quantity based on unit of measure.
14
+ */
15
+ export interface DeliveryQuantity {
16
+ /**
17
+ * The unit of measure for the amount.
18
+ */
19
+ 'unitOfMeasure': DeliveryQuantityUnitOfMeasureEnum;
20
+ /**
21
+ * A decimal number with no loss of precision. Useful when precision loss is unacceptable, as with currencies. Follows RFC7159 for number representation.
22
+ */
23
+ 'amount': string;
24
+ }
25
+ export declare const DeliveryQuantityUnitOfMeasureEnum: {
26
+ readonly Each: "Each";
27
+ };
28
+ export type DeliveryQuantityUnitOfMeasureEnum = typeof DeliveryQuantityUnitOfMeasureEnum[keyof typeof DeliveryQuantityUnitOfMeasureEnum];
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * `FeatureSettings` allows users to apply fulfillment features to an order. To block an order from being shipped using Amazon Logistics (AMZL) and an AMZL tracking number, use `featureName` as `BLOCK_AMZL` and `featureFulfillmentPolicy` as `Required`. Blocking AMZL will incur an additional fee surcharge on your MCF orders and increase the risk of some of your orders being unfulfilled or delivered late if there are no alternative carriers available. Using `BLOCK_AMZL` in an order request will take precedence over your Seller Central account setting. To ship in non-Amazon branded packaging (blank boxes), use featureName `BLANK_BOX`.
13
+ * Feature settings allows you to apply fulfillment features to an order. To block an order from being shipped using Amazon Logistics (AMZL) and an AMZL tracking number, set `featureName` to `BLOCK_AMZL` and `featureFulfillmentPolicy` to `Required`. Blocking AMZL will incur an additional fee surcharge on your MCF orders and increase the risk of some of your orders being unfulfilled or delivered late if there are no alternative carriers available. Using `BLOCK_AMZL` in an order request will take precedence over your Seller Central account setting. To ship in non-Amazon branded packaging (blank boxes), set `featureName` to `BLANK_BOX`.
14
14
  */
15
15
  export interface FeatureSettings {
16
16
  /**
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * The `FulfillmentPolicy` value specified when you submitted the `createFulfillmentOrder` operation.
13
+ * The `FulfillmentPolicy` value specified when you called the `createFulfillmentOrder` operation.
14
14
  */
15
15
  export declare const FulfillmentPolicy: {
16
16
  readonly FillOrKill: "FillOrKill";
@@ -27,6 +27,10 @@ export interface FulfillmentShipmentPackage {
27
27
  * The tracking number, if provided, can be used to obtain tracking and delivery information.
28
28
  */
29
29
  'trackingNumber'?: string;
30
+ /**
31
+ * The Amazon fulfillment tracking number, if provided, can be used to obtain tracking and delivery information.
32
+ */
33
+ 'amazonFulfillmentTrackingNumber'?: string;
30
34
  /**
31
35
  * Date timestamp
32
36
  */
@@ -20,7 +20,7 @@ export interface FulfillmentShipment {
20
20
  */
21
21
  'amazonShipmentId': string;
22
22
  /**
23
- * An identifier for the fulfillment center that the shipment will be sent from.
23
+ * An identifier for the fulfillment center from which the shipment is sent.
24
24
  */
25
25
  'fulfillmentCenterId': string;
26
26
  /**
@@ -36,7 +36,7 @@ export interface FulfillmentShipment {
36
36
  */
37
37
  'estimatedArrivalDate'?: string;
38
38
  /**
39
- * Provides additional insight into shipment timeline. Primairly used to communicate that actual delivery dates aren\'t available.
39
+ * Provides additional insight into shipment timeline. Primarily used to communicate that actual delivery dates aren\'t available.
40
40
  */
41
41
  'shippingNotes'?: Array<string>;
42
42
  /**
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Selling Partner APIs for Fulfillment Outbound
3
+ * 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.
4
+ *
5
+ * The version of the OpenAPI document: 2020-07-01
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { DeliveryQuantity } from './delivery-quantity';
13
+ import type { VariablePrecisionAddress } from './variable-precision-address';
14
+ /**
15
+ * The request body schema for the `getDeliveryOfferings` operation.
16
+ */
17
+ export interface GetDeliveryOfferingsRequest {
18
+ 'destinationAddress': VariablePrecisionAddress;
19
+ /**
20
+ * The two digit country code the items should ship from. In ISO 3166-1 alpha-2 format.
21
+ */
22
+ 'shipFromCountryCode': string;
23
+ /**
24
+ * The seller SKU of the item.
25
+ */
26
+ 'sellerSku': string;
27
+ 'quantity'?: DeliveryQuantity;
28
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Selling Partner APIs for Fulfillment Outbound
3
+ * 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.
4
+ *
5
+ * The version of the OpenAPI document: 2020-07-01
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { GetDeliveryOfferingsResult } from './get-delivery-offerings-result';
13
+ /**
14
+ * The response schema for the `getDeliveryOfferings` operation.
15
+ */
16
+ export interface GetDeliveryOfferingsResponse {
17
+ 'payload'?: GetDeliveryOfferingsResult;
18
+ /**
19
+ * A list of error responses returned when a request is unsuccessful.
20
+ */
21
+ 'errors'?: Array<Error>;
22
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Selling Partner APIs for Fulfillment Outbound
3
+ * 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.
4
+ *
5
+ * The version of the OpenAPI document: 2020-07-01
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { DeliveryOffering } from './delivery-offering';
13
+ /**
14
+ * A list of delivery offerings, including offering expiration, earliest and latest date and time range, and the delivery offering policy.
15
+ */
16
+ export interface GetDeliveryOfferingsResult {
17
+ /**
18
+ * An array of delivery offering information.
19
+ */
20
+ 'deliveryOfferings'?: Array<DeliveryOffering>;
21
+ }
@@ -12,7 +12,7 @@
12
12
  import type { GetDeliveryOffersProduct } from './get-delivery-offers-product';
13
13
  import type { GetDeliveryOffersTerms } from './get-delivery-offers-terms';
14
14
  /**
15
- * The request body schema for the getDeliveryOffers operation.
15
+ * The request body schema for the `getDeliveryOffers` operation.
16
16
  */
17
17
  export interface GetDeliveryOffersRequest {
18
18
  'product': GetDeliveryOffersProduct;
@@ -11,7 +11,7 @@
11
11
  */
12
12
  import type { GetDeliveryOffersResult } from './get-delivery-offers-result';
13
13
  /**
14
- * The response schema for the getDeliveryOffers operation.
14
+ * The response schema for the `getDeliveryOffers` operation.
15
15
  */
16
16
  export interface GetDeliveryOffersResponse {
17
17
  'payload'?: GetDeliveryOffersResult;