@sp-api-sdk/catalog-items-api-2022-04-01 4.0.1 → 4.1.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.
Files changed (44) hide show
  1. package/dist/cjs/api-model/api/catalog-items-api.js +8 -25
  2. package/dist/cjs/api-model/base.js +0 -19
  3. package/dist/cjs/api-model/common.js +0 -37
  4. package/dist/cjs/api-model/configuration.js +0 -17
  5. package/dist/cjs/client.js +4 -4
  6. package/dist/es/api-model/api/catalog-items-api.js +8 -25
  7. package/dist/es/api-model/base.js +0 -19
  8. package/dist/es/api-model/common.js +0 -37
  9. package/dist/es/api-model/configuration.js +0 -17
  10. package/dist/es/client.js +4 -4
  11. package/dist/types/api-model/api/catalog-items-api.d.ts +8 -61
  12. package/dist/types/api-model/base.d.ts +0 -24
  13. package/dist/types/api-model/common.d.ts +0 -37
  14. package/dist/types/api-model/configuration.d.ts +0 -17
  15. package/dist/types/api-model/models/brand-refinement.d.ts +0 -6
  16. package/dist/types/api-model/models/classification-refinement.d.ts +0 -8
  17. package/dist/types/api-model/models/dimension.d.ts +0 -6
  18. package/dist/types/api-model/models/dimensions.d.ts +0 -22
  19. package/dist/types/api-model/models/error-list.d.ts +0 -7
  20. package/dist/types/api-model/models/item-browse-classification.d.ts +0 -11
  21. package/dist/types/api-model/models/item-browse-classifications-by-marketplace.d.ts +0 -6
  22. package/dist/types/api-model/models/item-classification-sales-rank.d.ts +0 -10
  23. package/dist/types/api-model/models/item-contributor-role.d.ts +0 -6
  24. package/dist/types/api-model/models/item-contributor.d.ts +0 -9
  25. package/dist/types/api-model/models/item-dimensions-by-marketplace.d.ts +0 -14
  26. package/dist/types/api-model/models/item-display-group-sales-rank.d.ts +0 -10
  27. package/dist/types/api-model/models/item-identifier.d.ts +0 -6
  28. package/dist/types/api-model/models/item-identifiers-by-marketplace.d.ts +0 -6
  29. package/dist/types/api-model/models/item-image.d.ts +0 -10
  30. package/dist/types/api-model/models/item-images-by-marketplace.d.ts +0 -6
  31. package/dist/types/api-model/models/item-product-type-by-marketplace.d.ts +0 -6
  32. package/dist/types/api-model/models/item-relationship.d.ts +0 -13
  33. package/dist/types/api-model/models/item-relationships-by-marketplace.d.ts +0 -6
  34. package/dist/types/api-model/models/item-sales-ranks-by-marketplace.d.ts +0 -8
  35. package/dist/types/api-model/models/item-search-results.d.ts +0 -16
  36. package/dist/types/api-model/models/item-summary-by-marketplace.d.ts +0 -45
  37. package/dist/types/api-model/models/item-variation-theme.d.ts +0 -6
  38. package/dist/types/api-model/models/item-vendor-details-by-marketplace.d.ts +0 -24
  39. package/dist/types/api-model/models/item-vendor-details-category.d.ts +0 -6
  40. package/dist/types/api-model/models/item.d.ts +1 -25
  41. package/dist/types/api-model/models/model-error.d.ts +0 -8
  42. package/dist/types/api-model/models/pagination.d.ts +0 -6
  43. package/dist/types/api-model/models/refinements.d.ts +0 -6
  44. package/package.json +25 -4
@@ -11,32 +11,22 @@
11
11
  */
12
12
  /**
13
13
  * Sales rank of an Amazon catalog item.
14
- * @export
15
- * @interface ItemClassificationSalesRank
16
14
  */
17
15
  export interface ItemClassificationSalesRank {
18
16
  /**
19
17
  * Identifier of the classification that is associated with the sales rank.
20
- * @type {string}
21
- * @memberof ItemClassificationSalesRank
22
18
  */
23
19
  'classificationId': string;
24
20
  /**
25
21
  * Name of the sales rank.
26
- * @type {string}
27
- * @memberof ItemClassificationSalesRank
28
22
  */
29
23
  'title': string;
30
24
  /**
31
25
  * Corresponding Amazon retail website URL for the sales category.
32
- * @type {string}
33
- * @memberof ItemClassificationSalesRank
34
26
  */
35
27
  'link'?: string;
36
28
  /**
37
29
  * Sales rank.
38
- * @type {number}
39
- * @memberof ItemClassificationSalesRank
40
30
  */
41
31
  'rank': number;
42
32
  }
@@ -11,20 +11,14 @@
11
11
  */
12
12
  /**
13
13
  * Role of an individual contributor in the creation of an item, such as author or actor.
14
- * @export
15
- * @interface ItemContributorRole
16
14
  */
17
15
  export interface ItemContributorRole {
18
16
  /**
19
17
  * Display name of the role in the requested locale, such as `Author` or `Actor`.
20
- * @type {string}
21
- * @memberof ItemContributorRole
22
18
  */
23
19
  'displayName'?: string;
24
20
  /**
25
21
  * Role value for the Amazon catalog item, such as `author` or `actor`.
26
- * @type {string}
27
- * @memberof ItemContributorRole
28
22
  */
29
23
  'value': string;
30
24
  }
@@ -12,20 +12,11 @@
12
12
  import type { ItemContributorRole } from './item-contributor-role';
13
13
  /**
14
14
  * Individual contributor to the creation of an item, such as an author or actor.
15
- * @export
16
- * @interface ItemContributor
17
15
  */
18
16
  export interface ItemContributor {
19
- /**
20
- *
21
- * @type {ItemContributorRole}
22
- * @memberof ItemContributor
23
- */
24
17
  'role': ItemContributorRole;
25
18
  /**
26
19
  * Name of the contributor, such as `Jane Austen`.
27
- * @type {string}
28
- * @memberof ItemContributor
29
20
  */
30
21
  'value': string;
31
22
  }
@@ -12,26 +12,12 @@
12
12
  import type { Dimensions } from './dimensions';
13
13
  /**
14
14
  * Dimensions that are associated with the item in the Amazon catalog for the indicated `marketplaceId`.
15
- * @export
16
- * @interface ItemDimensionsByMarketplace
17
15
  */
18
16
  export interface ItemDimensionsByMarketplace {
19
17
  /**
20
18
  * Amazon marketplace identifier. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
21
- * @type {string}
22
- * @memberof ItemDimensionsByMarketplace
23
19
  */
24
20
  'marketplaceId': string;
25
- /**
26
- *
27
- * @type {Dimensions}
28
- * @memberof ItemDimensionsByMarketplace
29
- */
30
21
  'item'?: Dimensions;
31
- /**
32
- *
33
- * @type {Dimensions}
34
- * @memberof ItemDimensionsByMarketplace
35
- */
36
22
  'package'?: Dimensions;
37
23
  }
@@ -11,32 +11,22 @@
11
11
  */
12
12
  /**
13
13
  * Sales rank of an Amazon catalog item, grouped by website display group.
14
- * @export
15
- * @interface ItemDisplayGroupSalesRank
16
14
  */
17
15
  export interface ItemDisplayGroupSalesRank {
18
16
  /**
19
17
  * Name of the website display group that is associated with the sales rank
20
- * @type {string}
21
- * @memberof ItemDisplayGroupSalesRank
22
18
  */
23
19
  'websiteDisplayGroup': string;
24
20
  /**
25
21
  * Name of the sales rank.
26
- * @type {string}
27
- * @memberof ItemDisplayGroupSalesRank
28
22
  */
29
23
  'title': string;
30
24
  /**
31
25
  * Corresponding Amazon retail website URL for the sales rank.
32
- * @type {string}
33
- * @memberof ItemDisplayGroupSalesRank
34
26
  */
35
27
  'link'?: string;
36
28
  /**
37
29
  * Sales rank.
38
- * @type {number}
39
- * @memberof ItemDisplayGroupSalesRank
40
30
  */
41
31
  'rank': number;
42
32
  }
@@ -11,20 +11,14 @@
11
11
  */
12
12
  /**
13
13
  * The identifier that is associated with the item in the Amazon catalog, such as a UPC or EAN identifier.
14
- * @export
15
- * @interface ItemIdentifier
16
14
  */
17
15
  export interface ItemIdentifier {
18
16
  /**
19
17
  * Type of identifier, such as UPC, EAN, or ISBN.
20
- * @type {string}
21
- * @memberof ItemIdentifier
22
18
  */
23
19
  'identifierType': string;
24
20
  /**
25
21
  * Identifier of the item.
26
- * @type {string}
27
- * @memberof ItemIdentifier
28
22
  */
29
23
  'identifier': string;
30
24
  }
@@ -12,20 +12,14 @@
12
12
  import type { ItemIdentifier } from './item-identifier';
13
13
  /**
14
14
  * Identifiers that are associated with the item in the Amazon catalog, grouped by `marketplaceId`.
15
- * @export
16
- * @interface ItemIdentifiersByMarketplace
17
15
  */
18
16
  export interface ItemIdentifiersByMarketplace {
19
17
  /**
20
18
  * Amazon marketplace identifier. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).identifier.
21
- * @type {string}
22
- * @memberof ItemIdentifiersByMarketplace
23
19
  */
24
20
  'marketplaceId': string;
25
21
  /**
26
22
  * Identifiers associated with the item in the Amazon catalog for the indicated `marketplaceId`.
27
- * @type {Array<ItemIdentifier>}
28
- * @memberof ItemIdentifiersByMarketplace
29
23
  */
30
24
  'identifiers': Array<ItemIdentifier>;
31
25
  }
@@ -11,32 +11,22 @@
11
11
  */
12
12
  /**
13
13
  * Image for an item in the Amazon catalog.
14
- * @export
15
- * @interface ItemImage
16
14
  */
17
15
  export interface ItemImage {
18
16
  /**
19
17
  * Variant of the image, such as `MAIN` or `PT01`.
20
- * @type {string}
21
- * @memberof ItemImage
22
18
  */
23
19
  'variant': ItemImageVariantEnum;
24
20
  /**
25
21
  * URL for the image.
26
- * @type {string}
27
- * @memberof ItemImage
28
22
  */
29
23
  'link': string;
30
24
  /**
31
25
  * Height of the image in pixels.
32
- * @type {number}
33
- * @memberof ItemImage
34
26
  */
35
27
  'height': number;
36
28
  /**
37
29
  * Width of the image in pixels.
38
- * @type {number}
39
- * @memberof ItemImage
40
30
  */
41
31
  'width': number;
42
32
  }
@@ -12,20 +12,14 @@
12
12
  import type { ItemImage } from './item-image';
13
13
  /**
14
14
  * Images for an item in the Amazon catalog, grouped by `marketplaceId`.
15
- * @export
16
- * @interface ItemImagesByMarketplace
17
15
  */
18
16
  export interface ItemImagesByMarketplace {
19
17
  /**
20
18
  * Amazon marketplace identifier. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
21
- * @type {string}
22
- * @memberof ItemImagesByMarketplace
23
19
  */
24
20
  'marketplaceId': string;
25
21
  /**
26
22
  * Images for an item in the Amazon catalog, grouped by `marketplaceId`.
27
- * @type {Array<ItemImage>}
28
- * @memberof ItemImagesByMarketplace
29
23
  */
30
24
  'images': Array<ItemImage>;
31
25
  }
@@ -11,20 +11,14 @@
11
11
  */
12
12
  /**
13
13
  * Product type that is associated with the Amazon catalog item, grouped by `marketplaceId`.
14
- * @export
15
- * @interface ItemProductTypeByMarketplace
16
14
  */
17
15
  export interface ItemProductTypeByMarketplace {
18
16
  /**
19
17
  * Amazon marketplace identifier. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
20
- * @type {string}
21
- * @memberof ItemProductTypeByMarketplace
22
18
  */
23
19
  'marketplaceId'?: string;
24
20
  /**
25
21
  * Name of the product type that is associated with the Amazon catalog item.
26
- * @type {string}
27
- * @memberof ItemProductTypeByMarketplace
28
22
  */
29
23
  'productType'?: string;
30
24
  }
@@ -12,32 +12,19 @@
12
12
  import type { ItemVariationTheme } from './item-variation-theme';
13
13
  /**
14
14
  * Relationship details for an Amazon catalog item.
15
- * @export
16
- * @interface ItemRelationship
17
15
  */
18
16
  export interface ItemRelationship {
19
17
  /**
20
18
  * ASINs of the related items that are children of this item.
21
- * @type {Array<string>}
22
- * @memberof ItemRelationship
23
19
  */
24
20
  'childAsins'?: Array<string>;
25
21
  /**
26
22
  * ASINs of the related items that are parents of this item.
27
- * @type {Array<string>}
28
- * @memberof ItemRelationship
29
23
  */
30
24
  'parentAsins'?: Array<string>;
31
- /**
32
- *
33
- * @type {ItemVariationTheme}
34
- * @memberof ItemRelationship
35
- */
36
25
  'variationTheme'?: ItemVariationTheme;
37
26
  /**
38
27
  * Type of relationship.
39
- * @type {string}
40
- * @memberof ItemRelationship
41
28
  */
42
29
  'type': ItemRelationshipTypeEnum;
43
30
  }
@@ -12,20 +12,14 @@
12
12
  import type { ItemRelationship } from './item-relationship';
13
13
  /**
14
14
  * Relationship details for the Amazon catalog item for the specified Amazon `marketplaceId`.
15
- * @export
16
- * @interface ItemRelationshipsByMarketplace
17
15
  */
18
16
  export interface ItemRelationshipsByMarketplace {
19
17
  /**
20
18
  * Amazon marketplace identifier. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
21
- * @type {string}
22
- * @memberof ItemRelationshipsByMarketplace
23
19
  */
24
20
  'marketplaceId': string;
25
21
  /**
26
22
  * Relationships for the item.
27
- * @type {Array<ItemRelationship>}
28
- * @memberof ItemRelationshipsByMarketplace
29
23
  */
30
24
  'relationships': Array<ItemRelationship>;
31
25
  }
@@ -13,26 +13,18 @@ import type { ItemClassificationSalesRank } from './item-classification-sales-ra
13
13
  import type { ItemDisplayGroupSalesRank } from './item-display-group-sales-rank';
14
14
  /**
15
15
  * Sales ranks of an Amazon catalog item, grouped by `marketplaceId`.
16
- * @export
17
- * @interface ItemSalesRanksByMarketplace
18
16
  */
19
17
  export interface ItemSalesRanksByMarketplace {
20
18
  /**
21
19
  * Amazon marketplace identifier. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
22
- * @type {string}
23
- * @memberof ItemSalesRanksByMarketplace
24
20
  */
25
21
  'marketplaceId': string;
26
22
  /**
27
23
  * Sales ranks of an Amazon catalog item for a `marketplaceId`, grouped by classification.
28
- * @type {Array<ItemClassificationSalesRank>}
29
- * @memberof ItemSalesRanksByMarketplace
30
24
  */
31
25
  'classificationRanks'?: Array<ItemClassificationSalesRank>;
32
26
  /**
33
27
  * Sales ranks of an Amazon catalog item for a `marketplaceId`, grouped by website display group.
34
- * @type {Array<ItemDisplayGroupSalesRank>}
35
- * @memberof ItemSalesRanksByMarketplace
36
28
  */
37
29
  'displayGroupRanks'?: Array<ItemDisplayGroupSalesRank>;
38
30
  }
@@ -14,32 +14,16 @@ import type { Pagination } from './pagination';
14
14
  import type { Refinements } from './refinements';
15
15
  /**
16
16
  * Items in the Amazon catalog and search-related metadata.
17
- * @export
18
- * @interface ItemSearchResults
19
17
  */
20
18
  export interface ItemSearchResults {
21
19
  /**
22
20
  * For searches that are based on `identifiers`, `numberOfResults` is the total number of Amazon catalog items found. For searches that are based on `keywords`, `numberOfResults` is the estimated total number of Amazon catalog items that are matched by the search query. Only results up to the page count limit are returned per request regardless of the number found. **Note:** The maximum number of items (ASINs) that can be returned and paged through is 1,000.
23
- * @type {number}
24
- * @memberof ItemSearchResults
25
21
  */
26
22
  'numberOfResults': number;
27
- /**
28
- *
29
- * @type {Pagination}
30
- * @memberof ItemSearchResults
31
- */
32
23
  'pagination': Pagination;
33
- /**
34
- *
35
- * @type {Refinements}
36
- * @memberof ItemSearchResults
37
- */
38
24
  'refinements': Refinements;
39
25
  /**
40
26
  * A list of items from the Amazon catalog.
41
- * @type {Array<Item>}
42
- * @memberof ItemSearchResults
43
27
  */
44
28
  'items': Array<Item>;
45
29
  }
@@ -13,128 +13,83 @@ import type { ItemBrowseClassification } from './item-browse-classification';
13
13
  import type { ItemContributor } from './item-contributor';
14
14
  /**
15
15
  * Information about an Amazon catalog item for the indicated `marketplaceId`.
16
- * @export
17
- * @interface ItemSummaryByMarketplace
18
16
  */
19
17
  export interface ItemSummaryByMarketplace {
20
18
  /**
21
19
  * Amazon marketplace identifier. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
22
- * @type {string}
23
- * @memberof ItemSummaryByMarketplace
24
20
  */
25
21
  'marketplaceId': string;
26
22
  /**
27
23
  * When `true`, the Amazon catalog item is intended for an adult audience or is sexual in nature.
28
- * @type {boolean}
29
- * @memberof ItemSummaryByMarketplace
30
24
  */
31
25
  'adultProduct'?: boolean;
32
26
  /**
33
27
  * When `true`, the Amazon catalog item is autographed.
34
- * @type {boolean}
35
- * @memberof ItemSummaryByMarketplace
36
28
  */
37
29
  'autographed'?: boolean;
38
30
  /**
39
31
  * Name of the brand that is associated with the Amazon catalog item.
40
- * @type {string}
41
- * @memberof ItemSummaryByMarketplace
42
32
  */
43
33
  'brand'?: string;
44
- /**
45
- *
46
- * @type {ItemBrowseClassification}
47
- * @memberof ItemSummaryByMarketplace
48
- */
49
34
  'browseClassification'?: ItemBrowseClassification;
50
35
  /**
51
36
  * The color that is associated with the Amazon catalog item.
52
- * @type {string}
53
- * @memberof ItemSummaryByMarketplace
54
37
  */
55
38
  'color'?: string;
56
39
  /**
57
40
  * Individual contributors to the creation of the item, such as the authors or actors.
58
- * @type {Array<ItemContributor>}
59
- * @memberof ItemSummaryByMarketplace
60
41
  */
61
42
  'contributors'?: Array<ItemContributor>;
62
43
  /**
63
44
  * Classification type that is associated with the Amazon catalog item.
64
- * @type {string}
65
- * @memberof ItemSummaryByMarketplace
66
45
  */
67
46
  'itemClassification'?: ItemSummaryByMarketplaceItemClassificationEnum;
68
47
  /**
69
48
  * The name that is associated with the Amazon catalog item.
70
- * @type {string}
71
- * @memberof ItemSummaryByMarketplace
72
49
  */
73
50
  'itemName'?: string;
74
51
  /**
75
52
  * The name of the manufacturer that is associated with the Amazon catalog item.
76
- * @type {string}
77
- * @memberof ItemSummaryByMarketplace
78
53
  */
79
54
  'manufacturer'?: string;
80
55
  /**
81
56
  * When true, the item is classified as memorabilia.
82
- * @type {boolean}
83
- * @memberof ItemSummaryByMarketplace
84
57
  */
85
58
  'memorabilia'?: boolean;
86
59
  /**
87
60
  * The model number that is associated with the Amazon catalog item.
88
- * @type {string}
89
- * @memberof ItemSummaryByMarketplace
90
61
  */
91
62
  'modelNumber'?: string;
92
63
  /**
93
64
  * The quantity of the Amazon catalog item within one package.
94
- * @type {number}
95
- * @memberof ItemSummaryByMarketplace
96
65
  */
97
66
  'packageQuantity'?: number;
98
67
  /**
99
68
  * The part number that is associated with the Amazon catalog item.
100
- * @type {string}
101
- * @memberof ItemSummaryByMarketplace
102
69
  */
103
70
  'partNumber'?: string;
104
71
  /**
105
72
  * The earliest date on which the Amazon catalog item can be shipped to customers.
106
- * @type {string}
107
- * @memberof ItemSummaryByMarketplace
108
73
  */
109
74
  'releaseDate'?: string;
110
75
  /**
111
76
  * The name of the size of the Amazon catalog item.
112
- * @type {string}
113
- * @memberof ItemSummaryByMarketplace
114
77
  */
115
78
  'size'?: string;
116
79
  /**
117
80
  * The name of the style that is associated with the Amazon catalog item.
118
- * @type {string}
119
- * @memberof ItemSummaryByMarketplace
120
81
  */
121
82
  'style'?: string;
122
83
  /**
123
84
  * When true, the Amazon catalog item is eligible for trade-in.
124
- * @type {boolean}
125
- * @memberof ItemSummaryByMarketplace
126
85
  */
127
86
  'tradeInEligible'?: boolean;
128
87
  /**
129
88
  * The identifier of the website display group that is associated with the Amazon catalog item.
130
- * @type {string}
131
- * @memberof ItemSummaryByMarketplace
132
89
  */
133
90
  'websiteDisplayGroup'?: string;
134
91
  /**
135
92
  * The display name of the website display group that is associated with the Amazon catalog item.
136
- * @type {string}
137
- * @memberof ItemSummaryByMarketplace
138
93
  */
139
94
  'websiteDisplayGroupName'?: string;
140
95
  }
@@ -11,20 +11,14 @@
11
11
  */
12
12
  /**
13
13
  * The variation theme is a list of Amazon catalog item attributes that define the variation family.
14
- * @export
15
- * @interface ItemVariationTheme
16
14
  */
17
15
  export interface ItemVariationTheme {
18
16
  /**
19
17
  * Names of the Amazon catalog item attributes that are associated with the variation theme.
20
- * @type {Array<string>}
21
- * @memberof ItemVariationTheme
22
18
  */
23
19
  'attributes'?: Array<string>;
24
20
  /**
25
21
  * Variation theme that indicates the combination of Amazon catalog item attributes that define the variation family.
26
- * @type {string}
27
- * @memberof ItemVariationTheme
28
22
  */
29
23
  'theme'?: string;
30
24
  }
@@ -12,56 +12,32 @@
12
12
  import type { ItemVendorDetailsCategory } from './item-vendor-details-category';
13
13
  /**
14
14
  * The vendor details that are associated with an Amazon catalog item for the specified `marketplaceId`.
15
- * @export
16
- * @interface ItemVendorDetailsByMarketplace
17
15
  */
18
16
  export interface ItemVendorDetailsByMarketplace {
19
17
  /**
20
18
  * Amazon marketplace identifier. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
21
- * @type {string}
22
- * @memberof ItemVendorDetailsByMarketplace
23
19
  */
24
20
  'marketplaceId': string;
25
21
  /**
26
22
  * The brand code that is associated with an Amazon catalog item.
27
- * @type {string}
28
- * @memberof ItemVendorDetailsByMarketplace
29
23
  */
30
24
  'brandCode'?: string;
31
25
  /**
32
26
  * The manufacturer code that is associated with an Amazon catalog item.
33
- * @type {string}
34
- * @memberof ItemVendorDetailsByMarketplace
35
27
  */
36
28
  'manufacturerCode'?: string;
37
29
  /**
38
30
  * The parent vendor code of the manufacturer code.
39
- * @type {string}
40
- * @memberof ItemVendorDetailsByMarketplace
41
31
  */
42
32
  'manufacturerCodeParent'?: string;
43
- /**
44
- *
45
- * @type {ItemVendorDetailsCategory}
46
- * @memberof ItemVendorDetailsByMarketplace
47
- */
48
33
  'productCategory'?: ItemVendorDetailsCategory;
49
34
  /**
50
35
  * The product group that is associated with an Amazon catalog item.
51
- * @type {string}
52
- * @memberof ItemVendorDetailsByMarketplace
53
36
  */
54
37
  'productGroup'?: string;
55
- /**
56
- *
57
- * @type {ItemVendorDetailsCategory}
58
- * @memberof ItemVendorDetailsByMarketplace
59
- */
60
38
  'productSubcategory'?: ItemVendorDetailsCategory;
61
39
  /**
62
40
  * The replenishment category that is associated with an Amazon catalog item.
63
- * @type {string}
64
- * @memberof ItemVendorDetailsByMarketplace
65
41
  */
66
42
  'replenishmentCategory'?: ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum;
67
43
  }
@@ -11,20 +11,14 @@
11
11
  */
12
12
  /**
13
13
  * The product category or subcategory that is associated with an Amazon catalog item.
14
- * @export
15
- * @interface ItemVendorDetailsCategory
16
14
  */
17
15
  export interface ItemVendorDetailsCategory {
18
16
  /**
19
17
  * The display name of the product category or subcategory.
20
- * @type {string}
21
- * @memberof ItemVendorDetailsCategory
22
18
  */
23
19
  'displayName'?: string;
24
20
  /**
25
21
  * The code that identifies the product category or subcategory.
26
- * @type {string}
27
- * @memberof ItemVendorDetailsCategory
28
22
  */
29
23
  'value'?: string;
30
24
  }