@sp-api-sdk/fulfillment-outbound-api-2020-07-01 5.0.0 → 5.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.
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/client.ts","../src/api-model/api/fulfillment-outbound-api.ts","../src/api-model/base.ts","../src/api-model/common.ts","../src/api-model/configuration.ts","../src/api-model/models/additional-location-info.ts","../src/api-model/models/amount.ts","../src/api-model/models/current-status.ts","../src/api-model/models/drop-off-location.ts","../src/api-model/models/event-code.ts","../src/api-model/models/feature-settings.ts","../src/api-model/models/fee.ts","../src/api-model/models/fulfillment-action.ts","../src/api-model/models/fulfillment-order-status.ts","../src/api-model/models/fulfillment-policy.ts","../src/api-model/models/fulfillment-preview-item.ts","../src/api-model/models/fulfillment-return-item-status.ts","../src/api-model/models/fulfillment-shipment.ts","../src/api-model/models/invalid-item-reason-code.ts","../src/api-model/models/return-item-disposition.ts","../src/api-model/models/shipping-speed-category.ts","../src/api-model/models/weight.ts"],"sourcesContent":["import {type ClientConfiguration, createAxiosInstance, type RateLimit} from '@sp-api-sdk/common'\n\nimport {Configuration, FulfillmentOutboundApi} from './api-model/index.js'\n\nexport const clientRateLimits: RateLimit[] = [\n {\n method: 'post',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/fulfillmentOrders/preview$'),\n rate: 2,\n burst: 30,\n },\n {\n method: 'post',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/deliveryOffers$'),\n rate: 5,\n burst: 30,\n },\n {\n method: 'get',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/fulfillmentOrders$'),\n rate: 2,\n burst: 30,\n },\n {\n method: 'post',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/fulfillmentOrders$'),\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/tracking$'),\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/returnReasonCodes$'),\n rate: 2,\n burst: 30,\n },\n {\n method: 'put',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/fulfillmentOrders/[^/]*/return$'),\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/fulfillmentOrders/[^/]*$'),\n rate: 2,\n burst: 30,\n },\n {\n method: 'put',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/fulfillmentOrders/[^/]*$'),\n rate: 2,\n burst: 30,\n },\n {\n method: 'put',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/fulfillmentOrders/[^/]*/cancel$'),\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/features$'),\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/features/inventory/[^/]*$'),\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n // eslint-disable-next-line prefer-regex-literals\n urlRegex: new RegExp('^/fba/outbound/2020-07-01/features/inventory/[^/]*$'),\n rate: 2,\n burst: 30,\n },\n]\n\nexport class FulfillmentOutboundApiClient extends FulfillmentOutboundApi {\n constructor(configuration: ClientConfiguration) {\n const {axios, endpoint} = createAxiosInstance(configuration, clientRateLimits)\n\n super(new Configuration(), endpoint, axios)\n }\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from '../configuration.js';\nimport type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';\nimport globalAxios from 'axios';\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, replaceWithSerializableTypeIfNeeded } from '../common.js';\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base.js';\n// @ts-ignore\nimport type { CancelFulfillmentOrderResponse } from '../models/index.js';\n// @ts-ignore\nimport type { CreateFulfillmentOrderRequest } from '../models/index.js';\n// @ts-ignore\nimport type { CreateFulfillmentOrderResponse } from '../models/index.js';\n// @ts-ignore\nimport type { CreateFulfillmentReturnRequest } from '../models/index.js';\n// @ts-ignore\nimport type { CreateFulfillmentReturnResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetDeliveryOffersRequest } from '../models/index.js';\n// @ts-ignore\nimport type { GetDeliveryOffersResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetFeatureInventoryResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetFeatureSkuResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetFeaturesResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetFulfillmentOrderResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetFulfillmentPreviewRequest } from '../models/index.js';\n// @ts-ignore\nimport type { GetFulfillmentPreviewResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetPackageTrackingDetailsResponse } from '../models/index.js';\n// @ts-ignore\nimport type { ListAllFulfillmentOrdersResponse } from '../models/index.js';\n// @ts-ignore\nimport type { ListReturnReasonCodesResponse } from '../models/index.js';\n// @ts-ignore\nimport type { SubmitFulfillmentOrderStatusUpdateRequest } from '../models/index.js';\n// @ts-ignore\nimport type { SubmitFulfillmentOrderStatusUpdateResponse } from '../models/index.js';\n// @ts-ignore\nimport type { UpdateFulfillmentOrderRequest } from '../models/index.js';\n// @ts-ignore\nimport type { UpdateFulfillmentOrderResponse } from '../models/index.js';\n/**\n * FulfillmentOutboundApi - axios parameter creator\n */\nexport const FulfillmentOutboundApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Requests that Amazon stop attempting to fulfill the fulfillment order indicated by the specified order identifier. **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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n cancelFulfillmentOrder: async (sellerFulfillmentOrderId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerFulfillmentOrderId' is not null or undefined\n assertParamExists('cancelFulfillmentOrder', 'sellerFulfillmentOrderId', sellerFulfillmentOrderId)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/{sellerFulfillmentOrderId}/cancel`\n .replace('{sellerFulfillmentOrderId}', encodeURIComponent(String(sellerFulfillmentOrderId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Accept'] = 'application/json';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Requests that Amazon ship items from the seller\\'s inventory in Amazon\\'s fulfillment network to a destination address. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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)\n * @param {CreateFulfillmentOrderRequest} body CreateFulfillmentOrderRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n createFulfillmentOrder: async (body: CreateFulfillmentOrderRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'body' is not null or undefined\n assertParamExists('createFulfillmentOrder', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @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.\n * @param {CreateFulfillmentReturnRequest} body The request body of the &#x60;createFulfillmentReturn&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n createFulfillmentReturn: async (sellerFulfillmentOrderId: string, body: CreateFulfillmentReturnRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerFulfillmentOrderId' is not null or undefined\n assertParamExists('createFulfillmentReturn', 'sellerFulfillmentOrderId', sellerFulfillmentOrderId)\n // verify required parameter 'body' is not null or undefined\n assertParamExists('createFulfillmentReturn', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/{sellerFulfillmentOrderId}/return`\n .replace('{sellerFulfillmentOrderId}', encodeURIComponent(String(sellerFulfillmentOrderId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @param {GetDeliveryOffersRequest} body GetDeliveryOffersRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n deliveryOffers: async (body: GetDeliveryOffersRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'body' is not null or undefined\n assertParamExists('deliveryOffers', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/deliveryOffers`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @param {string} marketplaceId The marketplace for which to return a list of the inventory that is eligible for the specified feature.\n * @param {string} featureName The name of the feature for which to return a list of eligible inventory.\n * @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.\n * @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;\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatureInventory: async (marketplaceId: string, featureName: string, nextToken?: string, queryStartDate?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'marketplaceId' is not null or undefined\n assertParamExists('getFeatureInventory', 'marketplaceId', marketplaceId)\n // verify required parameter 'featureName' is not null or undefined\n assertParamExists('getFeatureInventory', 'featureName', featureName)\n const localVarPath = `/fba/outbound/2020-07-01/features/inventory/{featureName}`\n .replace('{featureName}', encodeURIComponent(String(featureName)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (marketplaceId !== undefined) {\n localVarQueryParameter['marketplaceId'] = marketplaceId;\n }\n\n if (nextToken !== undefined) {\n localVarQueryParameter['nextToken'] = nextToken;\n }\n\n if (queryStartDate !== undefined) {\n localVarQueryParameter['queryStartDate'] = (queryStartDate as any instanceof Date) ?\n (queryStartDate as any).toISOString() :\n queryStartDate;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @param {string} marketplaceId The marketplace for which to return the count.\n * @param {string} featureName The name of the feature.\n * @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.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatureSKU: async (marketplaceId: string, featureName: string, sellerSku: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'marketplaceId' is not null or undefined\n assertParamExists('getFeatureSKU', 'marketplaceId', marketplaceId)\n // verify required parameter 'featureName' is not null or undefined\n assertParamExists('getFeatureSKU', 'featureName', featureName)\n // verify required parameter 'sellerSku' is not null or undefined\n assertParamExists('getFeatureSKU', 'sellerSku', sellerSku)\n const localVarPath = `/fba/outbound/2020-07-01/features/inventory/{featureName}/{sellerSku}`\n .replace('{featureName}', encodeURIComponent(String(featureName)))\n .replace('{sellerSku}', encodeURIComponent(String(sellerSku)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (marketplaceId !== undefined) {\n localVarQueryParameter['marketplaceId'] = marketplaceId;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns a list of features available for Multi-Channel Fulfillment orders in the marketplace you specify, and whether the seller for which you made the call is enrolled for each feature. **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).\n * @param {string} marketplaceId The marketplace for which to return the list of features.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatures: async (marketplaceId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'marketplaceId' is not null or undefined\n assertParamExists('getFeatures', 'marketplaceId', marketplaceId)\n const localVarPath = `/fba/outbound/2020-07-01/features`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (marketplaceId !== undefined) {\n localVarQueryParameter['marketplaceId'] = marketplaceId;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the fulfillment order indicated by the specified order identifier. **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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFulfillmentOrder: async (sellerFulfillmentOrderId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerFulfillmentOrderId' is not null or undefined\n assertParamExists('getFulfillmentOrder', 'sellerFulfillmentOrderId', sellerFulfillmentOrderId)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/{sellerFulfillmentOrderId}`\n .replace('{sellerFulfillmentOrderId}', encodeURIComponent(String(sellerFulfillmentOrderId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns a list of fulfillment order previews based on shipping criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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).\n * @param {GetFulfillmentPreviewRequest} body GetFulfillmentPreviewRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFulfillmentPreview: async (body: GetFulfillmentPreviewRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'body' is not null or undefined\n assertParamExists('getFulfillmentPreview', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/preview`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @param {number} packageNumber The unencrypted package identifier. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getPackageTrackingDetails: async (packageNumber: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'packageNumber' is not null or undefined\n assertParamExists('getPackageTrackingDetails', 'packageNumber', packageNumber)\n const localVarPath = `/fba/outbound/2020-07-01/tracking`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (packageNumber !== undefined) {\n localVarQueryParameter['packageNumber'] = packageNumber;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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)\n * @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.\n * @param {string} [nextToken] A string token returned in the response to your previous request.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n listAllFulfillmentOrders: async (queryStartDate?: string, nextToken?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (queryStartDate !== undefined) {\n localVarQueryParameter['queryStartDate'] = (queryStartDate as any instanceof Date) ?\n (queryStartDate as any).toISOString() :\n queryStartDate;\n }\n\n if (nextToken !== undefined) {\n localVarQueryParameter['nextToken'] = nextToken;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns a list of return reason codes for a seller SKU in a given marketplace. 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).\n * @param {string} sellerSku The seller SKU for which return reason codes are required.\n * @param {string} [marketplaceId] The marketplace for which the seller wants return reason codes.\n * @param {string} [sellerFulfillmentOrderId] The identifier assigned to the item by the seller when the fulfillment order was created. The service uses this value to determine the marketplace for which the seller wants return reason codes.\n * @param {string} [language] The language that the &#x60;TranslatedDescription&#x60; property of the &#x60;ReasonCodeDetails&#x60; response object should be translated into.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n listReturnReasonCodes: async (sellerSku: string, marketplaceId?: string, sellerFulfillmentOrderId?: string, language?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerSku' is not null or undefined\n assertParamExists('listReturnReasonCodes', 'sellerSku', sellerSku)\n const localVarPath = `/fba/outbound/2020-07-01/returnReasonCodes`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (sellerSku !== undefined) {\n localVarQueryParameter['sellerSku'] = sellerSku;\n }\n\n if (marketplaceId !== undefined) {\n localVarQueryParameter['marketplaceId'] = marketplaceId;\n }\n\n if (sellerFulfillmentOrderId !== undefined) {\n localVarQueryParameter['sellerFulfillmentOrderId'] = sellerFulfillmentOrderId;\n }\n\n if (language !== undefined) {\n localVarQueryParameter['language'] = language;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Requests that Amazon update the status of an order in the sandbox testing environment. This is a sandbox-only operation and must be directed to a sandbox endpoint. Refer to [Fulfillment Outbound Dynamic Sandbox Guide](https://developer-docs.amazon.com/sp-api/docs/fulfillment-outbound-dynamic-sandbox-guide) and [Selling Partner API sandbox](https://developer-docs.amazon.com/sp-api/docs/the-selling-partner-api-sandbox) for more information.\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {SubmitFulfillmentOrderStatusUpdateRequest} body The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n submitFulfillmentOrderStatusUpdate: async (sellerFulfillmentOrderId: string, body: SubmitFulfillmentOrderStatusUpdateRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerFulfillmentOrderId' is not null or undefined\n assertParamExists('submitFulfillmentOrderStatusUpdate', 'sellerFulfillmentOrderId', sellerFulfillmentOrderId)\n // verify required parameter 'body' is not null or undefined\n assertParamExists('submitFulfillmentOrderStatusUpdate', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/{sellerFulfillmentOrderId}/status`\n .replace('{sellerFulfillmentOrderId}', encodeURIComponent(String(sellerFulfillmentOrderId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {UpdateFulfillmentOrderRequest} body The request body of the &#x60;updateFulfillmentOrder&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n updateFulfillmentOrder: async (sellerFulfillmentOrderId: string, body: UpdateFulfillmentOrderRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerFulfillmentOrderId' is not null or undefined\n assertParamExists('updateFulfillmentOrder', 'sellerFulfillmentOrderId', sellerFulfillmentOrderId)\n // verify required parameter 'body' is not null or undefined\n assertParamExists('updateFulfillmentOrder', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/{sellerFulfillmentOrderId}`\n .replace('{sellerFulfillmentOrderId}', encodeURIComponent(String(sellerFulfillmentOrderId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * FulfillmentOutboundApi - functional programming interface\n */\nexport const FulfillmentOutboundApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = FulfillmentOutboundApiAxiosParamCreator(configuration)\n return {\n /**\n * Requests that Amazon stop attempting to fulfill the fulfillment order indicated by the specified order identifier. **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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async cancelFulfillmentOrder(sellerFulfillmentOrderId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CancelFulfillmentOrderResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.cancelFulfillmentOrder(sellerFulfillmentOrderId, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.cancelFulfillmentOrder']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Requests that Amazon ship items from the seller\\'s inventory in Amazon\\'s fulfillment network to a destination address. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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)\n * @param {CreateFulfillmentOrderRequest} body CreateFulfillmentOrderRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async createFulfillmentOrder(body: CreateFulfillmentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateFulfillmentOrderResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.createFulfillmentOrder(body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.createFulfillmentOrder']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @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.\n * @param {CreateFulfillmentReturnRequest} body The request body of the &#x60;createFulfillmentReturn&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async createFulfillmentReturn(sellerFulfillmentOrderId: string, body: CreateFulfillmentReturnRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateFulfillmentReturnResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.createFulfillmentReturn(sellerFulfillmentOrderId, body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.createFulfillmentReturn']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @param {GetDeliveryOffersRequest} body GetDeliveryOffersRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async deliveryOffers(body: GetDeliveryOffersRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDeliveryOffersResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.deliveryOffers(body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.deliveryOffers']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @param {string} marketplaceId The marketplace for which to return a list of the inventory that is eligible for the specified feature.\n * @param {string} featureName The name of the feature for which to return a list of eligible inventory.\n * @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.\n * @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;\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getFeatureInventory(marketplaceId: string, featureName: string, nextToken?: string, queryStartDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFeatureInventoryResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getFeatureInventory(marketplaceId, featureName, nextToken, queryStartDate, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getFeatureInventory']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @param {string} marketplaceId The marketplace for which to return the count.\n * @param {string} featureName The name of the feature.\n * @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.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getFeatureSKU(marketplaceId: string, featureName: string, sellerSku: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFeatureSkuResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getFeatureSKU(marketplaceId, featureName, sellerSku, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getFeatureSKU']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Returns a list of features available for Multi-Channel Fulfillment orders in the marketplace you specify, and whether the seller for which you made the call is enrolled for each feature. **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).\n * @param {string} marketplaceId The marketplace for which to return the list of features.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getFeatures(marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFeaturesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getFeatures(marketplaceId, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getFeatures']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Returns the fulfillment order indicated by the specified order identifier. **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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getFulfillmentOrder(sellerFulfillmentOrderId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFulfillmentOrderResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getFulfillmentOrder(sellerFulfillmentOrderId, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getFulfillmentOrder']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Returns a list of fulfillment order previews based on shipping criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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).\n * @param {GetFulfillmentPreviewRequest} body GetFulfillmentPreviewRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getFulfillmentPreview(body: GetFulfillmentPreviewRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFulfillmentPreviewResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getFulfillmentPreview(body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getFulfillmentPreview']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @param {number} packageNumber The unencrypted package identifier. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getPackageTrackingDetails(packageNumber: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPackageTrackingDetailsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getPackageTrackingDetails(packageNumber, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getPackageTrackingDetails']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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)\n * @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.\n * @param {string} [nextToken] A string token returned in the response to your previous request.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async listAllFulfillmentOrders(queryStartDate?: string, nextToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAllFulfillmentOrdersResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.listAllFulfillmentOrders(queryStartDate, nextToken, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.listAllFulfillmentOrders']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Returns a list of return reason codes for a seller SKU in a given marketplace. 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).\n * @param {string} sellerSku The seller SKU for which return reason codes are required.\n * @param {string} [marketplaceId] The marketplace for which the seller wants return reason codes.\n * @param {string} [sellerFulfillmentOrderId] The identifier assigned to the item by the seller when the fulfillment order was created. The service uses this value to determine the marketplace for which the seller wants return reason codes.\n * @param {string} [language] The language that the &#x60;TranslatedDescription&#x60; property of the &#x60;ReasonCodeDetails&#x60; response object should be translated into.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async listReturnReasonCodes(sellerSku: string, marketplaceId?: string, sellerFulfillmentOrderId?: string, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListReturnReasonCodesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.listReturnReasonCodes(sellerSku, marketplaceId, sellerFulfillmentOrderId, language, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.listReturnReasonCodes']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Requests that Amazon update the status of an order in the sandbox testing environment. This is a sandbox-only operation and must be directed to a sandbox endpoint. Refer to [Fulfillment Outbound Dynamic Sandbox Guide](https://developer-docs.amazon.com/sp-api/docs/fulfillment-outbound-dynamic-sandbox-guide) and [Selling Partner API sandbox](https://developer-docs.amazon.com/sp-api/docs/the-selling-partner-api-sandbox) for more information.\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {SubmitFulfillmentOrderStatusUpdateRequest} body The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async submitFulfillmentOrderStatusUpdate(sellerFulfillmentOrderId: string, body: SubmitFulfillmentOrderStatusUpdateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubmitFulfillmentOrderStatusUpdateResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.submitFulfillmentOrderStatusUpdate(sellerFulfillmentOrderId, body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.submitFulfillmentOrderStatusUpdate']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {UpdateFulfillmentOrderRequest} body The request body of the &#x60;updateFulfillmentOrder&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async updateFulfillmentOrder(sellerFulfillmentOrderId: string, body: UpdateFulfillmentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateFulfillmentOrderResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.updateFulfillmentOrder(sellerFulfillmentOrderId, body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.updateFulfillmentOrder']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n }\n};\n\n/**\n * FulfillmentOutboundApi - factory interface\n */\nexport const FulfillmentOutboundApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = FulfillmentOutboundApiFp(configuration)\n return {\n /**\n * Requests that Amazon stop attempting to fulfill the fulfillment order indicated by the specified order identifier. **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).\n * @param {FulfillmentOutboundApiCancelFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n cancelFulfillmentOrder(requestParameters: FulfillmentOutboundApiCancelFulfillmentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<CancelFulfillmentOrderResponse> {\n return localVarFp.cancelFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, options).then((request) => request(axios, basePath));\n },\n /**\n * Requests that Amazon ship items from the seller\\'s inventory in Amazon\\'s fulfillment network to a destination address. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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)\n * @param {FulfillmentOutboundApiCreateFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n createFulfillmentOrder(requestParameters: FulfillmentOutboundApiCreateFulfillmentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateFulfillmentOrderResponse> {\n return localVarFp.createFulfillmentOrder(requestParameters.body, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiCreateFulfillmentReturnRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n createFulfillmentReturn(requestParameters: FulfillmentOutboundApiCreateFulfillmentReturnRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateFulfillmentReturnResponse> {\n return localVarFp.createFulfillmentReturn(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiDeliveryOffersRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n deliveryOffers(requestParameters: FulfillmentOutboundApiDeliveryOffersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDeliveryOffersResponse> {\n return localVarFp.deliveryOffers(requestParameters.body, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetFeatureInventoryRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatureInventory(requestParameters: FulfillmentOutboundApiGetFeatureInventoryRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFeatureInventoryResponse> {\n return localVarFp.getFeatureInventory(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.nextToken, requestParameters.queryStartDate, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetFeatureSKURequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatureSKU(requestParameters: FulfillmentOutboundApiGetFeatureSKURequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFeatureSkuResponse> {\n return localVarFp.getFeatureSKU(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.sellerSku, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns a list of features available for Multi-Channel Fulfillment orders in the marketplace you specify, and whether the seller for which you made the call is enrolled for each feature. **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).\n * @param {FulfillmentOutboundApiGetFeaturesRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatures(requestParameters: FulfillmentOutboundApiGetFeaturesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFeaturesResponse> {\n return localVarFp.getFeatures(requestParameters.marketplaceId, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the fulfillment order indicated by the specified order identifier. **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).\n * @param {FulfillmentOutboundApiGetFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFulfillmentOrder(requestParameters: FulfillmentOutboundApiGetFulfillmentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFulfillmentOrderResponse> {\n return localVarFp.getFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns a list of fulfillment order previews based on shipping criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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).\n * @param {FulfillmentOutboundApiGetFulfillmentPreviewRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFulfillmentPreview(requestParameters: FulfillmentOutboundApiGetFulfillmentPreviewRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFulfillmentPreviewResponse> {\n return localVarFp.getFulfillmentPreview(requestParameters.body, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetPackageTrackingDetailsRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getPackageTrackingDetails(requestParameters: FulfillmentOutboundApiGetPackageTrackingDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPackageTrackingDetailsResponse> {\n return localVarFp.getPackageTrackingDetails(requestParameters.packageNumber, options).then((request) => request(axios, basePath));\n },\n /**\n * 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)\n * @param {FulfillmentOutboundApiListAllFulfillmentOrdersRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n listAllFulfillmentOrders(requestParameters: FulfillmentOutboundApiListAllFulfillmentOrdersRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<ListAllFulfillmentOrdersResponse> {\n return localVarFp.listAllFulfillmentOrders(requestParameters.queryStartDate, requestParameters.nextToken, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns a list of return reason codes for a seller SKU in a given marketplace. 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).\n * @param {FulfillmentOutboundApiListReturnReasonCodesRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n listReturnReasonCodes(requestParameters: FulfillmentOutboundApiListReturnReasonCodesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListReturnReasonCodesResponse> {\n return localVarFp.listReturnReasonCodes(requestParameters.sellerSku, requestParameters.marketplaceId, requestParameters.sellerFulfillmentOrderId, requestParameters.language, options).then((request) => request(axios, basePath));\n },\n /**\n * Requests that Amazon update the status of an order in the sandbox testing environment. This is a sandbox-only operation and must be directed to a sandbox endpoint. Refer to [Fulfillment Outbound Dynamic Sandbox Guide](https://developer-docs.amazon.com/sp-api/docs/fulfillment-outbound-dynamic-sandbox-guide) and [Selling Partner API sandbox](https://developer-docs.amazon.com/sp-api/docs/the-selling-partner-api-sandbox) for more information.\n * @param {FulfillmentOutboundApiSubmitFulfillmentOrderStatusUpdateRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n submitFulfillmentOrderStatusUpdate(requestParameters: FulfillmentOutboundApiSubmitFulfillmentOrderStatusUpdateRequest, options?: RawAxiosRequestConfig): AxiosPromise<SubmitFulfillmentOrderStatusUpdateResponse> {\n return localVarFp.submitFulfillmentOrderStatusUpdate(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiUpdateFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n updateFulfillmentOrder(requestParameters: FulfillmentOutboundApiUpdateFulfillmentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateFulfillmentOrderResponse> {\n return localVarFp.updateFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * Request parameters for cancelFulfillmentOrder operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiCancelFulfillmentOrderRequest {\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created.\n */\n readonly sellerFulfillmentOrderId: string\n}\n\n/**\n * Request parameters for createFulfillmentOrder operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiCreateFulfillmentOrderRequest {\n /**\n * CreateFulfillmentOrderRequest parameter\n */\n readonly body: CreateFulfillmentOrderRequest\n}\n\n/**\n * Request parameters for createFulfillmentReturn operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiCreateFulfillmentReturnRequest {\n /**\n * 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.\n */\n readonly sellerFulfillmentOrderId: string\n\n /**\n * The request body of the &#x60;createFulfillmentReturn&#x60; operation.\n */\n readonly body: CreateFulfillmentReturnRequest\n}\n\n/**\n * Request parameters for deliveryOffers operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiDeliveryOffersRequest {\n /**\n * GetDeliveryOffersRequest parameter\n */\n readonly body: GetDeliveryOffersRequest\n}\n\n/**\n * Request parameters for getFeatureInventory operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetFeatureInventoryRequest {\n /**\n * The marketplace for which to return a list of the inventory that is eligible for the specified feature.\n */\n readonly marketplaceId: string\n\n /**\n * The name of the feature for which to return a list of eligible inventory.\n */\n readonly featureName: string\n\n /**\n * 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.\n */\n readonly nextToken?: string\n\n /**\n * 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;\n */\n readonly queryStartDate?: string\n}\n\n/**\n * Request parameters for getFeatureSKU operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetFeatureSKURequest {\n /**\n * The marketplace for which to return the count.\n */\n readonly marketplaceId: string\n\n /**\n * The name of the feature.\n */\n readonly featureName: string\n\n /**\n * 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.\n */\n readonly sellerSku: string\n}\n\n/**\n * Request parameters for getFeatures operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetFeaturesRequest {\n /**\n * The marketplace for which to return the list of features.\n */\n readonly marketplaceId: string\n}\n\n/**\n * Request parameters for getFulfillmentOrder operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetFulfillmentOrderRequest {\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created.\n */\n readonly sellerFulfillmentOrderId: string\n}\n\n/**\n * Request parameters for getFulfillmentPreview operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetFulfillmentPreviewRequest {\n /**\n * GetFulfillmentPreviewRequest parameter\n */\n readonly body: GetFulfillmentPreviewRequest\n}\n\n/**\n * Request parameters for getPackageTrackingDetails operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetPackageTrackingDetailsRequest {\n /**\n * The unencrypted package identifier. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.\n */\n readonly packageNumber: number\n}\n\n/**\n * Request parameters for listAllFulfillmentOrders operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiListAllFulfillmentOrdersRequest {\n /**\n * 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.\n */\n readonly queryStartDate?: string\n\n /**\n * A string token returned in the response to your previous request.\n */\n readonly nextToken?: string\n}\n\n/**\n * Request parameters for listReturnReasonCodes operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiListReturnReasonCodesRequest {\n /**\n * The seller SKU for which return reason codes are required.\n */\n readonly sellerSku: string\n\n /**\n * The marketplace for which the seller wants return reason codes.\n */\n readonly marketplaceId?: string\n\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created. The service uses this value to determine the marketplace for which the seller wants return reason codes.\n */\n readonly sellerFulfillmentOrderId?: string\n\n /**\n * The language that the &#x60;TranslatedDescription&#x60; property of the &#x60;ReasonCodeDetails&#x60; response object should be translated into.\n */\n readonly language?: string\n}\n\n/**\n * Request parameters for submitFulfillmentOrderStatusUpdate operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiSubmitFulfillmentOrderStatusUpdateRequest {\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created.\n */\n readonly sellerFulfillmentOrderId: string\n\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created.\n */\n readonly body: SubmitFulfillmentOrderStatusUpdateRequest\n}\n\n/**\n * Request parameters for updateFulfillmentOrder operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiUpdateFulfillmentOrderRequest {\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created.\n */\n readonly sellerFulfillmentOrderId: string\n\n /**\n * The request body of the &#x60;updateFulfillmentOrder&#x60; operation.\n */\n readonly body: UpdateFulfillmentOrderRequest\n}\n\n/**\n * FulfillmentOutboundApi - object-oriented interface\n */\nexport class FulfillmentOutboundApi extends BaseAPI {\n /**\n * Requests that Amazon stop attempting to fulfill the fulfillment order indicated by the specified order identifier. **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).\n * @param {FulfillmentOutboundApiCancelFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public cancelFulfillmentOrder(requestParameters: FulfillmentOutboundApiCancelFulfillmentOrderRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).cancelFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Requests that Amazon ship items from the seller\\'s inventory in Amazon\\'s fulfillment network to a destination address. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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)\n * @param {FulfillmentOutboundApiCreateFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public createFulfillmentOrder(requestParameters: FulfillmentOutboundApiCreateFulfillmentOrderRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).createFulfillmentOrder(requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiCreateFulfillmentReturnRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public createFulfillmentReturn(requestParameters: FulfillmentOutboundApiCreateFulfillmentReturnRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).createFulfillmentReturn(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiDeliveryOffersRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public deliveryOffers(requestParameters: FulfillmentOutboundApiDeliveryOffersRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).deliveryOffers(requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetFeatureInventoryRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getFeatureInventory(requestParameters: FulfillmentOutboundApiGetFeatureInventoryRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getFeatureInventory(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.nextToken, requestParameters.queryStartDate, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetFeatureSKURequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getFeatureSKU(requestParameters: FulfillmentOutboundApiGetFeatureSKURequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getFeatureSKU(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.sellerSku, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns a list of features available for Multi-Channel Fulfillment orders in the marketplace you specify, and whether the seller for which you made the call is enrolled for each feature. **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).\n * @param {FulfillmentOutboundApiGetFeaturesRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getFeatures(requestParameters: FulfillmentOutboundApiGetFeaturesRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getFeatures(requestParameters.marketplaceId, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the fulfillment order indicated by the specified order identifier. **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).\n * @param {FulfillmentOutboundApiGetFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getFulfillmentOrder(requestParameters: FulfillmentOutboundApiGetFulfillmentOrderRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns a list of fulfillment order previews based on shipping criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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).\n * @param {FulfillmentOutboundApiGetFulfillmentPreviewRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getFulfillmentPreview(requestParameters: FulfillmentOutboundApiGetFulfillmentPreviewRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getFulfillmentPreview(requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetPackageTrackingDetailsRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getPackageTrackingDetails(requestParameters: FulfillmentOutboundApiGetPackageTrackingDetailsRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getPackageTrackingDetails(requestParameters.packageNumber, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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)\n * @param {FulfillmentOutboundApiListAllFulfillmentOrdersRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public listAllFulfillmentOrders(requestParameters: FulfillmentOutboundApiListAllFulfillmentOrdersRequest = {}, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).listAllFulfillmentOrders(requestParameters.queryStartDate, requestParameters.nextToken, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns a list of return reason codes for a seller SKU in a given marketplace. 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).\n * @param {FulfillmentOutboundApiListReturnReasonCodesRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public listReturnReasonCodes(requestParameters: FulfillmentOutboundApiListReturnReasonCodesRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).listReturnReasonCodes(requestParameters.sellerSku, requestParameters.marketplaceId, requestParameters.sellerFulfillmentOrderId, requestParameters.language, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Requests that Amazon update the status of an order in the sandbox testing environment. This is a sandbox-only operation and must be directed to a sandbox endpoint. Refer to [Fulfillment Outbound Dynamic Sandbox Guide](https://developer-docs.amazon.com/sp-api/docs/fulfillment-outbound-dynamic-sandbox-guide) and [Selling Partner API sandbox](https://developer-docs.amazon.com/sp-api/docs/the-selling-partner-api-sandbox) for more information.\n * @param {FulfillmentOutboundApiSubmitFulfillmentOrderStatusUpdateRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public submitFulfillmentOrderStatusUpdate(requestParameters: FulfillmentOutboundApiSubmitFulfillmentOrderStatusUpdateRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).submitFulfillmentOrderStatusUpdate(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiUpdateFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public updateFulfillmentOrder(requestParameters: FulfillmentOutboundApiUpdateFulfillmentOrderRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).updateFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from './configuration.js';\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';\nimport globalAxios from 'axios';\n\nexport const BASE_PATH = \"https://sellingpartnerapi-na.amazon.com\".replace(/\\/+$/, \"\");\n\nexport const COLLECTION_FORMATS = {\n csv: \",\",\n ssv: \" \",\n tsv: \"\\t\",\n pipes: \"|\",\n};\n\nexport interface RequestArgs {\n url: string;\n options: RawAxiosRequestConfig;\n}\n\nexport class BaseAPI {\n protected configuration: Configuration | undefined;\n\n constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected axios: AxiosInstance = globalAxios) {\n if (configuration) {\n this.configuration = configuration;\n this.basePath = configuration.basePath ?? basePath;\n }\n }\n};\n\nexport class RequiredError extends Error {\n constructor(public field: string, msg?: string) {\n super(msg);\n this.name = \"RequiredError\"\n }\n}\n\ninterface ServerMap {\n [key: string]: {\n url: string,\n description: string,\n }[];\n}\n\nexport const operationServerMap: ServerMap = {\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nimport type { Configuration } from \"./configuration.js\";\nimport type { RequestArgs } from \"./base.js\";\nimport type { AxiosInstance, AxiosResponse } from 'axios';\nimport { RequiredError } from \"./base.js\";\n\nexport const DUMMY_BASE_URL = 'https://example.com'\n\n/**\n *\n * @throws {RequiredError}\n */\nexport const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) {\n if (paramValue === null || paramValue === undefined) {\n throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);\n }\n}\n\nexport const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(keyParamName)\n : await configuration.apiKey;\n object[keyParamName] = localVarApiKeyValue;\n }\n}\n\nexport const setBasicAuthToObject = function (object: any, configuration?: Configuration) {\n if (configuration && (configuration.username || configuration.password)) {\n object[\"auth\"] = { username: configuration.username, password: configuration.password };\n }\n}\n\nexport const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const accessToken = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken()\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + accessToken;\n }\n}\n\nexport const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const localVarAccessTokenValue = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken(name, scopes)\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + localVarAccessTokenValue;\n }\n}\n\n\nfunction setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = \"\"): void {\n if (parameter == null) return;\n if (typeof parameter === \"object\") {\n if (Array.isArray(parameter) || parameter instanceof Set) {\n (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));\n }\n else {\n Object.keys(parameter).forEach(currentKey =>\n setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)\n );\n }\n }\n else {\n if (urlSearchParams.has(key)) {\n urlSearchParams.append(key, parameter);\n }\n else {\n urlSearchParams.set(key, parameter);\n }\n }\n}\n\nexport const setSearchParams = function (url: URL, ...objects: any[]) {\n const searchParams = new URLSearchParams(url.search);\n setFlattenedQueryParams(searchParams, objects);\n url.search = searchParams.toString();\n}\n\n/**\n * JSON serialization helper function which replaces instances of unserializable types with serializable ones.\n * This function will run for every key-value pair encountered by JSON.stringify while traversing an object.\n * Converting a set to a string will return an empty object, so an intermediate conversion to an array is required.\n */\n// @ts-ignore\nexport const replaceWithSerializableTypeIfNeeded = function(key: string, value: any) {\n if (value instanceof Set) {\n return Array.from(value);\n } else {\n return value;\n }\n}\n\nexport const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {\n const nonString = typeof value !== 'string';\n const needsSerialization = nonString && configuration && configuration.isJsonMime\n ? configuration.isJsonMime(requestOptions.headers['Content-Type'])\n : nonString;\n return needsSerialization\n ? JSON.stringify(value !== undefined ? value : {}, replaceWithSerializableTypeIfNeeded)\n : (value || \"\");\n}\n\nexport const toPathString = function (url: URL) {\n return url.pathname + url.search + url.hash\n}\n\nexport const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {\n return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...axiosArgs.options, url: (axios.defaults.baseURL ? '' : configuration?.basePath ?? basePath) + axiosArgs.url};\n return axios.request<T, R>(axiosRequestArgs);\n };\n}\n","/* tslint:disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\ninterface AWSv4Configuration {\n options?: {\n region?: string\n service?: string\n }\n credentials?: {\n accessKeyId?: string\n secretAccessKey?: string,\n sessionToken?: string\n }\n}\n\nexport interface ConfigurationParameters {\n apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);\n username?: string;\n password?: string;\n accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);\n awsv4?: AWSv4Configuration;\n basePath?: string;\n serverIndex?: number;\n baseOptions?: any;\n formDataCtor?: new () => any;\n}\n\nexport class Configuration {\n /**\n * parameter for apiKey security\n * @param name security name\n */\n apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);\n /**\n * parameter for basic security\n */\n username?: string;\n /**\n * parameter for basic security\n */\n password?: string;\n /**\n * parameter for oauth2 security\n * @param name security name\n * @param scopes oauth2 scope\n */\n accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);\n /**\n * parameter for aws4 signature security\n * @param {Object} AWS4Signature - AWS4 Signature security\n * @param {string} options.region - aws region\n * @param {string} options.service - name of the service.\n * @param {string} credentials.accessKeyId - aws access key id\n * @param {string} credentials.secretAccessKey - aws access key\n * @param {string} credentials.sessionToken - aws session token\n * @memberof Configuration\n */\n awsv4?: AWSv4Configuration;\n /**\n * override base path\n */\n basePath?: string;\n /**\n * override server index\n */\n serverIndex?: number;\n /**\n * base options for axios calls\n */\n baseOptions?: any;\n /**\n * The FormData constructor that will be used to create multipart form data\n * requests. You can inject this here so that execution environments that\n * do not support the FormData class can still run the generated client.\n *\n * @type {new () => FormData}\n */\n formDataCtor?: new () => any;\n\n constructor(param: ConfigurationParameters = {}) {\n this.apiKey = param.apiKey;\n this.username = param.username;\n this.password = param.password;\n this.accessToken = param.accessToken;\n this.awsv4 = param.awsv4;\n this.basePath = param.basePath;\n this.serverIndex = param.serverIndex;\n this.baseOptions = {\n ...param.baseOptions,\n headers: {\n ...param.baseOptions?.headers,\n },\n };\n this.formDataCtor = param.formDataCtor;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = /^(application\\/json|[^;/ \\t]+\\/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$/i;\n return mime !== null && jsonMime.test(mime);\n }\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * Additional location information.\n */\n\nexport const AdditionalLocationInfo = {\n AsInstructed: 'AS_INSTRUCTED',\n Carport: 'CARPORT',\n CustomerPickup: 'CUSTOMER_PICKUP',\n Deck: 'DECK',\n DoorPerson: 'DOOR_PERSON',\n FrontDesk: 'FRONT_DESK',\n FrontDoor: 'FRONT_DOOR',\n Garage: 'GARAGE',\n Guard: 'GUARD',\n MailRoom: 'MAIL_ROOM',\n MailSlot: 'MAIL_SLOT',\n Mailbox: 'MAILBOX',\n McBoy: 'MC_BOY',\n McGirl: 'MC_GIRL',\n McMan: 'MC_MAN',\n McWoman: 'MC_WOMAN',\n Neighbor: 'NEIGHBOR',\n Office: 'OFFICE',\n Outbuilding: 'OUTBUILDING',\n Patio: 'PATIO',\n Porch: 'PORCH',\n RearDoor: 'REAR_DOOR',\n Receptionist: 'RECEPTIONIST',\n Receiver: 'RECEIVER',\n SecureLocation: 'SECURE_LOCATION',\n SideDoor: 'SIDE_DOOR',\n} as const;\n\nexport type AdditionalLocationInfo = typeof AdditionalLocationInfo[keyof typeof AdditionalLocationInfo];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * A quantity based on the specified unit of measurement.\n */\nexport interface Amount {\n /**\n * The unit of measure for the amount.\n */\n 'unitOfMeasure': AmountUnitOfMeasureEnum;\n /**\n * A decimal number with no loss of precision. Useful when precision loss is unacceptable, as with currencies. Follows RFC7159 for number representation.\n */\n 'value': string;\n}\n\nexport const AmountUnitOfMeasureEnum = {\n Eaches: 'Eaches',\n} as const;\n\nexport type AmountUnitOfMeasureEnum = typeof AmountUnitOfMeasureEnum[keyof typeof AmountUnitOfMeasureEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The current delivery status of the package.\n */\n\nexport const CurrentStatus = {\n InTransit: 'IN_TRANSIT',\n Delivered: 'DELIVERED',\n Returning: 'RETURNING',\n Returned: 'RETURNED',\n Undeliverable: 'UNDELIVERABLE',\n Delayed: 'DELAYED',\n AvailableForPickup: 'AVAILABLE_FOR_PICKUP',\n CustomerAction: 'CUSTOMER_ACTION',\n Unknown: 'UNKNOWN',\n OutForDelivery: 'OUT_FOR_DELIVERY',\n DeliveryAttempted: 'DELIVERY_ATTEMPTED',\n PickupSuccessful: 'PICKUP_SUCCESSFUL',\n PickupCancelled: 'PICKUP_CANCELLED',\n PickupAttempted: 'PICKUP_ATTEMPTED',\n PickupScheduled: 'PICKUP_SCHEDULED',\n ReturnRequestAccepted: 'RETURN_REQUEST_ACCEPTED',\n RefundIssued: 'REFUND_ISSUED',\n ReturnReceivedInFc: 'RETURN_RECEIVED_IN_FC',\n} as const;\n\nexport type CurrentStatus = typeof CurrentStatus[keyof typeof CurrentStatus];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The drop-off location at the destination address.\n */\nexport interface DropOffLocation {\n /**\n * The drop-off location type at the destination address.\n */\n 'type': DropOffLocationTypeEnum;\n /**\n * Additional information about the drop-off location. This information can vary depending on the type of drop-off location specified in the `type` field. If the `type` is set to `FALLBACK_NEIGHBOR_DELIVERY`, the `attributes` object must include the keys `neighborName` and `houseNumber` to provide the name and house number of the designated neighbor. For `RECEPTIONIST` type, the `attributes` object may include a `recipientName` field that contains the name of the person who received or will receive the package.\n */\n 'attributes'?: { [key: string]: string; };\n}\n\nexport const DropOffLocationTypeEnum = {\n FrontDoor: 'FRONT_DOOR',\n DeliveryBox: 'DELIVERY_BOX',\n GasMeterBox: 'GAS_METER_BOX',\n BicycleBasket: 'BICYCLE_BASKET',\n Garage: 'GARAGE',\n Receptionist: 'RECEPTIONIST',\n FallbackNeighborDelivery: 'FALLBACK_NEIGHBOR_DELIVERY',\n DoNotLeaveUnattended: 'DO_NOT_LEAVE_UNATTENDED',\n} as const;\n\nexport type DropOffLocationTypeEnum = typeof DropOffLocationTypeEnum[keyof typeof DropOffLocationTypeEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The event code for the delivery event.\n */\n\nexport const EventCode = {\n Event101: 'EVENT_101',\n Event102: 'EVENT_102',\n Event201: 'EVENT_201',\n Event202: 'EVENT_202',\n Event203: 'EVENT_203',\n Event204: 'EVENT_204',\n Event205: 'EVENT_205',\n Event206: 'EVENT_206',\n Event301: 'EVENT_301',\n Event302: 'EVENT_302',\n Event304: 'EVENT_304',\n Event306: 'EVENT_306',\n Event307: 'EVENT_307',\n Event308: 'EVENT_308',\n Event309: 'EVENT_309',\n Event401: 'EVENT_401',\n Event402: 'EVENT_402',\n Event403: 'EVENT_403',\n Event404: 'EVENT_404',\n Event405: 'EVENT_405',\n Event406: 'EVENT_406',\n Event407: 'EVENT_407',\n Event408: 'EVENT_408',\n Event409: 'EVENT_409',\n Event411: 'EVENT_411',\n Event412: 'EVENT_412',\n Event413: 'EVENT_413',\n Event414: 'EVENT_414',\n Event415: 'EVENT_415',\n Event416: 'EVENT_416',\n Event417: 'EVENT_417',\n Event418: 'EVENT_418',\n Event419: 'EVENT_419',\n Event801: 'EVENT_801',\n Event804: 'EVENT_804',\n} as const;\n\nexport type EventCode = typeof EventCode[keyof typeof EventCode];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * 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`. To require items to be shipped in an overbox rather than in their original product packaging, set `featureName` to `OVERBOX`. To require a packing slip to be included with the order, set `featureName` to `PACKING_SLIP`. To require a signature from the recipient upon delivery, set `featureName` to `SIGNATURE_CONFIRMATION`. Note that using signature confirmation features will incur additional fees on MCF orders and are currently supported only in the US marketplace. To ensure all items in an order are delivered together, set `featureName` to `DELIVER_TOGETHER`.\n */\nexport interface FeatureSettings {\n /**\n * The name of the feature. Valid feature names are: - `BLOCK_AMZL`: Blocks orders from being shipped using Amazon Logistics (AMZL). - Note: Using this feature will incur additional fee surcharges on MCF orders and may increase the risk of unfulfilled or delayed deliveries if alternative carriers are unavailable. Using `BLOCK_AMZL` in an order request will take precedence over your Seller Central account setting. - `BLANK_BOX`: Ships orders in non-Amazon branded packaging (blank boxes). - `OVERBOX`: Requires items to be shipped in an overbox rather than in their original product packaging. - `PACKING_SLIP`: Requires a packing slip to be included with the order. - `SIGNATURE_CONFIRMATION`: Requires a signature from the recipient upon delivery. - Note: Using signature confirmation features will incur additional fees on MCF orders and are currently supported only in the US marketplace.\n */\n 'featureName'?: string;\n /**\n * Specifies the policy to use when fulfilling an order.\n */\n 'featureFulfillmentPolicy'?: FeatureSettingsFeatureFulfillmentPolicyEnum;\n}\n\nexport const FeatureSettingsFeatureFulfillmentPolicyEnum = {\n Required: 'Required',\n NotRequired: 'NotRequired',\n} as const;\n\nexport type FeatureSettingsFeatureFulfillmentPolicyEnum = typeof FeatureSettingsFeatureFulfillmentPolicyEnum[keyof typeof FeatureSettingsFeatureFulfillmentPolicyEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n// May contain unused imports in some cases\n// @ts-ignore\nimport type { Money } from './money.js';\n\n/**\n * Fee type and cost.\n */\nexport interface Fee {\n /**\n * The type of fee.\n */\n 'name': FeeNameEnum;\n 'amount': Money;\n}\n\nexport const FeeNameEnum = {\n FbaPerUnitFulfillmentFee: 'FBAPerUnitFulfillmentFee',\n FbaPerOrderFulfillmentFee: 'FBAPerOrderFulfillmentFee',\n FbaTransportationFee: 'FBATransportationFee',\n FbaFulfillmentCodFee: 'FBAFulfillmentCODFee',\n} as const;\n\nexport type FeeNameEnum = typeof FeeNameEnum[keyof typeof FeeNameEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * Specifies whether the fulfillment order should ship now or have an order hold put on it.\n */\n\nexport const FulfillmentAction = {\n Ship: 'Ship',\n Hold: 'Hold',\n} as const;\n\nexport type FulfillmentAction = typeof FulfillmentAction[keyof typeof FulfillmentAction];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The current status of the fulfillment order.\n */\n\nexport const FulfillmentOrderStatus = {\n New: 'New',\n Received: 'Received',\n Planning: 'Planning',\n Processing: 'Processing',\n Cancelled: 'Cancelled',\n Complete: 'Complete',\n CompletePartialled: 'CompletePartialled',\n Unfulfillable: 'Unfulfillable',\n Invalid: 'Invalid',\n} as const;\n\nexport type FulfillmentOrderStatus = typeof FulfillmentOrderStatus[keyof typeof FulfillmentOrderStatus];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The `FulfillmentPolicy` value specified when you called the `createFulfillmentOrder` operation.\n */\n\nexport const FulfillmentPolicy = {\n FillOrKill: 'FillOrKill',\n FillAll: 'FillAll',\n FillAllAvailable: 'FillAllAvailable',\n} as const;\n\nexport type FulfillmentPolicy = typeof FulfillmentPolicy[keyof typeof FulfillmentPolicy];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n// May contain unused imports in some cases\n// @ts-ignore\nimport type { Weight } from './weight.js';\n\n/**\n * Item information for a shipment in a fulfillment order preview.\n */\nexport interface FulfillmentPreviewItem {\n /**\n * The seller SKU of the item.\n */\n 'sellerSku': string;\n /**\n * The item quantity.\n */\n 'quantity': number;\n /**\n * A fulfillment order item identifier that the seller created with a call to the `createFulfillmentOrder` operation.\n */\n 'sellerFulfillmentOrderItemId': string;\n 'estimatedShippingWeight'?: Weight;\n /**\n * The method used to calculate the estimated shipping weight.\n */\n 'shippingWeightCalculationMethod'?: FulfillmentPreviewItemShippingWeightCalculationMethodEnum;\n}\n\nexport const FulfillmentPreviewItemShippingWeightCalculationMethodEnum = {\n Package: 'Package',\n Dimensional: 'Dimensional',\n} as const;\n\nexport type FulfillmentPreviewItemShippingWeightCalculationMethodEnum = typeof FulfillmentPreviewItemShippingWeightCalculationMethodEnum[keyof typeof FulfillmentPreviewItemShippingWeightCalculationMethodEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * Indicates if the return item has been processed by a fulfillment center.\n */\n\nexport const FulfillmentReturnItemStatus = {\n New: 'New',\n Processed: 'Processed',\n} as const;\n\nexport type FulfillmentReturnItemStatus = typeof FulfillmentReturnItemStatus[keyof typeof FulfillmentReturnItemStatus];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n// May contain unused imports in some cases\n// @ts-ignore\nimport type { FulfillmentShipmentItem } from './fulfillment-shipment-item.js';\n// May contain unused imports in some cases\n// @ts-ignore\nimport type { FulfillmentShipmentPackage } from './fulfillment-shipment-package.js';\n\n/**\n * Delivery and item information for a shipment in a fulfillment order.\n */\nexport interface FulfillmentShipment {\n /**\n * A shipment identifier assigned by Amazon.\n */\n 'amazonShipmentId': string;\n /**\n * An identifier for the fulfillment center from which the shipment is sent.\n */\n 'fulfillmentCenterId': string;\n /**\n * The current status of the shipment.\n */\n 'fulfillmentShipmentStatus': FulfillmentShipmentFulfillmentShipmentStatusEnum;\n /**\n * Date timestamp\n */\n 'shippingDate'?: string;\n /**\n * Date timestamp\n */\n 'estimatedArrivalDate'?: string;\n /**\n * Provides additional insight into shipment timeline. Primarily used to communicate that actual delivery dates aren\\'t available.\n */\n 'shippingNotes'?: Array<string>;\n /**\n * An array of fulfillment shipment item information.\n */\n 'fulfillmentShipmentItem': Array<FulfillmentShipmentItem>;\n /**\n * An array of fulfillment shipment package information.\n */\n 'fulfillmentShipmentPackage'?: Array<FulfillmentShipmentPackage>;\n}\n\nexport const FulfillmentShipmentFulfillmentShipmentStatusEnum = {\n Pending: 'PENDING',\n Shipped: 'SHIPPED',\n CancelledByFulfiller: 'CANCELLED_BY_FULFILLER',\n CancelledBySeller: 'CANCELLED_BY_SELLER',\n} as const;\n\nexport type FulfillmentShipmentFulfillmentShipmentStatusEnum = typeof FulfillmentShipmentFulfillmentShipmentStatusEnum[keyof typeof FulfillmentShipmentFulfillmentShipmentStatusEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * A code for why the item is invalid for return.\n */\n\nexport const InvalidItemReasonCode = {\n InvalidValues: 'InvalidValues',\n DuplicateRequest: 'DuplicateRequest',\n NoCompletedShipItems: 'NoCompletedShipItems',\n NoReturnableQuantity: 'NoReturnableQuantity',\n} as const;\n\nexport type InvalidItemReasonCode = typeof InvalidItemReasonCode[keyof typeof InvalidItemReasonCode];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The condition of the return item when received by an Amazon fulfillment center.\n */\n\nexport const ReturnItemDisposition = {\n Sellable: 'Sellable',\n Defective: 'Defective',\n CustomerDamaged: 'CustomerDamaged',\n CarrierDamaged: 'CarrierDamaged',\n FulfillerDamaged: 'FulfillerDamaged',\n} as const;\n\nexport type ReturnItemDisposition = typeof ReturnItemDisposition[keyof typeof ReturnItemDisposition];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The shipping method used for the fulfillment order. When this value is `ScheduledDelivery`, choose `Ship` for the `fulfillmentAction`. `Hold` is not a valid `fulfillmentAction` value when the `shippingSpeedCategory` value is `ScheduledDelivery`. Note: Shipping method service level agreements vary by marketplace. Sellers should refer to the [Seller Central](https://developer-docs.amazon.com/sp-api/docs/seller-central-urls) website in their marketplace for shipping method service level agreements and fulfillment fees.\n */\n\nexport const ShippingSpeedCategory = {\n Standard: 'Standard',\n Expedited: 'Expedited',\n Priority: 'Priority',\n ScheduledDelivery: 'ScheduledDelivery',\n} as const;\n\nexport type ShippingSpeedCategory = typeof ShippingSpeedCategory[keyof typeof ShippingSpeedCategory];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The weight.\n */\nexport interface Weight {\n /**\n * The unit of weight.\n */\n 'unit': WeightUnitEnum;\n /**\n * The weight value.\n */\n 'value': string;\n}\n\nexport const WeightUnitEnum = {\n Kg: 'KG',\n Kilograms: 'KILOGRAMS',\n Lb: 'LB',\n Pounds: 'POUNDS',\n} as const;\n\nexport type WeightUnitEnum = typeof WeightUnitEnum[keyof typeof WeightUnitEnum];\n\n\n"],"mappings":"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","names":["globalAxios","globalAxios","BASE_PATH","globalAxios"]}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../src/api-model/base.ts","../src/api-model/common.ts","../src/api-model/api/fulfillment-outbound-api.ts","../src/api-model/configuration.ts","../src/api-model/models/additional-location-info.ts","../src/api-model/models/amount.ts","../src/api-model/models/current-status.ts","../src/api-model/models/drop-off-location.ts","../src/api-model/models/event-code.ts","../src/api-model/models/feature-settings.ts","../src/api-model/models/fee.ts","../src/api-model/models/fulfillment-action.ts","../src/api-model/models/fulfillment-order-status.ts","../src/api-model/models/fulfillment-policy.ts","../src/api-model/models/fulfillment-preview-item.ts","../src/api-model/models/fulfillment-return-item-status.ts","../src/api-model/models/fulfillment-shipment.ts","../src/api-model/models/invalid-item-reason-code.ts","../src/api-model/models/return-item-disposition.ts","../src/api-model/models/shipping-speed-category.ts","../src/api-model/models/weight.ts","../src/client.ts"],"sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from './configuration.js';\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';\nimport globalAxios from 'axios';\n\nexport const BASE_PATH = \"https://sellingpartnerapi-na.amazon.com\".replace(/\\/+$/, \"\");\n\nexport const COLLECTION_FORMATS = {\n csv: \",\",\n ssv: \" \",\n tsv: \"\\t\",\n pipes: \"|\",\n};\n\nexport interface RequestArgs {\n url: string;\n options: RawAxiosRequestConfig;\n}\n\nexport class BaseAPI {\n protected configuration: Configuration | undefined;\n\n constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected axios: AxiosInstance = globalAxios) {\n if (configuration) {\n this.configuration = configuration;\n this.basePath = configuration.basePath ?? basePath;\n }\n }\n};\n\nexport class RequiredError extends Error {\n constructor(public field: string, msg?: string) {\n super(msg);\n this.name = \"RequiredError\"\n }\n}\n\ninterface ServerMap {\n [key: string]: {\n url: string,\n description: string,\n }[];\n}\n\nexport const operationServerMap: ServerMap = {\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nimport type { Configuration } from \"./configuration.js\";\nimport type { RequestArgs } from \"./base.js\";\nimport type { AxiosInstance, AxiosResponse } from 'axios';\nimport { RequiredError } from \"./base.js\";\n\nexport const DUMMY_BASE_URL = 'https://example.com'\n\n/**\n *\n * @throws {RequiredError}\n */\nexport const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) {\n if (paramValue === null || paramValue === undefined) {\n throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);\n }\n}\n\nexport const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(keyParamName)\n : await configuration.apiKey;\n object[keyParamName] = localVarApiKeyValue;\n }\n}\n\nexport const setBasicAuthToObject = function (object: any, configuration?: Configuration) {\n if (configuration && (configuration.username || configuration.password)) {\n object[\"auth\"] = { username: configuration.username, password: configuration.password };\n }\n}\n\nexport const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const accessToken = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken()\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + accessToken;\n }\n}\n\nexport const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const localVarAccessTokenValue = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken(name, scopes)\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + localVarAccessTokenValue;\n }\n}\n\n\nfunction setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = \"\"): void {\n if (parameter == null) return;\n if (typeof parameter === \"object\") {\n if (Array.isArray(parameter) || parameter instanceof Set) {\n (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));\n }\n else {\n Object.keys(parameter).forEach(currentKey =>\n setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)\n );\n }\n }\n else {\n if (urlSearchParams.has(key)) {\n urlSearchParams.append(key, parameter);\n }\n else {\n urlSearchParams.set(key, parameter);\n }\n }\n}\n\nexport const setSearchParams = function (url: URL, ...objects: any[]) {\n const searchParams = new URLSearchParams(url.search);\n setFlattenedQueryParams(searchParams, objects);\n url.search = searchParams.toString();\n}\n\n/**\n * JSON serialization helper function which replaces instances of unserializable types with serializable ones.\n * This function will run for every key-value pair encountered by JSON.stringify while traversing an object.\n * Converting a set to a string will return an empty object, so an intermediate conversion to an array is required.\n */\n// @ts-ignore\nexport const replaceWithSerializableTypeIfNeeded = function(key: string, value: any) {\n if (value instanceof Set) {\n return Array.from(value);\n } else {\n return value;\n }\n}\n\nexport const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {\n const nonString = typeof value !== 'string';\n const needsSerialization = nonString && configuration && configuration.isJsonMime\n ? configuration.isJsonMime(requestOptions.headers['Content-Type'])\n : nonString;\n return needsSerialization\n ? JSON.stringify(value !== undefined ? value : {}, replaceWithSerializableTypeIfNeeded)\n : (value || \"\");\n}\n\nexport const toPathString = function (url: URL) {\n return url.pathname + url.search + url.hash\n}\n\nexport const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {\n return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...axiosArgs.options, url: (axios.defaults.baseURL ? '' : configuration?.basePath ?? basePath) + axiosArgs.url};\n return axios.request<T, R>(axiosRequestArgs);\n };\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from '../configuration.js';\nimport type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';\nimport globalAxios from 'axios';\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, replaceWithSerializableTypeIfNeeded } from '../common.js';\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base.js';\n// @ts-ignore\nimport type { CancelFulfillmentOrderResponse } from '../models/index.js';\n// @ts-ignore\nimport type { CreateFulfillmentOrderRequest } from '../models/index.js';\n// @ts-ignore\nimport type { CreateFulfillmentOrderResponse } from '../models/index.js';\n// @ts-ignore\nimport type { CreateFulfillmentReturnRequest } from '../models/index.js';\n// @ts-ignore\nimport type { CreateFulfillmentReturnResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetDeliveryOffersRequest } from '../models/index.js';\n// @ts-ignore\nimport type { GetDeliveryOffersResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetFeatureInventoryResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetFeatureSkuResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetFeaturesResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetFulfillmentOrderResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetFulfillmentPreviewRequest } from '../models/index.js';\n// @ts-ignore\nimport type { GetFulfillmentPreviewResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetPackageTrackingDetailsResponse } from '../models/index.js';\n// @ts-ignore\nimport type { ListAllFulfillmentOrdersResponse } from '../models/index.js';\n// @ts-ignore\nimport type { ListReturnReasonCodesResponse } from '../models/index.js';\n// @ts-ignore\nimport type { SubmitFulfillmentOrderStatusUpdateRequest } from '../models/index.js';\n// @ts-ignore\nimport type { SubmitFulfillmentOrderStatusUpdateResponse } from '../models/index.js';\n// @ts-ignore\nimport type { UpdateFulfillmentOrderRequest } from '../models/index.js';\n// @ts-ignore\nimport type { UpdateFulfillmentOrderResponse } from '../models/index.js';\n/**\n * FulfillmentOutboundApi - axios parameter creator\n */\nexport const FulfillmentOutboundApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Requests that Amazon stop attempting to fulfill the fulfillment order indicated by the specified order identifier. **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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n cancelFulfillmentOrder: async (sellerFulfillmentOrderId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerFulfillmentOrderId' is not null or undefined\n assertParamExists('cancelFulfillmentOrder', 'sellerFulfillmentOrderId', sellerFulfillmentOrderId)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/{sellerFulfillmentOrderId}/cancel`\n .replace('{sellerFulfillmentOrderId}', encodeURIComponent(String(sellerFulfillmentOrderId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Accept'] = 'application/json';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Requests that Amazon ship items from the seller\\'s inventory in Amazon\\'s fulfillment network to a destination address. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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)\n * @param {CreateFulfillmentOrderRequest} body CreateFulfillmentOrderRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n createFulfillmentOrder: async (body: CreateFulfillmentOrderRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'body' is not null or undefined\n assertParamExists('createFulfillmentOrder', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @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.\n * @param {CreateFulfillmentReturnRequest} body The request body of the &#x60;createFulfillmentReturn&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n createFulfillmentReturn: async (sellerFulfillmentOrderId: string, body: CreateFulfillmentReturnRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerFulfillmentOrderId' is not null or undefined\n assertParamExists('createFulfillmentReturn', 'sellerFulfillmentOrderId', sellerFulfillmentOrderId)\n // verify required parameter 'body' is not null or undefined\n assertParamExists('createFulfillmentReturn', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/{sellerFulfillmentOrderId}/return`\n .replace('{sellerFulfillmentOrderId}', encodeURIComponent(String(sellerFulfillmentOrderId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @param {GetDeliveryOffersRequest} body GetDeliveryOffersRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n deliveryOffers: async (body: GetDeliveryOffersRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'body' is not null or undefined\n assertParamExists('deliveryOffers', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/deliveryOffers`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @param {string} marketplaceId The marketplace for which to return a list of the inventory that is eligible for the specified feature.\n * @param {string} featureName The name of the feature for which to return a list of eligible inventory.\n * @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.\n * @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;\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatureInventory: async (marketplaceId: string, featureName: string, nextToken?: string, queryStartDate?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'marketplaceId' is not null or undefined\n assertParamExists('getFeatureInventory', 'marketplaceId', marketplaceId)\n // verify required parameter 'featureName' is not null or undefined\n assertParamExists('getFeatureInventory', 'featureName', featureName)\n const localVarPath = `/fba/outbound/2020-07-01/features/inventory/{featureName}`\n .replace('{featureName}', encodeURIComponent(String(featureName)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (marketplaceId !== undefined) {\n localVarQueryParameter['marketplaceId'] = marketplaceId;\n }\n\n if (nextToken !== undefined) {\n localVarQueryParameter['nextToken'] = nextToken;\n }\n\n if (queryStartDate !== undefined) {\n localVarQueryParameter['queryStartDate'] = (queryStartDate as any instanceof Date) ?\n (queryStartDate as any).toISOString() :\n queryStartDate;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @param {string} marketplaceId The marketplace for which to return the count.\n * @param {string} featureName The name of the feature.\n * @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.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatureSKU: async (marketplaceId: string, featureName: string, sellerSku: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'marketplaceId' is not null or undefined\n assertParamExists('getFeatureSKU', 'marketplaceId', marketplaceId)\n // verify required parameter 'featureName' is not null or undefined\n assertParamExists('getFeatureSKU', 'featureName', featureName)\n // verify required parameter 'sellerSku' is not null or undefined\n assertParamExists('getFeatureSKU', 'sellerSku', sellerSku)\n const localVarPath = `/fba/outbound/2020-07-01/features/inventory/{featureName}/{sellerSku}`\n .replace('{featureName}', encodeURIComponent(String(featureName)))\n .replace('{sellerSku}', encodeURIComponent(String(sellerSku)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (marketplaceId !== undefined) {\n localVarQueryParameter['marketplaceId'] = marketplaceId;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns a list of features available for Multi-Channel Fulfillment orders in the marketplace you specify, and whether the seller for which you made the call is enrolled for each feature. **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).\n * @param {string} marketplaceId The marketplace for which to return the list of features.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatures: async (marketplaceId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'marketplaceId' is not null or undefined\n assertParamExists('getFeatures', 'marketplaceId', marketplaceId)\n const localVarPath = `/fba/outbound/2020-07-01/features`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (marketplaceId !== undefined) {\n localVarQueryParameter['marketplaceId'] = marketplaceId;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the fulfillment order indicated by the specified order identifier. **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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFulfillmentOrder: async (sellerFulfillmentOrderId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerFulfillmentOrderId' is not null or undefined\n assertParamExists('getFulfillmentOrder', 'sellerFulfillmentOrderId', sellerFulfillmentOrderId)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/{sellerFulfillmentOrderId}`\n .replace('{sellerFulfillmentOrderId}', encodeURIComponent(String(sellerFulfillmentOrderId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns a list of fulfillment order previews based on shipping criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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).\n * @param {GetFulfillmentPreviewRequest} body GetFulfillmentPreviewRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFulfillmentPreview: async (body: GetFulfillmentPreviewRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'body' is not null or undefined\n assertParamExists('getFulfillmentPreview', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/preview`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @param {number} packageNumber The unencrypted package identifier. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getPackageTrackingDetails: async (packageNumber: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'packageNumber' is not null or undefined\n assertParamExists('getPackageTrackingDetails', 'packageNumber', packageNumber)\n const localVarPath = `/fba/outbound/2020-07-01/tracking`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (packageNumber !== undefined) {\n localVarQueryParameter['packageNumber'] = packageNumber;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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)\n * @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.\n * @param {string} [nextToken] A string token returned in the response to your previous request.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n listAllFulfillmentOrders: async (queryStartDate?: string, nextToken?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (queryStartDate !== undefined) {\n localVarQueryParameter['queryStartDate'] = (queryStartDate as any instanceof Date) ?\n (queryStartDate as any).toISOString() :\n queryStartDate;\n }\n\n if (nextToken !== undefined) {\n localVarQueryParameter['nextToken'] = nextToken;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns a list of return reason codes for a seller SKU in a given marketplace. 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).\n * @param {string} sellerSku The seller SKU for which return reason codes are required.\n * @param {string} [marketplaceId] The marketplace for which the seller wants return reason codes.\n * @param {string} [sellerFulfillmentOrderId] The identifier assigned to the item by the seller when the fulfillment order was created. The service uses this value to determine the marketplace for which the seller wants return reason codes.\n * @param {string} [language] The language that the &#x60;TranslatedDescription&#x60; property of the &#x60;ReasonCodeDetails&#x60; response object should be translated into.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n listReturnReasonCodes: async (sellerSku: string, marketplaceId?: string, sellerFulfillmentOrderId?: string, language?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerSku' is not null or undefined\n assertParamExists('listReturnReasonCodes', 'sellerSku', sellerSku)\n const localVarPath = `/fba/outbound/2020-07-01/returnReasonCodes`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (sellerSku !== undefined) {\n localVarQueryParameter['sellerSku'] = sellerSku;\n }\n\n if (marketplaceId !== undefined) {\n localVarQueryParameter['marketplaceId'] = marketplaceId;\n }\n\n if (sellerFulfillmentOrderId !== undefined) {\n localVarQueryParameter['sellerFulfillmentOrderId'] = sellerFulfillmentOrderId;\n }\n\n if (language !== undefined) {\n localVarQueryParameter['language'] = language;\n }\n\n localVarHeaderParameter['Accept'] = 'application/json,payload';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Requests that Amazon update the status of an order in the sandbox testing environment. This is a sandbox-only operation and must be directed to a sandbox endpoint. Refer to [Fulfillment Outbound Dynamic Sandbox Guide](https://developer-docs.amazon.com/sp-api/docs/fulfillment-outbound-dynamic-sandbox-guide) and [Selling Partner API sandbox](https://developer-docs.amazon.com/sp-api/docs/the-selling-partner-api-sandbox) for more information.\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {SubmitFulfillmentOrderStatusUpdateRequest} body The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n submitFulfillmentOrderStatusUpdate: async (sellerFulfillmentOrderId: string, body: SubmitFulfillmentOrderStatusUpdateRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerFulfillmentOrderId' is not null or undefined\n assertParamExists('submitFulfillmentOrderStatusUpdate', 'sellerFulfillmentOrderId', sellerFulfillmentOrderId)\n // verify required parameter 'body' is not null or undefined\n assertParamExists('submitFulfillmentOrderStatusUpdate', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/{sellerFulfillmentOrderId}/status`\n .replace('{sellerFulfillmentOrderId}', encodeURIComponent(String(sellerFulfillmentOrderId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * 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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {UpdateFulfillmentOrderRequest} body The request body of the &#x60;updateFulfillmentOrder&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n updateFulfillmentOrder: async (sellerFulfillmentOrderId: string, body: UpdateFulfillmentOrderRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sellerFulfillmentOrderId' is not null or undefined\n assertParamExists('updateFulfillmentOrder', 'sellerFulfillmentOrderId', sellerFulfillmentOrderId)\n // verify required parameter 'body' is not null or undefined\n assertParamExists('updateFulfillmentOrder', 'body', body)\n const localVarPath = `/fba/outbound/2020-07-01/fulfillmentOrders/{sellerFulfillmentOrderId}`\n .replace('{sellerFulfillmentOrderId}', encodeURIComponent(String(sellerFulfillmentOrderId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n localVarHeaderParameter['Content-Type'] = 'application/json';\n localVarHeaderParameter['Accept'] = 'application/json';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * FulfillmentOutboundApi - functional programming interface\n */\nexport const FulfillmentOutboundApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = FulfillmentOutboundApiAxiosParamCreator(configuration)\n return {\n /**\n * Requests that Amazon stop attempting to fulfill the fulfillment order indicated by the specified order identifier. **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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async cancelFulfillmentOrder(sellerFulfillmentOrderId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CancelFulfillmentOrderResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.cancelFulfillmentOrder(sellerFulfillmentOrderId, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.cancelFulfillmentOrder']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Requests that Amazon ship items from the seller\\'s inventory in Amazon\\'s fulfillment network to a destination address. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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)\n * @param {CreateFulfillmentOrderRequest} body CreateFulfillmentOrderRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async createFulfillmentOrder(body: CreateFulfillmentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateFulfillmentOrderResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.createFulfillmentOrder(body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.createFulfillmentOrder']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @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.\n * @param {CreateFulfillmentReturnRequest} body The request body of the &#x60;createFulfillmentReturn&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async createFulfillmentReturn(sellerFulfillmentOrderId: string, body: CreateFulfillmentReturnRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateFulfillmentReturnResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.createFulfillmentReturn(sellerFulfillmentOrderId, body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.createFulfillmentReturn']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @param {GetDeliveryOffersRequest} body GetDeliveryOffersRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async deliveryOffers(body: GetDeliveryOffersRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDeliveryOffersResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.deliveryOffers(body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.deliveryOffers']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @param {string} marketplaceId The marketplace for which to return a list of the inventory that is eligible for the specified feature.\n * @param {string} featureName The name of the feature for which to return a list of eligible inventory.\n * @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.\n * @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;\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getFeatureInventory(marketplaceId: string, featureName: string, nextToken?: string, queryStartDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFeatureInventoryResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getFeatureInventory(marketplaceId, featureName, nextToken, queryStartDate, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getFeatureInventory']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @param {string} marketplaceId The marketplace for which to return the count.\n * @param {string} featureName The name of the feature.\n * @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.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getFeatureSKU(marketplaceId: string, featureName: string, sellerSku: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFeatureSkuResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getFeatureSKU(marketplaceId, featureName, sellerSku, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getFeatureSKU']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Returns a list of features available for Multi-Channel Fulfillment orders in the marketplace you specify, and whether the seller for which you made the call is enrolled for each feature. **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).\n * @param {string} marketplaceId The marketplace for which to return the list of features.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getFeatures(marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFeaturesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getFeatures(marketplaceId, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getFeatures']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Returns the fulfillment order indicated by the specified order identifier. **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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getFulfillmentOrder(sellerFulfillmentOrderId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFulfillmentOrderResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getFulfillmentOrder(sellerFulfillmentOrderId, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getFulfillmentOrder']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Returns a list of fulfillment order previews based on shipping criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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).\n * @param {GetFulfillmentPreviewRequest} body GetFulfillmentPreviewRequest parameter\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getFulfillmentPreview(body: GetFulfillmentPreviewRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFulfillmentPreviewResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getFulfillmentPreview(body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getFulfillmentPreview']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @param {number} packageNumber The unencrypted package identifier. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async getPackageTrackingDetails(packageNumber: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPackageTrackingDetailsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getPackageTrackingDetails(packageNumber, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.getPackageTrackingDetails']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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)\n * @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.\n * @param {string} [nextToken] A string token returned in the response to your previous request.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async listAllFulfillmentOrders(queryStartDate?: string, nextToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAllFulfillmentOrdersResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.listAllFulfillmentOrders(queryStartDate, nextToken, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.listAllFulfillmentOrders']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Returns a list of return reason codes for a seller SKU in a given marketplace. 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).\n * @param {string} sellerSku The seller SKU for which return reason codes are required.\n * @param {string} [marketplaceId] The marketplace for which the seller wants return reason codes.\n * @param {string} [sellerFulfillmentOrderId] The identifier assigned to the item by the seller when the fulfillment order was created. The service uses this value to determine the marketplace for which the seller wants return reason codes.\n * @param {string} [language] The language that the &#x60;TranslatedDescription&#x60; property of the &#x60;ReasonCodeDetails&#x60; response object should be translated into.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async listReturnReasonCodes(sellerSku: string, marketplaceId?: string, sellerFulfillmentOrderId?: string, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListReturnReasonCodesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.listReturnReasonCodes(sellerSku, marketplaceId, sellerFulfillmentOrderId, language, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.listReturnReasonCodes']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Requests that Amazon update the status of an order in the sandbox testing environment. This is a sandbox-only operation and must be directed to a sandbox endpoint. Refer to [Fulfillment Outbound Dynamic Sandbox Guide](https://developer-docs.amazon.com/sp-api/docs/fulfillment-outbound-dynamic-sandbox-guide) and [Selling Partner API sandbox](https://developer-docs.amazon.com/sp-api/docs/the-selling-partner-api-sandbox) for more information.\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {SubmitFulfillmentOrderStatusUpdateRequest} body The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async submitFulfillmentOrderStatusUpdate(sellerFulfillmentOrderId: string, body: SubmitFulfillmentOrderStatusUpdateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubmitFulfillmentOrderStatusUpdateResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.submitFulfillmentOrderStatusUpdate(sellerFulfillmentOrderId, body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.submitFulfillmentOrderStatusUpdate']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * 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).\n * @param {string} sellerFulfillmentOrderId The identifier assigned to the item by the seller when the fulfillment order was created.\n * @param {UpdateFulfillmentOrderRequest} body The request body of the &#x60;updateFulfillmentOrder&#x60; operation.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async updateFulfillmentOrder(sellerFulfillmentOrderId: string, body: UpdateFulfillmentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateFulfillmentOrderResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.updateFulfillmentOrder(sellerFulfillmentOrderId, body, options);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['FulfillmentOutboundApi.updateFulfillmentOrder']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n }\n};\n\n/**\n * FulfillmentOutboundApi - factory interface\n */\nexport const FulfillmentOutboundApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = FulfillmentOutboundApiFp(configuration)\n return {\n /**\n * Requests that Amazon stop attempting to fulfill the fulfillment order indicated by the specified order identifier. **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).\n * @param {FulfillmentOutboundApiCancelFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n cancelFulfillmentOrder(requestParameters: FulfillmentOutboundApiCancelFulfillmentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<CancelFulfillmentOrderResponse> {\n return localVarFp.cancelFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, options).then((request) => request(axios, basePath));\n },\n /**\n * Requests that Amazon ship items from the seller\\'s inventory in Amazon\\'s fulfillment network to a destination address. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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)\n * @param {FulfillmentOutboundApiCreateFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n createFulfillmentOrder(requestParameters: FulfillmentOutboundApiCreateFulfillmentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateFulfillmentOrderResponse> {\n return localVarFp.createFulfillmentOrder(requestParameters.body, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiCreateFulfillmentReturnRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n createFulfillmentReturn(requestParameters: FulfillmentOutboundApiCreateFulfillmentReturnRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateFulfillmentReturnResponse> {\n return localVarFp.createFulfillmentReturn(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiDeliveryOffersRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n deliveryOffers(requestParameters: FulfillmentOutboundApiDeliveryOffersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDeliveryOffersResponse> {\n return localVarFp.deliveryOffers(requestParameters.body, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetFeatureInventoryRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatureInventory(requestParameters: FulfillmentOutboundApiGetFeatureInventoryRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFeatureInventoryResponse> {\n return localVarFp.getFeatureInventory(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.nextToken, requestParameters.queryStartDate, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetFeatureSKURequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatureSKU(requestParameters: FulfillmentOutboundApiGetFeatureSKURequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFeatureSkuResponse> {\n return localVarFp.getFeatureSKU(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.sellerSku, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns a list of features available for Multi-Channel Fulfillment orders in the marketplace you specify, and whether the seller for which you made the call is enrolled for each feature. **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).\n * @param {FulfillmentOutboundApiGetFeaturesRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFeatures(requestParameters: FulfillmentOutboundApiGetFeaturesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFeaturesResponse> {\n return localVarFp.getFeatures(requestParameters.marketplaceId, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the fulfillment order indicated by the specified order identifier. **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).\n * @param {FulfillmentOutboundApiGetFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFulfillmentOrder(requestParameters: FulfillmentOutboundApiGetFulfillmentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFulfillmentOrderResponse> {\n return localVarFp.getFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns a list of fulfillment order previews based on shipping criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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).\n * @param {FulfillmentOutboundApiGetFulfillmentPreviewRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getFulfillmentPreview(requestParameters: FulfillmentOutboundApiGetFulfillmentPreviewRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFulfillmentPreviewResponse> {\n return localVarFp.getFulfillmentPreview(requestParameters.body, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetPackageTrackingDetailsRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n getPackageTrackingDetails(requestParameters: FulfillmentOutboundApiGetPackageTrackingDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPackageTrackingDetailsResponse> {\n return localVarFp.getPackageTrackingDetails(requestParameters.packageNumber, options).then((request) => request(axios, basePath));\n },\n /**\n * 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)\n * @param {FulfillmentOutboundApiListAllFulfillmentOrdersRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n listAllFulfillmentOrders(requestParameters: FulfillmentOutboundApiListAllFulfillmentOrdersRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<ListAllFulfillmentOrdersResponse> {\n return localVarFp.listAllFulfillmentOrders(requestParameters.queryStartDate, requestParameters.nextToken, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns a list of return reason codes for a seller SKU in a given marketplace. 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).\n * @param {FulfillmentOutboundApiListReturnReasonCodesRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n listReturnReasonCodes(requestParameters: FulfillmentOutboundApiListReturnReasonCodesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListReturnReasonCodesResponse> {\n return localVarFp.listReturnReasonCodes(requestParameters.sellerSku, requestParameters.marketplaceId, requestParameters.sellerFulfillmentOrderId, requestParameters.language, options).then((request) => request(axios, basePath));\n },\n /**\n * Requests that Amazon update the status of an order in the sandbox testing environment. This is a sandbox-only operation and must be directed to a sandbox endpoint. Refer to [Fulfillment Outbound Dynamic Sandbox Guide](https://developer-docs.amazon.com/sp-api/docs/fulfillment-outbound-dynamic-sandbox-guide) and [Selling Partner API sandbox](https://developer-docs.amazon.com/sp-api/docs/the-selling-partner-api-sandbox) for more information.\n * @param {FulfillmentOutboundApiSubmitFulfillmentOrderStatusUpdateRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n submitFulfillmentOrderStatusUpdate(requestParameters: FulfillmentOutboundApiSubmitFulfillmentOrderStatusUpdateRequest, options?: RawAxiosRequestConfig): AxiosPromise<SubmitFulfillmentOrderStatusUpdateResponse> {\n return localVarFp.submitFulfillmentOrderStatusUpdate(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(axios, basePath));\n },\n /**\n * 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).\n * @param {FulfillmentOutboundApiUpdateFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n updateFulfillmentOrder(requestParameters: FulfillmentOutboundApiUpdateFulfillmentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateFulfillmentOrderResponse> {\n return localVarFp.updateFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * Request parameters for cancelFulfillmentOrder operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiCancelFulfillmentOrderRequest {\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created.\n */\n readonly sellerFulfillmentOrderId: string\n}\n\n/**\n * Request parameters for createFulfillmentOrder operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiCreateFulfillmentOrderRequest {\n /**\n * CreateFulfillmentOrderRequest parameter\n */\n readonly body: CreateFulfillmentOrderRequest\n}\n\n/**\n * Request parameters for createFulfillmentReturn operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiCreateFulfillmentReturnRequest {\n /**\n * 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.\n */\n readonly sellerFulfillmentOrderId: string\n\n /**\n * The request body of the &#x60;createFulfillmentReturn&#x60; operation.\n */\n readonly body: CreateFulfillmentReturnRequest\n}\n\n/**\n * Request parameters for deliveryOffers operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiDeliveryOffersRequest {\n /**\n * GetDeliveryOffersRequest parameter\n */\n readonly body: GetDeliveryOffersRequest\n}\n\n/**\n * Request parameters for getFeatureInventory operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetFeatureInventoryRequest {\n /**\n * The marketplace for which to return a list of the inventory that is eligible for the specified feature.\n */\n readonly marketplaceId: string\n\n /**\n * The name of the feature for which to return a list of eligible inventory.\n */\n readonly featureName: string\n\n /**\n * 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.\n */\n readonly nextToken?: string\n\n /**\n * 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;\n */\n readonly queryStartDate?: string\n}\n\n/**\n * Request parameters for getFeatureSKU operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetFeatureSKURequest {\n /**\n * The marketplace for which to return the count.\n */\n readonly marketplaceId: string\n\n /**\n * The name of the feature.\n */\n readonly featureName: string\n\n /**\n * 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.\n */\n readonly sellerSku: string\n}\n\n/**\n * Request parameters for getFeatures operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetFeaturesRequest {\n /**\n * The marketplace for which to return the list of features.\n */\n readonly marketplaceId: string\n}\n\n/**\n * Request parameters for getFulfillmentOrder operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetFulfillmentOrderRequest {\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created.\n */\n readonly sellerFulfillmentOrderId: string\n}\n\n/**\n * Request parameters for getFulfillmentPreview operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetFulfillmentPreviewRequest {\n /**\n * GetFulfillmentPreviewRequest parameter\n */\n readonly body: GetFulfillmentPreviewRequest\n}\n\n/**\n * Request parameters for getPackageTrackingDetails operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiGetPackageTrackingDetailsRequest {\n /**\n * The unencrypted package identifier. You can obtain this value from the &#x60;getFulfillmentOrder&#x60; operation.\n */\n readonly packageNumber: number\n}\n\n/**\n * Request parameters for listAllFulfillmentOrders operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiListAllFulfillmentOrdersRequest {\n /**\n * 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.\n */\n readonly queryStartDate?: string\n\n /**\n * A string token returned in the response to your previous request.\n */\n readonly nextToken?: string\n}\n\n/**\n * Request parameters for listReturnReasonCodes operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiListReturnReasonCodesRequest {\n /**\n * The seller SKU for which return reason codes are required.\n */\n readonly sellerSku: string\n\n /**\n * The marketplace for which the seller wants return reason codes.\n */\n readonly marketplaceId?: string\n\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created. The service uses this value to determine the marketplace for which the seller wants return reason codes.\n */\n readonly sellerFulfillmentOrderId?: string\n\n /**\n * The language that the &#x60;TranslatedDescription&#x60; property of the &#x60;ReasonCodeDetails&#x60; response object should be translated into.\n */\n readonly language?: string\n}\n\n/**\n * Request parameters for submitFulfillmentOrderStatusUpdate operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiSubmitFulfillmentOrderStatusUpdateRequest {\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created.\n */\n readonly sellerFulfillmentOrderId: string\n\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created.\n */\n readonly body: SubmitFulfillmentOrderStatusUpdateRequest\n}\n\n/**\n * Request parameters for updateFulfillmentOrder operation in FulfillmentOutboundApi.\n */\nexport interface FulfillmentOutboundApiUpdateFulfillmentOrderRequest {\n /**\n * The identifier assigned to the item by the seller when the fulfillment order was created.\n */\n readonly sellerFulfillmentOrderId: string\n\n /**\n * The request body of the &#x60;updateFulfillmentOrder&#x60; operation.\n */\n readonly body: UpdateFulfillmentOrderRequest\n}\n\n/**\n * FulfillmentOutboundApi - object-oriented interface\n */\nexport class FulfillmentOutboundApi extends BaseAPI {\n /**\n * Requests that Amazon stop attempting to fulfill the fulfillment order indicated by the specified order identifier. **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).\n * @param {FulfillmentOutboundApiCancelFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public cancelFulfillmentOrder(requestParameters: FulfillmentOutboundApiCancelFulfillmentOrderRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).cancelFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Requests that Amazon ship items from the seller\\'s inventory in Amazon\\'s fulfillment network to a destination address. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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)\n * @param {FulfillmentOutboundApiCreateFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public createFulfillmentOrder(requestParameters: FulfillmentOutboundApiCreateFulfillmentOrderRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).createFulfillmentOrder(requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiCreateFulfillmentReturnRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public createFulfillmentReturn(requestParameters: FulfillmentOutboundApiCreateFulfillmentReturnRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).createFulfillmentReturn(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiDeliveryOffersRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public deliveryOffers(requestParameters: FulfillmentOutboundApiDeliveryOffersRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).deliveryOffers(requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetFeatureInventoryRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getFeatureInventory(requestParameters: FulfillmentOutboundApiGetFeatureInventoryRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getFeatureInventory(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.nextToken, requestParameters.queryStartDate, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetFeatureSKURequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getFeatureSKU(requestParameters: FulfillmentOutboundApiGetFeatureSKURequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getFeatureSKU(requestParameters.marketplaceId, requestParameters.featureName, requestParameters.sellerSku, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns a list of features available for Multi-Channel Fulfillment orders in the marketplace you specify, and whether the seller for which you made the call is enrolled for each feature. **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).\n * @param {FulfillmentOutboundApiGetFeaturesRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getFeatures(requestParameters: FulfillmentOutboundApiGetFeaturesRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getFeatures(requestParameters.marketplaceId, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the fulfillment order indicated by the specified order identifier. **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).\n * @param {FulfillmentOutboundApiGetFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getFulfillmentOrder(requestParameters: FulfillmentOutboundApiGetFulfillmentOrderRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns a list of fulfillment order previews based on shipping criteria that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may 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).\n * @param {FulfillmentOutboundApiGetFulfillmentPreviewRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getFulfillmentPreview(requestParameters: FulfillmentOutboundApiGetFulfillmentPreviewRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getFulfillmentPreview(requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiGetPackageTrackingDetailsRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public getPackageTrackingDetails(requestParameters: FulfillmentOutboundApiGetPackageTrackingDetailsRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).getPackageTrackingDetails(requestParameters.packageNumber, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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)\n * @param {FulfillmentOutboundApiListAllFulfillmentOrdersRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public listAllFulfillmentOrders(requestParameters: FulfillmentOutboundApiListAllFulfillmentOrdersRequest = {}, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).listAllFulfillmentOrders(requestParameters.queryStartDate, requestParameters.nextToken, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns a list of return reason codes for a seller SKU in a given marketplace. 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).\n * @param {FulfillmentOutboundApiListReturnReasonCodesRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public listReturnReasonCodes(requestParameters: FulfillmentOutboundApiListReturnReasonCodesRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).listReturnReasonCodes(requestParameters.sellerSku, requestParameters.marketplaceId, requestParameters.sellerFulfillmentOrderId, requestParameters.language, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Requests that Amazon update the status of an order in the sandbox testing environment. This is a sandbox-only operation and must be directed to a sandbox endpoint. Refer to [Fulfillment Outbound Dynamic Sandbox Guide](https://developer-docs.amazon.com/sp-api/docs/fulfillment-outbound-dynamic-sandbox-guide) and [Selling Partner API sandbox](https://developer-docs.amazon.com/sp-api/docs/the-selling-partner-api-sandbox) for more information.\n * @param {FulfillmentOutboundApiSubmitFulfillmentOrderStatusUpdateRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public submitFulfillmentOrderStatusUpdate(requestParameters: FulfillmentOutboundApiSubmitFulfillmentOrderStatusUpdateRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).submitFulfillmentOrderStatusUpdate(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * 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).\n * @param {FulfillmentOutboundApiUpdateFulfillmentOrderRequest} requestParameters Request parameters.\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n public updateFulfillmentOrder(requestParameters: FulfillmentOutboundApiUpdateFulfillmentOrderRequest, options?: RawAxiosRequestConfig) {\n return FulfillmentOutboundApiFp(this.configuration).updateFulfillmentOrder(requestParameters.sellerFulfillmentOrderId, requestParameters.body, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n","/* tslint:disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\ninterface AWSv4Configuration {\n options?: {\n region?: string\n service?: string\n }\n credentials?: {\n accessKeyId?: string\n secretAccessKey?: string,\n sessionToken?: string\n }\n}\n\nexport interface ConfigurationParameters {\n apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);\n username?: string;\n password?: string;\n accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);\n awsv4?: AWSv4Configuration;\n basePath?: string;\n serverIndex?: number;\n baseOptions?: any;\n formDataCtor?: new () => any;\n}\n\nexport class Configuration {\n /**\n * parameter for apiKey security\n * @param name security name\n */\n apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);\n /**\n * parameter for basic security\n */\n username?: string;\n /**\n * parameter for basic security\n */\n password?: string;\n /**\n * parameter for oauth2 security\n * @param name security name\n * @param scopes oauth2 scope\n */\n accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);\n /**\n * parameter for aws4 signature security\n * @param {Object} AWS4Signature - AWS4 Signature security\n * @param {string} options.region - aws region\n * @param {string} options.service - name of the service.\n * @param {string} credentials.accessKeyId - aws access key id\n * @param {string} credentials.secretAccessKey - aws access key\n * @param {string} credentials.sessionToken - aws session token\n * @memberof Configuration\n */\n awsv4?: AWSv4Configuration;\n /**\n * override base path\n */\n basePath?: string;\n /**\n * override server index\n */\n serverIndex?: number;\n /**\n * base options for axios calls\n */\n baseOptions?: any;\n /**\n * The FormData constructor that will be used to create multipart form data\n * requests. You can inject this here so that execution environments that\n * do not support the FormData class can still run the generated client.\n *\n * @type {new () => FormData}\n */\n formDataCtor?: new () => any;\n\n constructor(param: ConfigurationParameters = {}) {\n this.apiKey = param.apiKey;\n this.username = param.username;\n this.password = param.password;\n this.accessToken = param.accessToken;\n this.awsv4 = param.awsv4;\n this.basePath = param.basePath;\n this.serverIndex = param.serverIndex;\n this.baseOptions = {\n ...param.baseOptions,\n headers: {\n ...param.baseOptions?.headers,\n },\n };\n this.formDataCtor = param.formDataCtor;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = /^(application\\/json|[^;/ \\t]+\\/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$/i;\n return mime !== null && jsonMime.test(mime);\n }\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * Additional location information.\n */\n\nexport const AdditionalLocationInfo = {\n AsInstructed: 'AS_INSTRUCTED',\n Carport: 'CARPORT',\n CustomerPickup: 'CUSTOMER_PICKUP',\n Deck: 'DECK',\n DoorPerson: 'DOOR_PERSON',\n FrontDesk: 'FRONT_DESK',\n FrontDoor: 'FRONT_DOOR',\n Garage: 'GARAGE',\n Guard: 'GUARD',\n MailRoom: 'MAIL_ROOM',\n MailSlot: 'MAIL_SLOT',\n Mailbox: 'MAILBOX',\n McBoy: 'MC_BOY',\n McGirl: 'MC_GIRL',\n McMan: 'MC_MAN',\n McWoman: 'MC_WOMAN',\n Neighbor: 'NEIGHBOR',\n Office: 'OFFICE',\n Outbuilding: 'OUTBUILDING',\n Patio: 'PATIO',\n Porch: 'PORCH',\n RearDoor: 'REAR_DOOR',\n Receptionist: 'RECEPTIONIST',\n Receiver: 'RECEIVER',\n SecureLocation: 'SECURE_LOCATION',\n SideDoor: 'SIDE_DOOR',\n} as const;\n\nexport type AdditionalLocationInfo = typeof AdditionalLocationInfo[keyof typeof AdditionalLocationInfo];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * A quantity based on the specified unit of measurement.\n */\nexport interface Amount {\n /**\n * The unit of measure for the amount.\n */\n 'unitOfMeasure': AmountUnitOfMeasureEnum;\n /**\n * A decimal number with no loss of precision. Useful when precision loss is unacceptable, as with currencies. Follows RFC7159 for number representation.\n */\n 'value': string;\n}\n\nexport const AmountUnitOfMeasureEnum = {\n Eaches: 'Eaches',\n} as const;\n\nexport type AmountUnitOfMeasureEnum = typeof AmountUnitOfMeasureEnum[keyof typeof AmountUnitOfMeasureEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The current delivery status of the package.\n */\n\nexport const CurrentStatus = {\n InTransit: 'IN_TRANSIT',\n Delivered: 'DELIVERED',\n Returning: 'RETURNING',\n Returned: 'RETURNED',\n Undeliverable: 'UNDELIVERABLE',\n Delayed: 'DELAYED',\n AvailableForPickup: 'AVAILABLE_FOR_PICKUP',\n CustomerAction: 'CUSTOMER_ACTION',\n Unknown: 'UNKNOWN',\n OutForDelivery: 'OUT_FOR_DELIVERY',\n DeliveryAttempted: 'DELIVERY_ATTEMPTED',\n PickupSuccessful: 'PICKUP_SUCCESSFUL',\n PickupCancelled: 'PICKUP_CANCELLED',\n PickupAttempted: 'PICKUP_ATTEMPTED',\n PickupScheduled: 'PICKUP_SCHEDULED',\n ReturnRequestAccepted: 'RETURN_REQUEST_ACCEPTED',\n RefundIssued: 'REFUND_ISSUED',\n ReturnReceivedInFc: 'RETURN_RECEIVED_IN_FC',\n} as const;\n\nexport type CurrentStatus = typeof CurrentStatus[keyof typeof CurrentStatus];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The drop-off location at the destination address.\n */\nexport interface DropOffLocation {\n /**\n * The drop-off location type at the destination address.\n */\n 'type': DropOffLocationTypeEnum;\n /**\n * Additional information about the drop-off location. This information can vary depending on the type of drop-off location specified in the `type` field. If the `type` is set to `FALLBACK_NEIGHBOR_DELIVERY`, the `attributes` object must include the keys `neighborName` and `houseNumber` to provide the name and house number of the designated neighbor. For `RECEPTIONIST` type, the `attributes` object may include a `recipientName` field that contains the name of the person who received or will receive the package.\n */\n 'attributes'?: { [key: string]: string; };\n}\n\nexport const DropOffLocationTypeEnum = {\n FrontDoor: 'FRONT_DOOR',\n DeliveryBox: 'DELIVERY_BOX',\n GasMeterBox: 'GAS_METER_BOX',\n BicycleBasket: 'BICYCLE_BASKET',\n Garage: 'GARAGE',\n Receptionist: 'RECEPTIONIST',\n FallbackNeighborDelivery: 'FALLBACK_NEIGHBOR_DELIVERY',\n DoNotLeaveUnattended: 'DO_NOT_LEAVE_UNATTENDED',\n} as const;\n\nexport type DropOffLocationTypeEnum = typeof DropOffLocationTypeEnum[keyof typeof DropOffLocationTypeEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The event code for the delivery event.\n */\n\nexport const EventCode = {\n Event101: 'EVENT_101',\n Event102: 'EVENT_102',\n Event201: 'EVENT_201',\n Event202: 'EVENT_202',\n Event203: 'EVENT_203',\n Event204: 'EVENT_204',\n Event205: 'EVENT_205',\n Event206: 'EVENT_206',\n Event301: 'EVENT_301',\n Event302: 'EVENT_302',\n Event304: 'EVENT_304',\n Event306: 'EVENT_306',\n Event307: 'EVENT_307',\n Event308: 'EVENT_308',\n Event309: 'EVENT_309',\n Event401: 'EVENT_401',\n Event402: 'EVENT_402',\n Event403: 'EVENT_403',\n Event404: 'EVENT_404',\n Event405: 'EVENT_405',\n Event406: 'EVENT_406',\n Event407: 'EVENT_407',\n Event408: 'EVENT_408',\n Event409: 'EVENT_409',\n Event411: 'EVENT_411',\n Event412: 'EVENT_412',\n Event413: 'EVENT_413',\n Event414: 'EVENT_414',\n Event415: 'EVENT_415',\n Event416: 'EVENT_416',\n Event417: 'EVENT_417',\n Event418: 'EVENT_418',\n Event419: 'EVENT_419',\n Event801: 'EVENT_801',\n Event804: 'EVENT_804',\n} as const;\n\nexport type EventCode = typeof EventCode[keyof typeof EventCode];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * 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`. To require items to be shipped in an overbox rather than in their original product packaging, set `featureName` to `OVERBOX`. To require a packing slip to be included with the order, set `featureName` to `PACKING_SLIP`. To require a signature from the recipient upon delivery, set `featureName` to `SIGNATURE_CONFIRMATION`. Note that using signature confirmation features will incur additional fees on MCF orders and are currently supported only in the US marketplace. To ensure all items in an order are delivered together, set `featureName` to `DELIVER_TOGETHER`.\n */\nexport interface FeatureSettings {\n /**\n * The name of the feature. Valid feature names are: - `BLOCK_AMZL`: Blocks orders from being shipped using Amazon Logistics (AMZL). - Note: Using this feature will incur additional fee surcharges on MCF orders and may increase the risk of unfulfilled or delayed deliveries if alternative carriers are unavailable. Using `BLOCK_AMZL` in an order request will take precedence over your Seller Central account setting. - `BLANK_BOX`: Ships orders in non-Amazon branded packaging (blank boxes). - `OVERBOX`: Requires items to be shipped in an overbox rather than in their original product packaging. - `PACKING_SLIP`: Requires a packing slip to be included with the order. - `SIGNATURE_CONFIRMATION`: Requires a signature from the recipient upon delivery. - Note: Using signature confirmation features will incur additional fees on MCF orders and are currently supported only in the US marketplace.\n */\n 'featureName'?: string;\n /**\n * Specifies the policy to use when fulfilling an order.\n */\n 'featureFulfillmentPolicy'?: FeatureSettingsFeatureFulfillmentPolicyEnum;\n}\n\nexport const FeatureSettingsFeatureFulfillmentPolicyEnum = {\n Required: 'Required',\n NotRequired: 'NotRequired',\n} as const;\n\nexport type FeatureSettingsFeatureFulfillmentPolicyEnum = typeof FeatureSettingsFeatureFulfillmentPolicyEnum[keyof typeof FeatureSettingsFeatureFulfillmentPolicyEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n// May contain unused imports in some cases\n// @ts-ignore\nimport type { Money } from './money.js';\n\n/**\n * Fee type and cost.\n */\nexport interface Fee {\n /**\n * The type of fee.\n */\n 'name': FeeNameEnum;\n 'amount': Money;\n}\n\nexport const FeeNameEnum = {\n FbaPerUnitFulfillmentFee: 'FBAPerUnitFulfillmentFee',\n FbaPerOrderFulfillmentFee: 'FBAPerOrderFulfillmentFee',\n FbaTransportationFee: 'FBATransportationFee',\n FbaFulfillmentCodFee: 'FBAFulfillmentCODFee',\n} as const;\n\nexport type FeeNameEnum = typeof FeeNameEnum[keyof typeof FeeNameEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * Specifies whether the fulfillment order should ship now or have an order hold put on it.\n */\n\nexport const FulfillmentAction = {\n Ship: 'Ship',\n Hold: 'Hold',\n} as const;\n\nexport type FulfillmentAction = typeof FulfillmentAction[keyof typeof FulfillmentAction];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The current status of the fulfillment order.\n */\n\nexport const FulfillmentOrderStatus = {\n New: 'New',\n Received: 'Received',\n Planning: 'Planning',\n Processing: 'Processing',\n Cancelled: 'Cancelled',\n Complete: 'Complete',\n CompletePartialled: 'CompletePartialled',\n Unfulfillable: 'Unfulfillable',\n Invalid: 'Invalid',\n} as const;\n\nexport type FulfillmentOrderStatus = typeof FulfillmentOrderStatus[keyof typeof FulfillmentOrderStatus];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The `FulfillmentPolicy` value specified when you called the `createFulfillmentOrder` operation.\n */\n\nexport const FulfillmentPolicy = {\n FillOrKill: 'FillOrKill',\n FillAll: 'FillAll',\n FillAllAvailable: 'FillAllAvailable',\n} as const;\n\nexport type FulfillmentPolicy = typeof FulfillmentPolicy[keyof typeof FulfillmentPolicy];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n// May contain unused imports in some cases\n// @ts-ignore\nimport type { Weight } from './weight.js';\n\n/**\n * Item information for a shipment in a fulfillment order preview.\n */\nexport interface FulfillmentPreviewItem {\n /**\n * The seller SKU of the item.\n */\n 'sellerSku': string;\n /**\n * The item quantity.\n */\n 'quantity': number;\n /**\n * A fulfillment order item identifier that the seller created with a call to the `createFulfillmentOrder` operation.\n */\n 'sellerFulfillmentOrderItemId': string;\n 'estimatedShippingWeight'?: Weight;\n /**\n * The method used to calculate the estimated shipping weight.\n */\n 'shippingWeightCalculationMethod'?: FulfillmentPreviewItemShippingWeightCalculationMethodEnum;\n}\n\nexport const FulfillmentPreviewItemShippingWeightCalculationMethodEnum = {\n Package: 'Package',\n Dimensional: 'Dimensional',\n} as const;\n\nexport type FulfillmentPreviewItemShippingWeightCalculationMethodEnum = typeof FulfillmentPreviewItemShippingWeightCalculationMethodEnum[keyof typeof FulfillmentPreviewItemShippingWeightCalculationMethodEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * Indicates if the return item has been processed by a fulfillment center.\n */\n\nexport const FulfillmentReturnItemStatus = {\n New: 'New',\n Processed: 'Processed',\n} as const;\n\nexport type FulfillmentReturnItemStatus = typeof FulfillmentReturnItemStatus[keyof typeof FulfillmentReturnItemStatus];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n// May contain unused imports in some cases\n// @ts-ignore\nimport type { FulfillmentShipmentItem } from './fulfillment-shipment-item.js';\n// May contain unused imports in some cases\n// @ts-ignore\nimport type { FulfillmentShipmentPackage } from './fulfillment-shipment-package.js';\n\n/**\n * Delivery and item information for a shipment in a fulfillment order.\n */\nexport interface FulfillmentShipment {\n /**\n * A shipment identifier assigned by Amazon.\n */\n 'amazonShipmentId': string;\n /**\n * An identifier for the fulfillment center from which the shipment is sent.\n */\n 'fulfillmentCenterId': string;\n /**\n * The current status of the shipment.\n */\n 'fulfillmentShipmentStatus': FulfillmentShipmentFulfillmentShipmentStatusEnum;\n /**\n * Date timestamp\n */\n 'shippingDate'?: string;\n /**\n * Date timestamp\n */\n 'estimatedArrivalDate'?: string;\n /**\n * Provides additional insight into shipment timeline. Primarily used to communicate that actual delivery dates aren\\'t available.\n */\n 'shippingNotes'?: Array<string>;\n /**\n * An array of fulfillment shipment item information.\n */\n 'fulfillmentShipmentItem': Array<FulfillmentShipmentItem>;\n /**\n * An array of fulfillment shipment package information.\n */\n 'fulfillmentShipmentPackage'?: Array<FulfillmentShipmentPackage>;\n}\n\nexport const FulfillmentShipmentFulfillmentShipmentStatusEnum = {\n Pending: 'PENDING',\n Shipped: 'SHIPPED',\n CancelledByFulfiller: 'CANCELLED_BY_FULFILLER',\n CancelledBySeller: 'CANCELLED_BY_SELLER',\n} as const;\n\nexport type FulfillmentShipmentFulfillmentShipmentStatusEnum = typeof FulfillmentShipmentFulfillmentShipmentStatusEnum[keyof typeof FulfillmentShipmentFulfillmentShipmentStatusEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * A code for why the item is invalid for return.\n */\n\nexport const InvalidItemReasonCode = {\n InvalidValues: 'InvalidValues',\n DuplicateRequest: 'DuplicateRequest',\n NoCompletedShipItems: 'NoCompletedShipItems',\n NoReturnableQuantity: 'NoReturnableQuantity',\n} as const;\n\nexport type InvalidItemReasonCode = typeof InvalidItemReasonCode[keyof typeof InvalidItemReasonCode];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The condition of the return item when received by an Amazon fulfillment center.\n */\n\nexport const ReturnItemDisposition = {\n Sellable: 'Sellable',\n Defective: 'Defective',\n CustomerDamaged: 'CustomerDamaged',\n CarrierDamaged: 'CarrierDamaged',\n FulfillerDamaged: 'FulfillerDamaged',\n} as const;\n\nexport type ReturnItemDisposition = typeof ReturnItemDisposition[keyof typeof ReturnItemDisposition];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The shipping method used for the fulfillment order. When this value is `ScheduledDelivery`, choose `Ship` for the `fulfillmentAction`. `Hold` is not a valid `fulfillmentAction` value when the `shippingSpeedCategory` value is `ScheduledDelivery`. Note: Shipping method service level agreements vary by marketplace. Sellers should refer to the [Seller Central](https://developer-docs.amazon.com/sp-api/docs/seller-central-urls) website in their marketplace for shipping method service level agreements and fulfillment fees.\n */\n\nexport const ShippingSpeedCategory = {\n Standard: 'Standard',\n Expedited: 'Expedited',\n Priority: 'Priority',\n ScheduledDelivery: 'ScheduledDelivery',\n} as const;\n\nexport type ShippingSpeedCategory = typeof ShippingSpeedCategory[keyof typeof ShippingSpeedCategory];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner APIs for Fulfillment Outbound\n * 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.\n *\n * The version of the OpenAPI document: 2020-07-01\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n\n/**\n * The weight.\n */\nexport interface Weight {\n /**\n * The unit of weight.\n */\n 'unit': WeightUnitEnum;\n /**\n * The weight value.\n */\n 'value': string;\n}\n\nexport const WeightUnitEnum = {\n Kg: 'KG',\n Kilograms: 'KILOGRAMS',\n Lb: 'LB',\n Pounds: 'POUNDS',\n} as const;\n\nexport type WeightUnitEnum = typeof WeightUnitEnum[keyof typeof WeightUnitEnum];\n\n\n","import {type ClientConfiguration, createAxiosInstance, type RateLimit} from '@sp-api-sdk/common'\n\nimport {Configuration, FulfillmentOutboundApi} from './api-model/index.js'\n\nexport const clientRateLimits: RateLimit[] = [\n {\n method: 'post',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/fulfillmentOrders\\/preview$/v,\n rate: 2,\n burst: 30,\n },\n {\n method: 'post',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/deliveryOffers$/v,\n rate: 5,\n burst: 30,\n },\n {\n method: 'get',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/fulfillmentOrders$/v,\n rate: 2,\n burst: 30,\n },\n {\n method: 'post',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/fulfillmentOrders$/v,\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/tracking$/v,\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/returnReasonCodes$/v,\n rate: 2,\n burst: 30,\n },\n {\n method: 'put',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/fulfillmentOrders\\/[^\\/]*\\/return$/v,\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/fulfillmentOrders\\/[^\\/]*$/v,\n rate: 2,\n burst: 30,\n },\n {\n method: 'put',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/fulfillmentOrders\\/[^\\/]*$/v,\n rate: 2,\n burst: 30,\n },\n {\n method: 'put',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/fulfillmentOrders\\/[^\\/]*\\/cancel$/v,\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/features$/v,\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/features\\/inventory\\/[^\\/]*$/v,\n rate: 2,\n burst: 30,\n },\n {\n method: 'get',\n urlRegex: /^\\/fba\\/outbound\\/2020\\u{2D}07\\u{2D}01\\/features\\/inventory\\/[^\\/]*\\/[^\\/]*$/v,\n rate: 2,\n burst: 30,\n },\n]\n\nexport class FulfillmentOutboundApiClient extends FulfillmentOutboundApi {\n constructor(configuration: ClientConfiguration) {\n const {axios, endpoint} = createAxiosInstance(configuration, clientRateLimits)\n\n super(new Configuration(), endpoint, axios)\n }\n}\n"],"mappings":"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"}