@teemill/product-catalog 1.74.0 → 1.75.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 +2 -6
- package/api.ts +5 -109
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +5 -109
- 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 +5 -109
- 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/CreateBundleProduct.md +1 -1
- package/docs/CreateProductRequest.md +1 -1
- package/docs/Product.md +1 -1
- package/docs/UpdateProductRequest.md +1 -1
- 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.75.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.75.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -133,7 +133,6 @@ Class | Method | HTTP request | Description
|
|
|
133
133
|
- [Product](docs/Product.md)
|
|
134
134
|
- [ProductAdditionalFilesInner](docs/ProductAdditionalFilesInner.md)
|
|
135
135
|
- [ProductApplicationSetsInner](docs/ProductApplicationSetsInner.md)
|
|
136
|
-
- [ProductBundleItemsInner](docs/ProductBundleItemsInner.md)
|
|
137
136
|
- [ProductWarehouseProduct](docs/ProductWarehouseProduct.md)
|
|
138
137
|
- [ProductsResponse](docs/ProductsResponse.md)
|
|
139
138
|
- [RequiredPrice](docs/RequiredPrice.md)
|
|
@@ -152,9 +151,6 @@ Class | Method | HTTP request | Description
|
|
|
152
151
|
- [UpdateApplicationSetRequestRecordsInner](docs/UpdateApplicationSetRequestRecordsInner.md)
|
|
153
152
|
- [UpdateApplicationSetRequestRecordsInnerAttributesInner](docs/UpdateApplicationSetRequestRecordsInnerAttributesInner.md)
|
|
154
153
|
- [UpdateProductRequest](docs/UpdateProductRequest.md)
|
|
155
|
-
- [UpdateProductRequestBundleItemsInner](docs/UpdateProductRequestBundleItemsInner.md)
|
|
156
|
-
- [UpdateProductRequestBundleItemsInnerConfig](docs/UpdateProductRequestBundleItemsInnerConfig.md)
|
|
157
|
-
- [UpdateProductRequestBundleItemsInnerConfigValidOptions](docs/UpdateProductRequestBundleItemsInnerConfigValidOptions.md)
|
|
158
154
|
- [UpdateProductRequestIntegrationConnectionsInner](docs/UpdateProductRequestIntegrationConnectionsInner.md)
|
|
159
155
|
- [UpdateProductsRequest](docs/UpdateProductsRequest.md)
|
|
160
156
|
- [UpdateProductsRequestProductsInner](docs/UpdateProductsRequestProductsInner.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.75.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -605,7 +605,7 @@ export interface CreateBundleProduct {
|
|
|
605
605
|
/**
|
|
606
606
|
* A list of product uuids to include in this bundle
|
|
607
607
|
*/
|
|
608
|
-
'bundleItems': Array<
|
|
608
|
+
'bundleItems': Array<string>;
|
|
609
609
|
'retailPrice'?: Price;
|
|
610
610
|
'salePrice'?: SalePrice | null;
|
|
611
611
|
'price'?: Price;
|
|
@@ -934,7 +934,7 @@ export interface Product {
|
|
|
934
934
|
/**
|
|
935
935
|
* Products in the bundle.
|
|
936
936
|
*/
|
|
937
|
-
'bundleItems'?: Array<
|
|
937
|
+
'bundleItems'?: Array<Product>;
|
|
938
938
|
'retailPrice'?: Price;
|
|
939
939
|
'salePrice'?: SalePrice | null;
|
|
940
940
|
/**
|
|
@@ -1008,93 +1008,6 @@ export interface ProductApplicationSetsInner {
|
|
|
1008
1008
|
*/
|
|
1009
1009
|
'name'?: string;
|
|
1010
1010
|
}
|
|
1011
|
-
export interface ProductBundleItemsInner {
|
|
1012
|
-
/**
|
|
1013
|
-
* Unique object identifier
|
|
1014
|
-
*/
|
|
1015
|
-
'id'?: string;
|
|
1016
|
-
/**
|
|
1017
|
-
* A reference to the resource location
|
|
1018
|
-
*/
|
|
1019
|
-
'ref'?: string;
|
|
1020
|
-
'title': string;
|
|
1021
|
-
'description': string;
|
|
1022
|
-
'slug'?: string;
|
|
1023
|
-
'brand'?: string;
|
|
1024
|
-
'enabled'?: boolean;
|
|
1025
|
-
'seoMetadata'?: SEOMetadata;
|
|
1026
|
-
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
1027
|
-
'tags'?: Array<string>;
|
|
1028
|
-
'internalTags'?: Array<string>;
|
|
1029
|
-
'createdAt'?: string;
|
|
1030
|
-
'updatedAt'?: string;
|
|
1031
|
-
'publishedAt'?: string;
|
|
1032
|
-
/**
|
|
1033
|
-
* Images
|
|
1034
|
-
*/
|
|
1035
|
-
'images'?: Array<Image>;
|
|
1036
|
-
/**
|
|
1037
|
-
* Videos
|
|
1038
|
-
*/
|
|
1039
|
-
'videos'?: Array<Video>;
|
|
1040
|
-
/**
|
|
1041
|
-
* Variants
|
|
1042
|
-
*/
|
|
1043
|
-
'variants'?: Array<Variant>;
|
|
1044
|
-
/**
|
|
1045
|
-
* Products in the bundle.
|
|
1046
|
-
*/
|
|
1047
|
-
'bundleItems'?: Array<ProductBundleItemsInner>;
|
|
1048
|
-
'retailPrice'?: Price;
|
|
1049
|
-
'salePrice'?: SalePrice | null;
|
|
1050
|
-
/**
|
|
1051
|
-
* Additional files attached to the product.
|
|
1052
|
-
*/
|
|
1053
|
-
'additionalFiles'?: Array<ProductAdditionalFilesInner>;
|
|
1054
|
-
/**
|
|
1055
|
-
* List of application sets associated with this product
|
|
1056
|
-
*/
|
|
1057
|
-
'applicationSets'?: Array<ProductApplicationSetsInner>;
|
|
1058
|
-
/**
|
|
1059
|
-
* The average review rating. This field is only present if included in the fields query parameter
|
|
1060
|
-
*/
|
|
1061
|
-
'reviewScore'?: number | null;
|
|
1062
|
-
/**
|
|
1063
|
-
* A count of reviews. This field is only present if included in the fields query parameter
|
|
1064
|
-
*/
|
|
1065
|
-
'reviewCount'?: number;
|
|
1066
|
-
'sku'?: string;
|
|
1067
|
-
/**
|
|
1068
|
-
* A count of sales. This field is only present if included in the fields query parameter
|
|
1069
|
-
*/
|
|
1070
|
-
'sales'?: number;
|
|
1071
|
-
'salesStart'?: string;
|
|
1072
|
-
'salesEnd'?: string;
|
|
1073
|
-
'includeInDataFeeds'?: boolean;
|
|
1074
|
-
/**
|
|
1075
|
-
* For use with the Shopify integration. The Shopify product ID that this product is linked to.
|
|
1076
|
-
*/
|
|
1077
|
-
'shopifyId'?: number | null;
|
|
1078
|
-
'warehouseProduct'?: ProductWarehouseProduct;
|
|
1079
|
-
/**
|
|
1080
|
-
* Key/value pairs that can be used to store additional information about the product
|
|
1081
|
-
*/
|
|
1082
|
-
'metafields'?: Array<MetaField>;
|
|
1083
|
-
/**
|
|
1084
|
-
* a JSON string representing the personalization template for the product
|
|
1085
|
-
*/
|
|
1086
|
-
'personalizationTemplate'?: string;
|
|
1087
|
-
/**
|
|
1088
|
-
* History of AI optimisations performed on the product
|
|
1089
|
-
*/
|
|
1090
|
-
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1091
|
-
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1092
|
-
/**
|
|
1093
|
-
* Whether to show a sale badge on the product
|
|
1094
|
-
*/
|
|
1095
|
-
'showSaleBadge'?: boolean;
|
|
1096
|
-
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1097
|
-
}
|
|
1098
1011
|
export interface ProductWarehouseProduct {
|
|
1099
1012
|
/**
|
|
1100
1013
|
* Unique object identifier
|
|
@@ -1402,9 +1315,9 @@ export interface UpdateProductRequest {
|
|
|
1402
1315
|
*/
|
|
1403
1316
|
'variants'?: Array<CreateProductVariant>;
|
|
1404
1317
|
/**
|
|
1405
|
-
* A list of
|
|
1318
|
+
* A list of product uuids to be in this bundle. Only valid if the product is already a bundle.
|
|
1406
1319
|
*/
|
|
1407
|
-
'bundleItems'?: Array<
|
|
1320
|
+
'bundleItems'?: Array<string>;
|
|
1408
1321
|
'retailPrice'?: Price;
|
|
1409
1322
|
'salePrice'?: SalePrice | null;
|
|
1410
1323
|
/**
|
|
@@ -1448,23 +1361,6 @@ export interface UpdateProductRequest {
|
|
|
1448
1361
|
*/
|
|
1449
1362
|
'showSaleBadge'?: boolean;
|
|
1450
1363
|
}
|
|
1451
|
-
export interface UpdateProductRequestBundleItemsInner {
|
|
1452
|
-
/**
|
|
1453
|
-
* Unique object identifier
|
|
1454
|
-
*/
|
|
1455
|
-
'id'?: string;
|
|
1456
|
-
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1457
|
-
}
|
|
1458
|
-
export interface UpdateProductRequestBundleItemsInnerConfig {
|
|
1459
|
-
'validOptions'?: UpdateProductRequestBundleItemsInnerConfigValidOptions;
|
|
1460
|
-
}
|
|
1461
|
-
/**
|
|
1462
|
-
* The valid options for the product in the bundle. This can be used to filter options that are available on the product but shouldn\'t be available when sold as part of a bundle. If none are provided, all options are considered to be valid.
|
|
1463
|
-
*/
|
|
1464
|
-
export interface UpdateProductRequestBundleItemsInnerConfigValidOptions {
|
|
1465
|
-
'name': string;
|
|
1466
|
-
'values': Array<string>;
|
|
1467
|
-
}
|
|
1468
1364
|
export interface UpdateProductRequestIntegrationConnectionsInner {
|
|
1469
1365
|
/**
|
|
1470
1366
|
* Code identifying the integration
|
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.75.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.75.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.75.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.75.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -572,7 +572,7 @@ export interface CreateBundleProduct {
|
|
|
572
572
|
/**
|
|
573
573
|
* A list of product uuids to include in this bundle
|
|
574
574
|
*/
|
|
575
|
-
'bundleItems': Array<
|
|
575
|
+
'bundleItems': Array<string>;
|
|
576
576
|
'retailPrice'?: Price;
|
|
577
577
|
'salePrice'?: SalePrice | null;
|
|
578
578
|
'price'?: Price;
|
|
@@ -897,7 +897,7 @@ export interface Product {
|
|
|
897
897
|
/**
|
|
898
898
|
* Products in the bundle.
|
|
899
899
|
*/
|
|
900
|
-
'bundleItems'?: Array<
|
|
900
|
+
'bundleItems'?: Array<Product>;
|
|
901
901
|
'retailPrice'?: Price;
|
|
902
902
|
'salePrice'?: SalePrice | null;
|
|
903
903
|
/**
|
|
@@ -971,93 +971,6 @@ export interface ProductApplicationSetsInner {
|
|
|
971
971
|
*/
|
|
972
972
|
'name'?: string;
|
|
973
973
|
}
|
|
974
|
-
export interface ProductBundleItemsInner {
|
|
975
|
-
/**
|
|
976
|
-
* Unique object identifier
|
|
977
|
-
*/
|
|
978
|
-
'id'?: string;
|
|
979
|
-
/**
|
|
980
|
-
* A reference to the resource location
|
|
981
|
-
*/
|
|
982
|
-
'ref'?: string;
|
|
983
|
-
'title': string;
|
|
984
|
-
'description': string;
|
|
985
|
-
'slug'?: string;
|
|
986
|
-
'brand'?: string;
|
|
987
|
-
'enabled'?: boolean;
|
|
988
|
-
'seoMetadata'?: SEOMetadata;
|
|
989
|
-
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
990
|
-
'tags'?: Array<string>;
|
|
991
|
-
'internalTags'?: Array<string>;
|
|
992
|
-
'createdAt'?: string;
|
|
993
|
-
'updatedAt'?: string;
|
|
994
|
-
'publishedAt'?: string;
|
|
995
|
-
/**
|
|
996
|
-
* Images
|
|
997
|
-
*/
|
|
998
|
-
'images'?: Array<Image>;
|
|
999
|
-
/**
|
|
1000
|
-
* Videos
|
|
1001
|
-
*/
|
|
1002
|
-
'videos'?: Array<Video>;
|
|
1003
|
-
/**
|
|
1004
|
-
* Variants
|
|
1005
|
-
*/
|
|
1006
|
-
'variants'?: Array<Variant>;
|
|
1007
|
-
/**
|
|
1008
|
-
* Products in the bundle.
|
|
1009
|
-
*/
|
|
1010
|
-
'bundleItems'?: Array<ProductBundleItemsInner>;
|
|
1011
|
-
'retailPrice'?: Price;
|
|
1012
|
-
'salePrice'?: SalePrice | null;
|
|
1013
|
-
/**
|
|
1014
|
-
* Additional files attached to the product.
|
|
1015
|
-
*/
|
|
1016
|
-
'additionalFiles'?: Array<ProductAdditionalFilesInner>;
|
|
1017
|
-
/**
|
|
1018
|
-
* List of application sets associated with this product
|
|
1019
|
-
*/
|
|
1020
|
-
'applicationSets'?: Array<ProductApplicationSetsInner>;
|
|
1021
|
-
/**
|
|
1022
|
-
* The average review rating. This field is only present if included in the fields query parameter
|
|
1023
|
-
*/
|
|
1024
|
-
'reviewScore'?: number | null;
|
|
1025
|
-
/**
|
|
1026
|
-
* A count of reviews. This field is only present if included in the fields query parameter
|
|
1027
|
-
*/
|
|
1028
|
-
'reviewCount'?: number;
|
|
1029
|
-
'sku'?: string;
|
|
1030
|
-
/**
|
|
1031
|
-
* A count of sales. This field is only present if included in the fields query parameter
|
|
1032
|
-
*/
|
|
1033
|
-
'sales'?: number;
|
|
1034
|
-
'salesStart'?: string;
|
|
1035
|
-
'salesEnd'?: string;
|
|
1036
|
-
'includeInDataFeeds'?: boolean;
|
|
1037
|
-
/**
|
|
1038
|
-
* For use with the Shopify integration. The Shopify product ID that this product is linked to.
|
|
1039
|
-
*/
|
|
1040
|
-
'shopifyId'?: number | null;
|
|
1041
|
-
'warehouseProduct'?: ProductWarehouseProduct;
|
|
1042
|
-
/**
|
|
1043
|
-
* Key/value pairs that can be used to store additional information about the product
|
|
1044
|
-
*/
|
|
1045
|
-
'metafields'?: Array<MetaField>;
|
|
1046
|
-
/**
|
|
1047
|
-
* a JSON string representing the personalization template for the product
|
|
1048
|
-
*/
|
|
1049
|
-
'personalizationTemplate'?: string;
|
|
1050
|
-
/**
|
|
1051
|
-
* History of AI optimisations performed on the product
|
|
1052
|
-
*/
|
|
1053
|
-
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1054
|
-
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1055
|
-
/**
|
|
1056
|
-
* Whether to show a sale badge on the product
|
|
1057
|
-
*/
|
|
1058
|
-
'showSaleBadge'?: boolean;
|
|
1059
|
-
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1060
|
-
}
|
|
1061
974
|
export interface ProductWarehouseProduct {
|
|
1062
975
|
/**
|
|
1063
976
|
* Unique object identifier
|
|
@@ -1352,9 +1265,9 @@ export interface UpdateProductRequest {
|
|
|
1352
1265
|
*/
|
|
1353
1266
|
'variants'?: Array<CreateProductVariant>;
|
|
1354
1267
|
/**
|
|
1355
|
-
* A list of
|
|
1268
|
+
* A list of product uuids to be in this bundle. Only valid if the product is already a bundle.
|
|
1356
1269
|
*/
|
|
1357
|
-
'bundleItems'?: Array<
|
|
1270
|
+
'bundleItems'?: Array<string>;
|
|
1358
1271
|
'retailPrice'?: Price;
|
|
1359
1272
|
'salePrice'?: SalePrice | null;
|
|
1360
1273
|
/**
|
|
@@ -1398,23 +1311,6 @@ export interface UpdateProductRequest {
|
|
|
1398
1311
|
*/
|
|
1399
1312
|
'showSaleBadge'?: boolean;
|
|
1400
1313
|
}
|
|
1401
|
-
export interface UpdateProductRequestBundleItemsInner {
|
|
1402
|
-
/**
|
|
1403
|
-
* Unique object identifier
|
|
1404
|
-
*/
|
|
1405
|
-
'id'?: string;
|
|
1406
|
-
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1407
|
-
}
|
|
1408
|
-
export interface UpdateProductRequestBundleItemsInnerConfig {
|
|
1409
|
-
'validOptions'?: UpdateProductRequestBundleItemsInnerConfigValidOptions;
|
|
1410
|
-
}
|
|
1411
|
-
/**
|
|
1412
|
-
* The valid options for the product in the bundle. This can be used to filter options that are available on the product but shouldn\'t be available when sold as part of a bundle. If none are provided, all options are considered to be valid.
|
|
1413
|
-
*/
|
|
1414
|
-
export interface UpdateProductRequestBundleItemsInnerConfigValidOptions {
|
|
1415
|
-
'name': string;
|
|
1416
|
-
'values': Array<string>;
|
|
1417
|
-
}
|
|
1418
1314
|
export interface UpdateProductRequestIntegrationConnectionsInner {
|
|
1419
1315
|
/**
|
|
1420
1316
|
* Code identifying the integration
|
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.75.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.75.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.75.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.75.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.75.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.75.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
|
@@ -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.75.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.75.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -572,7 +572,7 @@ export interface CreateBundleProduct {
|
|
|
572
572
|
/**
|
|
573
573
|
* A list of product uuids to include in this bundle
|
|
574
574
|
*/
|
|
575
|
-
'bundleItems': Array<
|
|
575
|
+
'bundleItems': Array<string>;
|
|
576
576
|
'retailPrice'?: Price;
|
|
577
577
|
'salePrice'?: SalePrice | null;
|
|
578
578
|
'price'?: Price;
|
|
@@ -897,7 +897,7 @@ export interface Product {
|
|
|
897
897
|
/**
|
|
898
898
|
* Products in the bundle.
|
|
899
899
|
*/
|
|
900
|
-
'bundleItems'?: Array<
|
|
900
|
+
'bundleItems'?: Array<Product>;
|
|
901
901
|
'retailPrice'?: Price;
|
|
902
902
|
'salePrice'?: SalePrice | null;
|
|
903
903
|
/**
|
|
@@ -971,93 +971,6 @@ export interface ProductApplicationSetsInner {
|
|
|
971
971
|
*/
|
|
972
972
|
'name'?: string;
|
|
973
973
|
}
|
|
974
|
-
export interface ProductBundleItemsInner {
|
|
975
|
-
/**
|
|
976
|
-
* Unique object identifier
|
|
977
|
-
*/
|
|
978
|
-
'id'?: string;
|
|
979
|
-
/**
|
|
980
|
-
* A reference to the resource location
|
|
981
|
-
*/
|
|
982
|
-
'ref'?: string;
|
|
983
|
-
'title': string;
|
|
984
|
-
'description': string;
|
|
985
|
-
'slug'?: string;
|
|
986
|
-
'brand'?: string;
|
|
987
|
-
'enabled'?: boolean;
|
|
988
|
-
'seoMetadata'?: SEOMetadata;
|
|
989
|
-
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
990
|
-
'tags'?: Array<string>;
|
|
991
|
-
'internalTags'?: Array<string>;
|
|
992
|
-
'createdAt'?: string;
|
|
993
|
-
'updatedAt'?: string;
|
|
994
|
-
'publishedAt'?: string;
|
|
995
|
-
/**
|
|
996
|
-
* Images
|
|
997
|
-
*/
|
|
998
|
-
'images'?: Array<Image>;
|
|
999
|
-
/**
|
|
1000
|
-
* Videos
|
|
1001
|
-
*/
|
|
1002
|
-
'videos'?: Array<Video>;
|
|
1003
|
-
/**
|
|
1004
|
-
* Variants
|
|
1005
|
-
*/
|
|
1006
|
-
'variants'?: Array<Variant>;
|
|
1007
|
-
/**
|
|
1008
|
-
* Products in the bundle.
|
|
1009
|
-
*/
|
|
1010
|
-
'bundleItems'?: Array<ProductBundleItemsInner>;
|
|
1011
|
-
'retailPrice'?: Price;
|
|
1012
|
-
'salePrice'?: SalePrice | null;
|
|
1013
|
-
/**
|
|
1014
|
-
* Additional files attached to the product.
|
|
1015
|
-
*/
|
|
1016
|
-
'additionalFiles'?: Array<ProductAdditionalFilesInner>;
|
|
1017
|
-
/**
|
|
1018
|
-
* List of application sets associated with this product
|
|
1019
|
-
*/
|
|
1020
|
-
'applicationSets'?: Array<ProductApplicationSetsInner>;
|
|
1021
|
-
/**
|
|
1022
|
-
* The average review rating. This field is only present if included in the fields query parameter
|
|
1023
|
-
*/
|
|
1024
|
-
'reviewScore'?: number | null;
|
|
1025
|
-
/**
|
|
1026
|
-
* A count of reviews. This field is only present if included in the fields query parameter
|
|
1027
|
-
*/
|
|
1028
|
-
'reviewCount'?: number;
|
|
1029
|
-
'sku'?: string;
|
|
1030
|
-
/**
|
|
1031
|
-
* A count of sales. This field is only present if included in the fields query parameter
|
|
1032
|
-
*/
|
|
1033
|
-
'sales'?: number;
|
|
1034
|
-
'salesStart'?: string;
|
|
1035
|
-
'salesEnd'?: string;
|
|
1036
|
-
'includeInDataFeeds'?: boolean;
|
|
1037
|
-
/**
|
|
1038
|
-
* For use with the Shopify integration. The Shopify product ID that this product is linked to.
|
|
1039
|
-
*/
|
|
1040
|
-
'shopifyId'?: number | null;
|
|
1041
|
-
'warehouseProduct'?: ProductWarehouseProduct;
|
|
1042
|
-
/**
|
|
1043
|
-
* Key/value pairs that can be used to store additional information about the product
|
|
1044
|
-
*/
|
|
1045
|
-
'metafields'?: Array<MetaField>;
|
|
1046
|
-
/**
|
|
1047
|
-
* a JSON string representing the personalization template for the product
|
|
1048
|
-
*/
|
|
1049
|
-
'personalizationTemplate'?: string;
|
|
1050
|
-
/**
|
|
1051
|
-
* History of AI optimisations performed on the product
|
|
1052
|
-
*/
|
|
1053
|
-
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1054
|
-
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1055
|
-
/**
|
|
1056
|
-
* Whether to show a sale badge on the product
|
|
1057
|
-
*/
|
|
1058
|
-
'showSaleBadge'?: boolean;
|
|
1059
|
-
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1060
|
-
}
|
|
1061
974
|
export interface ProductWarehouseProduct {
|
|
1062
975
|
/**
|
|
1063
976
|
* Unique object identifier
|
|
@@ -1352,9 +1265,9 @@ export interface UpdateProductRequest {
|
|
|
1352
1265
|
*/
|
|
1353
1266
|
'variants'?: Array<CreateProductVariant>;
|
|
1354
1267
|
/**
|
|
1355
|
-
* A list of
|
|
1268
|
+
* A list of product uuids to be in this bundle. Only valid if the product is already a bundle.
|
|
1356
1269
|
*/
|
|
1357
|
-
'bundleItems'?: Array<
|
|
1270
|
+
'bundleItems'?: Array<string>;
|
|
1358
1271
|
'retailPrice'?: Price;
|
|
1359
1272
|
'salePrice'?: SalePrice | null;
|
|
1360
1273
|
/**
|
|
@@ -1398,23 +1311,6 @@ export interface UpdateProductRequest {
|
|
|
1398
1311
|
*/
|
|
1399
1312
|
'showSaleBadge'?: boolean;
|
|
1400
1313
|
}
|
|
1401
|
-
export interface UpdateProductRequestBundleItemsInner {
|
|
1402
|
-
/**
|
|
1403
|
-
* Unique object identifier
|
|
1404
|
-
*/
|
|
1405
|
-
'id'?: string;
|
|
1406
|
-
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1407
|
-
}
|
|
1408
|
-
export interface UpdateProductRequestBundleItemsInnerConfig {
|
|
1409
|
-
'validOptions'?: UpdateProductRequestBundleItemsInnerConfigValidOptions;
|
|
1410
|
-
}
|
|
1411
|
-
/**
|
|
1412
|
-
* The valid options for the product in the bundle. This can be used to filter options that are available on the product but shouldn\'t be available when sold as part of a bundle. If none are provided, all options are considered to be valid.
|
|
1413
|
-
*/
|
|
1414
|
-
export interface UpdateProductRequestBundleItemsInnerConfigValidOptions {
|
|
1415
|
-
'name': string;
|
|
1416
|
-
'values': Array<string>;
|
|
1417
|
-
}
|
|
1418
1314
|
export interface UpdateProductRequestIntegrationConnectionsInner {
|
|
1419
1315
|
/**
|
|
1420
1316
|
* Code identifying the integration
|
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.75.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.75.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.75.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.75.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.75.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.75.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.
|
|
7
|
+
* The version of the OpenAPI document: 1.75.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* 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.75.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.75.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.75.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.75.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -19,7 +19,7 @@ Name | Type | Description | Notes
|
|
|
19
19
|
**additionalFiles** | [**Array<CreateProductAdditionalFilesInner>**](CreateProductAdditionalFilesInner.md) | Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc. | [optional] [default to undefined]
|
|
20
20
|
**shopifyId** | **number** | For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one. | [optional] [default to undefined]
|
|
21
21
|
**metafields** | [**Array<MetaField>**](MetaField.md) | Key/value pairs that can be used to store additional information about the product | [optional] [default to undefined]
|
|
22
|
-
**bundleItems** |
|
|
22
|
+
**bundleItems** | **Array<string>** | A list of product uuids to include in this bundle | [default to undefined]
|
|
23
23
|
**retailPrice** | [**Price**](Price.md) | | [optional] [default to undefined]
|
|
24
24
|
**salePrice** | [**SalePrice**](SalePrice.md) | | [optional] [default to undefined]
|
|
25
25
|
**price** | [**Price**](Price.md) | | [optional] [readonly] [default to undefined]
|
|
@@ -25,7 +25,7 @@ Name | Type | Description | Notes
|
|
|
25
25
|
**shopifyId** | **number** | For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one. | [optional] [default to undefined]
|
|
26
26
|
**metafields** | [**Array<MetaField>**](MetaField.md) | Key/value pairs that can be used to store additional information about the product | [optional] [default to undefined]
|
|
27
27
|
**personalizationTemplate** | **string** | A JSON object that defines the personalization template for the product. | [optional] [default to undefined]
|
|
28
|
-
**bundleItems** |
|
|
28
|
+
**bundleItems** | **Array<string>** | A list of product uuids to include in this bundle | [default to undefined]
|
|
29
29
|
**retailPrice** | [**Price**](Price.md) | | [optional] [default to undefined]
|
|
30
30
|
**salePrice** | [**SalePrice**](SalePrice.md) | | [optional] [default to undefined]
|
|
31
31
|
**price** | [**Price**](Price.md) | | [optional] [readonly] [default to undefined]
|
package/docs/Product.md
CHANGED
|
@@ -22,7 +22,7 @@ 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<
|
|
25
|
+
**bundleItems** | [**Array<Product>**](Product.md) | Products in the bundle. | [optional] [default to undefined]
|
|
26
26
|
**retailPrice** | [**Price**](Price.md) | | [optional] [default to undefined]
|
|
27
27
|
**salePrice** | [**SalePrice**](SalePrice.md) | | [optional] [default to undefined]
|
|
28
28
|
**additionalFiles** | [**Array<ProductAdditionalFilesInner>**](ProductAdditionalFilesInner.md) | Additional files attached to the product. | [optional] [default to undefined]
|
|
@@ -17,7 +17,7 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**tags** | **Array<string>** | Additional product tags used for searching and filtering. | [optional] [default to undefined]
|
|
18
18
|
**internalTags** | **Array<string>** | Additional product tags used for internal searching and filtering. | [optional] [default to undefined]
|
|
19
19
|
**variants** | [**Array<CreateProductVariant>**](CreateProductVariant.md) | Variants | [optional] [default to undefined]
|
|
20
|
-
**bundleItems** |
|
|
20
|
+
**bundleItems** | **Array<string>** | A list of product uuids to be in this bundle. Only valid if the product is already a bundle. | [optional] [default to undefined]
|
|
21
21
|
**retailPrice** | [**Price**](Price.md) | | [optional] [default to undefined]
|
|
22
22
|
**salePrice** | [**SalePrice**](SalePrice.md) | | [optional] [default to undefined]
|
|
23
23
|
**images** | [**Array<ImageFile>**](ImageFile.md) | Images to attach to the product. For example, photos of models using/wearing the product. | [optional] [default to undefined]
|
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.75.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|