@sp-api-sdk/catalog-items-api-2022-04-01 1.1.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/src/api-model/api/catalog-api.js +2 -2
- package/dist/cjs/src/api-model/models/{item-dimension.js → dimension.js} +0 -0
- package/dist/cjs/src/api-model/models/{item-dimensions.js → dimensions.js} +0 -0
- package/dist/cjs/src/api-model/models/index.js +2 -2
- package/dist/cjs/src/api-model/models/item-image.js +12 -17
- package/dist/cjs/src/api-model/models/item-relationship.js +4 -9
- package/dist/cjs/src/api-model/models/item-summary-by-marketplace.js +6 -11
- package/dist/cjs/src/api-model/models/item-vendor-details-by-marketplace.js +12 -17
- package/dist/es/src/api-model/api/catalog-api.js +2 -2
- package/dist/es/src/api-model/models/{item-dimension.js → dimension.js} +0 -0
- package/dist/es/src/api-model/models/{item-dimensions.js → dimensions.js} +0 -0
- package/dist/es/src/api-model/models/index.js +2 -2
- package/dist/es/src/api-model/models/item-image.js +12 -17
- package/dist/es/src/api-model/models/item-relationship.js +4 -9
- package/dist/es/src/api-model/models/item-summary-by-marketplace.js +6 -11
- package/dist/es/src/api-model/models/item-vendor-details-by-marketplace.js +12 -17
- package/dist/types/src/api-model/api/catalog-api.d.ts +12 -12
- package/dist/types/src/api-model/base.d.ts +2 -2
- package/dist/types/src/api-model/common.d.ts +7 -7
- package/dist/types/src/api-model/models/brand-refinement.d.ts +2 -2
- package/dist/types/src/api-model/models/classification-refinement.d.ts +3 -3
- package/dist/types/src/api-model/models/{item-dimension.d.ts → dimension.d.ts} +6 -6
- package/dist/types/src/api-model/models/{item-dimensions.d.ts → dimensions.d.ts} +15 -15
- package/dist/types/src/api-model/models/error-list.d.ts +1 -1
- package/dist/types/src/api-model/models/index.d.ts +2 -2
- package/dist/types/src/api-model/models/item-browse-classification.d.ts +2 -2
- package/dist/types/src/api-model/models/item-classification-sales-rank.d.ts +4 -4
- package/dist/types/src/api-model/models/item-dimensions-by-marketplace.d.ts +6 -6
- package/dist/types/src/api-model/models/item-display-group-sales-rank.d.ts +4 -4
- package/dist/types/src/api-model/models/item-identifier.d.ts +2 -2
- package/dist/types/src/api-model/models/item-identifiers-by-marketplace.d.ts +2 -2
- package/dist/types/src/api-model/models/item-image.d.ts +17 -20
- package/dist/types/src/api-model/models/item-images-by-marketplace.d.ts +2 -2
- package/dist/types/src/api-model/models/item-product-type-by-marketplace.d.ts +2 -2
- package/dist/types/src/api-model/models/item-relationship.d.ts +9 -12
- package/dist/types/src/api-model/models/item-relationships-by-marketplace.d.ts +2 -2
- package/dist/types/src/api-model/models/item-sales-ranks-by-marketplace.d.ts +3 -3
- package/dist/types/src/api-model/models/item-search-results.d.ts +4 -4
- package/dist/types/src/api-model/models/item-summary-by-marketplace.d.ts +20 -23
- package/dist/types/src/api-model/models/item-variation-theme.d.ts +2 -2
- package/dist/types/src/api-model/models/item-vendor-details-by-marketplace.d.ts +21 -24
- package/dist/types/src/api-model/models/item-vendor-details-category.d.ts +2 -2
- package/dist/types/src/api-model/models/item.d.ts +12 -12
- package/dist/types/src/api-model/models/model-error.d.ts +3 -3
- package/dist/types/src/api-model/models/pagination.d.ts +2 -2
- package/dist/types/src/api-model/models/refinements.d.ts +2 -2
- package/package.json +4 -4
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export * from './brand-refinement';
|
|
2
2
|
export * from './classification-refinement';
|
|
3
|
+
export * from './dimension';
|
|
4
|
+
export * from './dimensions';
|
|
3
5
|
export * from './error-list';
|
|
4
6
|
export * from './item';
|
|
5
7
|
export * from './item-browse-classification';
|
|
6
8
|
export * from './item-classification-sales-rank';
|
|
7
|
-
export * from './item-dimension';
|
|
8
|
-
export * from './item-dimensions';
|
|
9
9
|
export * from './item-dimensions-by-marketplace';
|
|
10
10
|
export * from './item-display-group-sales-rank';
|
|
11
11
|
export * from './item-identifier';
|
|
@@ -20,11 +20,11 @@ export interface ItemBrowseClassification {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ItemBrowseClassification
|
|
22
22
|
*/
|
|
23
|
-
displayName: string;
|
|
23
|
+
'displayName': string;
|
|
24
24
|
/**
|
|
25
25
|
* Identifier of the classification (browse node identifier).
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ItemBrowseClassification
|
|
28
28
|
*/
|
|
29
|
-
classificationId: string;
|
|
29
|
+
'classificationId': string;
|
|
30
30
|
}
|
|
@@ -20,23 +20,23 @@ export interface ItemClassificationSalesRank {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ItemClassificationSalesRank
|
|
22
22
|
*/
|
|
23
|
-
classificationId: string;
|
|
23
|
+
'classificationId': string;
|
|
24
24
|
/**
|
|
25
25
|
* Title, or name, of the sales rank.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ItemClassificationSalesRank
|
|
28
28
|
*/
|
|
29
|
-
title: string;
|
|
29
|
+
'title': string;
|
|
30
30
|
/**
|
|
31
31
|
* Corresponding Amazon retail website link, or URL, for the sales rank.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof ItemClassificationSalesRank
|
|
34
34
|
*/
|
|
35
|
-
link?: string;
|
|
35
|
+
'link'?: string;
|
|
36
36
|
/**
|
|
37
37
|
* Sales rank value.
|
|
38
38
|
* @type {number}
|
|
39
39
|
* @memberof ItemClassificationSalesRank
|
|
40
40
|
*/
|
|
41
|
-
rank: number;
|
|
41
|
+
'rank': number;
|
|
42
42
|
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { Dimensions } from './dimensions';
|
|
13
13
|
/**
|
|
14
14
|
* Dimensions associated with the item in the Amazon catalog for the indicated Amazon marketplace.
|
|
15
15
|
* @export
|
|
@@ -21,17 +21,17 @@ export interface ItemDimensionsByMarketplace {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ItemDimensionsByMarketplace
|
|
23
23
|
*/
|
|
24
|
-
marketplaceId: string;
|
|
24
|
+
'marketplaceId': string;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {Dimensions}
|
|
28
28
|
* @memberof ItemDimensionsByMarketplace
|
|
29
29
|
*/
|
|
30
|
-
item?:
|
|
30
|
+
'item'?: Dimensions;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Dimensions}
|
|
34
34
|
* @memberof ItemDimensionsByMarketplace
|
|
35
35
|
*/
|
|
36
|
-
|
|
36
|
+
'package'?: Dimensions;
|
|
37
37
|
}
|
|
@@ -20,23 +20,23 @@ export interface ItemDisplayGroupSalesRank {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ItemDisplayGroupSalesRank
|
|
22
22
|
*/
|
|
23
|
-
websiteDisplayGroup: string;
|
|
23
|
+
'websiteDisplayGroup': string;
|
|
24
24
|
/**
|
|
25
25
|
* Title, or name, of the sales rank.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ItemDisplayGroupSalesRank
|
|
28
28
|
*/
|
|
29
|
-
title: string;
|
|
29
|
+
'title': string;
|
|
30
30
|
/**
|
|
31
31
|
* Corresponding Amazon retail website link, or URL, for the sales rank.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof ItemDisplayGroupSalesRank
|
|
34
34
|
*/
|
|
35
|
-
link?: string;
|
|
35
|
+
'link'?: string;
|
|
36
36
|
/**
|
|
37
37
|
* Sales rank value.
|
|
38
38
|
* @type {number}
|
|
39
39
|
* @memberof ItemDisplayGroupSalesRank
|
|
40
40
|
*/
|
|
41
|
-
rank: number;
|
|
41
|
+
'rank': number;
|
|
42
42
|
}
|
|
@@ -20,11 +20,11 @@ export interface ItemIdentifier {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ItemIdentifier
|
|
22
22
|
*/
|
|
23
|
-
identifierType: string;
|
|
23
|
+
'identifierType': string;
|
|
24
24
|
/**
|
|
25
25
|
* Identifier.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ItemIdentifier
|
|
28
28
|
*/
|
|
29
|
-
identifier: string;
|
|
29
|
+
'identifier': string;
|
|
30
30
|
}
|
|
@@ -21,11 +21,11 @@ export interface ItemIdentifiersByMarketplace {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ItemIdentifiersByMarketplace
|
|
23
23
|
*/
|
|
24
|
-
marketplaceId: string;
|
|
24
|
+
'marketplaceId': string;
|
|
25
25
|
/**
|
|
26
26
|
* Identifiers associated with the item in the Amazon catalog for the indicated Amazon marketplace.
|
|
27
27
|
* @type {Array<ItemIdentifier>}
|
|
28
28
|
* @memberof ItemIdentifiersByMarketplace
|
|
29
29
|
*/
|
|
30
|
-
identifiers: Array<ItemIdentifier>;
|
|
30
|
+
'identifiers': Array<ItemIdentifier>;
|
|
31
31
|
}
|
|
@@ -20,39 +20,36 @@ export interface ItemImage {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ItemImage
|
|
22
22
|
*/
|
|
23
|
-
variant: ItemImageVariantEnum;
|
|
23
|
+
'variant': ItemImageVariantEnum;
|
|
24
24
|
/**
|
|
25
25
|
* Link, or URL, for the image.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ItemImage
|
|
28
28
|
*/
|
|
29
|
-
link: string;
|
|
29
|
+
'link': string;
|
|
30
30
|
/**
|
|
31
31
|
* Height of the image in pixels.
|
|
32
32
|
* @type {number}
|
|
33
33
|
* @memberof ItemImage
|
|
34
34
|
*/
|
|
35
|
-
height: number;
|
|
35
|
+
'height': number;
|
|
36
36
|
/**
|
|
37
37
|
* Width of the image in pixels.
|
|
38
38
|
* @type {number}
|
|
39
39
|
* @memberof ItemImage
|
|
40
40
|
*/
|
|
41
|
-
width: number;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* @export
|
|
45
|
-
* @enum {string}
|
|
46
|
-
*/
|
|
47
|
-
export declare enum ItemImageVariantEnum {
|
|
48
|
-
Main = "MAIN",
|
|
49
|
-
Pt01 = "PT01",
|
|
50
|
-
Pt02 = "PT02",
|
|
51
|
-
Pt03 = "PT03",
|
|
52
|
-
Pt04 = "PT04",
|
|
53
|
-
Pt05 = "PT05",
|
|
54
|
-
Pt06 = "PT06",
|
|
55
|
-
Pt07 = "PT07",
|
|
56
|
-
Pt08 = "PT08",
|
|
57
|
-
Swch = "SWCH"
|
|
41
|
+
'width': number;
|
|
58
42
|
}
|
|
43
|
+
export declare const ItemImageVariantEnum: {
|
|
44
|
+
readonly Main: "MAIN";
|
|
45
|
+
readonly Pt01: "PT01";
|
|
46
|
+
readonly Pt02: "PT02";
|
|
47
|
+
readonly Pt03: "PT03";
|
|
48
|
+
readonly Pt04: "PT04";
|
|
49
|
+
readonly Pt05: "PT05";
|
|
50
|
+
readonly Pt06: "PT06";
|
|
51
|
+
readonly Pt07: "PT07";
|
|
52
|
+
readonly Pt08: "PT08";
|
|
53
|
+
readonly Swch: "SWCH";
|
|
54
|
+
};
|
|
55
|
+
export declare type ItemImageVariantEnum = typeof ItemImageVariantEnum[keyof typeof ItemImageVariantEnum];
|
|
@@ -21,11 +21,11 @@ export interface ItemImagesByMarketplace {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ItemImagesByMarketplace
|
|
23
23
|
*/
|
|
24
|
-
marketplaceId: string;
|
|
24
|
+
'marketplaceId': string;
|
|
25
25
|
/**
|
|
26
26
|
* Images for an item in the Amazon catalog for the indicated Amazon marketplace.
|
|
27
27
|
* @type {Array<ItemImage>}
|
|
28
28
|
* @memberof ItemImagesByMarketplace
|
|
29
29
|
*/
|
|
30
|
-
images: Array<ItemImage>;
|
|
30
|
+
'images': Array<ItemImage>;
|
|
31
31
|
}
|
|
@@ -20,11 +20,11 @@ export interface ItemProductTypeByMarketplace {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ItemProductTypeByMarketplace
|
|
22
22
|
*/
|
|
23
|
-
marketplaceId?: string;
|
|
23
|
+
'marketplaceId'?: string;
|
|
24
24
|
/**
|
|
25
25
|
* Name of the product type associated with the Amazon catalog item.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ItemProductTypeByMarketplace
|
|
28
28
|
*/
|
|
29
|
-
productType?: string;
|
|
29
|
+
'productType'?: string;
|
|
30
30
|
}
|
|
@@ -21,31 +21,28 @@ export interface ItemRelationship {
|
|
|
21
21
|
* @type {Array<string>}
|
|
22
22
|
* @memberof ItemRelationship
|
|
23
23
|
*/
|
|
24
|
-
childAsins?: Array<string>;
|
|
24
|
+
'childAsins'?: Array<string>;
|
|
25
25
|
/**
|
|
26
26
|
* Identifiers (ASINs) of the related items that are parents of this item.
|
|
27
27
|
* @type {Array<string>}
|
|
28
28
|
* @memberof ItemRelationship
|
|
29
29
|
*/
|
|
30
|
-
parentAsins?: Array<string>;
|
|
30
|
+
'parentAsins'?: Array<string>;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {ItemVariationTheme}
|
|
34
34
|
* @memberof ItemRelationship
|
|
35
35
|
*/
|
|
36
|
-
variationTheme?: ItemVariationTheme;
|
|
36
|
+
'variationTheme'?: ItemVariationTheme;
|
|
37
37
|
/**
|
|
38
38
|
* Type of relationship.
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof ItemRelationship
|
|
41
41
|
*/
|
|
42
|
-
type: ItemRelationshipTypeEnum;
|
|
43
|
-
}
|
|
44
|
-
/**
|
|
45
|
-
* @export
|
|
46
|
-
* @enum {string}
|
|
47
|
-
*/
|
|
48
|
-
export declare enum ItemRelationshipTypeEnum {
|
|
49
|
-
Variation = "VARIATION",
|
|
50
|
-
PackageHierarchy = "PACKAGE_HIERARCHY"
|
|
42
|
+
'type': ItemRelationshipTypeEnum;
|
|
51
43
|
}
|
|
44
|
+
export declare const ItemRelationshipTypeEnum: {
|
|
45
|
+
readonly Variation: "VARIATION";
|
|
46
|
+
readonly PackageHierarchy: "PACKAGE_HIERARCHY";
|
|
47
|
+
};
|
|
48
|
+
export declare type ItemRelationshipTypeEnum = typeof ItemRelationshipTypeEnum[keyof typeof ItemRelationshipTypeEnum];
|
|
@@ -21,11 +21,11 @@ export interface ItemRelationshipsByMarketplace {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ItemRelationshipsByMarketplace
|
|
23
23
|
*/
|
|
24
|
-
marketplaceId: string;
|
|
24
|
+
'marketplaceId': string;
|
|
25
25
|
/**
|
|
26
26
|
* Relationships for the item.
|
|
27
27
|
* @type {Array<ItemRelationship>}
|
|
28
28
|
* @memberof ItemRelationshipsByMarketplace
|
|
29
29
|
*/
|
|
30
|
-
relationships: Array<ItemRelationship>;
|
|
30
|
+
'relationships': Array<ItemRelationship>;
|
|
31
31
|
}
|
|
@@ -22,17 +22,17 @@ export interface ItemSalesRanksByMarketplace {
|
|
|
22
22
|
* @type {string}
|
|
23
23
|
* @memberof ItemSalesRanksByMarketplace
|
|
24
24
|
*/
|
|
25
|
-
marketplaceId: string;
|
|
25
|
+
'marketplaceId': string;
|
|
26
26
|
/**
|
|
27
27
|
* Sales ranks of an Amazon catalog item for an Amazon marketplace by classification.
|
|
28
28
|
* @type {Array<ItemClassificationSalesRank>}
|
|
29
29
|
* @memberof ItemSalesRanksByMarketplace
|
|
30
30
|
*/
|
|
31
|
-
classificationRanks?: Array<ItemClassificationSalesRank>;
|
|
31
|
+
'classificationRanks'?: Array<ItemClassificationSalesRank>;
|
|
32
32
|
/**
|
|
33
33
|
* Sales ranks of an Amazon catalog item for an Amazon marketplace by website display group.
|
|
34
34
|
* @type {Array<ItemDisplayGroupSalesRank>}
|
|
35
35
|
* @memberof ItemSalesRanksByMarketplace
|
|
36
36
|
*/
|
|
37
|
-
displayGroupRanks?: Array<ItemDisplayGroupSalesRank>;
|
|
37
|
+
'displayGroupRanks'?: Array<ItemDisplayGroupSalesRank>;
|
|
38
38
|
}
|
|
@@ -23,23 +23,23 @@ export interface ItemSearchResults {
|
|
|
23
23
|
* @type {number}
|
|
24
24
|
* @memberof ItemSearchResults
|
|
25
25
|
*/
|
|
26
|
-
numberOfResults: number;
|
|
26
|
+
'numberOfResults': number;
|
|
27
27
|
/**
|
|
28
28
|
*
|
|
29
29
|
* @type {Pagination}
|
|
30
30
|
* @memberof ItemSearchResults
|
|
31
31
|
*/
|
|
32
|
-
pagination: Pagination;
|
|
32
|
+
'pagination': Pagination;
|
|
33
33
|
/**
|
|
34
34
|
*
|
|
35
35
|
* @type {Refinements}
|
|
36
36
|
* @memberof ItemSearchResults
|
|
37
37
|
*/
|
|
38
|
-
refinements: Refinements;
|
|
38
|
+
'refinements': Refinements;
|
|
39
39
|
/**
|
|
40
40
|
* A list of items from the Amazon catalog.
|
|
41
41
|
* @type {Array<Item>}
|
|
42
42
|
* @memberof ItemSearchResults
|
|
43
43
|
*/
|
|
44
|
-
items: Array<Item>;
|
|
44
|
+
'items': Array<Item>;
|
|
45
45
|
}
|
|
@@ -21,87 +21,84 @@ export interface ItemSummaryByMarketplace {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ItemSummaryByMarketplace
|
|
23
23
|
*/
|
|
24
|
-
marketplaceId: string;
|
|
24
|
+
'marketplaceId': string;
|
|
25
25
|
/**
|
|
26
26
|
* Name of the brand associated with an Amazon catalog item.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof ItemSummaryByMarketplace
|
|
29
29
|
*/
|
|
30
|
-
brand?: string;
|
|
30
|
+
'brand'?: string;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {ItemBrowseClassification}
|
|
34
34
|
* @memberof ItemSummaryByMarketplace
|
|
35
35
|
*/
|
|
36
|
-
browseClassification?: ItemBrowseClassification;
|
|
36
|
+
'browseClassification'?: ItemBrowseClassification;
|
|
37
37
|
/**
|
|
38
38
|
* Name of the color associated with an Amazon catalog item.
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof ItemSummaryByMarketplace
|
|
41
41
|
*/
|
|
42
|
-
color?: string;
|
|
42
|
+
'color'?: string;
|
|
43
43
|
/**
|
|
44
44
|
* Classification type associated with the Amazon catalog item.
|
|
45
45
|
* @type {string}
|
|
46
46
|
* @memberof ItemSummaryByMarketplace
|
|
47
47
|
*/
|
|
48
|
-
itemClassification?: ItemSummaryByMarketplaceItemClassificationEnum;
|
|
48
|
+
'itemClassification'?: ItemSummaryByMarketplaceItemClassificationEnum;
|
|
49
49
|
/**
|
|
50
50
|
* Name, or title, associated with an Amazon catalog item.
|
|
51
51
|
* @type {string}
|
|
52
52
|
* @memberof ItemSummaryByMarketplace
|
|
53
53
|
*/
|
|
54
|
-
itemName?: string;
|
|
54
|
+
'itemName'?: string;
|
|
55
55
|
/**
|
|
56
56
|
* Name of the manufacturer associated with an Amazon catalog item.
|
|
57
57
|
* @type {string}
|
|
58
58
|
* @memberof ItemSummaryByMarketplace
|
|
59
59
|
*/
|
|
60
|
-
manufacturer?: string;
|
|
60
|
+
'manufacturer'?: string;
|
|
61
61
|
/**
|
|
62
62
|
* Model number associated with an Amazon catalog item.
|
|
63
63
|
* @type {string}
|
|
64
64
|
* @memberof ItemSummaryByMarketplace
|
|
65
65
|
*/
|
|
66
|
-
modelNumber?: string;
|
|
66
|
+
'modelNumber'?: string;
|
|
67
67
|
/**
|
|
68
68
|
* Quantity of an Amazon catalog item in one package.
|
|
69
69
|
* @type {number}
|
|
70
70
|
* @memberof ItemSummaryByMarketplace
|
|
71
71
|
*/
|
|
72
|
-
packageQuantity?: number;
|
|
72
|
+
'packageQuantity'?: number;
|
|
73
73
|
/**
|
|
74
74
|
* Part number associated with an Amazon catalog item.
|
|
75
75
|
* @type {string}
|
|
76
76
|
* @memberof ItemSummaryByMarketplace
|
|
77
77
|
*/
|
|
78
|
-
partNumber?: string;
|
|
78
|
+
'partNumber'?: string;
|
|
79
79
|
/**
|
|
80
80
|
* Name of the size associated with an Amazon catalog item.
|
|
81
81
|
* @type {string}
|
|
82
82
|
* @memberof ItemSummaryByMarketplace
|
|
83
83
|
*/
|
|
84
|
-
size?: string;
|
|
84
|
+
'size'?: string;
|
|
85
85
|
/**
|
|
86
86
|
* Name of the style associated with an Amazon catalog item.
|
|
87
87
|
* @type {string}
|
|
88
88
|
* @memberof ItemSummaryByMarketplace
|
|
89
89
|
*/
|
|
90
|
-
style?: string;
|
|
90
|
+
'style'?: string;
|
|
91
91
|
/**
|
|
92
92
|
* Name of the website display group associated with an Amazon catalog item.
|
|
93
93
|
* @type {string}
|
|
94
94
|
* @memberof ItemSummaryByMarketplace
|
|
95
95
|
*/
|
|
96
|
-
websiteDisplayGroup?: string;
|
|
97
|
-
}
|
|
98
|
-
/**
|
|
99
|
-
* @export
|
|
100
|
-
* @enum {string}
|
|
101
|
-
*/
|
|
102
|
-
export declare enum ItemSummaryByMarketplaceItemClassificationEnum {
|
|
103
|
-
BaseProduct = "BASE_PRODUCT",
|
|
104
|
-
Other = "OTHER",
|
|
105
|
-
ProductBundle = "PRODUCT_BUNDLE",
|
|
106
|
-
VariationParent = "VARIATION_PARENT"
|
|
96
|
+
'websiteDisplayGroup'?: string;
|
|
107
97
|
}
|
|
98
|
+
export declare const ItemSummaryByMarketplaceItemClassificationEnum: {
|
|
99
|
+
readonly BaseProduct: "BASE_PRODUCT";
|
|
100
|
+
readonly Other: "OTHER";
|
|
101
|
+
readonly ProductBundle: "PRODUCT_BUNDLE";
|
|
102
|
+
readonly VariationParent: "VARIATION_PARENT";
|
|
103
|
+
};
|
|
104
|
+
export declare type ItemSummaryByMarketplaceItemClassificationEnum = typeof ItemSummaryByMarketplaceItemClassificationEnum[keyof typeof ItemSummaryByMarketplaceItemClassificationEnum];
|
|
@@ -20,11 +20,11 @@ export interface ItemVariationTheme {
|
|
|
20
20
|
* @type {Array<string>}
|
|
21
21
|
* @memberof ItemVariationTheme
|
|
22
22
|
*/
|
|
23
|
-
attributes?: Array<string>;
|
|
23
|
+
'attributes'?: Array<string>;
|
|
24
24
|
/**
|
|
25
25
|
* Variation theme indicating the combination of Amazon item catalog attributes that define the variation family.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ItemVariationTheme
|
|
28
28
|
*/
|
|
29
|
-
theme?: string;
|
|
29
|
+
'theme'?: string;
|
|
30
30
|
}
|
|
@@ -21,63 +21,60 @@ export interface ItemVendorDetailsByMarketplace {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ItemVendorDetailsByMarketplace
|
|
23
23
|
*/
|
|
24
|
-
marketplaceId: string;
|
|
24
|
+
'marketplaceId': string;
|
|
25
25
|
/**
|
|
26
26
|
* Brand code associated with an Amazon catalog item.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof ItemVendorDetailsByMarketplace
|
|
29
29
|
*/
|
|
30
|
-
brandCode?: string;
|
|
30
|
+
'brandCode'?: string;
|
|
31
31
|
/**
|
|
32
32
|
* Manufacturer code associated with an Amazon catalog item.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof ItemVendorDetailsByMarketplace
|
|
35
35
|
*/
|
|
36
|
-
manufacturerCode?: string;
|
|
36
|
+
'manufacturerCode'?: string;
|
|
37
37
|
/**
|
|
38
38
|
* Parent vendor code of the manufacturer code.
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof ItemVendorDetailsByMarketplace
|
|
41
41
|
*/
|
|
42
|
-
manufacturerCodeParent?: string;
|
|
42
|
+
'manufacturerCodeParent'?: string;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {ItemVendorDetailsCategory}
|
|
46
46
|
* @memberof ItemVendorDetailsByMarketplace
|
|
47
47
|
*/
|
|
48
|
-
productCategory?: ItemVendorDetailsCategory;
|
|
48
|
+
'productCategory'?: ItemVendorDetailsCategory;
|
|
49
49
|
/**
|
|
50
50
|
* Product group associated with an Amazon catalog item.
|
|
51
51
|
* @type {string}
|
|
52
52
|
* @memberof ItemVendorDetailsByMarketplace
|
|
53
53
|
*/
|
|
54
|
-
productGroup?: string;
|
|
54
|
+
'productGroup'?: string;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
57
|
* @type {ItemVendorDetailsCategory}
|
|
58
58
|
* @memberof ItemVendorDetailsByMarketplace
|
|
59
59
|
*/
|
|
60
|
-
productSubcategory?: ItemVendorDetailsCategory;
|
|
60
|
+
'productSubcategory'?: ItemVendorDetailsCategory;
|
|
61
61
|
/**
|
|
62
62
|
* Replenishment category associated with an Amazon catalog item.
|
|
63
63
|
* @type {string}
|
|
64
64
|
* @memberof ItemVendorDetailsByMarketplace
|
|
65
65
|
*/
|
|
66
|
-
replenishmentCategory?: ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum;
|
|
67
|
-
}
|
|
68
|
-
/**
|
|
69
|
-
* @export
|
|
70
|
-
* @enum {string}
|
|
71
|
-
*/
|
|
72
|
-
export declare enum ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum {
|
|
73
|
-
Allocated = "ALLOCATED",
|
|
74
|
-
BasicReplenishment = "BASIC_REPLENISHMENT",
|
|
75
|
-
InSeason = "IN_SEASON",
|
|
76
|
-
LimitedReplenishment = "LIMITED_REPLENISHMENT",
|
|
77
|
-
ManufacturerOutOfStock = "MANUFACTURER_OUT_OF_STOCK",
|
|
78
|
-
NewProduct = "NEW_PRODUCT",
|
|
79
|
-
NonReplenishable = "NON_REPLENISHABLE",
|
|
80
|
-
NonStockupable = "NON_STOCKUPABLE",
|
|
81
|
-
Obsolete = "OBSOLETE",
|
|
82
|
-
PlannedReplenishment = "PLANNED_REPLENISHMENT"
|
|
66
|
+
'replenishmentCategory'?: ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum;
|
|
83
67
|
}
|
|
68
|
+
export declare const ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum: {
|
|
69
|
+
readonly Allocated: "ALLOCATED";
|
|
70
|
+
readonly BasicReplenishment: "BASIC_REPLENISHMENT";
|
|
71
|
+
readonly InSeason: "IN_SEASON";
|
|
72
|
+
readonly LimitedReplenishment: "LIMITED_REPLENISHMENT";
|
|
73
|
+
readonly ManufacturerOutOfStock: "MANUFACTURER_OUT_OF_STOCK";
|
|
74
|
+
readonly NewProduct: "NEW_PRODUCT";
|
|
75
|
+
readonly NonReplenishable: "NON_REPLENISHABLE";
|
|
76
|
+
readonly NonStockupable: "NON_STOCKUPABLE";
|
|
77
|
+
readonly Obsolete: "OBSOLETE";
|
|
78
|
+
readonly PlannedReplenishment: "PLANNED_REPLENISHMENT";
|
|
79
|
+
};
|
|
80
|
+
export declare type ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum = typeof ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum[keyof typeof ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum];
|
|
@@ -20,11 +20,11 @@ export interface ItemVendorDetailsCategory {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ItemVendorDetailsCategory
|
|
22
22
|
*/
|
|
23
|
-
displayName?: string;
|
|
23
|
+
'displayName'?: string;
|
|
24
24
|
/**
|
|
25
25
|
* Value (code) of the product category or subcategory.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ItemVendorDetailsCategory
|
|
28
28
|
*/
|
|
29
|
-
value?: string;
|
|
29
|
+
'value'?: string;
|
|
30
30
|
}
|
|
@@ -28,59 +28,59 @@ export interface Item {
|
|
|
28
28
|
* @type {string}
|
|
29
29
|
* @memberof Item
|
|
30
30
|
*/
|
|
31
|
-
asin: string;
|
|
31
|
+
'asin': string;
|
|
32
32
|
/**
|
|
33
33
|
* A JSON object that contains structured item attribute data keyed by attribute name. Catalog item attributes conform to the related product type definitions available in the Selling Partner API for Product Type Definitions.
|
|
34
34
|
* @type {object}
|
|
35
35
|
* @memberof Item
|
|
36
36
|
*/
|
|
37
|
-
attributes?: object;
|
|
37
|
+
'attributes'?: object;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
40
|
-
* @type {ItemDimensionsByMarketplace}
|
|
39
|
+
* Array of dimensions associated with the item in the Amazon catalog by Amazon marketplace.
|
|
40
|
+
* @type {Array<ItemDimensionsByMarketplace>}
|
|
41
41
|
* @memberof Item
|
|
42
42
|
*/
|
|
43
|
-
dimensions?: ItemDimensionsByMarketplace
|
|
43
|
+
'dimensions'?: Array<ItemDimensionsByMarketplace>;
|
|
44
44
|
/**
|
|
45
45
|
* Identifiers associated with the item in the Amazon catalog, such as UPC and EAN identifiers.
|
|
46
46
|
* @type {Array<ItemIdentifiersByMarketplace>}
|
|
47
47
|
* @memberof Item
|
|
48
48
|
*/
|
|
49
|
-
identifiers?: Array<ItemIdentifiersByMarketplace>;
|
|
49
|
+
'identifiers'?: Array<ItemIdentifiersByMarketplace>;
|
|
50
50
|
/**
|
|
51
51
|
* Images for an item in the Amazon catalog.
|
|
52
52
|
* @type {Array<ItemImagesByMarketplace>}
|
|
53
53
|
* @memberof Item
|
|
54
54
|
*/
|
|
55
|
-
images?: Array<ItemImagesByMarketplace>;
|
|
55
|
+
'images'?: Array<ItemImagesByMarketplace>;
|
|
56
56
|
/**
|
|
57
57
|
* Product types associated with the Amazon catalog item.
|
|
58
58
|
* @type {Array<ItemProductTypeByMarketplace>}
|
|
59
59
|
* @memberof Item
|
|
60
60
|
*/
|
|
61
|
-
productTypes?: Array<ItemProductTypeByMarketplace>;
|
|
61
|
+
'productTypes'?: Array<ItemProductTypeByMarketplace>;
|
|
62
62
|
/**
|
|
63
63
|
* Relationships by marketplace for an Amazon catalog item (for example, variations).
|
|
64
64
|
* @type {Array<ItemRelationshipsByMarketplace>}
|
|
65
65
|
* @memberof Item
|
|
66
66
|
*/
|
|
67
|
-
relationships?: Array<ItemRelationshipsByMarketplace>;
|
|
67
|
+
'relationships'?: Array<ItemRelationshipsByMarketplace>;
|
|
68
68
|
/**
|
|
69
69
|
* Sales ranks of an Amazon catalog item.
|
|
70
70
|
* @type {Array<ItemSalesRanksByMarketplace>}
|
|
71
71
|
* @memberof Item
|
|
72
72
|
*/
|
|
73
|
-
salesRanks?: Array<ItemSalesRanksByMarketplace>;
|
|
73
|
+
'salesRanks'?: Array<ItemSalesRanksByMarketplace>;
|
|
74
74
|
/**
|
|
75
75
|
* Summary details of an Amazon catalog item.
|
|
76
76
|
* @type {Array<ItemSummaryByMarketplace>}
|
|
77
77
|
* @memberof Item
|
|
78
78
|
*/
|
|
79
|
-
summaries?: Array<ItemSummaryByMarketplace>;
|
|
79
|
+
'summaries'?: Array<ItemSummaryByMarketplace>;
|
|
80
80
|
/**
|
|
81
81
|
* Vendor details associated with an Amazon catalog item. Vendor details are available to vendors only.
|
|
82
82
|
* @type {Array<ItemVendorDetailsByMarketplace>}
|
|
83
83
|
* @memberof Item
|
|
84
84
|
*/
|
|
85
|
-
vendorDetails?: Array<ItemVendorDetailsByMarketplace>;
|
|
85
|
+
'vendorDetails'?: Array<ItemVendorDetailsByMarketplace>;
|
|
86
86
|
}
|
|
@@ -20,17 +20,17 @@ export interface ModelError {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ModelError
|
|
22
22
|
*/
|
|
23
|
-
code: string;
|
|
23
|
+
'code': string;
|
|
24
24
|
/**
|
|
25
25
|
* A message that describes the error condition.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ModelError
|
|
28
28
|
*/
|
|
29
|
-
message: string;
|
|
29
|
+
'message': string;
|
|
30
30
|
/**
|
|
31
31
|
* Additional details that can help the caller understand or fix the issue.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof ModelError
|
|
34
34
|
*/
|
|
35
|
-
details?: string;
|
|
35
|
+
'details'?: string;
|
|
36
36
|
}
|