@teemill/product-catalog 1.41.0 → 1.43.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 -2
- package/api.ts +29 -4
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +29 -4
- 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 +29 -4
- 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/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.43.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.43.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
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.43.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -525,7 +525,7 @@ export interface CreateBundleProduct {
|
|
|
525
525
|
* @type {number}
|
|
526
526
|
* @memberof CreateBundleProduct
|
|
527
527
|
*/
|
|
528
|
-
'shopifyId'?: number
|
|
528
|
+
'shopifyId'?: number;
|
|
529
529
|
/**
|
|
530
530
|
* Key/value pairs that can be used to store additional information about the product
|
|
531
531
|
* @type {Array<MetaField>}
|
|
@@ -664,7 +664,7 @@ export interface CreateProduct {
|
|
|
664
664
|
* @type {number}
|
|
665
665
|
* @memberof CreateProduct
|
|
666
666
|
*/
|
|
667
|
-
'shopifyId'?: number
|
|
667
|
+
'shopifyId'?: number;
|
|
668
668
|
/**
|
|
669
669
|
* Key/value pairs that can be used to store additional information about the product
|
|
670
670
|
* @type {Array<MetaField>}
|
|
@@ -775,7 +775,7 @@ export interface CreateProductVariant {
|
|
|
775
775
|
* @type {number}
|
|
776
776
|
* @memberof CreateProductVariant
|
|
777
777
|
*/
|
|
778
|
-
'shopifyId'?: number
|
|
778
|
+
'shopifyId'?: number;
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
*
|
|
@@ -928,6 +928,25 @@ export interface MetaField {
|
|
|
928
928
|
*/
|
|
929
929
|
'value': string;
|
|
930
930
|
}
|
|
931
|
+
/**
|
|
932
|
+
*
|
|
933
|
+
* @export
|
|
934
|
+
* @interface OptimisationHistoryItem
|
|
935
|
+
*/
|
|
936
|
+
export interface OptimisationHistoryItem {
|
|
937
|
+
/**
|
|
938
|
+
* Unique object identifier
|
|
939
|
+
* @type {string}
|
|
940
|
+
* @memberof OptimisationHistoryItem
|
|
941
|
+
*/
|
|
942
|
+
'id'?: string;
|
|
943
|
+
/**
|
|
944
|
+
*
|
|
945
|
+
* @type {string}
|
|
946
|
+
* @memberof OptimisationHistoryItem
|
|
947
|
+
*/
|
|
948
|
+
'createdAt'?: string;
|
|
949
|
+
}
|
|
931
950
|
/**
|
|
932
951
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
933
952
|
* @export
|
|
@@ -1152,6 +1171,12 @@ export interface Product {
|
|
|
1152
1171
|
* @memberof Product
|
|
1153
1172
|
*/
|
|
1154
1173
|
'personalizationTemplate'?: string;
|
|
1174
|
+
/**
|
|
1175
|
+
* History of AI optimisations performed on the product
|
|
1176
|
+
* @type {Array<OptimisationHistoryItem>}
|
|
1177
|
+
* @memberof Product
|
|
1178
|
+
*/
|
|
1179
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1155
1180
|
}
|
|
1156
1181
|
/**
|
|
1157
1182
|
*
|
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.43.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.43.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.43.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.43.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -504,7 +504,7 @@ export interface CreateBundleProduct {
|
|
|
504
504
|
* @type {number}
|
|
505
505
|
* @memberof CreateBundleProduct
|
|
506
506
|
*/
|
|
507
|
-
'shopifyId'?: number
|
|
507
|
+
'shopifyId'?: number;
|
|
508
508
|
/**
|
|
509
509
|
* Key/value pairs that can be used to store additional information about the product
|
|
510
510
|
* @type {Array<MetaField>}
|
|
@@ -643,7 +643,7 @@ export interface CreateProduct {
|
|
|
643
643
|
* @type {number}
|
|
644
644
|
* @memberof CreateProduct
|
|
645
645
|
*/
|
|
646
|
-
'shopifyId'?: number
|
|
646
|
+
'shopifyId'?: number;
|
|
647
647
|
/**
|
|
648
648
|
* Key/value pairs that can be used to store additional information about the product
|
|
649
649
|
* @type {Array<MetaField>}
|
|
@@ -753,7 +753,7 @@ export interface CreateProductVariant {
|
|
|
753
753
|
* @type {number}
|
|
754
754
|
* @memberof CreateProductVariant
|
|
755
755
|
*/
|
|
756
|
-
'shopifyId'?: number
|
|
756
|
+
'shopifyId'?: number;
|
|
757
757
|
}
|
|
758
758
|
/**
|
|
759
759
|
*
|
|
@@ -906,6 +906,25 @@ export interface MetaField {
|
|
|
906
906
|
*/
|
|
907
907
|
'value': string;
|
|
908
908
|
}
|
|
909
|
+
/**
|
|
910
|
+
*
|
|
911
|
+
* @export
|
|
912
|
+
* @interface OptimisationHistoryItem
|
|
913
|
+
*/
|
|
914
|
+
export interface OptimisationHistoryItem {
|
|
915
|
+
/**
|
|
916
|
+
* Unique object identifier
|
|
917
|
+
* @type {string}
|
|
918
|
+
* @memberof OptimisationHistoryItem
|
|
919
|
+
*/
|
|
920
|
+
'id'?: string;
|
|
921
|
+
/**
|
|
922
|
+
*
|
|
923
|
+
* @type {string}
|
|
924
|
+
* @memberof OptimisationHistoryItem
|
|
925
|
+
*/
|
|
926
|
+
'createdAt'?: string;
|
|
927
|
+
}
|
|
909
928
|
/**
|
|
910
929
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
911
930
|
* @export
|
|
@@ -1127,6 +1146,12 @@ export interface Product {
|
|
|
1127
1146
|
* @memberof Product
|
|
1128
1147
|
*/
|
|
1129
1148
|
'personalizationTemplate'?: string;
|
|
1149
|
+
/**
|
|
1150
|
+
* History of AI optimisations performed on the product
|
|
1151
|
+
* @type {Array<OptimisationHistoryItem>}
|
|
1152
|
+
* @memberof Product
|
|
1153
|
+
*/
|
|
1154
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1130
1155
|
}
|
|
1131
1156
|
/**
|
|
1132
1157
|
*
|
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.43.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.43.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.43.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.43.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.43.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.43.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.43.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.43.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -504,7 +504,7 @@ export interface CreateBundleProduct {
|
|
|
504
504
|
* @type {number}
|
|
505
505
|
* @memberof CreateBundleProduct
|
|
506
506
|
*/
|
|
507
|
-
'shopifyId'?: number
|
|
507
|
+
'shopifyId'?: number;
|
|
508
508
|
/**
|
|
509
509
|
* Key/value pairs that can be used to store additional information about the product
|
|
510
510
|
* @type {Array<MetaField>}
|
|
@@ -643,7 +643,7 @@ export interface CreateProduct {
|
|
|
643
643
|
* @type {number}
|
|
644
644
|
* @memberof CreateProduct
|
|
645
645
|
*/
|
|
646
|
-
'shopifyId'?: number
|
|
646
|
+
'shopifyId'?: number;
|
|
647
647
|
/**
|
|
648
648
|
* Key/value pairs that can be used to store additional information about the product
|
|
649
649
|
* @type {Array<MetaField>}
|
|
@@ -753,7 +753,7 @@ export interface CreateProductVariant {
|
|
|
753
753
|
* @type {number}
|
|
754
754
|
* @memberof CreateProductVariant
|
|
755
755
|
*/
|
|
756
|
-
'shopifyId'?: number
|
|
756
|
+
'shopifyId'?: number;
|
|
757
757
|
}
|
|
758
758
|
/**
|
|
759
759
|
*
|
|
@@ -906,6 +906,25 @@ export interface MetaField {
|
|
|
906
906
|
*/
|
|
907
907
|
'value': string;
|
|
908
908
|
}
|
|
909
|
+
/**
|
|
910
|
+
*
|
|
911
|
+
* @export
|
|
912
|
+
* @interface OptimisationHistoryItem
|
|
913
|
+
*/
|
|
914
|
+
export interface OptimisationHistoryItem {
|
|
915
|
+
/**
|
|
916
|
+
* Unique object identifier
|
|
917
|
+
* @type {string}
|
|
918
|
+
* @memberof OptimisationHistoryItem
|
|
919
|
+
*/
|
|
920
|
+
'id'?: string;
|
|
921
|
+
/**
|
|
922
|
+
*
|
|
923
|
+
* @type {string}
|
|
924
|
+
* @memberof OptimisationHistoryItem
|
|
925
|
+
*/
|
|
926
|
+
'createdAt'?: string;
|
|
927
|
+
}
|
|
909
928
|
/**
|
|
910
929
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
911
930
|
* @export
|
|
@@ -1127,6 +1146,12 @@ export interface Product {
|
|
|
1127
1146
|
* @memberof Product
|
|
1128
1147
|
*/
|
|
1129
1148
|
'personalizationTemplate'?: string;
|
|
1149
|
+
/**
|
|
1150
|
+
* History of AI optimisations performed on the product
|
|
1151
|
+
* @type {Array<OptimisationHistoryItem>}
|
|
1152
|
+
* @memberof Product
|
|
1153
|
+
*/
|
|
1154
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
1130
1155
|
}
|
|
1131
1156
|
/**
|
|
1132
1157
|
*
|
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.43.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.43.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.43.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.43.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.43.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.43.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.43.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.43.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.43.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.43.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.43.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.43.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|