@sp-api-sdk/fulfillment-inbound-api-v0 2.1.0 → 2.2.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 (36) hide show
  1. package/dist/cjs/src/api-model/api/fba-inbound-api.js +60 -81
  2. package/dist/cjs/src/api-model/models/index.js +0 -1
  3. package/dist/cjs/src/client.js +0 -7
  4. package/dist/es/src/api-model/api/fba-inbound-api.js +60 -81
  5. package/dist/es/src/api-model/models/index.js +0 -1
  6. package/dist/es/src/client.js +0 -7
  7. package/dist/types/src/api-model/api/fba-inbound-api.d.ts +64 -75
  8. package/dist/types/src/api-model/models/address.d.ts +1 -1
  9. package/dist/types/src/api-model/models/amount.d.ts +1 -1
  10. package/dist/types/src/api-model/models/bill-of-lading-download-url.d.ts +1 -1
  11. package/dist/types/src/api-model/models/common-transport-result.d.ts +1 -1
  12. package/dist/types/src/api-model/models/confirm-preorder-result.d.ts +3 -3
  13. package/dist/types/src/api-model/models/create-inbound-shipment-plan-request.d.ts +1 -1
  14. package/dist/types/src/api-model/models/create-inbound-shipment-plan-result.d.ts +1 -1
  15. package/dist/types/src/api-model/models/dimensions.d.ts +3 -3
  16. package/dist/types/src/api-model/models/get-inbound-guidance-result.d.ts +1 -1
  17. package/dist/types/src/api-model/models/get-preorder-info-result.d.ts +3 -3
  18. package/dist/types/src/api-model/models/get-prep-instructions-result.d.ts +1 -1
  19. package/dist/types/src/api-model/models/get-shipment-items-result.d.ts +1 -1
  20. package/dist/types/src/api-model/models/get-shipments-result.d.ts +1 -1
  21. package/dist/types/src/api-model/models/get-transport-details-result.d.ts +1 -1
  22. package/dist/types/src/api-model/models/inbound-shipment-info.d.ts +1 -1
  23. package/dist/types/src/api-model/models/inbound-shipment-item.d.ts +1 -1
  24. package/dist/types/src/api-model/models/inbound-shipment-result.d.ts +1 -1
  25. package/dist/types/src/api-model/models/index.d.ts +0 -1
  26. package/dist/types/src/api-model/models/invalid-asin.d.ts +1 -1
  27. package/dist/types/src/api-model/models/invalid-sku.d.ts +1 -1
  28. package/dist/types/src/api-model/models/label-download-url.d.ts +1 -1
  29. package/dist/types/src/api-model/models/partnered-estimate.d.ts +2 -2
  30. package/dist/types/src/api-model/models/partnered-ltl-data-input.d.ts +2 -2
  31. package/dist/types/src/api-model/models/partnered-ltl-data-output.d.ts +4 -4
  32. package/dist/types/src/api-model/models/weight.d.ts +1 -1
  33. package/package.json +5 -5
  34. package/dist/cjs/src/api-model/models/get-inbound-guidance-response.js +0 -15
  35. package/dist/es/src/api-model/models/get-inbound-guidance-response.js +0 -14
  36. package/dist/types/src/api-model/models/get-inbound-guidance-response.d.ts +0 -31
@@ -19,7 +19,6 @@ import { CreateInboundShipmentPlanRequest } from '../models';
19
19
  import { CreateInboundShipmentPlanResponse } from '../models';
20
20
  import { EstimateTransportResponse } from '../models';
21
21
  import { GetBillOfLadingResponse } from '../models';
22
- import { GetInboundGuidanceResponse } from '../models';
23
22
  import { GetLabelsResponse } from '../models';
24
23
  import { GetPreorderInfoResponse } from '../models';
25
24
  import { GetPrepInstructionsResponse } from '../models';
@@ -42,6 +41,7 @@ export declare const FbaInboundApiAxiosParamCreator: (configuration?: Configurat
42
41
  * @param {string} needByDate Date that the shipment must arrive at the Amazon fulfillment center to avoid delivery promise breaks for pre-ordered items. Must be in YYYY-MM-DD format. The response to the getPreorderInfo operation returns this value.
43
42
  * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace the shipment is tied to.
44
43
  * @param {*} [options] Override http request option.
44
+ * @deprecated
45
45
  * @throws {RequiredError}
46
46
  */
47
47
  confirmPreorder: (shipmentId: string, needByDate: string, marketplaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -49,21 +49,24 @@ export declare const FbaInboundApiAxiosParamCreator: (configuration?: Configurat
49
49
  * Confirms that the seller accepts the Amazon-partnered shipping estimate, agrees to allow Amazon to charge their account for the shipping cost, and requests that the Amazon-partnered carrier ship the inbound shipment. Prior to calling the confirmTransport operation, you should call the getTransportDetails operation to get the Amazon-partnered shipping estimate. Important: After confirming the transportation request, if the seller decides that they do not want the Amazon-partnered carrier to ship the inbound shipment, you can call the voidTransport operation to cancel the transportation request. Note that for a Small Parcel shipment, the seller has 24 hours after confirming a transportation request to void the transportation request. For a Less Than Truckload/Full Truckload (LTL/FTL) shipment, the seller has one hour after confirming a transportation request to void it. After the grace period has expired the seller\'s account will be charged for the shipping cost. **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, 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).
50
50
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
51
51
  * @param {*} [options] Override http request option.
52
+ * @deprecated
52
53
  * @throws {RequiredError}
53
54
  */
54
55
  confirmTransport: (shipmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
55
56
  /**
56
57
  * Returns a new inbound shipment based on the specified shipmentId that was returned by the createInboundShipmentPlan operation. **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, 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).
57
58
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
58
- * @param {InboundShipmentRequest} body
59
+ * @param {InboundShipmentRequest} body The request schema for the InboundShipmentRequest operation.
59
60
  * @param {*} [options] Override http request option.
61
+ * @deprecated
60
62
  * @throws {RequiredError}
61
63
  */
62
64
  createInboundShipment: (shipmentId: string, body: InboundShipmentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
63
65
  /**
64
66
  * Returns one or more inbound shipment plans, which provide the information you need to create one or more inbound shipments for a set of items that you specify. Multiple inbound shipment plans might be required so that items can be optimally placed in Amazon\'s fulfillment network—for example, positioning inventory closer to the customer. Alternatively, two inbound shipment plans might be created with the same Amazon fulfillment center destination if the two shipment plans require different processing—for example, items that require labels must be shipped separately from stickerless, commingled inventory. **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, 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).
65
- * @param {CreateInboundShipmentPlanRequest} body
67
+ * @param {CreateInboundShipmentPlanRequest} body The request schema for the CreateInboundShipmentPlanRequest operation.
66
68
  * @param {*} [options] Override http request option.
69
+ * @deprecated
67
70
  * @throws {RequiredError}
68
71
  */
69
72
  createInboundShipmentPlan: (body: CreateInboundShipmentPlanRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -71,6 +74,7 @@ export declare const FbaInboundApiAxiosParamCreator: (configuration?: Configurat
71
74
  * Initiates the process of estimating the shipping cost for an inbound shipment by an Amazon-partnered carrier. Prior to calling the estimateTransport operation, you must call the putTransportDetails operation to provide Amazon with the transportation information for the inbound shipment. **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, 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).
72
75
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
73
76
  * @param {*} [options] Override http request option.
77
+ * @deprecated
74
78
  * @throws {RequiredError}
75
79
  */
76
80
  estimateTransport: (shipmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -81,16 +85,6 @@ export declare const FbaInboundApiAxiosParamCreator: (configuration?: Configurat
81
85
  * @throws {RequiredError}
82
86
  */
83
87
  getBillOfLading: (shipmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
84
- /**
85
- * Returns information that lets a seller know if Amazon recommends sending an item to a given marketplace. In some cases, Amazon provides guidance for why a given SellerSKU or ASIN is not recommended for shipment to Amazon\'s fulfillment network. Sellers may still ship items that are not recommended, at their discretion. **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, 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).
86
- * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace where the product would be stored.
87
- * @param {Array<string>} [sellerSKUList] A list of SellerSKU values. Used to identify items for which you want inbound guidance for shipment to Amazon\&#39;s fulfillment network. Note: SellerSKU is qualified by the SellerId, which is included with every Selling Partner API operation that you submit. If you specify a SellerSKU that identifies a variation parent ASIN, this operation returns an error. A variation parent ASIN represents a generic product that cannot be sold. Variation child ASINs represent products that have specific characteristics (such as size and color) and can be sold.
88
- * @param {Array<string>} [aSINList] A list of ASIN values. Used to identify items for which you want inbound guidance for shipment to Amazon\&#39;s fulfillment network. Note: If you specify a ASIN that identifies a variation parent ASIN, this operation returns an error. A variation parent ASIN represents a generic product that cannot be sold. Variation child ASINs represent products that have specific characteristics (such as size and color) and can be sold.
89
- * @param {*} [options] Override http request option.
90
- * @deprecated
91
- * @throws {RequiredError}
92
- */
93
- getInboundGuidance: (marketplaceId: string, sellerSKUList?: Array<string>, aSINList?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
94
88
  /**
95
89
  * Returns package/pallet labels for faster and more accurate shipment processing at the Amazon fulfillment center. **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, 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).
96
90
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
@@ -110,6 +104,7 @@ export declare const FbaInboundApiAxiosParamCreator: (configuration?: Configurat
110
104
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
111
105
  * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace the shipment is tied to.
112
106
  * @param {*} [options] Override http request option.
107
+ * @deprecated
113
108
  * @throws {RequiredError}
114
109
  */
115
110
  getPreorderInfo: (shipmentId: string, marketplaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -130,6 +125,7 @@ export declare const FbaInboundApiAxiosParamCreator: (configuration?: Configurat
130
125
  * @param {string} [lastUpdatedBefore] A date used for selecting inbound shipment items that were last updated before (or at) a specified time. The selection includes updates made by Amazon and by the seller.
131
126
  * @param {string} [nextToken] A string token returned in the response to your previous request.
132
127
  * @param {*} [options] Override http request option.
128
+ * @deprecated
133
129
  * @throws {RequiredError}
134
130
  */
135
131
  getShipmentItems: (queryType: 'DATE_RANGE' | 'NEXT_TOKEN', marketplaceId: string, lastUpdatedAfter?: string, lastUpdatedBefore?: string, nextToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -138,6 +134,7 @@ export declare const FbaInboundApiAxiosParamCreator: (configuration?: Configurat
138
134
  * @param {string} shipmentId A shipment identifier used for selecting items in a specific inbound shipment.
139
135
  * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace where the product would be stored.
140
136
  * @param {*} [options] Override http request option.
137
+ * @deprecated
141
138
  * @throws {RequiredError}
142
139
  */
143
140
  getShipmentItemsByShipmentId: (shipmentId: string, marketplaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -151,6 +148,7 @@ export declare const FbaInboundApiAxiosParamCreator: (configuration?: Configurat
151
148
  * @param {string} [lastUpdatedBefore] A date used for selecting inbound shipments that were last updated before (or at) a specified time. The selection includes updates made by Amazon and by the seller.
152
149
  * @param {string} [nextToken] A string token returned in the response to your previous request.
153
150
  * @param {*} [options] Override http request option.
151
+ * @deprecated
154
152
  * @throws {RequiredError}
155
153
  */
156
154
  getShipments: (queryType: 'SHIPMENT' | 'DATE_RANGE' | 'NEXT_TOKEN', marketplaceId: string, shipmentStatusList?: Array<'WORKING' | 'READY_TO_SHIP' | 'SHIPPED' | 'RECEIVING' | 'CANCELLED' | 'DELETED' | 'CLOSED' | 'ERROR' | 'IN_TRANSIT' | 'DELIVERED' | 'CHECKED_IN'>, shipmentIdList?: Array<string>, lastUpdatedAfter?: string, lastUpdatedBefore?: string, nextToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -158,22 +156,25 @@ export declare const FbaInboundApiAxiosParamCreator: (configuration?: Configurat
158
156
  * Returns current transportation information about an inbound shipment. **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, 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).
159
157
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
160
158
  * @param {*} [options] Override http request option.
159
+ * @deprecated
161
160
  * @throws {RequiredError}
162
161
  */
163
162
  getTransportDetails: (shipmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
164
163
  /**
165
164
  * Sends transportation information to Amazon about an inbound shipment. **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, 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).
166
165
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
167
- * @param {PutTransportDetailsRequest} body
166
+ * @param {PutTransportDetailsRequest} body The request schema for the PutTransportDetailsRequest operation.
168
167
  * @param {*} [options] Override http request option.
168
+ * @deprecated
169
169
  * @throws {RequiredError}
170
170
  */
171
171
  putTransportDetails: (shipmentId: string, body: PutTransportDetailsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
172
172
  /**
173
173
  * Updates or removes items from the inbound shipment identified by the specified shipment identifier. Adding new items is not supported. **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, 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).
174
174
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
175
- * @param {InboundShipmentRequest} body
175
+ * @param {InboundShipmentRequest} body The request schema for the InboundShipmentRequest operation.
176
176
  * @param {*} [options] Override http request option.
177
+ * @deprecated
177
178
  * @throws {RequiredError}
178
179
  */
179
180
  updateInboundShipment: (shipmentId: string, body: InboundShipmentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -181,6 +182,7 @@ export declare const FbaInboundApiAxiosParamCreator: (configuration?: Configurat
181
182
  * Cancels a previously-confirmed request to ship an inbound shipment using an Amazon-partnered carrier. To be successful, you must call this operation before the VoidDeadline date that is returned by the getTransportDetails operation. Important: The VoidDeadline date is 24 hours after you confirm a Small Parcel shipment transportation request or one hour after you confirm a Less Than Truckload/Full Truckload (LTL/FTL) shipment transportation request. After the void deadline passes, your account will be charged for the shipping cost. **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, 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).
182
183
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
183
184
  * @param {*} [options] Override http request option.
185
+ * @deprecated
184
186
  * @throws {RequiredError}
185
187
  */
186
188
  voidTransport: (shipmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -196,6 +198,7 @@ export declare const FbaInboundApiFp: (configuration?: Configuration) => {
196
198
  * @param {string} needByDate Date that the shipment must arrive at the Amazon fulfillment center to avoid delivery promise breaks for pre-ordered items. Must be in YYYY-MM-DD format. The response to the getPreorderInfo operation returns this value.
197
199
  * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace the shipment is tied to.
198
200
  * @param {*} [options] Override http request option.
201
+ * @deprecated
199
202
  * @throws {RequiredError}
200
203
  */
201
204
  confirmPreorder(shipmentId: string, needByDate: string, marketplaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfirmPreorderResponse>>;
@@ -203,21 +206,24 @@ export declare const FbaInboundApiFp: (configuration?: Configuration) => {
203
206
  * Confirms that the seller accepts the Amazon-partnered shipping estimate, agrees to allow Amazon to charge their account for the shipping cost, and requests that the Amazon-partnered carrier ship the inbound shipment. Prior to calling the confirmTransport operation, you should call the getTransportDetails operation to get the Amazon-partnered shipping estimate. Important: After confirming the transportation request, if the seller decides that they do not want the Amazon-partnered carrier to ship the inbound shipment, you can call the voidTransport operation to cancel the transportation request. Note that for a Small Parcel shipment, the seller has 24 hours after confirming a transportation request to void the transportation request. For a Less Than Truckload/Full Truckload (LTL/FTL) shipment, the seller has one hour after confirming a transportation request to void it. After the grace period has expired the seller\'s account will be charged for the shipping cost. **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, 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).
204
207
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
205
208
  * @param {*} [options] Override http request option.
209
+ * @deprecated
206
210
  * @throws {RequiredError}
207
211
  */
208
212
  confirmTransport(shipmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfirmTransportResponse>>;
209
213
  /**
210
214
  * Returns a new inbound shipment based on the specified shipmentId that was returned by the createInboundShipmentPlan operation. **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, 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).
211
215
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
212
- * @param {InboundShipmentRequest} body
216
+ * @param {InboundShipmentRequest} body The request schema for the InboundShipmentRequest operation.
213
217
  * @param {*} [options] Override http request option.
218
+ * @deprecated
214
219
  * @throws {RequiredError}
215
220
  */
216
221
  createInboundShipment(shipmentId: string, body: InboundShipmentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundShipmentResponse>>;
217
222
  /**
218
223
  * Returns one or more inbound shipment plans, which provide the information you need to create one or more inbound shipments for a set of items that you specify. Multiple inbound shipment plans might be required so that items can be optimally placed in Amazon\'s fulfillment network—for example, positioning inventory closer to the customer. Alternatively, two inbound shipment plans might be created with the same Amazon fulfillment center destination if the two shipment plans require different processing—for example, items that require labels must be shipped separately from stickerless, commingled inventory. **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, 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).
219
- * @param {CreateInboundShipmentPlanRequest} body
224
+ * @param {CreateInboundShipmentPlanRequest} body The request schema for the CreateInboundShipmentPlanRequest operation.
220
225
  * @param {*} [options] Override http request option.
226
+ * @deprecated
221
227
  * @throws {RequiredError}
222
228
  */
223
229
  createInboundShipmentPlan(body: CreateInboundShipmentPlanRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateInboundShipmentPlanResponse>>;
@@ -225,6 +231,7 @@ export declare const FbaInboundApiFp: (configuration?: Configuration) => {
225
231
  * Initiates the process of estimating the shipping cost for an inbound shipment by an Amazon-partnered carrier. Prior to calling the estimateTransport operation, you must call the putTransportDetails operation to provide Amazon with the transportation information for the inbound shipment. **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, 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).
226
232
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
227
233
  * @param {*} [options] Override http request option.
234
+ * @deprecated
228
235
  * @throws {RequiredError}
229
236
  */
230
237
  estimateTransport(shipmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EstimateTransportResponse>>;
@@ -235,16 +242,6 @@ export declare const FbaInboundApiFp: (configuration?: Configuration) => {
235
242
  * @throws {RequiredError}
236
243
  */
237
244
  getBillOfLading(shipmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBillOfLadingResponse>>;
238
- /**
239
- * Returns information that lets a seller know if Amazon recommends sending an item to a given marketplace. In some cases, Amazon provides guidance for why a given SellerSKU or ASIN is not recommended for shipment to Amazon\'s fulfillment network. Sellers may still ship items that are not recommended, at their discretion. **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, 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).
240
- * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace where the product would be stored.
241
- * @param {Array<string>} [sellerSKUList] A list of SellerSKU values. Used to identify items for which you want inbound guidance for shipment to Amazon\&#39;s fulfillment network. Note: SellerSKU is qualified by the SellerId, which is included with every Selling Partner API operation that you submit. If you specify a SellerSKU that identifies a variation parent ASIN, this operation returns an error. A variation parent ASIN represents a generic product that cannot be sold. Variation child ASINs represent products that have specific characteristics (such as size and color) and can be sold.
242
- * @param {Array<string>} [aSINList] A list of ASIN values. Used to identify items for which you want inbound guidance for shipment to Amazon\&#39;s fulfillment network. Note: If you specify a ASIN that identifies a variation parent ASIN, this operation returns an error. A variation parent ASIN represents a generic product that cannot be sold. Variation child ASINs represent products that have specific characteristics (such as size and color) and can be sold.
243
- * @param {*} [options] Override http request option.
244
- * @deprecated
245
- * @throws {RequiredError}
246
- */
247
- getInboundGuidance(marketplaceId: string, sellerSKUList?: Array<string>, aSINList?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetInboundGuidanceResponse>>;
248
245
  /**
249
246
  * Returns package/pallet labels for faster and more accurate shipment processing at the Amazon fulfillment center. **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, 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).
250
247
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
@@ -264,6 +261,7 @@ export declare const FbaInboundApiFp: (configuration?: Configuration) => {
264
261
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
265
262
  * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace the shipment is tied to.
266
263
  * @param {*} [options] Override http request option.
264
+ * @deprecated
267
265
  * @throws {RequiredError}
268
266
  */
269
267
  getPreorderInfo(shipmentId: string, marketplaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPreorderInfoResponse>>;
@@ -284,6 +282,7 @@ export declare const FbaInboundApiFp: (configuration?: Configuration) => {
284
282
  * @param {string} [lastUpdatedBefore] A date used for selecting inbound shipment items that were last updated before (or at) a specified time. The selection includes updates made by Amazon and by the seller.
285
283
  * @param {string} [nextToken] A string token returned in the response to your previous request.
286
284
  * @param {*} [options] Override http request option.
285
+ * @deprecated
287
286
  * @throws {RequiredError}
288
287
  */
289
288
  getShipmentItems(queryType: 'DATE_RANGE' | 'NEXT_TOKEN', marketplaceId: string, lastUpdatedAfter?: string, lastUpdatedBefore?: string, nextToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetShipmentItemsResponse>>;
@@ -292,6 +291,7 @@ export declare const FbaInboundApiFp: (configuration?: Configuration) => {
292
291
  * @param {string} shipmentId A shipment identifier used for selecting items in a specific inbound shipment.
293
292
  * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace where the product would be stored.
294
293
  * @param {*} [options] Override http request option.
294
+ * @deprecated
295
295
  * @throws {RequiredError}
296
296
  */
297
297
  getShipmentItemsByShipmentId(shipmentId: string, marketplaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetShipmentItemsResponse>>;
@@ -305,6 +305,7 @@ export declare const FbaInboundApiFp: (configuration?: Configuration) => {
305
305
  * @param {string} [lastUpdatedBefore] A date used for selecting inbound shipments that were last updated before (or at) a specified time. The selection includes updates made by Amazon and by the seller.
306
306
  * @param {string} [nextToken] A string token returned in the response to your previous request.
307
307
  * @param {*} [options] Override http request option.
308
+ * @deprecated
308
309
  * @throws {RequiredError}
309
310
  */
310
311
  getShipments(queryType: 'SHIPMENT' | 'DATE_RANGE' | 'NEXT_TOKEN', marketplaceId: string, shipmentStatusList?: Array<'WORKING' | 'READY_TO_SHIP' | 'SHIPPED' | 'RECEIVING' | 'CANCELLED' | 'DELETED' | 'CLOSED' | 'ERROR' | 'IN_TRANSIT' | 'DELIVERED' | 'CHECKED_IN'>, shipmentIdList?: Array<string>, lastUpdatedAfter?: string, lastUpdatedBefore?: string, nextToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetShipmentsResponse>>;
@@ -312,22 +313,25 @@ export declare const FbaInboundApiFp: (configuration?: Configuration) => {
312
313
  * Returns current transportation information about an inbound shipment. **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, 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).
313
314
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
314
315
  * @param {*} [options] Override http request option.
316
+ * @deprecated
315
317
  * @throws {RequiredError}
316
318
  */
317
319
  getTransportDetails(shipmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTransportDetailsResponse>>;
318
320
  /**
319
321
  * Sends transportation information to Amazon about an inbound shipment. **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, 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).
320
322
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
321
- * @param {PutTransportDetailsRequest} body
323
+ * @param {PutTransportDetailsRequest} body The request schema for the PutTransportDetailsRequest operation.
322
324
  * @param {*} [options] Override http request option.
325
+ * @deprecated
323
326
  * @throws {RequiredError}
324
327
  */
325
328
  putTransportDetails(shipmentId: string, body: PutTransportDetailsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PutTransportDetailsResponse>>;
326
329
  /**
327
330
  * Updates or removes items from the inbound shipment identified by the specified shipment identifier. Adding new items is not supported. **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, 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).
328
331
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
329
- * @param {InboundShipmentRequest} body
332
+ * @param {InboundShipmentRequest} body The request schema for the InboundShipmentRequest operation.
330
333
  * @param {*} [options] Override http request option.
334
+ * @deprecated
331
335
  * @throws {RequiredError}
332
336
  */
333
337
  updateInboundShipment(shipmentId: string, body: InboundShipmentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundShipmentResponse>>;
@@ -335,6 +339,7 @@ export declare const FbaInboundApiFp: (configuration?: Configuration) => {
335
339
  * Cancels a previously-confirmed request to ship an inbound shipment using an Amazon-partnered carrier. To be successful, you must call this operation before the VoidDeadline date that is returned by the getTransportDetails operation. Important: The VoidDeadline date is 24 hours after you confirm a Small Parcel shipment transportation request or one hour after you confirm a Less Than Truckload/Full Truckload (LTL/FTL) shipment transportation request. After the void deadline passes, your account will be charged for the shipping cost. **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, 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).
336
340
  * @param {string} shipmentId A shipment identifier originally returned by the createInboundShipmentPlan operation.
337
341
  * @param {*} [options] Override http request option.
342
+ * @deprecated
338
343
  * @throws {RequiredError}
339
344
  */
340
345
  voidTransport(shipmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VoidTransportResponse>>;
@@ -348,6 +353,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
348
353
  * Returns information needed to confirm a shipment for pre-order. Call this operation after calling the getPreorderInfo operation to get the NeedByDate value and other pre-order information about the shipment. **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, 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).
349
354
  * @param {FbaInboundApiConfirmPreorderRequest} requestParameters Request parameters.
350
355
  * @param {*} [options] Override http request option.
356
+ * @deprecated
351
357
  * @throws {RequiredError}
352
358
  */
353
359
  confirmPreorder(requestParameters: FbaInboundApiConfirmPreorderRequest, options?: AxiosRequestConfig): AxiosPromise<ConfirmPreorderResponse>;
@@ -355,6 +361,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
355
361
  * Confirms that the seller accepts the Amazon-partnered shipping estimate, agrees to allow Amazon to charge their account for the shipping cost, and requests that the Amazon-partnered carrier ship the inbound shipment. Prior to calling the confirmTransport operation, you should call the getTransportDetails operation to get the Amazon-partnered shipping estimate. Important: After confirming the transportation request, if the seller decides that they do not want the Amazon-partnered carrier to ship the inbound shipment, you can call the voidTransport operation to cancel the transportation request. Note that for a Small Parcel shipment, the seller has 24 hours after confirming a transportation request to void the transportation request. For a Less Than Truckload/Full Truckload (LTL/FTL) shipment, the seller has one hour after confirming a transportation request to void it. After the grace period has expired the seller\'s account will be charged for the shipping cost. **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, 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).
356
362
  * @param {FbaInboundApiConfirmTransportRequest} requestParameters Request parameters.
357
363
  * @param {*} [options] Override http request option.
364
+ * @deprecated
358
365
  * @throws {RequiredError}
359
366
  */
360
367
  confirmTransport(requestParameters: FbaInboundApiConfirmTransportRequest, options?: AxiosRequestConfig): AxiosPromise<ConfirmTransportResponse>;
@@ -362,6 +369,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
362
369
  * Returns a new inbound shipment based on the specified shipmentId that was returned by the createInboundShipmentPlan operation. **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, 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).
363
370
  * @param {FbaInboundApiCreateInboundShipmentRequest} requestParameters Request parameters.
364
371
  * @param {*} [options] Override http request option.
372
+ * @deprecated
365
373
  * @throws {RequiredError}
366
374
  */
367
375
  createInboundShipment(requestParameters: FbaInboundApiCreateInboundShipmentRequest, options?: AxiosRequestConfig): AxiosPromise<InboundShipmentResponse>;
@@ -369,6 +377,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
369
377
  * Returns one or more inbound shipment plans, which provide the information you need to create one or more inbound shipments for a set of items that you specify. Multiple inbound shipment plans might be required so that items can be optimally placed in Amazon\'s fulfillment network—for example, positioning inventory closer to the customer. Alternatively, two inbound shipment plans might be created with the same Amazon fulfillment center destination if the two shipment plans require different processing—for example, items that require labels must be shipped separately from stickerless, commingled inventory. **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, 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).
370
378
  * @param {FbaInboundApiCreateInboundShipmentPlanRequest} requestParameters Request parameters.
371
379
  * @param {*} [options] Override http request option.
380
+ * @deprecated
372
381
  * @throws {RequiredError}
373
382
  */
374
383
  createInboundShipmentPlan(requestParameters: FbaInboundApiCreateInboundShipmentPlanRequest, options?: AxiosRequestConfig): AxiosPromise<CreateInboundShipmentPlanResponse>;
@@ -376,6 +385,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
376
385
  * Initiates the process of estimating the shipping cost for an inbound shipment by an Amazon-partnered carrier. Prior to calling the estimateTransport operation, you must call the putTransportDetails operation to provide Amazon with the transportation information for the inbound shipment. **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, 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).
377
386
  * @param {FbaInboundApiEstimateTransportRequest} requestParameters Request parameters.
378
387
  * @param {*} [options] Override http request option.
388
+ * @deprecated
379
389
  * @throws {RequiredError}
380
390
  */
381
391
  estimateTransport(requestParameters: FbaInboundApiEstimateTransportRequest, options?: AxiosRequestConfig): AxiosPromise<EstimateTransportResponse>;
@@ -386,14 +396,6 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
386
396
  * @throws {RequiredError}
387
397
  */
388
398
  getBillOfLading(requestParameters: FbaInboundApiGetBillOfLadingRequest, options?: AxiosRequestConfig): AxiosPromise<GetBillOfLadingResponse>;
389
- /**
390
- * Returns information that lets a seller know if Amazon recommends sending an item to a given marketplace. In some cases, Amazon provides guidance for why a given SellerSKU or ASIN is not recommended for shipment to Amazon\'s fulfillment network. Sellers may still ship items that are not recommended, at their discretion. **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, 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).
391
- * @param {FbaInboundApiGetInboundGuidanceRequest} requestParameters Request parameters.
392
- * @param {*} [options] Override http request option.
393
- * @deprecated
394
- * @throws {RequiredError}
395
- */
396
- getInboundGuidance(requestParameters: FbaInboundApiGetInboundGuidanceRequest, options?: AxiosRequestConfig): AxiosPromise<GetInboundGuidanceResponse>;
397
399
  /**
398
400
  * Returns package/pallet labels for faster and more accurate shipment processing at the Amazon fulfillment center. **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, 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).
399
401
  * @param {FbaInboundApiGetLabelsRequest} requestParameters Request parameters.
@@ -405,6 +407,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
405
407
  * Returns pre-order information, including dates, that a seller needs before confirming a shipment for pre-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 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).
406
408
  * @param {FbaInboundApiGetPreorderInfoRequest} requestParameters Request parameters.
407
409
  * @param {*} [options] Override http request option.
410
+ * @deprecated
408
411
  * @throws {RequiredError}
409
412
  */
410
413
  getPreorderInfo(requestParameters: FbaInboundApiGetPreorderInfoRequest, options?: AxiosRequestConfig): AxiosPromise<GetPreorderInfoResponse>;
@@ -419,6 +422,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
419
422
  * Returns a list of items in a specified inbound shipment, or a list of items that were updated within a specified time frame. **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, 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).
420
423
  * @param {FbaInboundApiGetShipmentItemsRequest} requestParameters Request parameters.
421
424
  * @param {*} [options] Override http request option.
425
+ * @deprecated
422
426
  * @throws {RequiredError}
423
427
  */
424
428
  getShipmentItems(requestParameters: FbaInboundApiGetShipmentItemsRequest, options?: AxiosRequestConfig): AxiosPromise<GetShipmentItemsResponse>;
@@ -426,6 +430,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
426
430
  * Returns a list of items in a specified inbound shipment. **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, 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).
427
431
  * @param {FbaInboundApiGetShipmentItemsByShipmentIdRequest} requestParameters Request parameters.
428
432
  * @param {*} [options] Override http request option.
433
+ * @deprecated
429
434
  * @throws {RequiredError}
430
435
  */
431
436
  getShipmentItemsByShipmentId(requestParameters: FbaInboundApiGetShipmentItemsByShipmentIdRequest, options?: AxiosRequestConfig): AxiosPromise<GetShipmentItemsResponse>;
@@ -433,6 +438,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
433
438
  * Returns a list of inbound shipments based on 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, 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).
434
439
  * @param {FbaInboundApiGetShipmentsRequest} requestParameters Request parameters.
435
440
  * @param {*} [options] Override http request option.
441
+ * @deprecated
436
442
  * @throws {RequiredError}
437
443
  */
438
444
  getShipments(requestParameters: FbaInboundApiGetShipmentsRequest, options?: AxiosRequestConfig): AxiosPromise<GetShipmentsResponse>;
@@ -440,6 +446,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
440
446
  * Returns current transportation information about an inbound shipment. **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, 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).
441
447
  * @param {FbaInboundApiGetTransportDetailsRequest} requestParameters Request parameters.
442
448
  * @param {*} [options] Override http request option.
449
+ * @deprecated
443
450
  * @throws {RequiredError}
444
451
  */
445
452
  getTransportDetails(requestParameters: FbaInboundApiGetTransportDetailsRequest, options?: AxiosRequestConfig): AxiosPromise<GetTransportDetailsResponse>;
@@ -447,6 +454,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
447
454
  * Sends transportation information to Amazon about an inbound shipment. **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, 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).
448
455
  * @param {FbaInboundApiPutTransportDetailsRequest} requestParameters Request parameters.
449
456
  * @param {*} [options] Override http request option.
457
+ * @deprecated
450
458
  * @throws {RequiredError}
451
459
  */
452
460
  putTransportDetails(requestParameters: FbaInboundApiPutTransportDetailsRequest, options?: AxiosRequestConfig): AxiosPromise<PutTransportDetailsResponse>;
@@ -454,6 +462,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
454
462
  * Updates or removes items from the inbound shipment identified by the specified shipment identifier. Adding new items is not supported. **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, 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).
455
463
  * @param {FbaInboundApiUpdateInboundShipmentRequest} requestParameters Request parameters.
456
464
  * @param {*} [options] Override http request option.
465
+ * @deprecated
457
466
  * @throws {RequiredError}
458
467
  */
459
468
  updateInboundShipment(requestParameters: FbaInboundApiUpdateInboundShipmentRequest, options?: AxiosRequestConfig): AxiosPromise<InboundShipmentResponse>;
@@ -461,6 +470,7 @@ export declare const FbaInboundApiFactory: (configuration?: Configuration, baseP
461
470
  * Cancels a previously-confirmed request to ship an inbound shipment using an Amazon-partnered carrier. To be successful, you must call this operation before the VoidDeadline date that is returned by the getTransportDetails operation. Important: The VoidDeadline date is 24 hours after you confirm a Small Parcel shipment transportation request or one hour after you confirm a Less Than Truckload/Full Truckload (LTL/FTL) shipment transportation request. After the void deadline passes, your account will be charged for the shipping cost. **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, 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).
462
471
  * @param {FbaInboundApiVoidTransportRequest} requestParameters Request parameters.
463
472
  * @param {*} [options] Override http request option.
473
+ * @deprecated
464
474
  * @throws {RequiredError}
465
475
  */
466
476
  voidTransport(requestParameters: FbaInboundApiVoidTransportRequest, options?: AxiosRequestConfig): AxiosPromise<VoidTransportResponse>;
@@ -516,7 +526,7 @@ export interface FbaInboundApiCreateInboundShipmentRequest {
516
526
  */
517
527
  readonly shipmentId: string;
518
528
  /**
519
- *
529
+ * The request schema for the InboundShipmentRequest operation.
520
530
  * @type {InboundShipmentRequest}
521
531
  * @memberof FbaInboundApiCreateInboundShipment
522
532
  */
@@ -529,7 +539,7 @@ export interface FbaInboundApiCreateInboundShipmentRequest {
529
539
  */
530
540
  export interface FbaInboundApiCreateInboundShipmentPlanRequest {
531
541
  /**
532
- *
542
+ * The request schema for the CreateInboundShipmentPlanRequest operation.
533
543
  * @type {CreateInboundShipmentPlanRequest}
534
544
  * @memberof FbaInboundApiCreateInboundShipmentPlan
535
545
  */
@@ -561,31 +571,6 @@ export interface FbaInboundApiGetBillOfLadingRequest {
561
571
  */
562
572
  readonly shipmentId: string;
563
573
  }
564
- /**
565
- * Request parameters for getInboundGuidance operation in FbaInboundApi.
566
- * @export
567
- * @interface FbaInboundApiGetInboundGuidanceRequest
568
- */
569
- export interface FbaInboundApiGetInboundGuidanceRequest {
570
- /**
571
- * A marketplace identifier. Specifies the marketplace where the product would be stored.
572
- * @type {string}
573
- * @memberof FbaInboundApiGetInboundGuidance
574
- */
575
- readonly marketplaceId: string;
576
- /**
577
- * A list of SellerSKU values. Used to identify items for which you want inbound guidance for shipment to Amazon\&#39;s fulfillment network. Note: SellerSKU is qualified by the SellerId, which is included with every Selling Partner API operation that you submit. If you specify a SellerSKU that identifies a variation parent ASIN, this operation returns an error. A variation parent ASIN represents a generic product that cannot be sold. Variation child ASINs represent products that have specific characteristics (such as size and color) and can be sold.
578
- * @type {Array<string>}
579
- * @memberof FbaInboundApiGetInboundGuidance
580
- */
581
- readonly sellerSKUList?: Array<string>;
582
- /**
583
- * A list of ASIN values. Used to identify items for which you want inbound guidance for shipment to Amazon\&#39;s fulfillment network. Note: If you specify a ASIN that identifies a variation parent ASIN, this operation returns an error. A variation parent ASIN represents a generic product that cannot be sold. Variation child ASINs represent products that have specific characteristics (such as size and color) and can be sold.
584
- * @type {Array<string>}
585
- * @memberof FbaInboundApiGetInboundGuidance
586
- */
587
- readonly aSINList?: Array<string>;
588
- }
589
574
  /**
590
575
  * Request parameters for getLabels operation in FbaInboundApi.
591
576
  * @export
@@ -816,7 +801,7 @@ export interface FbaInboundApiPutTransportDetailsRequest {
816
801
  */
817
802
  readonly shipmentId: string;
818
803
  /**
819
- *
804
+ * The request schema for the PutTransportDetailsRequest operation.
820
805
  * @type {PutTransportDetailsRequest}
821
806
  * @memberof FbaInboundApiPutTransportDetails
822
807
  */
@@ -835,7 +820,7 @@ export interface FbaInboundApiUpdateInboundShipmentRequest {
835
820
  */
836
821
  readonly shipmentId: string;
837
822
  /**
838
- *
823
+ * The request schema for the InboundShipmentRequest operation.
839
824
  * @type {InboundShipmentRequest}
840
825
  * @memberof FbaInboundApiUpdateInboundShipment
841
826
  */
@@ -865,6 +850,7 @@ export declare class FbaInboundApi extends BaseAPI {
865
850
  * Returns information needed to confirm a shipment for pre-order. Call this operation after calling the getPreorderInfo operation to get the NeedByDate value and other pre-order information about the shipment. **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, 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).
866
851
  * @param {FbaInboundApiConfirmPreorderRequest} requestParameters Request parameters.
867
852
  * @param {*} [options] Override http request option.
853
+ * @deprecated
868
854
  * @throws {RequiredError}
869
855
  * @memberof FbaInboundApi
870
856
  */
@@ -873,6 +859,7 @@ export declare class FbaInboundApi extends BaseAPI {
873
859
  * Confirms that the seller accepts the Amazon-partnered shipping estimate, agrees to allow Amazon to charge their account for the shipping cost, and requests that the Amazon-partnered carrier ship the inbound shipment. Prior to calling the confirmTransport operation, you should call the getTransportDetails operation to get the Amazon-partnered shipping estimate. Important: After confirming the transportation request, if the seller decides that they do not want the Amazon-partnered carrier to ship the inbound shipment, you can call the voidTransport operation to cancel the transportation request. Note that for a Small Parcel shipment, the seller has 24 hours after confirming a transportation request to void the transportation request. For a Less Than Truckload/Full Truckload (LTL/FTL) shipment, the seller has one hour after confirming a transportation request to void it. After the grace period has expired the seller\'s account will be charged for the shipping cost. **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, 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).
874
860
  * @param {FbaInboundApiConfirmTransportRequest} requestParameters Request parameters.
875
861
  * @param {*} [options] Override http request option.
862
+ * @deprecated
876
863
  * @throws {RequiredError}
877
864
  * @memberof FbaInboundApi
878
865
  */
@@ -881,6 +868,7 @@ export declare class FbaInboundApi extends BaseAPI {
881
868
  * Returns a new inbound shipment based on the specified shipmentId that was returned by the createInboundShipmentPlan operation. **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, 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).
882
869
  * @param {FbaInboundApiCreateInboundShipmentRequest} requestParameters Request parameters.
883
870
  * @param {*} [options] Override http request option.
871
+ * @deprecated
884
872
  * @throws {RequiredError}
885
873
  * @memberof FbaInboundApi
886
874
  */
@@ -889,6 +877,7 @@ export declare class FbaInboundApi extends BaseAPI {
889
877
  * Returns one or more inbound shipment plans, which provide the information you need to create one or more inbound shipments for a set of items that you specify. Multiple inbound shipment plans might be required so that items can be optimally placed in Amazon\'s fulfillment network—for example, positioning inventory closer to the customer. Alternatively, two inbound shipment plans might be created with the same Amazon fulfillment center destination if the two shipment plans require different processing—for example, items that require labels must be shipped separately from stickerless, commingled inventory. **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, 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).
890
878
  * @param {FbaInboundApiCreateInboundShipmentPlanRequest} requestParameters Request parameters.
891
879
  * @param {*} [options] Override http request option.
880
+ * @deprecated
892
881
  * @throws {RequiredError}
893
882
  * @memberof FbaInboundApi
894
883
  */
@@ -897,6 +886,7 @@ export declare class FbaInboundApi extends BaseAPI {
897
886
  * Initiates the process of estimating the shipping cost for an inbound shipment by an Amazon-partnered carrier. Prior to calling the estimateTransport operation, you must call the putTransportDetails operation to provide Amazon with the transportation information for the inbound shipment. **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, 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).
898
887
  * @param {FbaInboundApiEstimateTransportRequest} requestParameters Request parameters.
899
888
  * @param {*} [options] Override http request option.
889
+ * @deprecated
900
890
  * @throws {RequiredError}
901
891
  * @memberof FbaInboundApi
902
892
  */
@@ -909,15 +899,6 @@ export declare class FbaInboundApi extends BaseAPI {
909
899
  * @memberof FbaInboundApi
910
900
  */
911
901
  getBillOfLading(requestParameters: FbaInboundApiGetBillOfLadingRequest, options?: AxiosRequestConfig): Promise<globalAxios.AxiosResponse<GetBillOfLadingResponse, any>>;
912
- /**
913
- * Returns information that lets a seller know if Amazon recommends sending an item to a given marketplace. In some cases, Amazon provides guidance for why a given SellerSKU or ASIN is not recommended for shipment to Amazon\'s fulfillment network. Sellers may still ship items that are not recommended, at their discretion. **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, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
914
- * @param {FbaInboundApiGetInboundGuidanceRequest} requestParameters Request parameters.
915
- * @param {*} [options] Override http request option.
916
- * @deprecated
917
- * @throws {RequiredError}
918
- * @memberof FbaInboundApi
919
- */
920
- getInboundGuidance(requestParameters: FbaInboundApiGetInboundGuidanceRequest, options?: AxiosRequestConfig): Promise<globalAxios.AxiosResponse<GetInboundGuidanceResponse, any>>;
921
902
  /**
922
903
  * Returns package/pallet labels for faster and more accurate shipment processing at the Amazon fulfillment center. **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, 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).
923
904
  * @param {FbaInboundApiGetLabelsRequest} requestParameters Request parameters.
@@ -930,6 +911,7 @@ export declare class FbaInboundApi extends BaseAPI {
930
911
  * Returns pre-order information, including dates, that a seller needs before confirming a shipment for pre-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 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).
931
912
  * @param {FbaInboundApiGetPreorderInfoRequest} requestParameters Request parameters.
932
913
  * @param {*} [options] Override http request option.
914
+ * @deprecated
933
915
  * @throws {RequiredError}
934
916
  * @memberof FbaInboundApi
935
917
  */
@@ -946,6 +928,7 @@ export declare class FbaInboundApi extends BaseAPI {
946
928
  * Returns a list of items in a specified inbound shipment, or a list of items that were updated within a specified time frame. **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, 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).
947
929
  * @param {FbaInboundApiGetShipmentItemsRequest} requestParameters Request parameters.
948
930
  * @param {*} [options] Override http request option.
931
+ * @deprecated
949
932
  * @throws {RequiredError}
950
933
  * @memberof FbaInboundApi
951
934
  */
@@ -954,6 +937,7 @@ export declare class FbaInboundApi extends BaseAPI {
954
937
  * Returns a list of items in a specified inbound shipment. **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, 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).
955
938
  * @param {FbaInboundApiGetShipmentItemsByShipmentIdRequest} requestParameters Request parameters.
956
939
  * @param {*} [options] Override http request option.
940
+ * @deprecated
957
941
  * @throws {RequiredError}
958
942
  * @memberof FbaInboundApi
959
943
  */
@@ -962,6 +946,7 @@ export declare class FbaInboundApi extends BaseAPI {
962
946
  * Returns a list of inbound shipments based on 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, 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).
963
947
  * @param {FbaInboundApiGetShipmentsRequest} requestParameters Request parameters.
964
948
  * @param {*} [options] Override http request option.
949
+ * @deprecated
965
950
  * @throws {RequiredError}
966
951
  * @memberof FbaInboundApi
967
952
  */
@@ -970,6 +955,7 @@ export declare class FbaInboundApi extends BaseAPI {
970
955
  * Returns current transportation information about an inbound shipment. **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, 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).
971
956
  * @param {FbaInboundApiGetTransportDetailsRequest} requestParameters Request parameters.
972
957
  * @param {*} [options] Override http request option.
958
+ * @deprecated
973
959
  * @throws {RequiredError}
974
960
  * @memberof FbaInboundApi
975
961
  */
@@ -978,6 +964,7 @@ export declare class FbaInboundApi extends BaseAPI {
978
964
  * Sends transportation information to Amazon about an inbound shipment. **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, 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).
979
965
  * @param {FbaInboundApiPutTransportDetailsRequest} requestParameters Request parameters.
980
966
  * @param {*} [options] Override http request option.
967
+ * @deprecated
981
968
  * @throws {RequiredError}
982
969
  * @memberof FbaInboundApi
983
970
  */
@@ -986,6 +973,7 @@ export declare class FbaInboundApi extends BaseAPI {
986
973
  * Updates or removes items from the inbound shipment identified by the specified shipment identifier. Adding new items is not supported. **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, 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).
987
974
  * @param {FbaInboundApiUpdateInboundShipmentRequest} requestParameters Request parameters.
988
975
  * @param {*} [options] Override http request option.
976
+ * @deprecated
989
977
  * @throws {RequiredError}
990
978
  * @memberof FbaInboundApi
991
979
  */
@@ -994,6 +982,7 @@ export declare class FbaInboundApi extends BaseAPI {
994
982
  * Cancels a previously-confirmed request to ship an inbound shipment using an Amazon-partnered carrier. To be successful, you must call this operation before the VoidDeadline date that is returned by the getTransportDetails operation. Important: The VoidDeadline date is 24 hours after you confirm a Small Parcel shipment transportation request or one hour after you confirm a Less Than Truckload/Full Truckload (LTL/FTL) shipment transportation request. After the void deadline passes, your account will be charged for the shipping cost. **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, 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).
995
983
  * @param {FbaInboundApiVoidTransportRequest} requestParameters Request parameters.
996
984
  * @param {*} [options] Override http request option.
985
+ * @deprecated
997
986
  * @throws {RequiredError}
998
987
  * @memberof FbaInboundApi
999
988
  */