Skip to content

Commit b5df64b

Browse files
bizon-bottusbar
andauthored
feat(clients): update models as of 2025-09-12 (#1584)
Co-authored-by: tusbar <[email protected]>
1 parent 1758490 commit b5df64b

File tree

6 files changed

+0
-224
lines changed

6 files changed

+0
-224
lines changed

clients/fulfillment-inbound-api-2024-03-20/src/api-model/api/fulfillment-inbound-api.ts

Lines changed: 0 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,6 @@ import type { SetPrepDetailsResponse } from '../models';
126126
// @ts-ignore
127127
import type { Shipment } from '../models';
128128
// @ts-ignore
129-
import type { UpdateBoxIdentifiersRequest } from '../models';
130-
// @ts-ignore
131-
import type { UpdateBoxIdentifiersResponse } from '../models';
132-
// @ts-ignore
133129
import type { UpdateInboundPlanNameRequest } from '../models';
134130
// @ts-ignore
135131
import type { UpdateItemComplianceDetailsRequest } from '../models';
@@ -1799,49 +1795,6 @@ export const FulfillmentInboundApiAxiosParamCreator = function (configuration?:
17991795

18001796

18011797

1802-
localVarHeaderParameter['Content-Type'] = 'application/json';
1803-
1804-
setSearchParams(localVarUrlObj, localVarQueryParameter);
1805-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1806-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1807-
localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)
1808-
1809-
return {
1810-
url: toPathString(localVarUrlObj),
1811-
options: localVarRequestOptions,
1812-
};
1813-
},
1814-
/**
1815-
* Update/Add custom identifier to the boxes within a shipment. These custom identifiers are provided by the clients and reflected on the box labels to identify boxes. One example of this custom identifier is the SSCC (Serial Shipping Container Codes) barcodes, with the encoding of GS1-128, which is an industry standard to uniquely identify boxes. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | n | n | 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, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
1816-
* @param {string} inboundPlanId Identifier to an inbound plan.
1817-
* @param {string} shipmentId Identifier to a shipment. A shipment contains the boxes and units being inbounded.
1818-
* @param {UpdateBoxIdentifiersRequest} body The body of the request to &#x60;updateBoxIdentifiers&#x60;.
1819-
* @param {*} [options] Override http request option.
1820-
* @throws {RequiredError}
1821-
*/
1822-
updateBoxIdentifiers: async (inboundPlanId: string, shipmentId: string, body: UpdateBoxIdentifiersRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1823-
// verify required parameter 'inboundPlanId' is not null or undefined
1824-
assertParamExists('updateBoxIdentifiers', 'inboundPlanId', inboundPlanId)
1825-
// verify required parameter 'shipmentId' is not null or undefined
1826-
assertParamExists('updateBoxIdentifiers', 'shipmentId', shipmentId)
1827-
// verify required parameter 'body' is not null or undefined
1828-
assertParamExists('updateBoxIdentifiers', 'body', body)
1829-
const localVarPath = `/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/boxIdentifiers`
1830-
.replace(`{${"inboundPlanId"}}`, encodeURIComponent(String(inboundPlanId)))
1831-
.replace(`{${"shipmentId"}}`, encodeURIComponent(String(shipmentId)));
1832-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
1833-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1834-
let baseOptions;
1835-
if (configuration) {
1836-
baseOptions = configuration.baseOptions;
1837-
}
1838-
1839-
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
1840-
const localVarHeaderParameter = {} as any;
1841-
const localVarQueryParameter = {} as any;
1842-
1843-
1844-
18451798
localVarHeaderParameter['Content-Type'] = 'application/json';
18461799

18471800
setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2621,20 +2574,6 @@ export const FulfillmentInboundApiFp = function(configuration?: Configuration) {
26212574
const localVarOperationServerBasePath = operationServerMap['FulfillmentInboundApi.setPrepDetails']?.[localVarOperationServerIndex]?.url;
26222575
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
26232576
},
2624-
/**
2625-
* Update/Add custom identifier to the boxes within a shipment. These custom identifiers are provided by the clients and reflected on the box labels to identify boxes. One example of this custom identifier is the SSCC (Serial Shipping Container Codes) barcodes, with the encoding of GS1-128, which is an industry standard to uniquely identify boxes. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | n | n | 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, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
2626-
* @param {string} inboundPlanId Identifier to an inbound plan.
2627-
* @param {string} shipmentId Identifier to a shipment. A shipment contains the boxes and units being inbounded.
2628-
* @param {UpdateBoxIdentifiersRequest} body The body of the request to &#x60;updateBoxIdentifiers&#x60;.
2629-
* @param {*} [options] Override http request option.
2630-
* @throws {RequiredError}
2631-
*/
2632-
async updateBoxIdentifiers(inboundPlanId: string, shipmentId: string, body: UpdateBoxIdentifiersRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateBoxIdentifiersResponse>> {
2633-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBoxIdentifiers(inboundPlanId, shipmentId, body, options);
2634-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2635-
const localVarOperationServerBasePath = operationServerMap['FulfillmentInboundApi.updateBoxIdentifiers']?.[localVarOperationServerIndex]?.url;
2636-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2637-
},
26382577
/**
26392578
* Updates the name of an existing inbound plan. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
26402579
* @param {string} inboundPlanId Identifier of an inbound plan.
@@ -3072,15 +3011,6 @@ export const FulfillmentInboundApiFactory = function (configuration?: Configurat
30723011
setPrepDetails(requestParameters: FulfillmentInboundApiSetPrepDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SetPrepDetailsResponse> {
30733012
return localVarFp.setPrepDetails(requestParameters.body, options).then((request) => request(axios, basePath));
30743013
},
3075-
/**
3076-
* Update/Add custom identifier to the boxes within a shipment. These custom identifiers are provided by the clients and reflected on the box labels to identify boxes. One example of this custom identifier is the SSCC (Serial Shipping Container Codes) barcodes, with the encoding of GS1-128, which is an industry standard to uniquely identify boxes. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | n | n | 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, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
3077-
* @param {FulfillmentInboundApiUpdateBoxIdentifiersRequest} requestParameters Request parameters.
3078-
* @param {*} [options] Override http request option.
3079-
* @throws {RequiredError}
3080-
*/
3081-
updateBoxIdentifiers(requestParameters: FulfillmentInboundApiUpdateBoxIdentifiersRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateBoxIdentifiersResponse> {
3082-
return localVarFp.updateBoxIdentifiers(requestParameters.inboundPlanId, requestParameters.shipmentId, requestParameters.body, options).then((request) => request(axios, basePath));
3083-
},
30843014
/**
30853015
* Updates the name of an existing inbound plan. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
30863016
* @param {FulfillmentInboundApiUpdateInboundPlanNameRequest} requestParameters Request parameters.
@@ -3869,26 +3799,6 @@ export interface FulfillmentInboundApiSetPrepDetailsRequest {
38693799
readonly body: SetPrepDetailsRequest
38703800
}
38713801

3872-
/**
3873-
* Request parameters for updateBoxIdentifiers operation in FulfillmentInboundApi.
3874-
*/
3875-
export interface FulfillmentInboundApiUpdateBoxIdentifiersRequest {
3876-
/**
3877-
* Identifier to an inbound plan.
3878-
*/
3879-
readonly inboundPlanId: string
3880-
3881-
/**
3882-
* Identifier to a shipment. A shipment contains the boxes and units being inbounded.
3883-
*/
3884-
readonly shipmentId: string
3885-
3886-
/**
3887-
* The body of the request to &#x60;updateBoxIdentifiers&#x60;.
3888-
*/
3889-
readonly body: UpdateBoxIdentifiersRequest
3890-
}
3891-
38923802
/**
38933803
* Request parameters for updateInboundPlanName operation in FulfillmentInboundApi.
38943804
*/
@@ -4383,16 +4293,6 @@ export class FulfillmentInboundApi extends BaseAPI {
43834293
return FulfillmentInboundApiFp(this.configuration).setPrepDetails(requestParameters.body, options).then((request) => request(this.axios, this.basePath));
43844294
}
43854295

4386-
/**
4387-
* Update/Add custom identifier to the boxes within a shipment. These custom identifiers are provided by the clients and reflected on the box labels to identify boxes. One example of this custom identifier is the SSCC (Serial Shipping Container Codes) barcodes, with the encoding of GS1-128, which is an industry standard to uniquely identify boxes. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | n | n | 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, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
4388-
* @param {FulfillmentInboundApiUpdateBoxIdentifiersRequest} requestParameters Request parameters.
4389-
* @param {*} [options] Override http request option.
4390-
* @throws {RequiredError}
4391-
*/
4392-
public updateBoxIdentifiers(requestParameters: FulfillmentInboundApiUpdateBoxIdentifiersRequest, options?: RawAxiosRequestConfig) {
4393-
return FulfillmentInboundApiFp(this.configuration).updateBoxIdentifiers(requestParameters.inboundPlanId, requestParameters.shipmentId, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
4394-
}
4395-
43964296
/**
43974297
* Updates the name of an existing inbound plan. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 30 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
43984298
* @param {FulfillmentInboundApiUpdateInboundPlanNameRequest} requestParameters Request parameters.

clients/fulfillment-inbound-api-2024-03-20/src/api-model/models/box-identifier-input.ts

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

clients/fulfillment-inbound-api-2024-03-20/src/api-model/models/box-identifier-type.ts

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

clients/fulfillment-inbound-api-2024-03-20/src/api-model/models/index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ export * from './appointment-slot';
55
export * from './appointment-slot-time';
66
export * from './box';
77
export * from './box-content-information-source';
8-
export * from './box-identifier-input';
9-
export * from './box-identifier-type';
108
export * from './box-input';
119
export * from './box-requirements';
1210
export * from './box-update-input';
@@ -128,8 +126,6 @@ export * from './transportation-option';
128126
export * from './transportation-selection';
129127
export * from './unit-of-measurement';
130128
export * from './unit-of-weight';
131-
export * from './update-box-identifiers-request';
132-
export * from './update-box-identifiers-response';
133129
export * from './update-inbound-plan-name-request';
134130
export * from './update-item-compliance-details-request';
135131
export * from './update-item-compliance-details-response';

clients/fulfillment-inbound-api-2024-03-20/src/api-model/models/update-box-identifiers-request.ts

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

clients/fulfillment-inbound-api-2024-03-20/src/api-model/models/update-box-identifiers-response.ts

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

0 commit comments

Comments
 (0)