@teemill/product-catalog 1.77.0 → 1.79.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 +4 -2
- package/api.ts +99 -5
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +99 -5
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +99 -5
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/BundleProduct.md +90 -0
- package/docs/License.md +23 -0
- package/docs/Product.md +2 -0
- package/docs/ProductBundleItemsInner.md +2 -2
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/product-catalog@1.
|
|
1
|
+
## @teemill/product-catalog@1.79.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.
|
|
39
|
+
npm install @teemill/product-catalog@1.79.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)
|
|
@@ -126,6 +127,7 @@ Class | Method | HTTP request | Description
|
|
|
126
127
|
- [ImageFile](docs/ImageFile.md)
|
|
127
128
|
- [ImageFileFocalPoint](docs/ImageFileFocalPoint.md)
|
|
128
129
|
- [ImportProducts200Response](docs/ImportProducts200Response.md)
|
|
130
|
+
- [License](docs/License.md)
|
|
129
131
|
- [Location](docs/Location.md)
|
|
130
132
|
- [MetaField](docs/MetaField.md)
|
|
131
133
|
- [NamedPrice](docs/NamedPrice.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.
|
|
7
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
@@ -848,6 +931,19 @@ export interface ImportProducts200Response {
|
|
|
848
931
|
*/
|
|
849
932
|
'importId'?: string;
|
|
850
933
|
}
|
|
934
|
+
/**
|
|
935
|
+
* This field should be used when a product requires a valid license to manufacture, sell, or distribute — for example, officially licensed characters, brands, or artwork.
|
|
936
|
+
*/
|
|
937
|
+
export interface License {
|
|
938
|
+
/**
|
|
939
|
+
* The ID of the license
|
|
940
|
+
*/
|
|
941
|
+
'id'?: string;
|
|
942
|
+
/**
|
|
943
|
+
* The date and time the license will expire
|
|
944
|
+
*/
|
|
945
|
+
'expiresAt'?: string;
|
|
946
|
+
}
|
|
851
947
|
export interface Location {
|
|
852
948
|
/**
|
|
853
949
|
* The total number of units available at the location
|
|
@@ -990,6 +1086,7 @@ export interface Product {
|
|
|
990
1086
|
* Whether to show a sale badge on the product
|
|
991
1087
|
*/
|
|
992
1088
|
'showSaleBadge'?: boolean;
|
|
1089
|
+
'license'?: License;
|
|
993
1090
|
}
|
|
994
1091
|
export interface ProductAdditionalFilesInner {
|
|
995
1092
|
/**
|
|
@@ -1048,10 +1145,6 @@ export interface ProductBundleItemsInner {
|
|
|
1048
1145
|
* Variants
|
|
1049
1146
|
*/
|
|
1050
1147
|
'variants'?: Array<Variant>;
|
|
1051
|
-
/**
|
|
1052
|
-
* Products in the bundle.
|
|
1053
|
-
*/
|
|
1054
|
-
'bundleItems'?: Array<ProductBundleItemsInner>;
|
|
1055
1148
|
'retailPrice'?: Price;
|
|
1056
1149
|
'salePrice'?: SalePrice | null;
|
|
1057
1150
|
/**
|
|
@@ -1100,6 +1193,7 @@ export interface ProductBundleItemsInner {
|
|
|
1100
1193
|
* Whether to show a sale badge on the product
|
|
1101
1194
|
*/
|
|
1102
1195
|
'showSaleBadge'?: boolean;
|
|
1196
|
+
'license'?: License;
|
|
1103
1197
|
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1104
1198
|
}
|
|
1105
1199
|
export interface ProductWarehouseProduct {
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
7
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
6
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
@@ -814,6 +897,19 @@ export interface ImportProducts200Response {
|
|
|
814
897
|
*/
|
|
815
898
|
'importId'?: string;
|
|
816
899
|
}
|
|
900
|
+
/**
|
|
901
|
+
* This field should be used when a product requires a valid license to manufacture, sell, or distribute — for example, officially licensed characters, brands, or artwork.
|
|
902
|
+
*/
|
|
903
|
+
export interface License {
|
|
904
|
+
/**
|
|
905
|
+
* The ID of the license
|
|
906
|
+
*/
|
|
907
|
+
'id'?: string;
|
|
908
|
+
/**
|
|
909
|
+
* The date and time the license will expire
|
|
910
|
+
*/
|
|
911
|
+
'expiresAt'?: string;
|
|
912
|
+
}
|
|
817
913
|
export interface Location {
|
|
818
914
|
/**
|
|
819
915
|
* The total number of units available at the location
|
|
@@ -953,6 +1049,7 @@ export interface Product {
|
|
|
953
1049
|
* Whether to show a sale badge on the product
|
|
954
1050
|
*/
|
|
955
1051
|
'showSaleBadge'?: boolean;
|
|
1052
|
+
'license'?: License;
|
|
956
1053
|
}
|
|
957
1054
|
export interface ProductAdditionalFilesInner {
|
|
958
1055
|
/**
|
|
@@ -1011,10 +1108,6 @@ export interface ProductBundleItemsInner {
|
|
|
1011
1108
|
* Variants
|
|
1012
1109
|
*/
|
|
1013
1110
|
'variants'?: Array<Variant>;
|
|
1014
|
-
/**
|
|
1015
|
-
* Products in the bundle.
|
|
1016
|
-
*/
|
|
1017
|
-
'bundleItems'?: Array<ProductBundleItemsInner>;
|
|
1018
1111
|
'retailPrice'?: Price;
|
|
1019
1112
|
'salePrice'?: SalePrice | null;
|
|
1020
1113
|
/**
|
|
@@ -1063,6 +1156,7 @@ export interface ProductBundleItemsInner {
|
|
|
1063
1156
|
* Whether to show a sale badge on the product
|
|
1064
1157
|
*/
|
|
1065
1158
|
'showSaleBadge'?: boolean;
|
|
1159
|
+
'license'?: License;
|
|
1066
1160
|
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1067
1161
|
}
|
|
1068
1162
|
export interface ProductWarehouseProduct {
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
8
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
8
|
+
* The version of the OpenAPI document: 1.79.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.79.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.
|
|
7
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
@@ -814,6 +897,19 @@ export interface ImportProducts200Response {
|
|
|
814
897
|
*/
|
|
815
898
|
'importId'?: string;
|
|
816
899
|
}
|
|
900
|
+
/**
|
|
901
|
+
* This field should be used when a product requires a valid license to manufacture, sell, or distribute — for example, officially licensed characters, brands, or artwork.
|
|
902
|
+
*/
|
|
903
|
+
export interface License {
|
|
904
|
+
/**
|
|
905
|
+
* The ID of the license
|
|
906
|
+
*/
|
|
907
|
+
'id'?: string;
|
|
908
|
+
/**
|
|
909
|
+
* The date and time the license will expire
|
|
910
|
+
*/
|
|
911
|
+
'expiresAt'?: string;
|
|
912
|
+
}
|
|
817
913
|
export interface Location {
|
|
818
914
|
/**
|
|
819
915
|
* The total number of units available at the location
|
|
@@ -953,6 +1049,7 @@ export interface Product {
|
|
|
953
1049
|
* Whether to show a sale badge on the product
|
|
954
1050
|
*/
|
|
955
1051
|
'showSaleBadge'?: boolean;
|
|
1052
|
+
'license'?: License;
|
|
956
1053
|
}
|
|
957
1054
|
export interface ProductAdditionalFilesInner {
|
|
958
1055
|
/**
|
|
@@ -1011,10 +1108,6 @@ export interface ProductBundleItemsInner {
|
|
|
1011
1108
|
* Variants
|
|
1012
1109
|
*/
|
|
1013
1110
|
'variants'?: Array<Variant>;
|
|
1014
|
-
/**
|
|
1015
|
-
* Products in the bundle.
|
|
1016
|
-
*/
|
|
1017
|
-
'bundleItems'?: Array<ProductBundleItemsInner>;
|
|
1018
1111
|
'retailPrice'?: Price;
|
|
1019
1112
|
'salePrice'?: SalePrice | null;
|
|
1020
1113
|
/**
|
|
@@ -1063,6 +1156,7 @@ export interface ProductBundleItemsInner {
|
|
|
1063
1156
|
* Whether to show a sale badge on the product
|
|
1064
1157
|
*/
|
|
1065
1158
|
'showSaleBadge'?: boolean;
|
|
1159
|
+
'license'?: License;
|
|
1066
1160
|
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1067
1161
|
}
|
|
1068
1162
|
export interface ProductWarehouseProduct {
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.79.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
7
|
+
* The version of the OpenAPI document: 1.79.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.79.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.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.
|
|
7
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
6
|
+
* The version of the OpenAPI document: 1.79.0
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
7
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.79.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.
|
|
8
|
+
* The version of the OpenAPI document: 1.79.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<string>** | | [optional] [default to undefined]
|
|
18
|
+
**internalTags** | **Array<string>** | | [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<Image>**](Image.md) | Images | [optional] [default to undefined]
|
|
23
|
+
**videos** | [**Array<Video>**](Video.md) | Videos | [optional] [default to undefined]
|
|
24
|
+
**variants** | [**Array<Variant>**](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<ProductAdditionalFilesInner>**](ProductAdditionalFilesInner.md) | Additional files attached to the product. | [optional] [default to undefined]
|
|
28
|
+
**applicationSets** | [**Array<ProductApplicationSetsInner>**](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<MetaField>**](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<OptimisationHistoryItem>**](OptimisationHistoryItem.md) | History of AI optimisations performed on the product | [optional] [default to undefined]
|
|
41
|
+
**integrationConnections** | [**Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>**](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)
|
package/docs/License.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# License
|
|
2
|
+
|
|
3
|
+
This field should be used when a product requires a valid license to manufacture, sell, or distribute — for example, officially licensed characters, brands, or artwork.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | The ID of the license | [optional] [default to undefined]
|
|
10
|
+
**expiresAt** | **string** | The date and time the license will expire | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { License } from '@teemill/product-catalog';
|
|
16
|
+
|
|
17
|
+
const instance: License = {
|
|
18
|
+
id,
|
|
19
|
+
expiresAt,
|
|
20
|
+
};
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/Product.md
CHANGED
|
@@ -41,6 +41,7 @@ Name | Type | Description | Notes
|
|
|
41
41
|
**optimisationHistory** | [**Array<OptimisationHistoryItem>**](OptimisationHistoryItem.md) | History of AI optimisations performed on the product | [optional] [default to undefined]
|
|
42
42
|
**integrationConnections** | [**Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>**](UpdateProductsRequestProductsInnerIntegrationConnectionsInner.md) | | [optional] [default to undefined]
|
|
43
43
|
**showSaleBadge** | **boolean** | Whether to show a sale badge on the product | [optional] [default to undefined]
|
|
44
|
+
**license** | [**License**](License.md) | | [optional] [default to undefined]
|
|
44
45
|
|
|
45
46
|
## Example
|
|
46
47
|
|
|
@@ -84,6 +85,7 @@ const instance: Product = {
|
|
|
84
85
|
optimisationHistory,
|
|
85
86
|
integrationConnections,
|
|
86
87
|
showSaleBadge,
|
|
88
|
+
license,
|
|
87
89
|
};
|
|
88
90
|
```
|
|
89
91
|
|
|
@@ -22,7 +22,6 @@ Name | Type | Description | Notes
|
|
|
22
22
|
**images** | [**Array<Image>**](Image.md) | Images | [optional] [default to undefined]
|
|
23
23
|
**videos** | [**Array<Video>**](Video.md) | Videos | [optional] [default to undefined]
|
|
24
24
|
**variants** | [**Array<Variant>**](Variant.md) | Variants | [optional] [default to undefined]
|
|
25
|
-
**bundleItems** | [**Array<ProductBundleItemsInner>**](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<ProductAdditionalFilesInner>**](ProductAdditionalFilesInner.md) | Additional files attached to the product. | [optional] [default to undefined]
|
|
@@ -41,6 +40,7 @@ Name | Type | Description | Notes
|
|
|
41
40
|
**optimisationHistory** | [**Array<OptimisationHistoryItem>**](OptimisationHistoryItem.md) | History of AI optimisations performed on the product | [optional] [default to undefined]
|
|
42
41
|
**integrationConnections** | [**Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>**](UpdateProductsRequestProductsInnerIntegrationConnectionsInner.md) | | [optional] [default to undefined]
|
|
43
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
44
|
**config** | [**UpdateProductRequestBundleItemsInnerConfig**](UpdateProductRequestBundleItemsInnerConfig.md) | | [optional] [default to undefined]
|
|
45
45
|
|
|
46
46
|
## Example
|
|
@@ -66,7 +66,6 @@ const instance: ProductBundleItemsInner = {
|
|
|
66
66
|
images,
|
|
67
67
|
videos,
|
|
68
68
|
variants,
|
|
69
|
-
bundleItems,
|
|
70
69
|
retailPrice,
|
|
71
70
|
salePrice,
|
|
72
71
|
additionalFiles,
|
|
@@ -85,6 +84,7 @@ const instance: ProductBundleItemsInner = {
|
|
|
85
84
|
optimisationHistory,
|
|
86
85
|
integrationConnections,
|
|
87
86
|
showSaleBadge,
|
|
87
|
+
license,
|
|
88
88
|
config,
|
|
89
89
|
};
|
|
90
90
|
```
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.79.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|