@teemill/product-catalog 1.71.0 → 1.72.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.71.0
1
+ ## @teemill/product-catalog@1.72.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.71.0 --save
39
+ npm install @teemill/product-catalog@1.72.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.71.0
7
+ * The version of the OpenAPI document: 1.72.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -740,6 +740,10 @@ export interface CreateProductVariant {
740
740
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
741
741
  }
742
742
  export interface CreateProductVariantImagesInner {
743
+ /**
744
+ * ID of the image if it already exists. A new image will be created if this is not provided.
745
+ */
746
+ 'id'?: string | null;
743
747
  /**
744
748
  * Publicly available file URL.
745
749
  */
@@ -968,6 +972,10 @@ export interface Product {
968
972
  */
969
973
  'optimisationHistory'?: Array<OptimisationHistoryItem>;
970
974
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
975
+ /**
976
+ * Whether to show a sale badge on the product
977
+ */
978
+ 'showSaleBadge'?: boolean;
971
979
  }
972
980
  export interface ProductAdditionalFilesInner {
973
981
  /**
@@ -1321,6 +1329,10 @@ export interface UpdateProductRequest {
1321
1329
  * Integration connections for the product
1322
1330
  */
1323
1331
  'integrationConnections'?: Array<UpdateProductRequestIntegrationConnectionsInner>;
1332
+ /**
1333
+ * Whether to show a sale badge on the product
1334
+ */
1335
+ 'showSaleBadge'?: boolean;
1324
1336
  }
1325
1337
  export interface UpdateProductRequestIntegrationConnectionsInner {
1326
1338
  /**
@@ -1382,6 +1394,10 @@ export interface UpdateProductsRequestProductsInner {
1382
1394
  */
1383
1395
  'shopifyId'?: number | null;
1384
1396
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
1397
+ /**
1398
+ * Whether to show a sale badge on the product
1399
+ */
1400
+ 'showSaleBadge'?: boolean;
1385
1401
  }
1386
1402
  export interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner {
1387
1403
  'integrationCode': string;
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.71.0
7
+ * The version of the OpenAPI document: 1.72.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.71.0
7
+ * The version of the OpenAPI document: 1.72.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.71.0
7
+ * The version of the OpenAPI document: 1.72.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.71.0
5
+ * The version of the OpenAPI document: 1.72.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -706,6 +706,10 @@ export interface CreateProductVariant {
706
706
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
707
707
  }
708
708
  export interface CreateProductVariantImagesInner {
709
+ /**
710
+ * ID of the image if it already exists. A new image will be created if this is not provided.
711
+ */
712
+ 'id'?: string | null;
709
713
  /**
710
714
  * Publicly available file URL.
711
715
  */
@@ -931,6 +935,10 @@ export interface Product {
931
935
  */
932
936
  'optimisationHistory'?: Array<OptimisationHistoryItem>;
933
937
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
938
+ /**
939
+ * Whether to show a sale badge on the product
940
+ */
941
+ 'showSaleBadge'?: boolean;
934
942
  }
935
943
  export interface ProductAdditionalFilesInner {
936
944
  /**
@@ -1274,6 +1282,10 @@ export interface UpdateProductRequest {
1274
1282
  * Integration connections for the product
1275
1283
  */
1276
1284
  'integrationConnections'?: Array<UpdateProductRequestIntegrationConnectionsInner>;
1285
+ /**
1286
+ * Whether to show a sale badge on the product
1287
+ */
1288
+ 'showSaleBadge'?: boolean;
1277
1289
  }
1278
1290
  export interface UpdateProductRequestIntegrationConnectionsInner {
1279
1291
  /**
@@ -1335,6 +1347,10 @@ export interface UpdateProductsRequestProductsInner {
1335
1347
  */
1336
1348
  'shopifyId'?: number | null;
1337
1349
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
1350
+ /**
1351
+ * Whether to show a sale badge on the product
1352
+ */
1353
+ 'showSaleBadge'?: boolean;
1338
1354
  }
1339
1355
  export interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner {
1340
1356
  'integrationCode': string;
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.71.0
8
+ * The version of the OpenAPI document: 1.72.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.71.0
5
+ * The version of the OpenAPI document: 1.72.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.71.0
8
+ * The version of the OpenAPI document: 1.72.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.71.0
5
+ * The version of the OpenAPI document: 1.72.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.71.0
8
+ * The version of the OpenAPI document: 1.72.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.71.0
5
+ * The version of the OpenAPI document: 1.72.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.71.0
8
+ * The version of the OpenAPI document: 1.72.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.71.0
5
+ * The version of the OpenAPI document: 1.72.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -706,6 +706,10 @@ export interface CreateProductVariant {
706
706
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
707
707
  }
708
708
  export interface CreateProductVariantImagesInner {
709
+ /**
710
+ * ID of the image if it already exists. A new image will be created if this is not provided.
711
+ */
712
+ 'id'?: string | null;
709
713
  /**
710
714
  * Publicly available file URL.
711
715
  */
@@ -931,6 +935,10 @@ export interface Product {
931
935
  */
932
936
  'optimisationHistory'?: Array<OptimisationHistoryItem>;
933
937
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
938
+ /**
939
+ * Whether to show a sale badge on the product
940
+ */
941
+ 'showSaleBadge'?: boolean;
934
942
  }
935
943
  export interface ProductAdditionalFilesInner {
936
944
  /**
@@ -1274,6 +1282,10 @@ export interface UpdateProductRequest {
1274
1282
  * Integration connections for the product
1275
1283
  */
1276
1284
  'integrationConnections'?: Array<UpdateProductRequestIntegrationConnectionsInner>;
1285
+ /**
1286
+ * Whether to show a sale badge on the product
1287
+ */
1288
+ 'showSaleBadge'?: boolean;
1277
1289
  }
1278
1290
  export interface UpdateProductRequestIntegrationConnectionsInner {
1279
1291
  /**
@@ -1335,6 +1347,10 @@ export interface UpdateProductsRequestProductsInner {
1335
1347
  */
1336
1348
  'shopifyId'?: number | null;
1337
1349
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
1350
+ /**
1351
+ * Whether to show a sale badge on the product
1352
+ */
1353
+ 'showSaleBadge'?: boolean;
1338
1354
  }
1339
1355
  export interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner {
1340
1356
  'integrationCode': string;
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.71.0
7
+ * The version of the OpenAPI document: 1.72.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.71.0
5
+ * The version of the OpenAPI document: 1.72.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.71.0
7
+ * The version of the OpenAPI document: 1.72.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.71.0
5
+ * The version of the OpenAPI document: 1.72.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.71.0
7
+ * The version of the OpenAPI document: 1.72.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.71.0
5
+ * The version of the OpenAPI document: 1.72.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.71.0
7
+ * The version of the OpenAPI document: 1.72.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.71.0
5
+ * The version of the OpenAPI document: 1.72.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.71.0
7
+ * The version of the OpenAPI document: 1.72.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.71.0
5
+ * The version of the OpenAPI document: 1.72.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.71.0
8
+ * The version of the OpenAPI document: 1.72.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,6 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | ID of the image if it already exists. A new image will be created if this is not provided. | [optional] [default to undefined]
8
9
  **src** | **string** | Publicly available file URL. | [optional] [default to undefined]
9
10
 
10
11
  ## Example
@@ -13,6 +14,7 @@ Name | Type | Description | Notes
13
14
  import { CreateProductVariantImagesInner } from '@teemill/product-catalog';
14
15
 
15
16
  const instance: CreateProductVariantImagesInner = {
17
+ id,
16
18
  src,
17
19
  };
18
20
  ```
package/docs/Product.md CHANGED
@@ -40,6 +40,7 @@ Name | Type | Description | Notes
40
40
  **personalizationTemplate** | **string** | a JSON string representing the personalization template for the product | [optional] [default to undefined]
41
41
  **optimisationHistory** | [**Array&lt;OptimisationHistoryItem&gt;**](OptimisationHistoryItem.md) | History of AI optimisations performed on the product | [optional] [default to undefined]
42
42
  **integrationConnections** | [**Array&lt;UpdateProductsRequestProductsInnerIntegrationConnectionsInner&gt;**](UpdateProductsRequestProductsInnerIntegrationConnectionsInner.md) | | [optional] [default to undefined]
43
+ **showSaleBadge** | **boolean** | Whether to show a sale badge on the product | [optional] [default to undefined]
43
44
 
44
45
  ## Example
45
46
 
@@ -82,6 +83,7 @@ const instance: Product = {
82
83
  personalizationTemplate,
83
84
  optimisationHistory,
84
85
  integrationConnections,
86
+ showSaleBadge,
85
87
  };
86
88
  ```
87
89
 
@@ -29,6 +29,7 @@ Name | Type | Description | Notes
29
29
  **metafields** | [**Array&lt;MetaField&gt;**](MetaField.md) | Key/value pairs that can be used to store additional information about the product | [optional] [default to undefined]
30
30
  **personalizationTemplate** | **string** | A JSON object that defines the personalization template for the product. | [optional] [default to undefined]
31
31
  **integrationConnections** | [**Array&lt;UpdateProductRequestIntegrationConnectionsInner&gt;**](UpdateProductRequestIntegrationConnectionsInner.md) | Integration connections for the product | [optional] [default to undefined]
32
+ **showSaleBadge** | **boolean** | Whether to show a sale badge on the product | [optional] [default to true]
32
33
 
33
34
  ## Example
34
35
 
@@ -60,6 +61,7 @@ const instance: UpdateProductRequest = {
60
61
  metafields,
61
62
  personalizationTemplate,
62
63
  integrationConnections,
64
+ showSaleBadge,
63
65
  };
64
66
  ```
65
67
 
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
18
18
  **includeInDataFeeds** | **boolean** | Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising. | [optional] [default to true]
19
19
  **shopifyId** | **number** | For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one. | [optional] [default to undefined]
20
20
  **integrationConnections** | [**Array&lt;UpdateProductsRequestProductsInnerIntegrationConnectionsInner&gt;**](UpdateProductsRequestProductsInnerIntegrationConnectionsInner.md) | | [optional] [default to undefined]
21
+ **showSaleBadge** | **boolean** | Whether to show a sale badge on the product | [optional] [default to true]
21
22
 
22
23
  ## Example
23
24
 
@@ -38,6 +39,7 @@ const instance: UpdateProductsRequestProductsInner = {
38
39
  includeInDataFeeds,
39
40
  shopifyId,
40
41
  integrationConnections,
42
+ showSaleBadge,
41
43
  };
42
44
  ```
43
45
 
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.71.0
7
+ * The version of the OpenAPI document: 1.72.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.71.0",
3
+ "version": "1.72.0",
4
4
  "description": "OpenAPI client for @teemill/product-catalog",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {