Skip to content

Commit 362c6e1

Browse files
bizon-bottusbar
andauthored
feat(clients): update models as of 2025-05-29 (#1507)
Co-authored-by: tusbar <[email protected]>
1 parent 8d62778 commit 362c6e1

File tree

15 files changed

+53
-31
lines changed

15 files changed

+53
-31
lines changed

clients/listings-items-api-2021-08-01/src/api-model/api/listings-items-api.ts

Lines changed: 12 additions & 12 deletions
Large diffs are not rendered by default.

clients/listings-items-api-2021-08-01/src/api-model/models/fulfillment-availability.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
export interface FulfillmentAvailability {
2323
/**
24-
* The code of the fulfillment network that will be used.
24+
* Designates which fulfillment network is used.
2525
* @type {string}
2626
* @memberof FulfillmentAvailability
2727
*/

clients/listings-items-api-2021-08-01/src/api-model/models/issue-exemption.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export interface IssueExemption {
2727
*/
2828
'status': IssueExemptionStatusEnum;
2929
/**
30-
* This field represents the timestamp, following the ISO 8601 format, which specifies the date when temporary exemptions, if applicable, will expire, and Amazon will begin enforcing the listed actions.
30+
* Represents the timestamp, in ISO 8601 format, that specifies the date when the temporary exemptions expires, and Amazon begins enforcing the listed actions.
3131
* @type {string}
3232
* @memberof IssueExemption
3333
*/

clients/listings-items-api-2021-08-01/src/api-model/models/issue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export interface Issue {
4848
*/
4949
'attributeNames'?: Array<string>;
5050
/**
51-
* List of issue categories. Possible vales: * `INVALID_ATTRIBUTE` - Indicating an invalid attribute in the listing. * `MISSING_ATTRIBUTE` - Highlighting a missing attribute in the listing. * `INVALID_IMAGE` - Signifying an invalid image in the listing. * `MISSING_IMAGE` - Noting the absence of an image in the listing. * `INVALID_PRICE` - Pertaining to issues with the listing\'s price-related attributes. * `MISSING_PRICE` - Pointing out the absence of a price attribute in the listing. * `DUPLICATE` - Identifying listings with potential duplicate problems, such as this ASIN potentially being a duplicate of another ASIN. * `QUALIFICATION_REQUIRED` - Indicating that the listing requires qualification-related approval.
51+
* List of issue categories. Possible values: * \'INVALID_ATTRIBUTE\' - Indicating an invalid attribute in the listing. * \'MISSING_ATTRIBUTE\' - Highlighting a missing attribute in the listing. * \'INVALID_IMAGE\' - Signifying an invalid image in the listing. * \'MISSING_IMAGE\' - Noting the absence of an image in the listing. * \'INVALID_PRICE\' - Pertaining to issues with the listing\'s price-related attributes. * \'MISSING_PRICE\' - Pointing out the absence of a price attribute in the listing. * \'DUPLICATE\' - Identifying listings with potential duplicate problems, such as this ASIN potentially being a duplicate of another ASIN. * \'QUALIFICATION_REQUIRED\' - Indicating that the listing requires qualification-related approval.
5252
* @type {Array<string>}
5353
* @memberof Issue
5454
*/

clients/listings-items-api-2021-08-01/src/api-model/models/item-relationship.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import type { ItemVariationTheme } from './item-variation-theme';
1919

2020
/**
21-
* the relationship details for a listing item.
21+
* The relationship details for a listing item.
2222
* @export
2323
* @interface ItemRelationship
2424
*/

clients/listings-items-api-2021-08-01/src/api-model/models/item-search-results.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import type { Pagination } from './pagination';
2727
*/
2828
export interface ItemSearchResults {
2929
/**
30-
* The total number of selling partner listings items found for the search criteria (only results up to the page count limit will be returned per request regardless of the number found). Note: The maximum number of items (SKUs) that can be returned and paged through is 1000.
30+
* The total number of selling partner listings items found for the search criteria (only results up to the page count limit is returned per request regardless of the number found). Note: The maximum number of items (SKUs) that can be returned and paged through is 1000.
3131
* @type {number}
3232
* @memberof ItemSearchResults
3333
*/

clients/listings-items-api-2021-08-01/src/api-model/models/pagination.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
/**
18-
* When a request produces a response that exceeds the `pageSize`, pagination occurs. This means the response is divided into individual pages. To retrieve the next page or the previous page, you must pass the `nextToken` value or the `previousToken` value as the `pageToken` parameter in the next request. When you receive the last page, there will be no `nextToken` key in the pagination object.
18+
* When a request produces a response that exceeds the `pageSize`, pagination occurs. This means the response is divided into individual pages. To retrieve the next page or the previous page, you must pass the `nextToken` value or the `previousToken` value as the `pageToken` parameter in the next request. When you receive the last page, there is no `nextToken` key in the pagination object.
1919
* @export
2020
* @interface Pagination
2121
*/

clients/listings-items-api-2021-08-01/src/api-model/models/patch-operation.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
export interface PatchOperation {
2323
/**
24-
* Type of JSON Patch operation. Supported JSON Patch operations include add, replace, and delete. Refer to [JavaScript Object Notation (JSON) Patch](https://tools.ietf.org/html/rfc6902) for more information.
24+
* Type of JSON Patch operation. Supported JSON Patch operations include `add`, `replace`, `merge` and `delete`. Refer to <https://tools.ietf.org/html/rfc6902>.
2525
* @type {string}
2626
* @memberof PatchOperation
2727
*/
@@ -33,7 +33,7 @@ export interface PatchOperation {
3333
*/
3434
'path': string;
3535
/**
36-
* JSON value to add, replace, or delete.
36+
* JSON value to `add`, `replace`, `merge` or `delete`.
3737
* @type {Array<{ [key: string]: any; }>}
3838
* @memberof PatchOperation
3939
*/
@@ -43,6 +43,7 @@ export interface PatchOperation {
4343
export const PatchOperationOpEnum = {
4444
Add: 'add',
4545
Replace: 'replace',
46+
Merge: 'merge',
4647
Delete: 'delete'
4748
} as const;
4849

clients/product-pricing-api-2022-05-01/src/api-model/models/competitive-summary-request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export interface CompetitiveSummaryRequest {
3636
*/
3737
'asin': string;
3838
/**
39-
* A marketplace identifier. Specifies the marketplace for which data is returned.
39+
* The marketplace ID is the globally unique identifier of a marketplace. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
4040
* @type {string}
4141
* @memberof CompetitiveSummaryRequest
4242
*/

clients/product-pricing-api-2022-05-01/src/api-model/models/competitive-summary-response-body.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export interface CompetitiveSummaryResponseBody {
3636
*/
3737
'asin': string;
3838
/**
39-
* A marketplace identifier. Specifies the marketplace for which data is returned.
39+
* The marketplace ID is the globally unique identifier of a marketplace. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
4040
* @type {string}
4141
* @memberof CompetitiveSummaryResponseBody
4242
*/

0 commit comments

Comments
 (0)