Skip to content

Commit cab85cf

Browse files
bizon-bottusbar
andauthored
feat(clients): update models as of 2026-02-04 (#1689)
Co-authored-by: tusbar <166147+tusbar@users.noreply.github.com>
1 parent 9719d59 commit cab85cf

21 files changed

+0
-656
lines changed

clients/orders-api-v0/src/api-model/api/orders-api.ts

Lines changed: 0 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ import type { GetOrderAddressResponse } from '../models';
3030
// @ts-ignore
3131
import type { GetOrderBuyerInfoResponse } from '../models';
3232
// @ts-ignore
33-
import type { GetOrderFulfillmentInstructionsResponse } from '../models';
34-
// @ts-ignore
3533
import type { GetOrderItemsBuyerInfoResponse } from '../models';
3634
// @ts-ignore
3735
import type { GetOrderItemsResponse } from '../models';
@@ -191,39 +189,6 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
191189
options: localVarRequestOptions,
192190
};
193191
},
194-
/**
195-
* Returns the fulfillment instructions for the order that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header contains the usage plan rate limits for the operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput might have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
196-
* @param {string} orderId The Amazon order identifier in 3-7-7 format.
197-
* @param {*} [options] Override http request option.
198-
* @throws {RequiredError}
199-
*/
200-
getOrderFulfillmentInstructions: async (orderId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
201-
// verify required parameter 'orderId' is not null or undefined
202-
assertParamExists('getOrderFulfillmentInstructions', 'orderId', orderId)
203-
const localVarPath = `/orders/v0/orders/{orderId}/fulfillmentInstructions`
204-
.replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
205-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
206-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
207-
let baseOptions;
208-
if (configuration) {
209-
baseOptions = configuration.baseOptions;
210-
}
211-
212-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
213-
const localVarHeaderParameter = {} as any;
214-
const localVarQueryParameter = {} as any;
215-
216-
localVarHeaderParameter['Accept'] = 'application/json';
217-
218-
setSearchParams(localVarUrlObj, localVarQueryParameter);
219-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
220-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
221-
222-
return {
223-
url: toPathString(localVarUrlObj),
224-
options: localVarRequestOptions,
225-
};
226-
},
227192
/**
228193
* Returns detailed order item information for the order that you specify. If `NextToken` is provided, it\'s used to retrieve the next page of order items. __Note__: When an order is in the Pending state (the order has been placed but payment has not been authorized), the getOrderItems operation does not return information about pricing, taxes, shipping charges, gift status or promotions for the order items in the order. After an order leaves the Pending state (this occurs when payment has been authorized) and enters the Unshipped, Partially Shipped, or Shipped state, the getOrderItems operation returns information about pricing, taxes, shipping charges, gift status and promotions for the order items in the order. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header contains the usage plan rate limits for the operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput might have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
229194
* @param {string} orderId An Amazon-defined order identifier, in 3-7-7 format.
@@ -603,18 +568,6 @@ export const OrdersApiFp = function(configuration?: Configuration) {
603568
const localVarOperationServerBasePath = operationServerMap['OrdersApi.getOrderBuyerInfo']?.[localVarOperationServerIndex]?.url;
604569
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
605570
},
606-
/**
607-
* Returns the fulfillment instructions for the order that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header contains the usage plan rate limits for the operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput might have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
608-
* @param {string} orderId The Amazon order identifier in 3-7-7 format.
609-
* @param {*} [options] Override http request option.
610-
* @throws {RequiredError}
611-
*/
612-
async getOrderFulfillmentInstructions(orderId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetOrderFulfillmentInstructionsResponse>> {
613-
const localVarAxiosArgs = await localVarAxiosParamCreator.getOrderFulfillmentInstructions(orderId, options);
614-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
615-
const localVarOperationServerBasePath = operationServerMap['OrdersApi.getOrderFulfillmentInstructions']?.[localVarOperationServerIndex]?.url;
616-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
617-
},
618571
/**
619572
* Returns detailed order item information for the order that you specify. If `NextToken` is provided, it\'s used to retrieve the next page of order items. __Note__: When an order is in the Pending state (the order has been placed but payment has not been authorized), the getOrderItems operation does not return information about pricing, taxes, shipping charges, gift status or promotions for the order items in the order. After an order leaves the Pending state (this occurs when payment has been authorized) and enters the Unshipped, Partially Shipped, or Shipped state, the getOrderItems operation returns information about pricing, taxes, shipping charges, gift status and promotions for the order items in the order. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header contains the usage plan rate limits for the operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput might have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
620573
* @param {string} orderId An Amazon-defined order identifier, in 3-7-7 format.
@@ -756,15 +709,6 @@ export const OrdersApiFactory = function (configuration?: Configuration, basePat
756709
getOrderBuyerInfo(requestParameters: OrdersApiGetOrderBuyerInfoRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetOrderBuyerInfoResponse> {
757710
return localVarFp.getOrderBuyerInfo(requestParameters.orderId, options).then((request) => request(axios, basePath));
758711
},
759-
/**
760-
* Returns the fulfillment instructions for the order that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header contains the usage plan rate limits for the operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput might have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
761-
* @param {OrdersApiGetOrderFulfillmentInstructionsRequest} requestParameters Request parameters.
762-
* @param {*} [options] Override http request option.
763-
* @throws {RequiredError}
764-
*/
765-
getOrderFulfillmentInstructions(requestParameters: OrdersApiGetOrderFulfillmentInstructionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetOrderFulfillmentInstructionsResponse> {
766-
return localVarFp.getOrderFulfillmentInstructions(requestParameters.orderId, options).then((request) => request(axios, basePath));
767-
},
768712
/**
769713
* Returns detailed order item information for the order that you specify. If `NextToken` is provided, it\'s used to retrieve the next page of order items. __Note__: When an order is in the Pending state (the order has been placed but payment has not been authorized), the getOrderItems operation does not return information about pricing, taxes, shipping charges, gift status or promotions for the order items in the order. After an order leaves the Pending state (this occurs when payment has been authorized) and enters the Unshipped, Partially Shipped, or Shipped state, the getOrderItems operation returns information about pricing, taxes, shipping charges, gift status and promotions for the order items in the order. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header contains the usage plan rate limits for the operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput might have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
770714
* @param {OrdersApiGetOrderItemsRequest} requestParameters Request parameters.
@@ -867,16 +811,6 @@ export interface OrdersApiGetOrderBuyerInfoRequest {
867811
readonly orderId: string
868812
}
869813

870-
/**
871-
* Request parameters for getOrderFulfillmentInstructions operation in OrdersApi.
872-
*/
873-
export interface OrdersApiGetOrderFulfillmentInstructionsRequest {
874-
/**
875-
* The Amazon order identifier in 3-7-7 format.
876-
*/
877-
readonly orderId: string
878-
}
879-
880814
/**
881815
* Request parameters for getOrderItems operation in OrdersApi.
882816
*/
@@ -1101,16 +1035,6 @@ export class OrdersApi extends BaseAPI {
11011035
return OrdersApiFp(this.configuration).getOrderBuyerInfo(requestParameters.orderId, options).then((request) => request(this.axios, this.basePath));
11021036
}
11031037

1104-
/**
1105-
* Returns the fulfillment instructions for the order that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header contains the usage plan rate limits for the operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput might have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
1106-
* @param {OrdersApiGetOrderFulfillmentInstructionsRequest} requestParameters Request parameters.
1107-
* @param {*} [options] Override http request option.
1108-
* @throws {RequiredError}
1109-
*/
1110-
public getOrderFulfillmentInstructions(requestParameters: OrdersApiGetOrderFulfillmentInstructionsRequest, options?: RawAxiosRequestConfig) {
1111-
return OrdersApiFp(this.configuration).getOrderFulfillmentInstructions(requestParameters.orderId, options).then((request) => request(this.axios, this.basePath));
1112-
}
1113-
11141038
/**
11151039
* Returns detailed order item information for the order that you specify. If `NextToken` is provided, it\'s used to retrieve the next page of order items. __Note__: When an order is in the Pending state (the order has been placed but payment has not been authorized), the getOrderItems operation does not return information about pricing, taxes, shipping charges, gift status or promotions for the order items in the order. After an order leaves the Pending state (this occurs when payment has been authorized) and enters the Unshipped, Partially Shipped, or Shipped state, the getOrderItems operation returns information about pricing, taxes, shipping charges, gift status and promotions for the order items in the order. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 30 | The `x-amzn-RateLimit-Limit` response header contains the usage plan rate limits for the operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput might have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
11161040
* @param {OrdersApiGetOrderItemsRequest} requestParameters Request parameters.

clients/orders-api-v0/src/api-model/models/export-info.ts

Lines changed: 0 additions & 30 deletions
This file was deleted.

clients/orders-api-v0/src/api-model/models/fulfillment-instructions.ts

Lines changed: 0 additions & 33 deletions
This file was deleted.

clients/orders-api-v0/src/api-model/models/fulfillment-location.ts

Lines changed: 0 additions & 26 deletions
This file was deleted.

clients/orders-api-v0/src/api-model/models/fulfillment-plan-constraint-type.ts

Lines changed: 0 additions & 29 deletions
This file was deleted.

clients/orders-api-v0/src/api-model/models/fulfillment-plan-item.ts

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)