@teemill/product-catalog 1.43.0 → 1.45.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.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.43.0
5
+ * The version of the OpenAPI document: 1.45.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -132,7 +132,13 @@ export interface ApplicationSet {
132
132
  * @type {string}
133
133
  * @memberof ApplicationSet
134
134
  */
135
- 'id'?: string;
135
+ 'id': string;
136
+ /**
137
+ * A reference to the resource location
138
+ * @type {string}
139
+ * @memberof ApplicationSet
140
+ */
141
+ 'ref': string;
136
142
  /**
137
143
  * Name of the application set
138
144
  * @type {string}
@@ -168,7 +174,19 @@ export interface ApplicationSet {
168
174
  * @type {Array<ApplicationSetRecord>}
169
175
  * @memberof ApplicationSet
170
176
  */
171
- 'records'?: Array<ApplicationSetRecord>;
177
+ 'records': Array<ApplicationSetRecord>;
178
+ /**
179
+ *
180
+ * @type {string}
181
+ * @memberof ApplicationSet
182
+ */
183
+ 'createdAt': string;
184
+ /**
185
+ *
186
+ * @type {string}
187
+ * @memberof ApplicationSet
188
+ */
189
+ 'updatedAt': string;
172
190
  }
173
191
  /**
174
192
  *
@@ -253,10 +271,10 @@ export interface Attribute {
253
271
  'value': string;
254
272
  /**
255
273
  *
256
- * @type {CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail}
274
+ * @type {AttributeThumbnail}
257
275
  * @memberof Attribute
258
276
  */
259
- 'thumbnail'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail;
277
+ 'thumbnail'?: AttributeThumbnail;
260
278
  /**
261
279
  * Attribute tags
262
280
  * @type {Array<string>}
@@ -264,6 +282,31 @@ export interface Attribute {
264
282
  */
265
283
  'tags'?: Array<string>;
266
284
  }
285
+ /**
286
+ * Attribute thumbnail, intended for interfaces like storefront colour selector.
287
+ * @export
288
+ * @interface AttributeThumbnail
289
+ */
290
+ export interface AttributeThumbnail {
291
+ /**
292
+ *
293
+ * @type {string}
294
+ * @memberof AttributeThumbnail
295
+ */
296
+ 'type'?: AttributeThumbnailTypeEnum;
297
+ /**
298
+ *
299
+ * @type {string}
300
+ * @memberof AttributeThumbnail
301
+ */
302
+ 'value'?: string;
303
+ }
304
+ export declare const AttributeThumbnailTypeEnum: {
305
+ readonly Text: "text";
306
+ readonly Color: "color";
307
+ readonly Image: "image";
308
+ };
309
+ export type AttributeThumbnailTypeEnum = typeof AttributeThumbnailTypeEnum[keyof typeof AttributeThumbnailTypeEnum];
267
310
  /**
268
311
  *
269
312
  * @export
@@ -320,7 +363,7 @@ export interface CreateApplicationSetRequest {
320
363
  * @type {string}
321
364
  * @memberof CreateApplicationSetRequest
322
365
  */
323
- 'name'?: string;
366
+ 'name': string;
324
367
  /**
325
368
  * Description of the application set
326
369
  * @type {string}
@@ -332,25 +375,25 @@ export interface CreateApplicationSetRequest {
332
375
  * @type {number}
333
376
  * @memberof CreateApplicationSetRequest
334
377
  */
335
- 'width'?: number;
378
+ 'width': number;
336
379
  /**
337
380
  * The height, in pixels of the images in the set
338
381
  * @type {number}
339
382
  * @memberof CreateApplicationSetRequest
340
383
  */
341
- 'height'?: number;
384
+ 'height': number;
342
385
  /**
343
386
  * The DPI used when printing the images in the set
344
387
  * @type {number}
345
388
  * @memberof CreateApplicationSetRequest
346
389
  */
347
- 'dpi'?: number;
390
+ 'dpi': number;
348
391
  /**
349
392
  * List of application set records
350
393
  * @type {Array<CreateApplicationSetRequestRecordsInner>}
351
394
  * @memberof CreateApplicationSetRequest
352
395
  */
353
- 'records'?: Array<CreateApplicationSetRequestRecordsInner>;
396
+ 'records': Array<CreateApplicationSetRequestRecordsInner>;
354
397
  }
355
398
  /**
356
399
  *
@@ -359,7 +402,7 @@ export interface CreateApplicationSetRequest {
359
402
  */
360
403
  export interface CreateApplicationSetRequestRecordsInner {
361
404
  /**
362
- * List of attributes this record applies to
405
+ * List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
363
406
  * @type {Array<CreateApplicationSetRequestRecordsInnerAttributesInner>}
364
407
  * @memberof CreateApplicationSetRequestRecordsInner
365
408
  */
@@ -382,45 +425,14 @@ export interface CreateApplicationSetRequestRecordsInnerAttributesInner {
382
425
  * @type {string}
383
426
  * @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
384
427
  */
385
- 'name'?: string;
428
+ 'name': string;
386
429
  /**
387
430
  * The value of the option this record applies to
388
431
  * @type {string}
389
432
  * @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
390
433
  */
391
- 'value'?: string;
392
- /**
393
- *
394
- * @type {CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail}
395
- * @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
396
- */
397
- 'thumbnail'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail;
398
- }
399
- /**
400
- * Attribute thumbnail, intended for interfaces like storefront colour selector.
401
- * @export
402
- * @interface CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
403
- */
404
- export interface CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail {
405
- /**
406
- *
407
- * @type {string}
408
- * @memberof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
409
- */
410
- 'type'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum;
411
- /**
412
- *
413
- * @type {string}
414
- * @memberof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
415
- */
416
- 'value'?: string;
434
+ 'value': string;
417
435
  }
418
- export declare const CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum: {
419
- readonly Text: "text";
420
- readonly Color: "color";
421
- readonly Image: "image";
422
- };
423
- export type CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = typeof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum[keyof typeof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum];
424
436
  /**
425
437
  *
426
438
  * @export
@@ -736,12 +748,6 @@ export interface CreateProductVariant {
736
748
  * @memberof CreateProductVariant
737
749
  */
738
750
  'images'?: Array<CreateProductVariantImagesInner>;
739
- /**
740
- * List of application set UUIDs to associate with this variant
741
- * @type {Array<string>}
742
- * @memberof CreateProductVariant
743
- */
744
- 'applicationSets'?: Array<string>;
745
751
  /**
746
752
  * The GTIN (Global Trade Item Number) or EAN (European Article Number) of the variant. Please note that a barcode can only be attached after the Barcodes module has been installed.
747
753
  * @type {string}
@@ -781,6 +787,38 @@ export interface CreateProductVideosInner {
781
787
  */
782
788
  'src'?: string;
783
789
  }
790
+ /**
791
+ *
792
+ * @export
793
+ * @interface DuplicateProducts202Response
794
+ */
795
+ export interface DuplicateProducts202Response {
796
+ /**
797
+ * A message describing the duplication status
798
+ * @type {string}
799
+ * @memberof DuplicateProducts202Response
800
+ */
801
+ 'message'?: string;
802
+ }
803
+ /**
804
+ *
805
+ * @export
806
+ * @interface DuplicateProductsRequest
807
+ */
808
+ export interface DuplicateProductsRequest {
809
+ /**
810
+ * A set of product IDs to duplicate.
811
+ * @type {Array<string>}
812
+ * @memberof DuplicateProductsRequest
813
+ */
814
+ 'ids': Array<string>;
815
+ /**
816
+ * A set of project IDs to duplicate the products to.
817
+ * @type {Array<string>}
818
+ * @memberof DuplicateProductsRequest
819
+ */
820
+ 'projects': Array<string>;
821
+ }
784
822
  /**
785
823
  * Image description
786
824
  * @export
@@ -1324,12 +1362,6 @@ export interface TargetSearchPhraseData {
1324
1362
  * @interface UpdateApplicationSetRequest
1325
1363
  */
1326
1364
  export interface UpdateApplicationSetRequest {
1327
- /**
1328
- *
1329
- * @type {string}
1330
- * @memberof UpdateApplicationSetRequest
1331
- */
1332
- 'id'?: string;
1333
1365
  /**
1334
1366
  * Name of the application set
1335
1367
  * @type {string}
@@ -1374,7 +1406,7 @@ export interface UpdateApplicationSetRequest {
1374
1406
  */
1375
1407
  export interface UpdateApplicationSetRequestRecordsInner {
1376
1408
  /**
1377
- * List of attributes this record applies to
1409
+ * List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
1378
1410
  * @type {Array<UpdateApplicationSetRequestRecordsInnerAttributesInner>}
1379
1411
  * @memberof UpdateApplicationSetRequestRecordsInner
1380
1412
  */
@@ -2315,6 +2347,15 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
2315
2347
  * @throws {RequiredError}
2316
2348
  */
2317
2349
  deleteProduct: (project: string, productId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2350
+ /**
2351
+ * Duplicate products by a set of given IDs to a set of given project IDs.
2352
+ * @summary Duplicate products.
2353
+ * @param {string} project What project it is
2354
+ * @param {DuplicateProductsRequest} [duplicateProductsRequest] A set of product IDs to duplicate and the project IDs to duplicate them to.
2355
+ * @param {*} [options] Override http request option.
2356
+ * @throws {RequiredError}
2357
+ */
2358
+ duplicateProducts: (project: string, duplicateProductsRequest?: DuplicateProductsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2318
2359
  /**
2319
2360
  * Gets a product by a given ID.
2320
2361
  * @summary Get product
@@ -2399,6 +2440,15 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
2399
2440
  * @throws {RequiredError}
2400
2441
  */
2401
2442
  deleteProduct(project: string, productId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2443
+ /**
2444
+ * Duplicate products by a set of given IDs to a set of given project IDs.
2445
+ * @summary Duplicate products.
2446
+ * @param {string} project What project it is
2447
+ * @param {DuplicateProductsRequest} [duplicateProductsRequest] A set of product IDs to duplicate and the project IDs to duplicate them to.
2448
+ * @param {*} [options] Override http request option.
2449
+ * @throws {RequiredError}
2450
+ */
2451
+ duplicateProducts(project: string, duplicateProductsRequest?: DuplicateProductsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DuplicateProducts202Response>>;
2402
2452
  /**
2403
2453
  * Gets a product by a given ID.
2404
2454
  * @summary Get product
@@ -2481,6 +2531,14 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
2481
2531
  * @throws {RequiredError}
2482
2532
  */
2483
2533
  deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2534
+ /**
2535
+ * Duplicate products by a set of given IDs to a set of given project IDs.
2536
+ * @summary Duplicate products.
2537
+ * @param {ProductsApiDuplicateProductsRequest} requestParameters Request parameters.
2538
+ * @param {*} [options] Override http request option.
2539
+ * @throws {RequiredError}
2540
+ */
2541
+ duplicateProducts(requestParameters: ProductsApiDuplicateProductsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DuplicateProducts202Response>;
2484
2542
  /**
2485
2543
  * Gets a product by a given ID.
2486
2544
  * @summary Get product
@@ -2568,6 +2626,25 @@ export interface ProductsApiDeleteProductRequest {
2568
2626
  */
2569
2627
  readonly productId: string;
2570
2628
  }
2629
+ /**
2630
+ * Request parameters for duplicateProducts operation in ProductsApi.
2631
+ * @export
2632
+ * @interface ProductsApiDuplicateProductsRequest
2633
+ */
2634
+ export interface ProductsApiDuplicateProductsRequest {
2635
+ /**
2636
+ * What project it is
2637
+ * @type {string}
2638
+ * @memberof ProductsApiDuplicateProducts
2639
+ */
2640
+ readonly project: string;
2641
+ /**
2642
+ * A set of product IDs to duplicate and the project IDs to duplicate them to.
2643
+ * @type {DuplicateProductsRequest}
2644
+ * @memberof ProductsApiDuplicateProducts
2645
+ */
2646
+ readonly duplicateProductsRequest?: DuplicateProductsRequest;
2647
+ }
2571
2648
  /**
2572
2649
  * Request parameters for getProduct operation in ProductsApi.
2573
2650
  * @export
@@ -2743,6 +2820,15 @@ export declare class ProductsApi extends BaseAPI {
2743
2820
  * @memberof ProductsApi
2744
2821
  */
2745
2822
  deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2823
+ /**
2824
+ * Duplicate products by a set of given IDs to a set of given project IDs.
2825
+ * @summary Duplicate products.
2826
+ * @param {ProductsApiDuplicateProductsRequest} requestParameters Request parameters.
2827
+ * @param {*} [options] Override http request option.
2828
+ * @throws {RequiredError}
2829
+ * @memberof ProductsApi
2830
+ */
2831
+ duplicateProducts(requestParameters: ProductsApiDuplicateProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DuplicateProducts202Response, any>>;
2746
2832
  /**
2747
2833
  * Gets a product by a given ID.
2748
2834
  * @summary Get product
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.43.0
7
+ * The version of the OpenAPI document: 1.45.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -44,6 +44,11 @@ export const ApplicationPlacementEnum = {
44
44
  Right: 'right',
45
45
  Neck: 'neck'
46
46
  };
47
+ export const AttributeThumbnailTypeEnum = {
48
+ Text: 'text',
49
+ Color: 'color',
50
+ Image: 'image'
51
+ };
47
52
  export const CreateApplicationTechnologyEnum = {
48
53
  Dtg: 'dtg',
49
54
  Embroidery: 'embroidery',
@@ -62,11 +67,6 @@ export const CreateApplicationPlacementEnum = {
62
67
  Right: 'right',
63
68
  Neck: 'neck'
64
69
  };
65
- export const CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = {
66
- Text: 'text',
67
- Color: 'color',
68
- Image: 'image'
69
- };
70
70
  export const PriceCurrencyCodeEnum = {
71
71
  Gbp: 'GBP'
72
72
  };
@@ -602,6 +602,45 @@ export const ProductsApiAxiosParamCreator = function (configuration) {
602
602
  options: localVarRequestOptions,
603
603
  };
604
604
  }),
605
+ /**
606
+ * Duplicate products by a set of given IDs to a set of given project IDs.
607
+ * @summary Duplicate products.
608
+ * @param {string} project What project it is
609
+ * @param {DuplicateProductsRequest} [duplicateProductsRequest] A set of product IDs to duplicate and the project IDs to duplicate them to.
610
+ * @param {*} [options] Override http request option.
611
+ * @throws {RequiredError}
612
+ */
613
+ duplicateProducts: (project_1, duplicateProductsRequest_1, ...args_1) => __awaiter(this, [project_1, duplicateProductsRequest_1, ...args_1], void 0, function* (project, duplicateProductsRequest, options = {}) {
614
+ // verify required parameter 'project' is not null or undefined
615
+ assertParamExists('duplicateProducts', 'project', project);
616
+ const localVarPath = `/v1/catalog/products/duplicate`;
617
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
618
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
619
+ let baseOptions;
620
+ if (configuration) {
621
+ baseOptions = configuration.baseOptions;
622
+ }
623
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
624
+ const localVarHeaderParameter = {};
625
+ const localVarQueryParameter = {};
626
+ // authentication session-oauth required
627
+ // oauth required
628
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
629
+ // authentication api-key required
630
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
631
+ if (project !== undefined) {
632
+ localVarQueryParameter['project'] = project;
633
+ }
634
+ localVarHeaderParameter['Content-Type'] = 'application/json';
635
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
636
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
637
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
638
+ localVarRequestOptions.data = serializeDataIfNeeded(duplicateProductsRequest, localVarRequestOptions, configuration);
639
+ return {
640
+ url: toPathString(localVarUrlObj),
641
+ options: localVarRequestOptions,
642
+ };
643
+ }),
605
644
  /**
606
645
  * Gets a product by a given ID.
607
646
  * @summary Get product
@@ -907,6 +946,23 @@ export const ProductsApiFp = function (configuration) {
907
946
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
908
947
  });
909
948
  },
949
+ /**
950
+ * Duplicate products by a set of given IDs to a set of given project IDs.
951
+ * @summary Duplicate products.
952
+ * @param {string} project What project it is
953
+ * @param {DuplicateProductsRequest} [duplicateProductsRequest] A set of product IDs to duplicate and the project IDs to duplicate them to.
954
+ * @param {*} [options] Override http request option.
955
+ * @throws {RequiredError}
956
+ */
957
+ duplicateProducts(project, duplicateProductsRequest, options) {
958
+ return __awaiter(this, void 0, void 0, function* () {
959
+ var _a, _b, _c;
960
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.duplicateProducts(project, duplicateProductsRequest, options);
961
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
962
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProductsApi.duplicateProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
963
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
964
+ });
965
+ },
910
966
  /**
911
967
  * Gets a product by a given ID.
912
968
  * @summary Get product
@@ -1044,6 +1100,16 @@ export const ProductsApiFactory = function (configuration, basePath, axios) {
1044
1100
  deleteProduct(requestParameters, options) {
1045
1101
  return localVarFp.deleteProduct(requestParameters.project, requestParameters.productId, options).then((request) => request(axios, basePath));
1046
1102
  },
1103
+ /**
1104
+ * Duplicate products by a set of given IDs to a set of given project IDs.
1105
+ * @summary Duplicate products.
1106
+ * @param {ProductsApiDuplicateProductsRequest} requestParameters Request parameters.
1107
+ * @param {*} [options] Override http request option.
1108
+ * @throws {RequiredError}
1109
+ */
1110
+ duplicateProducts(requestParameters, options) {
1111
+ return localVarFp.duplicateProducts(requestParameters.project, requestParameters.duplicateProductsRequest, options).then((request) => request(axios, basePath));
1112
+ },
1047
1113
  /**
1048
1114
  * Gets a product by a given ID.
1049
1115
  * @summary Get product
@@ -1135,6 +1201,17 @@ export class ProductsApi extends BaseAPI {
1135
1201
  deleteProduct(requestParameters, options) {
1136
1202
  return ProductsApiFp(this.configuration).deleteProduct(requestParameters.project, requestParameters.productId, options).then((request) => request(this.axios, this.basePath));
1137
1203
  }
1204
+ /**
1205
+ * Duplicate products by a set of given IDs to a set of given project IDs.
1206
+ * @summary Duplicate products.
1207
+ * @param {ProductsApiDuplicateProductsRequest} requestParameters Request parameters.
1208
+ * @param {*} [options] Override http request option.
1209
+ * @throws {RequiredError}
1210
+ * @memberof ProductsApi
1211
+ */
1212
+ duplicateProducts(requestParameters, options) {
1213
+ return ProductsApiFp(this.configuration).duplicateProducts(requestParameters.project, requestParameters.duplicateProductsRequest, options).then((request) => request(this.axios, this.basePath));
1214
+ }
1138
1215
  /**
1139
1216
  * Gets a product by a given ID.
1140
1217
  * @summary Get product
@@ -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.43.0
5
+ * The version of the OpenAPI document: 1.45.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.43.0
7
+ * The version of the OpenAPI document: 1.45.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.43.0
5
+ * The version of the OpenAPI document: 1.45.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.43.0
7
+ * The version of the OpenAPI document: 1.45.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.43.0
5
+ * The version of the OpenAPI document: 1.45.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.43.0
7
+ * The version of the OpenAPI document: 1.45.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.43.0
5
+ * The version of the OpenAPI document: 1.45.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.43.0
7
+ * The version of the OpenAPI document: 1.45.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.43.0
5
+ * The version of the OpenAPI document: 1.45.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.43.0
8
+ * The version of the OpenAPI document: 1.45.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.43.0
7
+ * The version of the OpenAPI document: 1.45.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.43.0",
3
+ "version": "1.45.0",
4
4
  "description": "OpenAPI client for @teemill/product-catalog",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {