@teemill/product-catalog 1.33.0 → 1.34.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/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.33.0
7
+ * The version of the OpenAPI document: 1.34.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -210,7 +210,7 @@ export const ApplicationSetsApiAxiosParamCreator = function (configuration) {
210
210
  * @summary List application sets
211
211
  * @param {string} project What project it is
212
212
  * @param {number} [pageToken] Page reference token
213
- * @param {string} [search] Search term to filter based on product tags.
213
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', and \'tag:\"tag name\"\'. Multiple filters can be combined with spaces and commas.
214
214
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
215
215
  * @param {*} [options] Override http request option.
216
216
  * @throws {RequiredError}
@@ -361,7 +361,7 @@ export const ApplicationSetsApiFp = function (configuration) {
361
361
  * @summary List application sets
362
362
  * @param {string} project What project it is
363
363
  * @param {number} [pageToken] Page reference token
364
- * @param {string} [search] Search term to filter based on product tags.
364
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', and \'tag:\"tag name\"\'. Multiple filters can be combined with spaces and commas.
365
365
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
366
366
  * @param {*} [options] Override http request option.
367
367
  * @throws {RequiredError}
@@ -647,28 +647,24 @@ export const ProductsApiAxiosParamCreator = function (configuration) {
647
647
  };
648
648
  }),
649
649
  /**
650
- * Lists all enabled store listing products attached to the given project.
651
- * @summary List products
650
+ * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
651
+ * @summary Import products
652
652
  * @param {string} project What project it is
653
- * @param {number} [pageToken] Page reference token
654
- * @param {string} [search] Search term to filter based on product tags.
655
- * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
656
- * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
657
- * @param {string} [fields] Filter response fields to only include a subset of the resource.
653
+ * @param {string} [body] A data URL of a CSV file containing data for one or more products.
658
654
  * @param {*} [options] Override http request option.
659
655
  * @throws {RequiredError}
660
656
  */
661
- getProducts: (project_1, pageToken_1, search_1, sortBy_1, pageSize_1, fields_1, ...args_1) => __awaiter(this, [project_1, pageToken_1, search_1, sortBy_1, pageSize_1, fields_1, ...args_1], void 0, function* (project, pageToken, search, sortBy, pageSize, fields, options = {}) {
657
+ importProducts: (project_1, body_1, ...args_1) => __awaiter(this, [project_1, body_1, ...args_1], void 0, function* (project, body, options = {}) {
662
658
  // verify required parameter 'project' is not null or undefined
663
- assertParamExists('getProducts', 'project', project);
664
- const localVarPath = `/v1/catalog/products`;
659
+ assertParamExists('importProducts', 'project', project);
660
+ const localVarPath = `/v1/catalog/products/import`;
665
661
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
666
662
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
667
663
  let baseOptions;
668
664
  if (configuration) {
669
665
  baseOptions = configuration.baseOptions;
670
666
  }
671
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
667
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
672
668
  const localVarHeaderParameter = {};
673
669
  const localVarQueryParameter = {};
674
670
  // authentication session-oauth required
@@ -679,48 +675,39 @@ export const ProductsApiAxiosParamCreator = function (configuration) {
679
675
  if (project !== undefined) {
680
676
  localVarQueryParameter['project'] = project;
681
677
  }
682
- if (pageToken !== undefined) {
683
- localVarQueryParameter['pageToken'] = pageToken;
684
- }
685
- if (search !== undefined) {
686
- localVarQueryParameter['search'] = search;
687
- }
688
- if (sortBy) {
689
- localVarQueryParameter['sortBy'] = sortBy;
690
- }
691
- if (pageSize !== undefined) {
692
- localVarQueryParameter['pageSize'] = pageSize;
693
- }
694
- if (fields !== undefined) {
695
- localVarQueryParameter['fields'] = fields;
696
- }
678
+ localVarHeaderParameter['Content-Type'] = 'text/csv';
697
679
  setSearchParams(localVarUrlObj, localVarQueryParameter);
698
680
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
699
681
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
682
+ localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration);
700
683
  return {
701
684
  url: toPathString(localVarUrlObj),
702
685
  options: localVarRequestOptions,
703
686
  };
704
687
  }),
705
688
  /**
706
- * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
707
- * @summary Import products
689
+ * Lists all store listing products attached to the given project.
690
+ * @summary List products
708
691
  * @param {string} project What project it is
709
- * @param {string} [body] A data URL of a CSV file containing data for one or more products.
692
+ * @param {number} [pageToken] Page reference token
693
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like \&#39;enabled:true\&#39;, \&#39;uuid:&lt;id&gt;\&#39;, \&#39;name:\&quot;product name\&quot;\&#39;, and \&#39;tag:\&quot;tag name\&quot;\&#39;. Multiple filters can be combined with spaces and commas.
694
+ * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
695
+ * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
696
+ * @param {string} [fields] Filter response fields to only include a subset of the resource.
710
697
  * @param {*} [options] Override http request option.
711
698
  * @throws {RequiredError}
712
699
  */
713
- importProducts: (project_1, body_1, ...args_1) => __awaiter(this, [project_1, body_1, ...args_1], void 0, function* (project, body, options = {}) {
700
+ listProducts: (project_1, pageToken_1, search_1, sortBy_1, pageSize_1, fields_1, ...args_1) => __awaiter(this, [project_1, pageToken_1, search_1, sortBy_1, pageSize_1, fields_1, ...args_1], void 0, function* (project, pageToken, search, sortBy, pageSize, fields, options = {}) {
714
701
  // verify required parameter 'project' is not null or undefined
715
- assertParamExists('importProducts', 'project', project);
716
- const localVarPath = `/v1/catalog/products/import`;
702
+ assertParamExists('listProducts', 'project', project);
703
+ const localVarPath = `/v1/catalog/products`;
717
704
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
718
705
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
719
706
  let baseOptions;
720
707
  if (configuration) {
721
708
  baseOptions = configuration.baseOptions;
722
709
  }
723
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
710
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
724
711
  const localVarHeaderParameter = {};
725
712
  const localVarQueryParameter = {};
726
713
  // authentication session-oauth required
@@ -731,11 +718,24 @@ export const ProductsApiAxiosParamCreator = function (configuration) {
731
718
  if (project !== undefined) {
732
719
  localVarQueryParameter['project'] = project;
733
720
  }
734
- localVarHeaderParameter['Content-Type'] = 'text/csv';
721
+ if (pageToken !== undefined) {
722
+ localVarQueryParameter['pageToken'] = pageToken;
723
+ }
724
+ if (search !== undefined) {
725
+ localVarQueryParameter['search'] = search;
726
+ }
727
+ if (sortBy) {
728
+ localVarQueryParameter['sortBy'] = sortBy;
729
+ }
730
+ if (pageSize !== undefined) {
731
+ localVarQueryParameter['pageSize'] = pageSize;
732
+ }
733
+ if (fields !== undefined) {
734
+ localVarQueryParameter['fields'] = fields;
735
+ }
735
736
  setSearchParams(localVarUrlObj, localVarQueryParameter);
736
737
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
737
738
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
738
- localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration);
739
739
  return {
740
740
  url: toPathString(localVarUrlObj),
741
741
  options: localVarRequestOptions,
@@ -846,40 +846,40 @@ export const ProductsApiFp = function (configuration) {
846
846
  });
847
847
  },
848
848
  /**
849
- * Lists all enabled store listing products attached to the given project.
850
- * @summary List products
849
+ * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
850
+ * @summary Import products
851
851
  * @param {string} project What project it is
852
- * @param {number} [pageToken] Page reference token
853
- * @param {string} [search] Search term to filter based on product tags.
854
- * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
855
- * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
856
- * @param {string} [fields] Filter response fields to only include a subset of the resource.
852
+ * @param {string} [body] A data URL of a CSV file containing data for one or more products.
857
853
  * @param {*} [options] Override http request option.
858
854
  * @throws {RequiredError}
859
855
  */
860
- getProducts(project, pageToken, search, sortBy, pageSize, fields, options) {
856
+ importProducts(project, body, options) {
861
857
  return __awaiter(this, void 0, void 0, function* () {
862
858
  var _a, _b, _c;
863
- const localVarAxiosArgs = yield localVarAxiosParamCreator.getProducts(project, pageToken, search, sortBy, pageSize, fields, options);
859
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.importProducts(project, body, options);
864
860
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
865
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProductsApi.getProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
861
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProductsApi.importProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
866
862
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
867
863
  });
868
864
  },
869
865
  /**
870
- * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
871
- * @summary Import products
866
+ * Lists all store listing products attached to the given project.
867
+ * @summary List products
872
868
  * @param {string} project What project it is
873
- * @param {string} [body] A data URL of a CSV file containing data for one or more products.
869
+ * @param {number} [pageToken] Page reference token
870
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like \&#39;enabled:true\&#39;, \&#39;uuid:&lt;id&gt;\&#39;, \&#39;name:\&quot;product name\&quot;\&#39;, and \&#39;tag:\&quot;tag name\&quot;\&#39;. Multiple filters can be combined with spaces and commas.
871
+ * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
872
+ * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
873
+ * @param {string} [fields] Filter response fields to only include a subset of the resource.
874
874
  * @param {*} [options] Override http request option.
875
875
  * @throws {RequiredError}
876
876
  */
877
- importProducts(project, body, options) {
877
+ listProducts(project, pageToken, search, sortBy, pageSize, fields, options) {
878
878
  return __awaiter(this, void 0, void 0, function* () {
879
879
  var _a, _b, _c;
880
- const localVarAxiosArgs = yield localVarAxiosParamCreator.importProducts(project, body, options);
880
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listProducts(project, pageToken, search, sortBy, pageSize, fields, options);
881
881
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
882
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProductsApi.importProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
882
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProductsApi.listProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
883
883
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
884
884
  });
885
885
  },
@@ -940,16 +940,6 @@ export const ProductsApiFactory = function (configuration, basePath, axios) {
940
940
  getProduct(requestParameters, options) {
941
941
  return localVarFp.getProduct(requestParameters.project, requestParameters.productId, requestParameters.fields, options).then((request) => request(axios, basePath));
942
942
  },
943
- /**
944
- * Lists all enabled store listing products attached to the given project.
945
- * @summary List products
946
- * @param {ProductsApiGetProductsRequest} requestParameters Request parameters.
947
- * @param {*} [options] Override http request option.
948
- * @throws {RequiredError}
949
- */
950
- getProducts(requestParameters, options) {
951
- return localVarFp.getProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(axios, basePath));
952
- },
953
943
  /**
954
944
  * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
955
945
  * @summary Import products
@@ -960,6 +950,16 @@ export const ProductsApiFactory = function (configuration, basePath, axios) {
960
950
  importProducts(requestParameters, options) {
961
951
  return localVarFp.importProducts(requestParameters.project, requestParameters.body, options).then((request) => request(axios, basePath));
962
952
  },
953
+ /**
954
+ * Lists all store listing products attached to the given project.
955
+ * @summary List products
956
+ * @param {ProductsApiListProductsRequest} requestParameters Request parameters.
957
+ * @param {*} [options] Override http request option.
958
+ * @throws {RequiredError}
959
+ */
960
+ listProducts(requestParameters, options) {
961
+ return localVarFp.listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(axios, basePath));
962
+ },
963
963
  /**
964
964
  * Updates a product by a given ID.
965
965
  * @summary Update product
@@ -1013,26 +1013,26 @@ export class ProductsApi extends BaseAPI {
1013
1013
  return ProductsApiFp(this.configuration).getProduct(requestParameters.project, requestParameters.productId, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));
1014
1014
  }
1015
1015
  /**
1016
- * Lists all enabled store listing products attached to the given project.
1017
- * @summary List products
1018
- * @param {ProductsApiGetProductsRequest} requestParameters Request parameters.
1016
+ * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
1017
+ * @summary Import products
1018
+ * @param {ProductsApiImportProductsRequest} requestParameters Request parameters.
1019
1019
  * @param {*} [options] Override http request option.
1020
1020
  * @throws {RequiredError}
1021
1021
  * @memberof ProductsApi
1022
1022
  */
1023
- getProducts(requestParameters, options) {
1024
- return ProductsApiFp(this.configuration).getProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));
1023
+ importProducts(requestParameters, options) {
1024
+ return ProductsApiFp(this.configuration).importProducts(requestParameters.project, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
1025
1025
  }
1026
1026
  /**
1027
- * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
1028
- * @summary Import products
1029
- * @param {ProductsApiImportProductsRequest} requestParameters Request parameters.
1027
+ * Lists all store listing products attached to the given project.
1028
+ * @summary List products
1029
+ * @param {ProductsApiListProductsRequest} requestParameters Request parameters.
1030
1030
  * @param {*} [options] Override http request option.
1031
1031
  * @throws {RequiredError}
1032
1032
  * @memberof ProductsApi
1033
1033
  */
1034
- importProducts(requestParameters, options) {
1035
- return ProductsApiFp(this.configuration).importProducts(requestParameters.project, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
1034
+ listProducts(requestParameters, options) {
1035
+ return ProductsApiFp(this.configuration).listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));
1036
1036
  }
1037
1037
  /**
1038
1038
  * Updates a product by a given ID.
@@ -1100,7 +1100,7 @@ export const VariantsApiAxiosParamCreator = function (configuration) {
1100
1100
  * Lists all variants that belong to enabled products attached to the given project.
1101
1101
  * @summary List variants
1102
1102
  * @param {string} project What project it is
1103
- * @param {string} [search] Search term to filter based on product tags.
1103
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like \&#39;enabled:true\&#39;, \&#39;uuid:&lt;id&gt;\&#39;, \&#39;name:\&quot;product name\&quot;\&#39;, and \&#39;tag:\&quot;tag name\&quot;\&#39;. Multiple filters can be combined with spaces and commas.
1104
1104
  * @param {number} [pageToken] Page reference token
1105
1105
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1106
1106
  * @param {string} [fields] Filter response fields to only include a subset of the resource.
@@ -1179,7 +1179,7 @@ export const VariantsApiFp = function (configuration) {
1179
1179
  * Lists all variants that belong to enabled products attached to the given project.
1180
1180
  * @summary List variants
1181
1181
  * @param {string} project What project it is
1182
- * @param {string} [search] Search term to filter based on product tags.
1182
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like \&#39;enabled:true\&#39;, \&#39;uuid:&lt;id&gt;\&#39;, \&#39;name:\&quot;product name\&quot;\&#39;, and \&#39;tag:\&quot;tag name\&quot;\&#39;. Multiple filters can be combined with spaces and commas.
1183
1183
  * @param {number} [pageToken] Page reference token
1184
1184
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1185
1185
  * @param {string} [fields] Filter response fields to only include a subset of the resource.
@@ -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.33.0
5
+ * The version of the OpenAPI document: 1.34.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.33.0
7
+ * The version of the OpenAPI document: 1.34.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.33.0
5
+ * The version of the OpenAPI document: 1.34.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.33.0
7
+ * The version of the OpenAPI document: 1.34.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.33.0
5
+ * The version of the OpenAPI document: 1.34.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.33.0
7
+ * The version of the OpenAPI document: 1.34.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.33.0
5
+ * The version of the OpenAPI document: 1.34.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.33.0
7
+ * The version of the OpenAPI document: 1.34.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.33.0
5
+ * The version of the OpenAPI document: 1.34.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.33.0
8
+ * The version of the OpenAPI document: 1.34.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.33.0
7
+ * The version of the OpenAPI document: 1.34.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.33.0",
3
+ "version": "1.34.0",
4
4
  "description": "OpenAPI client for @teemill/product-catalog",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {