{"version":3,"file":"index.cjs","names":["axios","globalAxios","globalAxios","axios","createAxiosInstance"],"sources":["../src/api-model/base.ts","../src/api-model/common.ts","../src/api-model/api/product-pricing-api.ts","../src/api-model/configuration.ts","../src/api-model/models/condition-type.ts","../src/api-model/models/customer-type.ts","../src/api-model/models/detailed-shipping-time-type.ts","../src/api-model/models/fulfillment-channel-type.ts","../src/api-model/models/http-method.ts","../src/api-model/models/item-condition.ts","../src/api-model/models/offer-customer-type.ts","../src/api-model/models/quantity-discount-type.ts","../src/client.ts"],"sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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 API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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): Promise<R> => {\n        const axiosRequestArgs = {...axiosArgs.options, url: (axios.defaults.baseURL ? '' : configuration?.basePath ?? basePath) + axiosArgs.url};\n        return axios.request<T, R>(axiosRequestArgs) as Promise<R>;\n    };\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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 { Errors } from '../models/index.js';\n// @ts-ignore\nimport type { GetItemOffersBatchRequest } from '../models/index.js';\n// @ts-ignore\nimport type { GetItemOffersBatchResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetListingOffersBatchRequest } from '../models/index.js';\n// @ts-ignore\nimport type { GetListingOffersBatchResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetOffersResponse } from '../models/index.js';\n// @ts-ignore\nimport type { GetPricingResponse } from '../models/index.js';\n/**\n * ProductPricingApi - axios parameter creator\n */\nexport const ProductPricingApiAxiosParamCreator = function (configuration?: Configuration) {\n    return {\n        /**\n         * Returns competitive pricing information for a seller\\'s offer listings based on seller SKU or ASIN.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned.\n         * @param {GetCompetitivePricingItemTypeEnum} itemType Indicates whether ASIN values or seller SKU values are used to identify items. If you specify Asin, the information in the response will be dependent on the list of Asins you provide in the Asins parameter. If you specify Sku, the information in the response will be dependent on the list of Skus you provide in the Skus parameter. Possible values: Asin, Sku.\n         * @param {Array<string>} [asins] A list of up to twenty Amazon Standard Identification Number (ASIN) values used to identify items in the given marketplace.\n         * @param {Array<string>} [skus] A list of up to twenty seller SKU values used to identify items in the given marketplace.\n         * @param {GetCompetitivePricingCustomerTypeEnum} [customerType] Indicates whether to request pricing information from the point of view of Consumer or Business buyers. Default is Consumer.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getCompetitivePricing: async (marketplaceId: string, itemType: GetCompetitivePricingItemTypeEnum, asins?: Array<string>, skus?: Array<string>, customerType?: GetCompetitivePricingCustomerTypeEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n            // verify required parameter 'marketplaceId' is not null or undefined\n            assertParamExists('getCompetitivePricing', 'marketplaceId', marketplaceId)\n            // verify required parameter 'itemType' is not null or undefined\n            assertParamExists('getCompetitivePricing', 'itemType', itemType)\n            const localVarPath = `/products/pricing/v0/competitivePrice`;\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 (asins) {\n                localVarQueryParameter['Asins'] = asins.join(COLLECTION_FORMATS.csv);\n            }\n\n            if (skus) {\n                localVarQueryParameter['Skus'] = skus.join(COLLECTION_FORMATS.csv);\n            }\n\n            if (itemType !== undefined) {\n                localVarQueryParameter['ItemType'] = itemType;\n            }\n\n            if (customerType !== undefined) {\n                localVarQueryParameter['CustomerType'] = customerType;\n            }\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         * Returns the lowest priced offers for a single item based on ASIN.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned.\n         * @param {GetItemOffersItemConditionEnum} itemCondition Filters the offer listings to be considered based on item condition. Possible values: New, Used, Collectible, Refurbished, Club.\n         * @param {string} asin The Amazon Standard Identification Number (ASIN) of the item.\n         * @param {GetItemOffersCustomerTypeEnum} [customerType] Indicates whether to request Consumer or Business offers. Default is Consumer.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getItemOffers: async (marketplaceId: string, itemCondition: GetItemOffersItemConditionEnum, asin: string, customerType?: GetItemOffersCustomerTypeEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n            // verify required parameter 'marketplaceId' is not null or undefined\n            assertParamExists('getItemOffers', 'marketplaceId', marketplaceId)\n            // verify required parameter 'itemCondition' is not null or undefined\n            assertParamExists('getItemOffers', 'itemCondition', itemCondition)\n            // verify required parameter 'asin' is not null or undefined\n            assertParamExists('getItemOffers', 'asin', asin)\n            const localVarPath = `/products/pricing/v0/items/{Asin}/offers`\n                .replace('{Asin}', encodeURIComponent(String(asin)));\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 (itemCondition !== undefined) {\n                localVarQueryParameter['ItemCondition'] = itemCondition;\n            }\n\n            if (customerType !== undefined) {\n                localVarQueryParameter['CustomerType'] = customerType;\n            }\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         * Returns the lowest priced offers for a batch of items based on ASIN.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.1 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {GetItemOffersBatchRequest} getItemOffersBatchRequestBody The request associated with the &#x60;getItemOffersBatch&#x60; API call.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getItemOffersBatch: async (getItemOffersBatchRequestBody: GetItemOffersBatchRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n            // verify required parameter 'getItemOffersBatchRequestBody' is not null or undefined\n            assertParamExists('getItemOffersBatch', 'getItemOffersBatchRequestBody', getItemOffersBatchRequestBody)\n            const localVarPath = `/batches/products/pricing/v0/itemOffers`;\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(getItemOffersBatchRequestBody, localVarRequestOptions, configuration)\n\n            return {\n                url: toPathString(localVarUrlObj),\n                options: localVarRequestOptions,\n            };\n        },\n        /**\n         * Returns the lowest priced offers for a single SKU listing.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 1 | 2 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned.\n         * @param {GetListingOffersItemConditionEnum} itemCondition Filters the offer listings based on item condition. Possible values: New, Used, Collectible, Refurbished, Club.\n         * @param {string} sellerSKU Identifies an item in the given marketplace. SellerSKU is qualified by the seller\\&#39;s SellerId, which is included with every operation that you submit.\n         * @param {GetListingOffersCustomerTypeEnum} [customerType] Indicates whether to request Consumer or Business offers. Default is Consumer.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getListingOffers: async (marketplaceId: string, itemCondition: GetListingOffersItemConditionEnum, sellerSKU: string, customerType?: GetListingOffersCustomerTypeEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n            // verify required parameter 'marketplaceId' is not null or undefined\n            assertParamExists('getListingOffers', 'marketplaceId', marketplaceId)\n            // verify required parameter 'itemCondition' is not null or undefined\n            assertParamExists('getListingOffers', 'itemCondition', itemCondition)\n            // verify required parameter 'sellerSKU' is not null or undefined\n            assertParamExists('getListingOffers', 'sellerSKU', sellerSKU)\n            const localVarPath = `/products/pricing/v0/listings/{SellerSKU}/offers`\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            if (itemCondition !== undefined) {\n                localVarQueryParameter['ItemCondition'] = itemCondition;\n            }\n\n            if (customerType !== undefined) {\n                localVarQueryParameter['CustomerType'] = customerType;\n            }\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         * Returns the lowest priced offers for a batch of listings by SKU.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {GetListingOffersBatchRequest} getListingOffersBatchRequestBody The request associated with the &#x60;getListingOffersBatch&#x60; API call.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getListingOffersBatch: async (getListingOffersBatchRequestBody: GetListingOffersBatchRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n            // verify required parameter 'getListingOffersBatchRequestBody' is not null or undefined\n            assertParamExists('getListingOffersBatch', 'getListingOffersBatchRequestBody', getListingOffersBatchRequestBody)\n            const localVarPath = `/batches/products/pricing/v0/listingOffers`;\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(getListingOffersBatchRequestBody, localVarRequestOptions, configuration)\n\n            return {\n                url: toPathString(localVarUrlObj),\n                options: localVarRequestOptions,\n            };\n        },\n        /**\n         * Returns pricing information for a seller\\'s offer listings based on seller SKU or ASIN.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned.\n         * @param {GetPricingItemTypeEnum} itemType Indicates whether ASIN values or seller SKU values are used to identify items. If you specify Asin, the information in the response will be dependent on the list of Asins you provide in the Asins parameter. If you specify Sku, the information in the response will be dependent on the list of Skus you provide in the Skus parameter.\n         * @param {Array<string>} [asins] A list of up to twenty Amazon Standard Identification Number (ASIN) values used to identify items in the given marketplace.\n         * @param {Array<string>} [skus] A list of up to twenty seller SKU values used to identify items in the given marketplace.\n         * @param {GetPricingItemConditionEnum} [itemCondition] Filters the offer listings based on item condition. Possible values: New, Used, Collectible, Refurbished, Club.\n         * @param {GetPricingOfferTypeEnum} [offerType] Indicates whether to request pricing information for the seller\\&#39;s B2C or B2B offers. Default is B2C.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getPricing: async (marketplaceId: string, itemType: GetPricingItemTypeEnum, asins?: Array<string>, skus?: Array<string>, itemCondition?: GetPricingItemConditionEnum, offerType?: GetPricingOfferTypeEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n            // verify required parameter 'marketplaceId' is not null or undefined\n            assertParamExists('getPricing', 'marketplaceId', marketplaceId)\n            // verify required parameter 'itemType' is not null or undefined\n            assertParamExists('getPricing', 'itemType', itemType)\n            const localVarPath = `/products/pricing/v0/price`;\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 (asins) {\n                localVarQueryParameter['Asins'] = asins.join(COLLECTION_FORMATS.csv);\n            }\n\n            if (skus) {\n                localVarQueryParameter['Skus'] = skus.join(COLLECTION_FORMATS.csv);\n            }\n\n            if (itemType !== undefined) {\n                localVarQueryParameter['ItemType'] = itemType;\n            }\n\n            if (itemCondition !== undefined) {\n                localVarQueryParameter['ItemCondition'] = itemCondition;\n            }\n\n            if (offerType !== undefined) {\n                localVarQueryParameter['OfferType'] = offerType;\n            }\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};\n\n/**\n * ProductPricingApi - functional programming interface\n */\nexport const ProductPricingApiFp = function(configuration?: Configuration) {\n    const localVarAxiosParamCreator = ProductPricingApiAxiosParamCreator(configuration)\n    return {\n        /**\n         * Returns competitive pricing information for a seller\\'s offer listings based on seller SKU or ASIN.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned.\n         * @param {GetCompetitivePricingItemTypeEnum} itemType Indicates whether ASIN values or seller SKU values are used to identify items. If you specify Asin, the information in the response will be dependent on the list of Asins you provide in the Asins parameter. If you specify Sku, the information in the response will be dependent on the list of Skus you provide in the Skus parameter. Possible values: Asin, Sku.\n         * @param {Array<string>} [asins] A list of up to twenty Amazon Standard Identification Number (ASIN) values used to identify items in the given marketplace.\n         * @param {Array<string>} [skus] A list of up to twenty seller SKU values used to identify items in the given marketplace.\n         * @param {GetCompetitivePricingCustomerTypeEnum} [customerType] Indicates whether to request pricing information from the point of view of Consumer or Business buyers. Default is Consumer.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        async getCompetitivePricing(marketplaceId: string, itemType: GetCompetitivePricingItemTypeEnum, asins?: Array<string>, skus?: Array<string>, customerType?: GetCompetitivePricingCustomerTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPricingResponse>> {\n            const localVarAxiosArgs = await localVarAxiosParamCreator.getCompetitivePricing(marketplaceId, itemType, asins, skus, customerType, options);\n            const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n            const localVarOperationServerBasePath = operationServerMap['ProductPricingApi.getCompetitivePricing']?.[localVarOperationServerIndex]?.url;\n            return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n        },\n        /**\n         * Returns the lowest priced offers for a single item based on ASIN.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned.\n         * @param {GetItemOffersItemConditionEnum} itemCondition Filters the offer listings to be considered based on item condition. Possible values: New, Used, Collectible, Refurbished, Club.\n         * @param {string} asin The Amazon Standard Identification Number (ASIN) of the item.\n         * @param {GetItemOffersCustomerTypeEnum} [customerType] Indicates whether to request Consumer or Business offers. Default is Consumer.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        async getItemOffers(marketplaceId: string, itemCondition: GetItemOffersItemConditionEnum, asin: string, customerType?: GetItemOffersCustomerTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetOffersResponse>> {\n            const localVarAxiosArgs = await localVarAxiosParamCreator.getItemOffers(marketplaceId, itemCondition, asin, customerType, options);\n            const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n            const localVarOperationServerBasePath = operationServerMap['ProductPricingApi.getItemOffers']?.[localVarOperationServerIndex]?.url;\n            return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n        },\n        /**\n         * Returns the lowest priced offers for a batch of items based on ASIN.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.1 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {GetItemOffersBatchRequest} getItemOffersBatchRequestBody The request associated with the &#x60;getItemOffersBatch&#x60; API call.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        async getItemOffersBatch(getItemOffersBatchRequestBody: GetItemOffersBatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetItemOffersBatchResponse>> {\n            const localVarAxiosArgs = await localVarAxiosParamCreator.getItemOffersBatch(getItemOffersBatchRequestBody, options);\n            const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n            const localVarOperationServerBasePath = operationServerMap['ProductPricingApi.getItemOffersBatch']?.[localVarOperationServerIndex]?.url;\n            return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n        },\n        /**\n         * Returns the lowest priced offers for a single SKU listing.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 1 | 2 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned.\n         * @param {GetListingOffersItemConditionEnum} itemCondition Filters the offer listings based on item condition. Possible values: New, Used, Collectible, Refurbished, Club.\n         * @param {string} sellerSKU Identifies an item in the given marketplace. SellerSKU is qualified by the seller\\&#39;s SellerId, which is included with every operation that you submit.\n         * @param {GetListingOffersCustomerTypeEnum} [customerType] Indicates whether to request Consumer or Business offers. Default is Consumer.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        async getListingOffers(marketplaceId: string, itemCondition: GetListingOffersItemConditionEnum, sellerSKU: string, customerType?: GetListingOffersCustomerTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetOffersResponse>> {\n            const localVarAxiosArgs = await localVarAxiosParamCreator.getListingOffers(marketplaceId, itemCondition, sellerSKU, customerType, options);\n            const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n            const localVarOperationServerBasePath = operationServerMap['ProductPricingApi.getListingOffers']?.[localVarOperationServerIndex]?.url;\n            return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n        },\n        /**\n         * Returns the lowest priced offers for a batch of listings by SKU.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {GetListingOffersBatchRequest} getListingOffersBatchRequestBody The request associated with the &#x60;getListingOffersBatch&#x60; API call.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        async getListingOffersBatch(getListingOffersBatchRequestBody: GetListingOffersBatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetListingOffersBatchResponse>> {\n            const localVarAxiosArgs = await localVarAxiosParamCreator.getListingOffersBatch(getListingOffersBatchRequestBody, options);\n            const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n            const localVarOperationServerBasePath = operationServerMap['ProductPricingApi.getListingOffersBatch']?.[localVarOperationServerIndex]?.url;\n            return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n        },\n        /**\n         * Returns pricing information for a seller\\'s offer listings based on seller SKU or ASIN.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {string} marketplaceId A marketplace identifier. Specifies the marketplace for which prices are returned.\n         * @param {GetPricingItemTypeEnum} itemType Indicates whether ASIN values or seller SKU values are used to identify items. If you specify Asin, the information in the response will be dependent on the list of Asins you provide in the Asins parameter. If you specify Sku, the information in the response will be dependent on the list of Skus you provide in the Skus parameter.\n         * @param {Array<string>} [asins] A list of up to twenty Amazon Standard Identification Number (ASIN) values used to identify items in the given marketplace.\n         * @param {Array<string>} [skus] A list of up to twenty seller SKU values used to identify items in the given marketplace.\n         * @param {GetPricingItemConditionEnum} [itemCondition] Filters the offer listings based on item condition. Possible values: New, Used, Collectible, Refurbished, Club.\n         * @param {GetPricingOfferTypeEnum} [offerType] Indicates whether to request pricing information for the seller\\&#39;s B2C or B2B offers. Default is B2C.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        async getPricing(marketplaceId: string, itemType: GetPricingItemTypeEnum, asins?: Array<string>, skus?: Array<string>, itemCondition?: GetPricingItemConditionEnum, offerType?: GetPricingOfferTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPricingResponse>> {\n            const localVarAxiosArgs = await localVarAxiosParamCreator.getPricing(marketplaceId, itemType, asins, skus, itemCondition, offerType, options);\n            const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n            const localVarOperationServerBasePath = operationServerMap['ProductPricingApi.getPricing']?.[localVarOperationServerIndex]?.url;\n            return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n        },\n    }\n};\n\n/**\n * ProductPricingApi - factory interface\n */\nexport const ProductPricingApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n    const localVarFp = ProductPricingApiFp(configuration)\n    return {\n        /**\n         * Returns competitive pricing information for a seller\\'s offer listings based on seller SKU or ASIN.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {ProductPricingApiGetCompetitivePricingRequest} requestParameters Request parameters.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getCompetitivePricing(requestParameters: ProductPricingApiGetCompetitivePricingRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPricingResponse> {\n            return localVarFp.getCompetitivePricing(requestParameters.marketplaceId, requestParameters.itemType, requestParameters.asins, requestParameters.skus, requestParameters.customerType, options).then((request) => request(axios, basePath));\n        },\n        /**\n         * Returns the lowest priced offers for a single item based on ASIN.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {ProductPricingApiGetItemOffersRequest} requestParameters Request parameters.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getItemOffers(requestParameters: ProductPricingApiGetItemOffersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetOffersResponse> {\n            return localVarFp.getItemOffers(requestParameters.marketplaceId, requestParameters.itemCondition, requestParameters.asin, requestParameters.customerType, options).then((request) => request(axios, basePath));\n        },\n        /**\n         * Returns the lowest priced offers for a batch of items based on ASIN.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.1 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {ProductPricingApiGetItemOffersBatchRequest} requestParameters Request parameters.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getItemOffersBatch(requestParameters: ProductPricingApiGetItemOffersBatchRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetItemOffersBatchResponse> {\n            return localVarFp.getItemOffersBatch(requestParameters.getItemOffersBatchRequestBody, options).then((request) => request(axios, basePath));\n        },\n        /**\n         * Returns the lowest priced offers for a single SKU listing.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 1 | 2 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {ProductPricingApiGetListingOffersRequest} requestParameters Request parameters.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getListingOffers(requestParameters: ProductPricingApiGetListingOffersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetOffersResponse> {\n            return localVarFp.getListingOffers(requestParameters.marketplaceId, requestParameters.itemCondition, requestParameters.sellerSKU, requestParameters.customerType, options).then((request) => request(axios, basePath));\n        },\n        /**\n         * Returns the lowest priced offers for a batch of listings by SKU.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {ProductPricingApiGetListingOffersBatchRequest} requestParameters Request parameters.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getListingOffersBatch(requestParameters: ProductPricingApiGetListingOffersBatchRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetListingOffersBatchResponse> {\n            return localVarFp.getListingOffersBatch(requestParameters.getListingOffersBatchRequestBody, options).then((request) => request(axios, basePath));\n        },\n        /**\n         * Returns pricing information for a seller\\'s offer listings based on seller SKU or ASIN.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n         * @param {ProductPricingApiGetPricingRequest} requestParameters Request parameters.\n         * @param {*} [options] Override http request option.\n         * @throws {RequiredError}\n         */\n        getPricing(requestParameters: ProductPricingApiGetPricingRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPricingResponse> {\n            return localVarFp.getPricing(requestParameters.marketplaceId, requestParameters.itemType, requestParameters.asins, requestParameters.skus, requestParameters.itemCondition, requestParameters.offerType, options).then((request) => request(axios, basePath));\n        },\n    };\n};\n\n/**\n * Request parameters for getCompetitivePricing operation in ProductPricingApi.\n */\nexport interface ProductPricingApiGetCompetitivePricingRequest {\n    /**\n     * A marketplace identifier. Specifies the marketplace for which prices are returned.\n     */\n    readonly marketplaceId: string\n\n    /**\n     * Indicates whether ASIN values or seller SKU values are used to identify items. If you specify Asin, the information in the response will be dependent on the list of Asins you provide in the Asins parameter. If you specify Sku, the information in the response will be dependent on the list of Skus you provide in the Skus parameter. Possible values: Asin, Sku.\n     */\n    readonly itemType: GetCompetitivePricingItemTypeEnum\n\n    /**\n     * A list of up to twenty Amazon Standard Identification Number (ASIN) values used to identify items in the given marketplace.\n     */\n    readonly asins?: Array<string>\n\n    /**\n     * A list of up to twenty seller SKU values used to identify items in the given marketplace.\n     */\n    readonly skus?: Array<string>\n\n    /**\n     * Indicates whether to request pricing information from the point of view of Consumer or Business buyers. Default is Consumer.\n     */\n    readonly customerType?: GetCompetitivePricingCustomerTypeEnum\n}\n\n/**\n * Request parameters for getItemOffers operation in ProductPricingApi.\n */\nexport interface ProductPricingApiGetItemOffersRequest {\n    /**\n     * A marketplace identifier. Specifies the marketplace for which prices are returned.\n     */\n    readonly marketplaceId: string\n\n    /**\n     * Filters the offer listings to be considered based on item condition. Possible values: New, Used, Collectible, Refurbished, Club.\n     */\n    readonly itemCondition: GetItemOffersItemConditionEnum\n\n    /**\n     * The Amazon Standard Identification Number (ASIN) of the item.\n     */\n    readonly asin: string\n\n    /**\n     * Indicates whether to request Consumer or Business offers. Default is Consumer.\n     */\n    readonly customerType?: GetItemOffersCustomerTypeEnum\n}\n\n/**\n * Request parameters for getItemOffersBatch operation in ProductPricingApi.\n */\nexport interface ProductPricingApiGetItemOffersBatchRequest {\n    /**\n     * The request associated with the &#x60;getItemOffersBatch&#x60; API call.\n     */\n    readonly getItemOffersBatchRequestBody: GetItemOffersBatchRequest\n}\n\n/**\n * Request parameters for getListingOffers operation in ProductPricingApi.\n */\nexport interface ProductPricingApiGetListingOffersRequest {\n    /**\n     * A marketplace identifier. Specifies the marketplace for which prices are returned.\n     */\n    readonly marketplaceId: string\n\n    /**\n     * Filters the offer listings based on item condition. Possible values: New, Used, Collectible, Refurbished, Club.\n     */\n    readonly itemCondition: GetListingOffersItemConditionEnum\n\n    /**\n     * Identifies an item in the given marketplace. SellerSKU is qualified by the seller\\&#39;s SellerId, which is included with every operation that you submit.\n     */\n    readonly sellerSKU: string\n\n    /**\n     * Indicates whether to request Consumer or Business offers. Default is Consumer.\n     */\n    readonly customerType?: GetListingOffersCustomerTypeEnum\n}\n\n/**\n * Request parameters for getListingOffersBatch operation in ProductPricingApi.\n */\nexport interface ProductPricingApiGetListingOffersBatchRequest {\n    /**\n     * The request associated with the &#x60;getListingOffersBatch&#x60; API call.\n     */\n    readonly getListingOffersBatchRequestBody: GetListingOffersBatchRequest\n}\n\n/**\n * Request parameters for getPricing operation in ProductPricingApi.\n */\nexport interface ProductPricingApiGetPricingRequest {\n    /**\n     * A marketplace identifier. Specifies the marketplace for which prices are returned.\n     */\n    readonly marketplaceId: string\n\n    /**\n     * Indicates whether ASIN values or seller SKU values are used to identify items. If you specify Asin, the information in the response will be dependent on the list of Asins you provide in the Asins parameter. If you specify Sku, the information in the response will be dependent on the list of Skus you provide in the Skus parameter.\n     */\n    readonly itemType: GetPricingItemTypeEnum\n\n    /**\n     * A list of up to twenty Amazon Standard Identification Number (ASIN) values used to identify items in the given marketplace.\n     */\n    readonly asins?: Array<string>\n\n    /**\n     * A list of up to twenty seller SKU values used to identify items in the given marketplace.\n     */\n    readonly skus?: Array<string>\n\n    /**\n     * Filters the offer listings based on item condition. Possible values: New, Used, Collectible, Refurbished, Club.\n     */\n    readonly itemCondition?: GetPricingItemConditionEnum\n\n    /**\n     * Indicates whether to request pricing information for the seller\\&#39;s B2C or B2B offers. Default is B2C.\n     */\n    readonly offerType?: GetPricingOfferTypeEnum\n}\n\n/**\n * ProductPricingApi - object-oriented interface\n */\nexport class ProductPricingApi extends BaseAPI {\n    /**\n     * Returns competitive pricing information for a seller\\'s offer listings based on seller SKU or ASIN.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n     * @param {ProductPricingApiGetCompetitivePricingRequest} requestParameters Request parameters.\n     * @param {*} [options] Override http request option.\n     * @throws {RequiredError}\n     */\n    public getCompetitivePricing(requestParameters: ProductPricingApiGetCompetitivePricingRequest, options?: RawAxiosRequestConfig) {\n        return ProductPricingApiFp(this.configuration).getCompetitivePricing(requestParameters.marketplaceId, requestParameters.itemType, requestParameters.asins, requestParameters.skus, requestParameters.customerType, options).then((request) => request(this.axios, this.basePath));\n    }\n\n    /**\n     * Returns the lowest priced offers for a single item based on ASIN.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n     * @param {ProductPricingApiGetItemOffersRequest} requestParameters Request parameters.\n     * @param {*} [options] Override http request option.\n     * @throws {RequiredError}\n     */\n    public getItemOffers(requestParameters: ProductPricingApiGetItemOffersRequest, options?: RawAxiosRequestConfig) {\n        return ProductPricingApiFp(this.configuration).getItemOffers(requestParameters.marketplaceId, requestParameters.itemCondition, requestParameters.asin, requestParameters.customerType, options).then((request) => request(this.axios, this.basePath));\n    }\n\n    /**\n     * Returns the lowest priced offers for a batch of items based on ASIN.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.1 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n     * @param {ProductPricingApiGetItemOffersBatchRequest} requestParameters Request parameters.\n     * @param {*} [options] Override http request option.\n     * @throws {RequiredError}\n     */\n    public getItemOffersBatch(requestParameters: ProductPricingApiGetItemOffersBatchRequest, options?: RawAxiosRequestConfig) {\n        return ProductPricingApiFp(this.configuration).getItemOffersBatch(requestParameters.getItemOffersBatchRequestBody, options).then((request) => request(this.axios, this.basePath));\n    }\n\n    /**\n     * Returns the lowest priced offers for a single SKU listing.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 1 | 2 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n     * @param {ProductPricingApiGetListingOffersRequest} requestParameters Request parameters.\n     * @param {*} [options] Override http request option.\n     * @throws {RequiredError}\n     */\n    public getListingOffers(requestParameters: ProductPricingApiGetListingOffersRequest, options?: RawAxiosRequestConfig) {\n        return ProductPricingApiFp(this.configuration).getListingOffers(requestParameters.marketplaceId, requestParameters.itemCondition, requestParameters.sellerSKU, requestParameters.customerType, options).then((request) => request(this.axios, this.basePath));\n    }\n\n    /**\n     * Returns the lowest priced offers for a batch of listings by SKU.  **Usage Plan:**  | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n     * @param {ProductPricingApiGetListingOffersBatchRequest} requestParameters Request parameters.\n     * @param {*} [options] Override http request option.\n     * @throws {RequiredError}\n     */\n    public getListingOffersBatch(requestParameters: ProductPricingApiGetListingOffersBatchRequest, options?: RawAxiosRequestConfig) {\n        return ProductPricingApiFp(this.configuration).getListingOffersBatch(requestParameters.getListingOffersBatchRequestBody, options).then((request) => request(this.axios, this.basePath));\n    }\n\n    /**\n     * Returns pricing information for a seller\\'s offer listings based on seller SKU or ASIN.  **Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. 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 | | ---- | ---- | | 0.5 | 1 |  The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).\n     * @param {ProductPricingApiGetPricingRequest} requestParameters Request parameters.\n     * @param {*} [options] Override http request option.\n     * @throws {RequiredError}\n     */\n    public getPricing(requestParameters: ProductPricingApiGetPricingRequest, options?: RawAxiosRequestConfig) {\n        return ProductPricingApiFp(this.configuration).getPricing(requestParameters.marketplaceId, requestParameters.itemType, requestParameters.asins, requestParameters.skus, requestParameters.itemCondition, requestParameters.offerType, options).then((request) => request(this.axios, this.basePath));\n    }\n}\n\nexport const GetCompetitivePricingItemTypeEnum = {\n    Asin: 'Asin',\n    Sku: 'Sku',\n} as const;\nexport type GetCompetitivePricingItemTypeEnum = typeof GetCompetitivePricingItemTypeEnum[keyof typeof GetCompetitivePricingItemTypeEnum];\nexport const GetCompetitivePricingCustomerTypeEnum = {\n    Consumer: 'Consumer',\n    Business: 'Business',\n} as const;\nexport type GetCompetitivePricingCustomerTypeEnum = typeof GetCompetitivePricingCustomerTypeEnum[keyof typeof GetCompetitivePricingCustomerTypeEnum];\nexport const GetItemOffersItemConditionEnum = {\n    New: 'New',\n    Used: 'Used',\n    Collectible: 'Collectible',\n    Refurbished: 'Refurbished',\n    Club: 'Club',\n} as const;\nexport type GetItemOffersItemConditionEnum = typeof GetItemOffersItemConditionEnum[keyof typeof GetItemOffersItemConditionEnum];\nexport const GetItemOffersCustomerTypeEnum = {\n    Consumer: 'Consumer',\n    Business: 'Business',\n} as const;\nexport type GetItemOffersCustomerTypeEnum = typeof GetItemOffersCustomerTypeEnum[keyof typeof GetItemOffersCustomerTypeEnum];\nexport const GetListingOffersItemConditionEnum = {\n    New: 'New',\n    Used: 'Used',\n    Collectible: 'Collectible',\n    Refurbished: 'Refurbished',\n    Club: 'Club',\n} as const;\nexport type GetListingOffersItemConditionEnum = typeof GetListingOffersItemConditionEnum[keyof typeof GetListingOffersItemConditionEnum];\nexport const GetListingOffersCustomerTypeEnum = {\n    Consumer: 'Consumer',\n    Business: 'Business',\n} as const;\nexport type GetListingOffersCustomerTypeEnum = typeof GetListingOffersCustomerTypeEnum[keyof typeof GetListingOffersCustomerTypeEnum];\nexport const GetPricingItemTypeEnum = {\n    Asin: 'Asin',\n    Sku: 'Sku',\n} as const;\nexport type GetPricingItemTypeEnum = typeof GetPricingItemTypeEnum[keyof typeof GetPricingItemTypeEnum];\nexport const GetPricingItemConditionEnum = {\n    New: 'New',\n    Used: 'Used',\n    Collectible: 'Collectible',\n    Refurbished: 'Refurbished',\n    Club: 'Club',\n} as const;\nexport type GetPricingItemConditionEnum = typeof GetPricingItemConditionEnum[keyof typeof GetPricingItemConditionEnum];\nexport const GetPricingOfferTypeEnum = {\n    B2C: 'B2C',\n    B2B: 'B2B',\n} as const;\nexport type GetPricingOfferTypeEnum = typeof GetPricingOfferTypeEnum[keyof typeof GetPricingOfferTypeEnum];\n","/* tslint:disable */\n/**\n * Selling Partner API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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 API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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 the condition of the item. Possible values: New, Used, Collectible, Refurbished, Club.\n */\n\nexport const ConditionType = {\n    New: 'New',\n    Used: 'Used',\n    Collectible: 'Collectible',\n    Refurbished: 'Refurbished',\n    Club: 'Club',\n} as const;\n\nexport type ConditionType = typeof ConditionType[keyof typeof ConditionType];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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 whether to request Consumer or Business offers. Default is Consumer.\n */\n\nexport const CustomerType = {\n    Consumer: 'Consumer',\n    Business: 'Business',\n} as const;\n\nexport type CustomerType = typeof CustomerType[keyof typeof CustomerType];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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 time range in which an item will likely be shipped once an order has been placed.\n */\nexport interface DetailedShippingTimeType {\n    /**\n     * The minimum time, in hours, that the item will likely be shipped after the order has been placed.\n     */\n    'minimumHours'?: number;\n    /**\n     * The maximum time, in hours, that the item will likely be shipped after the order has been placed.\n     */\n    'maximumHours'?: number;\n    /**\n     * The date when the item will be available for shipping. Only displayed for items that are not currently available for shipping.\n     */\n    'availableDate'?: string;\n    /**\n     * Indicates whether the item is available for shipping now, or on a known or an unknown date in the future. If known, the availableDate property indicates the date that the item will be available for shipping. Possible values: NOW, FUTURE_WITHOUT_DATE, FUTURE_WITH_DATE.\n     */\n    'availabilityType'?: DetailedShippingTimeTypeAvailabilityTypeEnum;\n}\n\nexport const DetailedShippingTimeTypeAvailabilityTypeEnum = {\n    Now: 'NOW',\n    FutureWithoutDate: 'FUTURE_WITHOUT_DATE',\n    FutureWithDate: 'FUTURE_WITH_DATE',\n} as const;\n\nexport type DetailedShippingTimeTypeAvailabilityTypeEnum = typeof DetailedShippingTimeTypeAvailabilityTypeEnum[keyof typeof DetailedShippingTimeTypeAvailabilityTypeEnum];\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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 whether the item is fulfilled by Amazon or by the seller (merchant).\n */\n\nexport const FulfillmentChannelType = {\n    Amazon: 'Amazon',\n    Merchant: 'Merchant',\n} as const;\n\nexport type FulfillmentChannelType = typeof FulfillmentChannelType[keyof typeof FulfillmentChannelType];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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 HTTP method associated with the individual APIs being called as part of the batch request.\n */\n\nexport const HttpMethod = {\n    Get: 'GET',\n    Put: 'PUT',\n    Patch: 'PATCH',\n    Delete: 'DELETE',\n    Post: 'POST',\n} as const;\n\nexport type HttpMethod = typeof HttpMethod[keyof typeof HttpMethod];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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 * Filters the offer listings to be considered based on item condition. Possible values: New, Used, Collectible, Refurbished, Club.\n */\n\nexport const ItemCondition = {\n    New: 'New',\n    Used: 'Used',\n    Collectible: 'Collectible',\n    Refurbished: 'Refurbished',\n    Club: 'Club',\n} as const;\n\nexport type ItemCondition = typeof ItemCondition[keyof typeof ItemCondition];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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 whether the offer is a B2B or B2C offer\n */\n\nexport const OfferCustomerType = {\n    B2C: 'B2C',\n    B2B: 'B2B',\n} as const;\n\nexport type OfferCustomerType = typeof OfferCustomerType[keyof typeof OfferCustomerType];\n\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Selling Partner API for Pricing\n * The Selling Partner API for Pricing helps you programmatically retrieve product pricing and offer information for Amazon Marketplace products.\n *\n * The version of the OpenAPI document: v0\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 the type of quantity discount this price applies to.\n */\n\nexport const QuantityDiscountType = {\n    QuantityDiscount: 'QUANTITY_DISCOUNT',\n} as const;\n\nexport type QuantityDiscountType = typeof QuantityDiscountType[keyof typeof QuantityDiscountType];\n\n\n\n","import {type ClientConfiguration, createAxiosInstance, type RateLimit} from '@sp-api-sdk/common'\n\nimport {Configuration, ProductPricingApi} from './api-model/index.js'\n\nexport const clientRateLimits: RateLimit[] = [\n  {\n    method: 'get',\n    urlRegex: /^\\/products\\/pricing\\/v0\\/price$/v,\n    rate: 0.5,\n    burst: 1,\n  },\n  {\n    method: 'get',\n    urlRegex: /^\\/products\\/pricing\\/v0\\/competitivePrice$/v,\n    rate: 0.5,\n    burst: 1,\n  },\n  {\n    method: 'get',\n    urlRegex: /^\\/products\\/pricing\\/v0\\/listings\\/[^\\/]*\\/offers$/v,\n    rate: 1,\n    burst: 2,\n  },\n  {\n    method: 'get',\n    urlRegex: /^\\/products\\/pricing\\/v0\\/items\\/[^\\/]*\\/offers$/v,\n    rate: 0.5,\n    burst: 1,\n  },\n  {\n    method: 'post',\n    urlRegex: /^\\/batches\\/products\\/pricing\\/v0\\/itemOffers$/v,\n    rate: 0.1,\n    burst: 1,\n  },\n  {\n    method: 'post',\n    urlRegex: /^\\/batches\\/products\\/pricing\\/v0\\/listingOffers$/v,\n    rate: 0.5,\n    burst: 1,\n  },\n]\n\nexport class ProductPricingApiClient extends ProductPricingApi {\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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"}