@teemill/product-catalog 1.78.0 → 1.80.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.78.0
1
+ ## @teemill/product-catalog@1.80.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.78.0 --save
39
+ npm install @teemill/product-catalog@1.80.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -103,6 +103,7 @@ Class | Method | HTTP request | Description
103
103
  - [Attribute](docs/Attribute.md)
104
104
  - [AttributeThumbnail](docs/AttributeThumbnail.md)
105
105
  - [Attributes1Inner](docs/Attributes1Inner.md)
106
+ - [BundleProduct](docs/BundleProduct.md)
106
107
  - [CreateApplication](docs/CreateApplication.md)
107
108
  - [CreateApplicationGroupRequest](docs/CreateApplicationGroupRequest.md)
108
109
  - [CreateApplicationProperties](docs/CreateApplicationProperties.md)
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.78.0
7
+ * The version of the OpenAPI document: 1.80.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -386,6 +386,89 @@ export interface Attributes1Inner {
386
386
  'name'?: string;
387
387
  'value'?: string;
388
388
  }
389
+ export interface BundleProduct {
390
+ /**
391
+ * Unique object identifier
392
+ */
393
+ 'id'?: string;
394
+ /**
395
+ * A reference to the resource location
396
+ */
397
+ 'ref'?: string;
398
+ 'title': string;
399
+ 'description': string;
400
+ 'slug'?: string;
401
+ 'brand'?: string;
402
+ 'enabled'?: boolean;
403
+ 'seoMetadata'?: SEOMetadata;
404
+ 'targetSearchPhraseData'?: TargetSearchPhraseData;
405
+ 'tags'?: Array<string>;
406
+ 'internalTags'?: Array<string>;
407
+ 'createdAt'?: string;
408
+ 'updatedAt'?: string;
409
+ 'publishedAt'?: string;
410
+ /**
411
+ * Images
412
+ */
413
+ 'images'?: Array<Image>;
414
+ /**
415
+ * Videos
416
+ */
417
+ 'videos'?: Array<Video>;
418
+ /**
419
+ * Variants
420
+ */
421
+ 'variants'?: Array<Variant>;
422
+ 'retailPrice'?: Price;
423
+ 'salePrice'?: SalePrice | null;
424
+ /**
425
+ * Additional files attached to the product.
426
+ */
427
+ 'additionalFiles'?: Array<ProductAdditionalFilesInner>;
428
+ /**
429
+ * List of application sets associated with this product
430
+ */
431
+ 'applicationSets'?: Array<ProductApplicationSetsInner>;
432
+ /**
433
+ * The average review rating. This field is only present if included in the fields query parameter
434
+ */
435
+ 'reviewScore'?: number | null;
436
+ /**
437
+ * A count of reviews. This field is only present if included in the fields query parameter
438
+ */
439
+ 'reviewCount'?: number;
440
+ 'sku'?: string;
441
+ /**
442
+ * A count of sales. This field is only present if included in the fields query parameter
443
+ */
444
+ 'sales'?: number;
445
+ 'salesStart'?: string;
446
+ 'salesEnd'?: string;
447
+ 'includeInDataFeeds'?: boolean;
448
+ /**
449
+ * For use with the Shopify integration. The Shopify product ID that this product is linked to.
450
+ */
451
+ 'shopifyId'?: number | null;
452
+ 'warehouseProduct'?: ProductWarehouseProduct;
453
+ /**
454
+ * Key/value pairs that can be used to store additional information about the product
455
+ */
456
+ 'metafields'?: Array<MetaField>;
457
+ /**
458
+ * a JSON string representing the personalization template for the product
459
+ */
460
+ 'personalizationTemplate'?: string;
461
+ /**
462
+ * History of AI optimisations performed on the product
463
+ */
464
+ 'optimisationHistory'?: Array<OptimisationHistoryItem>;
465
+ 'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
466
+ /**
467
+ * Whether to show a sale badge on the product
468
+ */
469
+ 'showSaleBadge'?: boolean;
470
+ 'license'?: License;
471
+ }
389
472
  export interface CreateApplication {
390
473
  /**
391
474
  * Technology to use for the application.
@@ -1062,10 +1145,6 @@ export interface ProductBundleItemsInner {
1062
1145
  * Variants
1063
1146
  */
1064
1147
  'variants'?: Array<Variant>;
1065
- /**
1066
- * Products in the bundle.
1067
- */
1068
- 'bundleItems'?: Array<ProductBundleItemsInner>;
1069
1148
  'retailPrice'?: Price;
1070
1149
  'salePrice'?: SalePrice | null;
1071
1150
  /**
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.78.0
7
+ * The version of the OpenAPI document: 1.80.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.78.0
7
+ * The version of the OpenAPI document: 1.80.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Product Catalog API
4
4
  * 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.
5
5
  *
6
- * The version of the OpenAPI document: 1.78.0
6
+ * The version of the OpenAPI document: 1.80.0
7
7
  *
8
8
  *
9
9
  * 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.78.0
5
+ * The version of the OpenAPI document: 1.80.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -361,6 +361,89 @@ export interface Attributes1Inner {
361
361
  'name'?: string;
362
362
  'value'?: string;
363
363
  }
364
+ export interface BundleProduct {
365
+ /**
366
+ * Unique object identifier
367
+ */
368
+ 'id'?: string;
369
+ /**
370
+ * A reference to the resource location
371
+ */
372
+ 'ref'?: string;
373
+ 'title': string;
374
+ 'description': string;
375
+ 'slug'?: string;
376
+ 'brand'?: string;
377
+ 'enabled'?: boolean;
378
+ 'seoMetadata'?: SEOMetadata;
379
+ 'targetSearchPhraseData'?: TargetSearchPhraseData;
380
+ 'tags'?: Array<string>;
381
+ 'internalTags'?: Array<string>;
382
+ 'createdAt'?: string;
383
+ 'updatedAt'?: string;
384
+ 'publishedAt'?: string;
385
+ /**
386
+ * Images
387
+ */
388
+ 'images'?: Array<Image>;
389
+ /**
390
+ * Videos
391
+ */
392
+ 'videos'?: Array<Video>;
393
+ /**
394
+ * Variants
395
+ */
396
+ 'variants'?: Array<Variant>;
397
+ 'retailPrice'?: Price;
398
+ 'salePrice'?: SalePrice | null;
399
+ /**
400
+ * Additional files attached to the product.
401
+ */
402
+ 'additionalFiles'?: Array<ProductAdditionalFilesInner>;
403
+ /**
404
+ * List of application sets associated with this product
405
+ */
406
+ 'applicationSets'?: Array<ProductApplicationSetsInner>;
407
+ /**
408
+ * The average review rating. This field is only present if included in the fields query parameter
409
+ */
410
+ 'reviewScore'?: number | null;
411
+ /**
412
+ * A count of reviews. This field is only present if included in the fields query parameter
413
+ */
414
+ 'reviewCount'?: number;
415
+ 'sku'?: string;
416
+ /**
417
+ * A count of sales. This field is only present if included in the fields query parameter
418
+ */
419
+ 'sales'?: number;
420
+ 'salesStart'?: string;
421
+ 'salesEnd'?: string;
422
+ 'includeInDataFeeds'?: boolean;
423
+ /**
424
+ * For use with the Shopify integration. The Shopify product ID that this product is linked to.
425
+ */
426
+ 'shopifyId'?: number | null;
427
+ 'warehouseProduct'?: ProductWarehouseProduct;
428
+ /**
429
+ * Key/value pairs that can be used to store additional information about the product
430
+ */
431
+ 'metafields'?: Array<MetaField>;
432
+ /**
433
+ * a JSON string representing the personalization template for the product
434
+ */
435
+ 'personalizationTemplate'?: string;
436
+ /**
437
+ * History of AI optimisations performed on the product
438
+ */
439
+ 'optimisationHistory'?: Array<OptimisationHistoryItem>;
440
+ 'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
441
+ /**
442
+ * Whether to show a sale badge on the product
443
+ */
444
+ 'showSaleBadge'?: boolean;
445
+ 'license'?: License;
446
+ }
364
447
  export interface CreateApplication {
365
448
  /**
366
449
  * Technology to use for the application.
@@ -1025,10 +1108,6 @@ export interface ProductBundleItemsInner {
1025
1108
  * Variants
1026
1109
  */
1027
1110
  'variants'?: Array<Variant>;
1028
- /**
1029
- * Products in the bundle.
1030
- */
1031
- 'bundleItems'?: Array<ProductBundleItemsInner>;
1032
1111
  'retailPrice'?: Price;
1033
1112
  'salePrice'?: SalePrice | null;
1034
1113
  /**
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.78.0
8
+ * The version of the OpenAPI document: 1.80.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.78.0
5
+ * The version of the OpenAPI document: 1.80.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.78.0
8
+ * The version of the OpenAPI document: 1.80.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.78.0
5
+ * The version of the OpenAPI document: 1.80.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.78.0
8
+ * The version of the OpenAPI document: 1.80.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.78.0
5
+ * The version of the OpenAPI document: 1.80.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.78.0
7
+ * The version of the OpenAPI document: 1.80.0
8
8
  *
9
9
  *
10
10
  * 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.78.0
5
+ * The version of the OpenAPI document: 1.80.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -361,6 +361,89 @@ export interface Attributes1Inner {
361
361
  'name'?: string;
362
362
  'value'?: string;
363
363
  }
364
+ export interface BundleProduct {
365
+ /**
366
+ * Unique object identifier
367
+ */
368
+ 'id'?: string;
369
+ /**
370
+ * A reference to the resource location
371
+ */
372
+ 'ref'?: string;
373
+ 'title': string;
374
+ 'description': string;
375
+ 'slug'?: string;
376
+ 'brand'?: string;
377
+ 'enabled'?: boolean;
378
+ 'seoMetadata'?: SEOMetadata;
379
+ 'targetSearchPhraseData'?: TargetSearchPhraseData;
380
+ 'tags'?: Array<string>;
381
+ 'internalTags'?: Array<string>;
382
+ 'createdAt'?: string;
383
+ 'updatedAt'?: string;
384
+ 'publishedAt'?: string;
385
+ /**
386
+ * Images
387
+ */
388
+ 'images'?: Array<Image>;
389
+ /**
390
+ * Videos
391
+ */
392
+ 'videos'?: Array<Video>;
393
+ /**
394
+ * Variants
395
+ */
396
+ 'variants'?: Array<Variant>;
397
+ 'retailPrice'?: Price;
398
+ 'salePrice'?: SalePrice | null;
399
+ /**
400
+ * Additional files attached to the product.
401
+ */
402
+ 'additionalFiles'?: Array<ProductAdditionalFilesInner>;
403
+ /**
404
+ * List of application sets associated with this product
405
+ */
406
+ 'applicationSets'?: Array<ProductApplicationSetsInner>;
407
+ /**
408
+ * The average review rating. This field is only present if included in the fields query parameter
409
+ */
410
+ 'reviewScore'?: number | null;
411
+ /**
412
+ * A count of reviews. This field is only present if included in the fields query parameter
413
+ */
414
+ 'reviewCount'?: number;
415
+ 'sku'?: string;
416
+ /**
417
+ * A count of sales. This field is only present if included in the fields query parameter
418
+ */
419
+ 'sales'?: number;
420
+ 'salesStart'?: string;
421
+ 'salesEnd'?: string;
422
+ 'includeInDataFeeds'?: boolean;
423
+ /**
424
+ * For use with the Shopify integration. The Shopify product ID that this product is linked to.
425
+ */
426
+ 'shopifyId'?: number | null;
427
+ 'warehouseProduct'?: ProductWarehouseProduct;
428
+ /**
429
+ * Key/value pairs that can be used to store additional information about the product
430
+ */
431
+ 'metafields'?: Array<MetaField>;
432
+ /**
433
+ * a JSON string representing the personalization template for the product
434
+ */
435
+ 'personalizationTemplate'?: string;
436
+ /**
437
+ * History of AI optimisations performed on the product
438
+ */
439
+ 'optimisationHistory'?: Array<OptimisationHistoryItem>;
440
+ 'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
441
+ /**
442
+ * Whether to show a sale badge on the product
443
+ */
444
+ 'showSaleBadge'?: boolean;
445
+ 'license'?: License;
446
+ }
364
447
  export interface CreateApplication {
365
448
  /**
366
449
  * Technology to use for the application.
@@ -1025,10 +1108,6 @@ export interface ProductBundleItemsInner {
1025
1108
  * Variants
1026
1109
  */
1027
1110
  'variants'?: Array<Variant>;
1028
- /**
1029
- * Products in the bundle.
1030
- */
1031
- 'bundleItems'?: Array<ProductBundleItemsInner>;
1032
1111
  'retailPrice'?: Price;
1033
1112
  'salePrice'?: SalePrice | null;
1034
1113
  /**
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.78.0
7
+ * The version of the OpenAPI document: 1.80.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.78.0
5
+ * The version of the OpenAPI document: 1.80.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.78.0
7
+ * The version of the OpenAPI document: 1.80.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.78.0
5
+ * The version of the OpenAPI document: 1.80.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.78.0
7
+ * The version of the OpenAPI document: 1.80.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.78.0
5
+ * The version of the OpenAPI document: 1.80.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,7 +3,7 @@
3
3
  * Product Catalog API
4
4
  * 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.
5
5
  *
6
- * The version of the OpenAPI document: 1.78.0
6
+ * The version of the OpenAPI document: 1.80.0
7
7
  *
8
8
  *
9
9
  * 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.78.0
5
+ * The version of the OpenAPI document: 1.80.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.78.0
7
+ * The version of the OpenAPI document: 1.80.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.78.0
5
+ * The version of the OpenAPI document: 1.80.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.78.0
8
+ * The version of the OpenAPI document: 1.80.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,90 @@
1
+ # BundleProduct
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | Unique object identifier | [optional] [default to undefined]
9
+ **ref** | **string** | A reference to the resource location | [optional] [default to undefined]
10
+ **title** | **string** | | [default to undefined]
11
+ **description** | **string** | | [default to undefined]
12
+ **slug** | **string** | | [optional] [readonly] [default to undefined]
13
+ **brand** | **string** | | [optional] [default to undefined]
14
+ **enabled** | **boolean** | | [optional] [default to undefined]
15
+ **seoMetadata** | [**SEOMetadata**](SEOMetadata.md) | | [optional] [default to undefined]
16
+ **targetSearchPhraseData** | [**TargetSearchPhraseData**](TargetSearchPhraseData.md) | | [optional] [default to undefined]
17
+ **tags** | **Array&lt;string&gt;** | | [optional] [default to undefined]
18
+ **internalTags** | **Array&lt;string&gt;** | | [optional] [default to undefined]
19
+ **createdAt** | **string** | | [optional] [default to undefined]
20
+ **updatedAt** | **string** | | [optional] [default to undefined]
21
+ **publishedAt** | **string** | | [optional] [default to undefined]
22
+ **images** | [**Array&lt;Image&gt;**](Image.md) | Images | [optional] [default to undefined]
23
+ **videos** | [**Array&lt;Video&gt;**](Video.md) | Videos | [optional] [default to undefined]
24
+ **variants** | [**Array&lt;Variant&gt;**](Variant.md) | Variants | [optional] [default to undefined]
25
+ **retailPrice** | [**Price**](Price.md) | | [optional] [default to undefined]
26
+ **salePrice** | [**SalePrice**](SalePrice.md) | | [optional] [default to undefined]
27
+ **additionalFiles** | [**Array&lt;ProductAdditionalFilesInner&gt;**](ProductAdditionalFilesInner.md) | Additional files attached to the product. | [optional] [default to undefined]
28
+ **applicationSets** | [**Array&lt;ProductApplicationSetsInner&gt;**](ProductApplicationSetsInner.md) | List of application sets associated with this product | [optional] [default to undefined]
29
+ **reviewScore** | **number** | The average review rating. This field is only present if included in the fields query parameter | [optional] [default to undefined]
30
+ **reviewCount** | **number** | A count of reviews. This field is only present if included in the fields query parameter | [optional] [default to undefined]
31
+ **sku** | **string** | | [optional] [default to undefined]
32
+ **sales** | **number** | A count of sales. This field is only present if included in the fields query parameter | [optional] [default to undefined]
33
+ **salesStart** | **string** | | [optional] [default to undefined]
34
+ **salesEnd** | **string** | | [optional] [default to undefined]
35
+ **includeInDataFeeds** | **boolean** | | [optional] [default to undefined]
36
+ **shopifyId** | **number** | For use with the Shopify integration. The Shopify product ID that this product is linked to. | [optional] [default to undefined]
37
+ **warehouseProduct** | [**ProductWarehouseProduct**](ProductWarehouseProduct.md) | | [optional] [default to undefined]
38
+ **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]
39
+ **personalizationTemplate** | **string** | a JSON string representing the personalization template for the product | [optional] [default to undefined]
40
+ **optimisationHistory** | [**Array&lt;OptimisationHistoryItem&gt;**](OptimisationHistoryItem.md) | History of AI optimisations performed on the product | [optional] [default to undefined]
41
+ **integrationConnections** | [**Array&lt;UpdateProductsRequestProductsInnerIntegrationConnectionsInner&gt;**](UpdateProductsRequestProductsInnerIntegrationConnectionsInner.md) | | [optional] [default to undefined]
42
+ **showSaleBadge** | **boolean** | Whether to show a sale badge on the product | [optional] [default to undefined]
43
+ **license** | [**License**](License.md) | | [optional] [default to undefined]
44
+
45
+ ## Example
46
+
47
+ ```typescript
48
+ import { BundleProduct } from '@teemill/product-catalog';
49
+
50
+ const instance: BundleProduct = {
51
+ id,
52
+ ref,
53
+ title,
54
+ description,
55
+ slug,
56
+ brand,
57
+ enabled,
58
+ seoMetadata,
59
+ targetSearchPhraseData,
60
+ tags,
61
+ internalTags,
62
+ createdAt,
63
+ updatedAt,
64
+ publishedAt,
65
+ images,
66
+ videos,
67
+ variants,
68
+ retailPrice,
69
+ salePrice,
70
+ additionalFiles,
71
+ applicationSets,
72
+ reviewScore,
73
+ reviewCount,
74
+ sku,
75
+ sales,
76
+ salesStart,
77
+ salesEnd,
78
+ includeInDataFeeds,
79
+ shopifyId,
80
+ warehouseProduct,
81
+ metafields,
82
+ personalizationTemplate,
83
+ optimisationHistory,
84
+ integrationConnections,
85
+ showSaleBadge,
86
+ license,
87
+ };
88
+ ```
89
+
90
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -22,7 +22,6 @@ Name | Type | Description | Notes
22
22
  **images** | [**Array&lt;Image&gt;**](Image.md) | Images | [optional] [default to undefined]
23
23
  **videos** | [**Array&lt;Video&gt;**](Video.md) | Videos | [optional] [default to undefined]
24
24
  **variants** | [**Array&lt;Variant&gt;**](Variant.md) | Variants | [optional] [default to undefined]
25
- **bundleItems** | [**Array&lt;ProductBundleItemsInner&gt;**](ProductBundleItemsInner.md) | Products in the bundle. | [optional] [default to undefined]
26
25
  **retailPrice** | [**Price**](Price.md) | | [optional] [default to undefined]
27
26
  **salePrice** | [**SalePrice**](SalePrice.md) | | [optional] [default to undefined]
28
27
  **additionalFiles** | [**Array&lt;ProductAdditionalFilesInner&gt;**](ProductAdditionalFilesInner.md) | Additional files attached to the product. | [optional] [default to undefined]
@@ -67,7 +66,6 @@ const instance: ProductBundleItemsInner = {
67
66
  images,
68
67
  videos,
69
68
  variants,
70
- bundleItems,
71
69
  retailPrice,
72
70
  salePrice,
73
71
  additionalFiles,
@@ -307,6 +307,7 @@ const { status, data } = await apiInstance.exportProducts(
307
307
  |**400** | Failed validation. | - |
308
308
  |**401** | Not authorised to access this resource. | - |
309
309
  |**403** | Refuse to authorize. | - |
310
+ |**409** | Conflict | - |
310
311
  |**500** | Unknown server error. | - |
311
312
 
312
313
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
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.78.0
7
+ * The version of the OpenAPI document: 1.80.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.78.0",
3
+ "version": "1.80.0",
4
4
  "description": "OpenAPI client for @teemill/product-catalog",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {