@teemill/product-catalog 1.40.0 → 1.42.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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/product-catalog@1.40.0
1
+ ## @teemill/product-catalog@1.42.0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @teemill/product-catalog@1.40.0 --save
39
+ npm install @teemill/product-catalog@1.42.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.40.0
7
+ * The version of the OpenAPI document: 1.42.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1062,6 +1062,18 @@ export interface Product {
1062
1062
  * @memberof Product
1063
1063
  */
1064
1064
  'bundleItems'?: Array<Product>;
1065
+ /**
1066
+ *
1067
+ * @type {Price}
1068
+ * @memberof Product
1069
+ */
1070
+ 'retailPrice'?: Price;
1071
+ /**
1072
+ *
1073
+ * @type {Price}
1074
+ * @memberof Product
1075
+ */
1076
+ 'salePrice'?: Price;
1065
1077
  /**
1066
1078
  * Additional files attached to the product.
1067
1079
  * @type {Array<ProductAdditionalFilesInner>}
@@ -1121,7 +1133,7 @@ export interface Product {
1121
1133
  * @type {number}
1122
1134
  * @memberof Product
1123
1135
  */
1124
- 'shopifyId'?: number;
1136
+ 'shopifyId'?: number | null;
1125
1137
  /**
1126
1138
  *
1127
1139
  * @type {ProductWarehouseProduct}
@@ -1471,6 +1483,18 @@ export interface UpdateProductRequest {
1471
1483
  * @memberof UpdateProductRequest
1472
1484
  */
1473
1485
  'bundleItems'?: Array<string>;
1486
+ /**
1487
+ *
1488
+ * @type {Price}
1489
+ * @memberof UpdateProductRequest
1490
+ */
1491
+ 'retailPrice'?: Price;
1492
+ /**
1493
+ *
1494
+ * @type {Price}
1495
+ * @memberof UpdateProductRequest
1496
+ */
1497
+ 'salePrice'?: Price;
1474
1498
  /**
1475
1499
  * Images to attach to the product. For example, photos of models using/wearing the product.
1476
1500
  * @type {Array<ImageFile>}
@@ -1855,7 +1879,7 @@ export interface Variant {
1855
1879
  * @type {number}
1856
1880
  * @memberof Variant
1857
1881
  */
1858
- 'shopifyId'?: number;
1882
+ 'shopifyId'?: number | null;
1859
1883
  /**
1860
1884
  * Key/value pairs that can be used to store additional information about the variant
1861
1885
  * @type {Array<MetaField>}
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.40.0
7
+ * The version of the OpenAPI document: 1.42.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.40.0
7
+ * The version of the OpenAPI document: 1.42.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.40.0
7
+ * The version of the OpenAPI document: 1.42.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.40.0
5
+ * The version of the OpenAPI document: 1.42.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1037,6 +1037,18 @@ export interface Product {
1037
1037
  * @memberof Product
1038
1038
  */
1039
1039
  'bundleItems'?: Array<Product>;
1040
+ /**
1041
+ *
1042
+ * @type {Price}
1043
+ * @memberof Product
1044
+ */
1045
+ 'retailPrice'?: Price;
1046
+ /**
1047
+ *
1048
+ * @type {Price}
1049
+ * @memberof Product
1050
+ */
1051
+ 'salePrice'?: Price;
1040
1052
  /**
1041
1053
  * Additional files attached to the product.
1042
1054
  * @type {Array<ProductAdditionalFilesInner>}
@@ -1096,7 +1108,7 @@ export interface Product {
1096
1108
  * @type {number}
1097
1109
  * @memberof Product
1098
1110
  */
1099
- 'shopifyId'?: number;
1111
+ 'shopifyId'?: number | null;
1100
1112
  /**
1101
1113
  *
1102
1114
  * @type {ProductWarehouseProduct}
@@ -1446,6 +1458,18 @@ export interface UpdateProductRequest {
1446
1458
  * @memberof UpdateProductRequest
1447
1459
  */
1448
1460
  'bundleItems'?: Array<string>;
1461
+ /**
1462
+ *
1463
+ * @type {Price}
1464
+ * @memberof UpdateProductRequest
1465
+ */
1466
+ 'retailPrice'?: Price;
1467
+ /**
1468
+ *
1469
+ * @type {Price}
1470
+ * @memberof UpdateProductRequest
1471
+ */
1472
+ 'salePrice'?: Price;
1449
1473
  /**
1450
1474
  * Images to attach to the product. For example, photos of models using/wearing the product.
1451
1475
  * @type {Array<ImageFile>}
@@ -1821,7 +1845,7 @@ export interface Variant {
1821
1845
  * @type {number}
1822
1846
  * @memberof Variant
1823
1847
  */
1824
- 'shopifyId'?: number;
1848
+ 'shopifyId'?: number | null;
1825
1849
  /**
1826
1850
  * Key/value pairs that can be used to store additional information about the variant
1827
1851
  * @type {Array<MetaField>}
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.40.0
8
+ * The version of the OpenAPI document: 1.42.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.40.0
5
+ * The version of the OpenAPI document: 1.42.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.40.0
8
+ * The version of the OpenAPI document: 1.42.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.40.0
5
+ * The version of the OpenAPI document: 1.42.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.40.0
8
+ * The version of the OpenAPI document: 1.42.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.40.0
5
+ * The version of the OpenAPI document: 1.42.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.40.0
8
+ * The version of the OpenAPI document: 1.42.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.40.0
5
+ * The version of the OpenAPI document: 1.42.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1037,6 +1037,18 @@ export interface Product {
1037
1037
  * @memberof Product
1038
1038
  */
1039
1039
  'bundleItems'?: Array<Product>;
1040
+ /**
1041
+ *
1042
+ * @type {Price}
1043
+ * @memberof Product
1044
+ */
1045
+ 'retailPrice'?: Price;
1046
+ /**
1047
+ *
1048
+ * @type {Price}
1049
+ * @memberof Product
1050
+ */
1051
+ 'salePrice'?: Price;
1040
1052
  /**
1041
1053
  * Additional files attached to the product.
1042
1054
  * @type {Array<ProductAdditionalFilesInner>}
@@ -1096,7 +1108,7 @@ export interface Product {
1096
1108
  * @type {number}
1097
1109
  * @memberof Product
1098
1110
  */
1099
- 'shopifyId'?: number;
1111
+ 'shopifyId'?: number | null;
1100
1112
  /**
1101
1113
  *
1102
1114
  * @type {ProductWarehouseProduct}
@@ -1446,6 +1458,18 @@ export interface UpdateProductRequest {
1446
1458
  * @memberof UpdateProductRequest
1447
1459
  */
1448
1460
  'bundleItems'?: Array<string>;
1461
+ /**
1462
+ *
1463
+ * @type {Price}
1464
+ * @memberof UpdateProductRequest
1465
+ */
1466
+ 'retailPrice'?: Price;
1467
+ /**
1468
+ *
1469
+ * @type {Price}
1470
+ * @memberof UpdateProductRequest
1471
+ */
1472
+ 'salePrice'?: Price;
1449
1473
  /**
1450
1474
  * Images to attach to the product. For example, photos of models using/wearing the product.
1451
1475
  * @type {Array<ImageFile>}
@@ -1821,7 +1845,7 @@ export interface Variant {
1821
1845
  * @type {number}
1822
1846
  * @memberof Variant
1823
1847
  */
1824
- 'shopifyId'?: number;
1848
+ 'shopifyId'?: number | null;
1825
1849
  /**
1826
1850
  * Key/value pairs that can be used to store additional information about the variant
1827
1851
  * @type {Array<MetaField>}
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.40.0
7
+ * The version of the OpenAPI document: 1.42.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.40.0
5
+ * The version of the OpenAPI document: 1.42.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.40.0
7
+ * The version of the OpenAPI document: 1.42.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.40.0
5
+ * The version of the OpenAPI document: 1.42.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.40.0
7
+ * The version of the OpenAPI document: 1.42.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.40.0
5
+ * The version of the OpenAPI document: 1.42.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.40.0
7
+ * The version of the OpenAPI document: 1.42.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.40.0
5
+ * The version of the OpenAPI document: 1.42.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.40.0
7
+ * The version of the OpenAPI document: 1.42.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.40.0
5
+ * The version of the OpenAPI document: 1.42.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.40.0
8
+ * The version of the OpenAPI document: 1.42.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.40.0
7
+ * The version of the OpenAPI document: 1.42.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/product-catalog",
3
- "version": "1.40.0",
3
+ "version": "1.42.0",
4
4
  "description": "OpenAPI client for @teemill/product-catalog",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {