@teemill/product-catalog 1.72.1 → 1.73.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 +6 -2
- package/api.ts +109 -5
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +133 -29
- 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 +133 -29
- 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/ProductBundleItemsInner.md +92 -0
- package/docs/UpdateProductRequest.md +1 -1
- package/docs/UpdateProductRequestBundleItemsInner.md +22 -0
- package/docs/UpdateProductRequestBundleItemsInnerConfig.md +20 -0
- package/docs/UpdateProductRequestBundleItemsInnerConfigValidOptions.md +23 -0
- package/index.ts +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/product-catalog@1.
|
|
1
|
+
## @teemill/product-catalog@1.73.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.73.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -132,6 +132,7 @@ Class | Method | HTTP request | Description
|
|
|
132
132
|
- [Product](docs/Product.md)
|
|
133
133
|
- [ProductAdditionalFilesInner](docs/ProductAdditionalFilesInner.md)
|
|
134
134
|
- [ProductApplicationSetsInner](docs/ProductApplicationSetsInner.md)
|
|
135
|
+
- [ProductBundleItemsInner](docs/ProductBundleItemsInner.md)
|
|
135
136
|
- [ProductWarehouseProduct](docs/ProductWarehouseProduct.md)
|
|
136
137
|
- [ProductsResponse](docs/ProductsResponse.md)
|
|
137
138
|
- [SEOMetadata](docs/SEOMetadata.md)
|
|
@@ -149,6 +150,9 @@ Class | Method | HTTP request | Description
|
|
|
149
150
|
- [UpdateApplicationSetRequestRecordsInner](docs/UpdateApplicationSetRequestRecordsInner.md)
|
|
150
151
|
- [UpdateApplicationSetRequestRecordsInnerAttributesInner](docs/UpdateApplicationSetRequestRecordsInnerAttributesInner.md)
|
|
151
152
|
- [UpdateProductRequest](docs/UpdateProductRequest.md)
|
|
153
|
+
- [UpdateProductRequestBundleItemsInner](docs/UpdateProductRequestBundleItemsInner.md)
|
|
154
|
+
- [UpdateProductRequestBundleItemsInnerConfig](docs/UpdateProductRequestBundleItemsInnerConfig.md)
|
|
155
|
+
- [UpdateProductRequestBundleItemsInnerConfigValidOptions](docs/UpdateProductRequestBundleItemsInnerConfigValidOptions.md)
|
|
152
156
|
- [UpdateProductRequestIntegrationConnectionsInner](docs/UpdateProductRequestIntegrationConnectionsInner.md)
|
|
153
157
|
- [UpdateProductsRequest](docs/UpdateProductsRequest.md)
|
|
154
158
|
- [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.73.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<UpdateProductRequestBundleItemsInner>;
|
|
609
609
|
'retailPrice'?: Price;
|
|
610
610
|
'salePrice'?: SalePrice | null;
|
|
611
611
|
'price'?: Price;
|
|
@@ -927,7 +927,7 @@ export interface Product {
|
|
|
927
927
|
/**
|
|
928
928
|
* Products in the bundle.
|
|
929
929
|
*/
|
|
930
|
-
'bundleItems'?: Array<
|
|
930
|
+
'bundleItems'?: Array<ProductBundleItemsInner>;
|
|
931
931
|
'retailPrice'?: Price;
|
|
932
932
|
'salePrice'?: SalePrice | null;
|
|
933
933
|
/**
|
|
@@ -1001,6 +1001,93 @@ export interface ProductApplicationSetsInner {
|
|
|
1001
1001
|
*/
|
|
1002
1002
|
'name'?: string;
|
|
1003
1003
|
}
|
|
1004
|
+
export interface ProductBundleItemsInner {
|
|
1005
|
+
/**
|
|
1006
|
+
* Unique object identifier
|
|
1007
|
+
*/
|
|
1008
|
+
'id'?: string;
|
|
1009
|
+
/**
|
|
1010
|
+
* A reference to the resource location
|
|
1011
|
+
*/
|
|
1012
|
+
'ref'?: string;
|
|
1013
|
+
'title': string;
|
|
1014
|
+
'description': string;
|
|
1015
|
+
'slug'?: string;
|
|
1016
|
+
'brand'?: string;
|
|
1017
|
+
'enabled'?: boolean;
|
|
1018
|
+
'seoMetadata'?: SEOMetadata;
|
|
1019
|
+
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
1020
|
+
'tags'?: Array<string>;
|
|
1021
|
+
'internalTags'?: Array<string>;
|
|
1022
|
+
'createdAt'?: string;
|
|
1023
|
+
'updatedAt'?: string;
|
|
1024
|
+
'publishedAt'?: string;
|
|
1025
|
+
/**
|
|
1026
|
+
* Images
|
|
1027
|
+
*/
|
|
1028
|
+
'images'?: Array<Image>;
|
|
1029
|
+
/**
|
|
1030
|
+
* Videos
|
|
1031
|
+
*/
|
|
1032
|
+
'videos'?: Array<Video>;
|
|
1033
|
+
/**
|
|
1034
|
+
* Variants
|
|
1035
|
+
*/
|
|
1036
|
+
'variants'?: Array<Variant>;
|
|
1037
|
+
/**
|
|
1038
|
+
* Products in the bundle.
|
|
1039
|
+
*/
|
|
1040
|
+
'bundleItems'?: Array<ProductBundleItemsInner>;
|
|
1041
|
+
'retailPrice'?: Price;
|
|
1042
|
+
'salePrice'?: SalePrice | null;
|
|
1043
|
+
/**
|
|
1044
|
+
* Additional files attached to the product.
|
|
1045
|
+
*/
|
|
1046
|
+
'additionalFiles'?: Array<ProductAdditionalFilesInner>;
|
|
1047
|
+
/**
|
|
1048
|
+
* List of application sets associated with this product
|
|
1049
|
+
*/
|
|
1050
|
+
'applicationSets'?: Array<ProductApplicationSetsInner>;
|
|
1051
|
+
/**
|
|
1052
|
+
* The average review rating. This field is only present if included in the fields query parameter
|
|
1053
|
+
*/
|
|
1054
|
+
'reviewScore'?: number | null;
|
|
1055
|
+
/**
|
|
1056
|
+
* A count of reviews. This field is only present if included in the fields query parameter
|
|
1057
|
+
*/
|
|
1058
|
+
'reviewCount'?: number;
|
|
1059
|
+
'sku'?: string;
|
|
1060
|
+
/**
|
|
1061
|
+
* A count of sales. This field is only present if included in the fields query parameter
|
|
1062
|
+
*/
|
|
1063
|
+
'sales'?: number;
|
|
1064
|
+
'salesStart'?: string;
|
|
1065
|
+
'salesEnd'?: string;
|
|
1066
|
+
'includeInDataFeeds'?: boolean;
|
|
1067
|
+
/**
|
|
1068
|
+
* For use with the Shopify integration. The Shopify product ID that this product is linked to.
|
|
1069
|
+
*/
|
|
1070
|
+
'shopifyId'?: number | null;
|
|
1071
|
+
'warehouseProduct'?: ProductWarehouseProduct;
|
|
1072
|
+
/**
|
|
1073
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1074
|
+
*/
|
|
1075
|
+
'metafields'?: Array<MetaField>;
|
|
1076
|
+
/**
|
|
1077
|
+
* a JSON string representing the personalization template for the product
|
|
1078
|
+
*/
|
|
1079
|
+
'personalizationTemplate'?: string;
|
|
1080
|
+
/**
|
|
1081
|
+
* History of AI optimisations performed on the product
|
|
1082
|
+
*/
|
|
1083
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1084
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1085
|
+
/**
|
|
1086
|
+
* Whether to show a sale badge on the product
|
|
1087
|
+
*/
|
|
1088
|
+
'showSaleBadge'?: boolean;
|
|
1089
|
+
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1090
|
+
}
|
|
1004
1091
|
export interface ProductWarehouseProduct {
|
|
1005
1092
|
/**
|
|
1006
1093
|
* Unique object identifier
|
|
@@ -1288,9 +1375,9 @@ export interface UpdateProductRequest {
|
|
|
1288
1375
|
*/
|
|
1289
1376
|
'variants'?: Array<CreateProductVariant>;
|
|
1290
1377
|
/**
|
|
1291
|
-
* A list of
|
|
1378
|
+
* A list of products to be in this bundle. Only valid if the product is already a bundle.
|
|
1292
1379
|
*/
|
|
1293
|
-
'bundleItems'?: Array<
|
|
1380
|
+
'bundleItems'?: Array<UpdateProductRequestBundleItemsInner>;
|
|
1294
1381
|
'retailPrice'?: Price;
|
|
1295
1382
|
'salePrice'?: SalePrice | null;
|
|
1296
1383
|
/**
|
|
@@ -1334,6 +1421,23 @@ export interface UpdateProductRequest {
|
|
|
1334
1421
|
*/
|
|
1335
1422
|
'showSaleBadge'?: boolean;
|
|
1336
1423
|
}
|
|
1424
|
+
export interface UpdateProductRequestBundleItemsInner {
|
|
1425
|
+
/**
|
|
1426
|
+
* Unique object identifier
|
|
1427
|
+
*/
|
|
1428
|
+
'id'?: string;
|
|
1429
|
+
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1430
|
+
}
|
|
1431
|
+
export interface UpdateProductRequestBundleItemsInnerConfig {
|
|
1432
|
+
'validOptions'?: UpdateProductRequestBundleItemsInnerConfigValidOptions;
|
|
1433
|
+
}
|
|
1434
|
+
/**
|
|
1435
|
+
* 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.
|
|
1436
|
+
*/
|
|
1437
|
+
export interface UpdateProductRequestBundleItemsInnerConfigValidOptions {
|
|
1438
|
+
'name': string;
|
|
1439
|
+
'values': Array<string>;
|
|
1440
|
+
}
|
|
1337
1441
|
export interface UpdateProductRequestIntegrationConnectionsInner {
|
|
1338
1442
|
/**
|
|
1339
1443
|
* 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.73.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.73.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.73.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.73.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<UpdateProductRequestBundleItemsInner>;
|
|
576
576
|
'retailPrice'?: Price;
|
|
577
577
|
'salePrice'?: SalePrice | null;
|
|
578
578
|
'price'?: Price;
|
|
@@ -890,7 +890,7 @@ export interface Product {
|
|
|
890
890
|
/**
|
|
891
891
|
* Products in the bundle.
|
|
892
892
|
*/
|
|
893
|
-
'bundleItems'?: Array<
|
|
893
|
+
'bundleItems'?: Array<ProductBundleItemsInner>;
|
|
894
894
|
'retailPrice'?: Price;
|
|
895
895
|
'salePrice'?: SalePrice | null;
|
|
896
896
|
/**
|
|
@@ -964,6 +964,93 @@ export interface ProductApplicationSetsInner {
|
|
|
964
964
|
*/
|
|
965
965
|
'name'?: string;
|
|
966
966
|
}
|
|
967
|
+
export interface ProductBundleItemsInner {
|
|
968
|
+
/**
|
|
969
|
+
* Unique object identifier
|
|
970
|
+
*/
|
|
971
|
+
'id'?: string;
|
|
972
|
+
/**
|
|
973
|
+
* A reference to the resource location
|
|
974
|
+
*/
|
|
975
|
+
'ref'?: string;
|
|
976
|
+
'title': string;
|
|
977
|
+
'description': string;
|
|
978
|
+
'slug'?: string;
|
|
979
|
+
'brand'?: string;
|
|
980
|
+
'enabled'?: boolean;
|
|
981
|
+
'seoMetadata'?: SEOMetadata;
|
|
982
|
+
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
983
|
+
'tags'?: Array<string>;
|
|
984
|
+
'internalTags'?: Array<string>;
|
|
985
|
+
'createdAt'?: string;
|
|
986
|
+
'updatedAt'?: string;
|
|
987
|
+
'publishedAt'?: string;
|
|
988
|
+
/**
|
|
989
|
+
* Images
|
|
990
|
+
*/
|
|
991
|
+
'images'?: Array<Image>;
|
|
992
|
+
/**
|
|
993
|
+
* Videos
|
|
994
|
+
*/
|
|
995
|
+
'videos'?: Array<Video>;
|
|
996
|
+
/**
|
|
997
|
+
* Variants
|
|
998
|
+
*/
|
|
999
|
+
'variants'?: Array<Variant>;
|
|
1000
|
+
/**
|
|
1001
|
+
* Products in the bundle.
|
|
1002
|
+
*/
|
|
1003
|
+
'bundleItems'?: Array<ProductBundleItemsInner>;
|
|
1004
|
+
'retailPrice'?: Price;
|
|
1005
|
+
'salePrice'?: SalePrice | null;
|
|
1006
|
+
/**
|
|
1007
|
+
* Additional files attached to the product.
|
|
1008
|
+
*/
|
|
1009
|
+
'additionalFiles'?: Array<ProductAdditionalFilesInner>;
|
|
1010
|
+
/**
|
|
1011
|
+
* List of application sets associated with this product
|
|
1012
|
+
*/
|
|
1013
|
+
'applicationSets'?: Array<ProductApplicationSetsInner>;
|
|
1014
|
+
/**
|
|
1015
|
+
* The average review rating. This field is only present if included in the fields query parameter
|
|
1016
|
+
*/
|
|
1017
|
+
'reviewScore'?: number | null;
|
|
1018
|
+
/**
|
|
1019
|
+
* A count of reviews. This field is only present if included in the fields query parameter
|
|
1020
|
+
*/
|
|
1021
|
+
'reviewCount'?: number;
|
|
1022
|
+
'sku'?: string;
|
|
1023
|
+
/**
|
|
1024
|
+
* A count of sales. This field is only present if included in the fields query parameter
|
|
1025
|
+
*/
|
|
1026
|
+
'sales'?: number;
|
|
1027
|
+
'salesStart'?: string;
|
|
1028
|
+
'salesEnd'?: string;
|
|
1029
|
+
'includeInDataFeeds'?: boolean;
|
|
1030
|
+
/**
|
|
1031
|
+
* For use with the Shopify integration. The Shopify product ID that this product is linked to.
|
|
1032
|
+
*/
|
|
1033
|
+
'shopifyId'?: number | null;
|
|
1034
|
+
'warehouseProduct'?: ProductWarehouseProduct;
|
|
1035
|
+
/**
|
|
1036
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1037
|
+
*/
|
|
1038
|
+
'metafields'?: Array<MetaField>;
|
|
1039
|
+
/**
|
|
1040
|
+
* a JSON string representing the personalization template for the product
|
|
1041
|
+
*/
|
|
1042
|
+
'personalizationTemplate'?: string;
|
|
1043
|
+
/**
|
|
1044
|
+
* History of AI optimisations performed on the product
|
|
1045
|
+
*/
|
|
1046
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1047
|
+
'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
|
|
1048
|
+
/**
|
|
1049
|
+
* Whether to show a sale badge on the product
|
|
1050
|
+
*/
|
|
1051
|
+
'showSaleBadge'?: boolean;
|
|
1052
|
+
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1053
|
+
}
|
|
967
1054
|
export interface ProductWarehouseProduct {
|
|
968
1055
|
/**
|
|
969
1056
|
* Unique object identifier
|
|
@@ -1241,9 +1328,9 @@ export interface UpdateProductRequest {
|
|
|
1241
1328
|
*/
|
|
1242
1329
|
'variants'?: Array<CreateProductVariant>;
|
|
1243
1330
|
/**
|
|
1244
|
-
* A list of
|
|
1331
|
+
* A list of products to be in this bundle. Only valid if the product is already a bundle.
|
|
1245
1332
|
*/
|
|
1246
|
-
'bundleItems'?: Array<
|
|
1333
|
+
'bundleItems'?: Array<UpdateProductRequestBundleItemsInner>;
|
|
1247
1334
|
'retailPrice'?: Price;
|
|
1248
1335
|
'salePrice'?: SalePrice | null;
|
|
1249
1336
|
/**
|
|
@@ -1287,6 +1374,23 @@ export interface UpdateProductRequest {
|
|
|
1287
1374
|
*/
|
|
1288
1375
|
'showSaleBadge'?: boolean;
|
|
1289
1376
|
}
|
|
1377
|
+
export interface UpdateProductRequestBundleItemsInner {
|
|
1378
|
+
/**
|
|
1379
|
+
* Unique object identifier
|
|
1380
|
+
*/
|
|
1381
|
+
'id'?: string;
|
|
1382
|
+
'config'?: UpdateProductRequestBundleItemsInnerConfig;
|
|
1383
|
+
}
|
|
1384
|
+
export interface UpdateProductRequestBundleItemsInnerConfig {
|
|
1385
|
+
'validOptions'?: UpdateProductRequestBundleItemsInnerConfigValidOptions;
|
|
1386
|
+
}
|
|
1387
|
+
/**
|
|
1388
|
+
* 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.
|
|
1389
|
+
*/
|
|
1390
|
+
export interface UpdateProductRequestBundleItemsInnerConfigValidOptions {
|
|
1391
|
+
'name': string;
|
|
1392
|
+
'values': Array<string>;
|
|
1393
|
+
}
|
|
1290
1394
|
export interface UpdateProductRequestIntegrationConnectionsInner {
|
|
1291
1395
|
/**
|
|
1292
1396
|
* Code identifying the integration
|
|
@@ -1780,7 +1884,7 @@ export declare class ApplicationGroupsApi extends BaseAPI {
|
|
|
1780
1884
|
* @param {*} [options] Override http request option.
|
|
1781
1885
|
* @throws {RequiredError}
|
|
1782
1886
|
*/
|
|
1783
|
-
createApplicationGroup(requestParameters: ApplicationGroupsApiCreateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any>>;
|
|
1887
|
+
createApplicationGroup(requestParameters: ApplicationGroupsApiCreateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any, {}>>;
|
|
1784
1888
|
/**
|
|
1785
1889
|
* Deletes an existing application group.
|
|
1786
1890
|
* @summary Delete an application group
|
|
@@ -1788,7 +1892,7 @@ export declare class ApplicationGroupsApi extends BaseAPI {
|
|
|
1788
1892
|
* @param {*} [options] Override http request option.
|
|
1789
1893
|
* @throws {RequiredError}
|
|
1790
1894
|
*/
|
|
1791
|
-
deleteApplicationGroup(requestParameters: ApplicationGroupsApiDeleteApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1895
|
+
deleteApplicationGroup(requestParameters: ApplicationGroupsApiDeleteApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1792
1896
|
/**
|
|
1793
1897
|
* Get an application group by the given id. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
1794
1898
|
* @summary Get an application group
|
|
@@ -1796,7 +1900,7 @@ export declare class ApplicationGroupsApi extends BaseAPI {
|
|
|
1796
1900
|
* @param {*} [options] Override http request option.
|
|
1797
1901
|
* @throws {RequiredError}
|
|
1798
1902
|
*/
|
|
1799
|
-
getApplicationGroup(requestParameters: ApplicationGroupsApiGetApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any>>;
|
|
1903
|
+
getApplicationGroup(requestParameters: ApplicationGroupsApiGetApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any, {}>>;
|
|
1800
1904
|
/**
|
|
1801
1905
|
* Lists all application groups that belong to the given project. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
1802
1906
|
* @summary List application groups
|
|
@@ -1804,7 +1908,7 @@ export declare class ApplicationGroupsApi extends BaseAPI {
|
|
|
1804
1908
|
* @param {*} [options] Override http request option.
|
|
1805
1909
|
* @throws {RequiredError}
|
|
1806
1910
|
*/
|
|
1807
|
-
listApplicationGroups(requestParameters: ApplicationGroupsApiListApplicationGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroupsResponse, any>>;
|
|
1911
|
+
listApplicationGroups(requestParameters: ApplicationGroupsApiListApplicationGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroupsResponse, any, {}>>;
|
|
1808
1912
|
/**
|
|
1809
1913
|
* Updates an existing application group.
|
|
1810
1914
|
* @summary Update application group
|
|
@@ -1812,7 +1916,7 @@ export declare class ApplicationGroupsApi extends BaseAPI {
|
|
|
1812
1916
|
* @param {*} [options] Override http request option.
|
|
1813
1917
|
* @throws {RequiredError}
|
|
1814
1918
|
*/
|
|
1815
|
-
updateApplicationGroup(requestParameters: ApplicationGroupsApiUpdateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any>>;
|
|
1919
|
+
updateApplicationGroup(requestParameters: ApplicationGroupsApiUpdateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any, {}>>;
|
|
1816
1920
|
}
|
|
1817
1921
|
/**
|
|
1818
1922
|
* ApplicationSetsApi - axios parameter creator
|
|
@@ -2053,7 +2157,7 @@ export declare class ApplicationSetsApi extends BaseAPI {
|
|
|
2053
2157
|
* @param {*} [options] Override http request option.
|
|
2054
2158
|
* @throws {RequiredError}
|
|
2055
2159
|
*/
|
|
2056
|
-
createApplicationSet(requestParameters: ApplicationSetsApiCreateApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSet, any>>;
|
|
2160
|
+
createApplicationSet(requestParameters: ApplicationSetsApiCreateApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSet, any, {}>>;
|
|
2057
2161
|
/**
|
|
2058
2162
|
* Deletes an existing application set.
|
|
2059
2163
|
* @summary Delete an application set
|
|
@@ -2061,7 +2165,7 @@ export declare class ApplicationSetsApi extends BaseAPI {
|
|
|
2061
2165
|
* @param {*} [options] Override http request option.
|
|
2062
2166
|
* @throws {RequiredError}
|
|
2063
2167
|
*/
|
|
2064
|
-
deleteApplicationSet(requestParameters: ApplicationSetsApiDeleteApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2168
|
+
deleteApplicationSet(requestParameters: ApplicationSetsApiDeleteApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2065
2169
|
/**
|
|
2066
2170
|
* Get an application by the given id.
|
|
2067
2171
|
* @summary Get an application set
|
|
@@ -2069,7 +2173,7 @@ export declare class ApplicationSetsApi extends BaseAPI {
|
|
|
2069
2173
|
* @param {*} [options] Override http request option.
|
|
2070
2174
|
* @throws {RequiredError}
|
|
2071
2175
|
*/
|
|
2072
|
-
getApplicationSet(requestParameters: ApplicationSetsApiGetApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSet, any>>;
|
|
2176
|
+
getApplicationSet(requestParameters: ApplicationSetsApiGetApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSet, any, {}>>;
|
|
2073
2177
|
/**
|
|
2074
2178
|
* Lists all application sets that belong to the given project.
|
|
2075
2179
|
* @summary List application sets
|
|
@@ -2077,7 +2181,7 @@ export declare class ApplicationSetsApi extends BaseAPI {
|
|
|
2077
2181
|
* @param {*} [options] Override http request option.
|
|
2078
2182
|
* @throws {RequiredError}
|
|
2079
2183
|
*/
|
|
2080
|
-
listApplicationSets(requestParameters: ApplicationSetsApiListApplicationSetsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSetsResponse, any>>;
|
|
2184
|
+
listApplicationSets(requestParameters: ApplicationSetsApiListApplicationSetsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSetsResponse, any, {}>>;
|
|
2081
2185
|
/**
|
|
2082
2186
|
* Updates an existing application set.
|
|
2083
2187
|
* @summary Update application set
|
|
@@ -2085,7 +2189,7 @@ export declare class ApplicationSetsApi extends BaseAPI {
|
|
|
2085
2189
|
* @param {*} [options] Override http request option.
|
|
2086
2190
|
* @throws {RequiredError}
|
|
2087
2191
|
*/
|
|
2088
|
-
updateApplicationSet(requestParameters: ApplicationSetsApiUpdateApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSet, any>>;
|
|
2192
|
+
updateApplicationSet(requestParameters: ApplicationSetsApiUpdateApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSet, any, {}>>;
|
|
2089
2193
|
}
|
|
2090
2194
|
/**
|
|
2091
2195
|
* ApplicationTechnologiesApi - axios parameter creator
|
|
@@ -2146,7 +2250,7 @@ export declare class ApplicationTechnologiesApi extends BaseAPI {
|
|
|
2146
2250
|
* @param {*} [options] Override http request option.
|
|
2147
2251
|
* @throws {RequiredError}
|
|
2148
2252
|
*/
|
|
2149
|
-
listTechnologies(requestParameters: ApplicationTechnologiesApiListTechnologiesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationTechnologiesResponse, any>>;
|
|
2253
|
+
listTechnologies(requestParameters: ApplicationTechnologiesApiListTechnologiesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationTechnologiesResponse, any, {}>>;
|
|
2150
2254
|
}
|
|
2151
2255
|
/**
|
|
2152
2256
|
* ProductsApi - axios parameter creator
|
|
@@ -2645,7 +2749,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2645
2749
|
* @param {*} [options] Override http request option.
|
|
2646
2750
|
* @throws {RequiredError}
|
|
2647
2751
|
*/
|
|
2648
|
-
createProduct(requestParameters: ProductsApiCreateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
|
|
2752
|
+
createProduct(requestParameters: ProductsApiCreateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any, {}>>;
|
|
2649
2753
|
/**
|
|
2650
2754
|
* Deletes a catalog product
|
|
2651
2755
|
* @summary Delete catalog product
|
|
@@ -2653,7 +2757,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2653
2757
|
* @param {*} [options] Override http request option.
|
|
2654
2758
|
* @throws {RequiredError}
|
|
2655
2759
|
*/
|
|
2656
|
-
deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2760
|
+
deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2657
2761
|
/**
|
|
2658
2762
|
* Deletes catalog products for the given project.
|
|
2659
2763
|
* @summary Delete products
|
|
@@ -2661,7 +2765,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2661
2765
|
* @param {*} [options] Override http request option.
|
|
2662
2766
|
* @throws {RequiredError}
|
|
2663
2767
|
*/
|
|
2664
|
-
deleteProducts(requestParameters: ProductsApiDeleteProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2768
|
+
deleteProducts(requestParameters: ProductsApiDeleteProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2665
2769
|
/**
|
|
2666
2770
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
2667
2771
|
* @summary Duplicate products.
|
|
@@ -2669,7 +2773,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2669
2773
|
* @param {*} [options] Override http request option.
|
|
2670
2774
|
* @throws {RequiredError}
|
|
2671
2775
|
*/
|
|
2672
|
-
duplicateProducts(requestParameters: ProductsApiDuplicateProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DuplicateProducts202Response, any>>;
|
|
2776
|
+
duplicateProducts(requestParameters: ProductsApiDuplicateProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DuplicateProducts202Response, any, {}>>;
|
|
2673
2777
|
/**
|
|
2674
2778
|
* Export the project\'s products and variants as a CSV file.
|
|
2675
2779
|
* @summary Export products
|
|
@@ -2677,7 +2781,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2677
2781
|
* @param {*} [options] Override http request option.
|
|
2678
2782
|
* @throws {RequiredError}
|
|
2679
2783
|
*/
|
|
2680
|
-
exportProducts(requestParameters: ProductsApiExportProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
2784
|
+
exportProducts(requestParameters: ProductsApiExportProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
2681
2785
|
/**
|
|
2682
2786
|
* Gets a product by a given ID.
|
|
2683
2787
|
* @summary Get product
|
|
@@ -2685,7 +2789,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2685
2789
|
* @param {*} [options] Override http request option.
|
|
2686
2790
|
* @throws {RequiredError}
|
|
2687
2791
|
*/
|
|
2688
|
-
getProduct(requestParameters: ProductsApiGetProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
|
|
2792
|
+
getProduct(requestParameters: ProductsApiGetProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any, {}>>;
|
|
2689
2793
|
/**
|
|
2690
2794
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
2691
2795
|
* @summary Import products
|
|
@@ -2693,7 +2797,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2693
2797
|
* @param {*} [options] Override http request option.
|
|
2694
2798
|
* @throws {RequiredError}
|
|
2695
2799
|
*/
|
|
2696
|
-
importProducts(requestParameters: ProductsApiImportProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImportProducts200Response, any>>;
|
|
2800
|
+
importProducts(requestParameters: ProductsApiImportProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImportProducts200Response, any, {}>>;
|
|
2697
2801
|
/**
|
|
2698
2802
|
* Lists all store listing products attached to the given project.
|
|
2699
2803
|
* @summary List products
|
|
@@ -2701,7 +2805,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2701
2805
|
* @param {*} [options] Override http request option.
|
|
2702
2806
|
* @throws {RequiredError}
|
|
2703
2807
|
*/
|
|
2704
|
-
listProducts(requestParameters: ProductsApiListProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductsResponse, any>>;
|
|
2808
|
+
listProducts(requestParameters: ProductsApiListProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductsResponse, any, {}>>;
|
|
2705
2809
|
/**
|
|
2706
2810
|
* AI SEO optimises products by a set of given IDs.
|
|
2707
2811
|
* @summary AI SEO optimise products.
|
|
@@ -2709,7 +2813,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2709
2813
|
* @param {*} [options] Override http request option.
|
|
2710
2814
|
* @throws {RequiredError}
|
|
2711
2815
|
*/
|
|
2712
|
-
seoOptimiseProducts(requestParameters: ProductsApiSeoOptimiseProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SeoOptimiseProducts202Response, any>>;
|
|
2816
|
+
seoOptimiseProducts(requestParameters: ProductsApiSeoOptimiseProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SeoOptimiseProducts202Response, any, {}>>;
|
|
2713
2817
|
/**
|
|
2714
2818
|
* Updates a product by a given ID.
|
|
2715
2819
|
* @summary Update product
|
|
@@ -2717,7 +2821,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2717
2821
|
* @param {*} [options] Override http request option.
|
|
2718
2822
|
* @throws {RequiredError}
|
|
2719
2823
|
*/
|
|
2720
|
-
updateProduct(requestParameters: ProductsApiUpdateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
|
|
2824
|
+
updateProduct(requestParameters: ProductsApiUpdateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any, {}>>;
|
|
2721
2825
|
/**
|
|
2722
2826
|
* Updates catalog products for the given project.
|
|
2723
2827
|
* @summary Update products
|
|
@@ -2725,7 +2829,7 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2725
2829
|
* @param {*} [options] Override http request option.
|
|
2726
2830
|
* @throws {RequiredError}
|
|
2727
2831
|
*/
|
|
2728
|
-
updateProducts(requestParameters: ProductsApiUpdateProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductsResponse, any>>;
|
|
2832
|
+
updateProducts(requestParameters: ProductsApiUpdateProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductsResponse, any, {}>>;
|
|
2729
2833
|
}
|
|
2730
2834
|
export declare const ListProductsDateFilterTypeEnum: {
|
|
2731
2835
|
readonly CreatedAt: "createdAt";
|
|
@@ -2860,7 +2964,7 @@ export declare class VariantsApi extends BaseAPI {
|
|
|
2860
2964
|
* @param {*} [options] Override http request option.
|
|
2861
2965
|
* @throws {RequiredError}
|
|
2862
2966
|
*/
|
|
2863
|
-
getVariant(requestParameters: VariantsApiGetVariantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Variant, any>>;
|
|
2967
|
+
getVariant(requestParameters: VariantsApiGetVariantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Variant, any, {}>>;
|
|
2864
2968
|
/**
|
|
2865
2969
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
2866
2970
|
* @summary List variants
|
|
@@ -2868,5 +2972,5 @@ export declare class VariantsApi extends BaseAPI {
|
|
|
2868
2972
|
* @param {*} [options] Override http request option.
|
|
2869
2973
|
* @throws {RequiredError}
|
|
2870
2974
|
*/
|
|
2871
|
-
listVariants(requestParameters: VariantsApiListVariantsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariantsResponse, any>>;
|
|
2975
|
+
listVariants(requestParameters: VariantsApiListVariantsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariantsResponse, any, {}>>;
|
|
2872
2976
|
}
|
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.73.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.73.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.73.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.73.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.73.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.73.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.73.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|