@sp-api-sdk/catalog-items-api-2022-04-01 1.1.1 → 1.2.0

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.
@@ -3,12 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./brand-refinement"), exports);
5
5
  tslib_1.__exportStar(require("./classification-refinement"), exports);
6
+ tslib_1.__exportStar(require("./dimension"), exports);
7
+ tslib_1.__exportStar(require("./dimensions"), exports);
6
8
  tslib_1.__exportStar(require("./error-list"), exports);
7
9
  tslib_1.__exportStar(require("./item"), exports);
8
10
  tslib_1.__exportStar(require("./item-browse-classification"), exports);
9
11
  tslib_1.__exportStar(require("./item-classification-sales-rank"), exports);
10
- tslib_1.__exportStar(require("./item-dimension"), exports);
11
- tslib_1.__exportStar(require("./item-dimensions"), exports);
12
12
  tslib_1.__exportStar(require("./item-dimensions-by-marketplace"), exports);
13
13
  tslib_1.__exportStar(require("./item-display-group-sales-rank"), exports);
14
14
  tslib_1.__exportStar(require("./item-identifier"), exports);
@@ -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';
@@ -12,19 +12,19 @@
12
12
  /**
13
13
  * Individual dimension value of an Amazon catalog item or item package.
14
14
  * @export
15
- * @interface ItemDimension
15
+ * @interface Dimension
16
16
  */
17
- export interface ItemDimension {
17
+ export interface Dimension {
18
18
  /**
19
19
  * Measurement unit of the dimension value.
20
20
  * @type {string}
21
- * @memberof ItemDimension
21
+ * @memberof Dimension
22
22
  */
23
23
  'unit'?: string;
24
24
  /**
25
25
  * Numeric dimension value.
26
26
  * @type {number}
27
- * @memberof ItemDimension
27
+ * @memberof Dimension
28
28
  */
29
29
  'value'?: number;
30
30
  }
@@ -9,35 +9,35 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { ItemDimension } from './item-dimension';
12
+ import { Dimension } from './dimension';
13
13
  /**
14
14
  * Dimensions of an Amazon catalog item or item in its packaging.
15
15
  * @export
16
- * @interface ItemDimensions
16
+ * @interface Dimensions
17
17
  */
18
- export interface ItemDimensions {
18
+ export interface Dimensions {
19
19
  /**
20
20
  *
21
- * @type {ItemDimension}
22
- * @memberof ItemDimensions
21
+ * @type {Dimension}
22
+ * @memberof Dimensions
23
23
  */
24
- 'height'?: ItemDimension;
24
+ 'height'?: Dimension;
25
25
  /**
26
26
  *
27
- * @type {ItemDimension}
28
- * @memberof ItemDimensions
27
+ * @type {Dimension}
28
+ * @memberof Dimensions
29
29
  */
30
- 'length'?: ItemDimension;
30
+ 'length'?: Dimension;
31
31
  /**
32
32
  *
33
- * @type {ItemDimension}
34
- * @memberof ItemDimensions
33
+ * @type {Dimension}
34
+ * @memberof Dimensions
35
35
  */
36
- 'weight'?: ItemDimension;
36
+ 'weight'?: Dimension;
37
37
  /**
38
38
  *
39
- * @type {ItemDimension}
40
- * @memberof ItemDimensions
39
+ * @type {Dimension}
40
+ * @memberof Dimensions
41
41
  */
42
- 'width'?: ItemDimension;
42
+ 'width'?: Dimension;
43
43
  }
@@ -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';
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { ItemDimensions } from './item-dimensions';
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
@@ -24,14 +24,14 @@ export interface ItemDimensionsByMarketplace {
24
24
  'marketplaceId': string;
25
25
  /**
26
26
  *
27
- * @type {ItemDimensions}
27
+ * @type {Dimensions}
28
28
  * @memberof ItemDimensionsByMarketplace
29
29
  */
30
- 'item'?: ItemDimensions;
30
+ 'item'?: Dimensions;
31
31
  /**
32
32
  *
33
- * @type {ItemDimensions}
33
+ * @type {Dimensions}
34
34
  * @memberof ItemDimensionsByMarketplace
35
35
  */
36
- 'package'?: ItemDimensions;
36
+ 'package'?: Dimensions;
37
37
  }
@@ -36,11 +36,11 @@ export interface Item {
36
36
  */
37
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>}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@sp-api-sdk/catalog-items-api-2022-04-01",
3
3
  "author": "Vincent Mesquita <vincent.mesquita@bizon.solutions>",
4
4
  "description": "The Selling Partner API for Catalog Items provides programmatic access to information about items in the Amazon catalog. For more information, refer to the Catalog Items API Use Case Guide.",
5
- "version": "1.1.1",
5
+ "version": "1.2.0",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/es/index.js",
8
8
  "types": "dist/types/index.d.ts",
@@ -50,5 +50,5 @@
50
50
  "sp sdk",
51
51
  "catalog items api"
52
52
  ],
53
- "gitHead": "d4f265d3c6a4e05e45025a46effa023a56a54e9c"
53
+ "gitHead": "533415989d561d5c67ec399f4d5292c2fc1db6e8"
54
54
  }