@teemill/product-catalog 1.27.0 → 1.28.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 +44 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +44 -1
- 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 +44 -1
- 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.28.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.28.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 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.28.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -61,6 +61,12 @@ export interface ApiError {
|
|
|
61
61
|
* @interface Application
|
|
62
62
|
*/
|
|
63
63
|
export interface Application {
|
|
64
|
+
/**
|
|
65
|
+
* Unique object identifier
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof Application
|
|
68
|
+
*/
|
|
69
|
+
'id'?: string;
|
|
64
70
|
/**
|
|
65
71
|
* Technology to use for the application.
|
|
66
72
|
* @type {string}
|
|
@@ -477,6 +483,12 @@ export interface CreateProductRequest {
|
|
|
477
483
|
* @memberof CreateProductRequest
|
|
478
484
|
*/
|
|
479
485
|
'includeInDataFeeds'?: boolean;
|
|
486
|
+
/**
|
|
487
|
+
* a set of key/value pairs
|
|
488
|
+
* @type {Array<MetaField>}
|
|
489
|
+
* @memberof CreateProductRequest
|
|
490
|
+
*/
|
|
491
|
+
'metafields'?: Array<MetaField>;
|
|
480
492
|
}
|
|
481
493
|
/**
|
|
482
494
|
*
|
|
@@ -770,6 +782,25 @@ export interface ImportProducts200Response {
|
|
|
770
782
|
*/
|
|
771
783
|
'importId'?: string;
|
|
772
784
|
}
|
|
785
|
+
/**
|
|
786
|
+
* Key/value pairs that can be used to store additional information on the product
|
|
787
|
+
* @export
|
|
788
|
+
* @interface MetaField
|
|
789
|
+
*/
|
|
790
|
+
export interface MetaField {
|
|
791
|
+
/**
|
|
792
|
+
* The name or key of the property
|
|
793
|
+
* @type {string}
|
|
794
|
+
* @memberof MetaField
|
|
795
|
+
*/
|
|
796
|
+
'name'?: string;
|
|
797
|
+
/**
|
|
798
|
+
* The string value of the property
|
|
799
|
+
* @type {string}
|
|
800
|
+
* @memberof MetaField
|
|
801
|
+
*/
|
|
802
|
+
'value'?: string;
|
|
803
|
+
}
|
|
773
804
|
/**
|
|
774
805
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
775
806
|
* @export
|
|
@@ -940,6 +971,12 @@ export interface Product {
|
|
|
940
971
|
* @memberof Product
|
|
941
972
|
*/
|
|
942
973
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
974
|
+
/**
|
|
975
|
+
*
|
|
976
|
+
* @type {Array<MetaField>}
|
|
977
|
+
* @memberof Product
|
|
978
|
+
*/
|
|
979
|
+
'metafields'?: Array<MetaField>;
|
|
943
980
|
}
|
|
944
981
|
/**
|
|
945
982
|
*
|
|
@@ -1232,6 +1269,12 @@ export interface UpdateProductRequest {
|
|
|
1232
1269
|
* @memberof UpdateProductRequest
|
|
1233
1270
|
*/
|
|
1234
1271
|
'includeInDataFeeds'?: boolean;
|
|
1272
|
+
/**
|
|
1273
|
+
* a set of key/value pairs
|
|
1274
|
+
* @type {Array<MetaField>}
|
|
1275
|
+
* @memberof UpdateProductRequest
|
|
1276
|
+
*/
|
|
1277
|
+
'metafields'?: Array<MetaField>;
|
|
1235
1278
|
}
|
|
1236
1279
|
/**
|
|
1237
1280
|
*
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage 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.28.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -51,6 +51,12 @@ export interface ApiError {
|
|
|
51
51
|
* @interface Application
|
|
52
52
|
*/
|
|
53
53
|
export interface Application {
|
|
54
|
+
/**
|
|
55
|
+
* Unique object identifier
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof Application
|
|
58
|
+
*/
|
|
59
|
+
'id'?: string;
|
|
54
60
|
/**
|
|
55
61
|
* Technology to use for the application.
|
|
56
62
|
* @type {string}
|
|
@@ -460,6 +466,12 @@ export interface CreateProductRequest {
|
|
|
460
466
|
* @memberof CreateProductRequest
|
|
461
467
|
*/
|
|
462
468
|
'includeInDataFeeds'?: boolean;
|
|
469
|
+
/**
|
|
470
|
+
* a set of key/value pairs
|
|
471
|
+
* @type {Array<MetaField>}
|
|
472
|
+
* @memberof CreateProductRequest
|
|
473
|
+
*/
|
|
474
|
+
'metafields'?: Array<MetaField>;
|
|
463
475
|
}
|
|
464
476
|
/**
|
|
465
477
|
*
|
|
@@ -744,6 +756,25 @@ export interface ImportProducts200Response {
|
|
|
744
756
|
*/
|
|
745
757
|
'importId'?: string;
|
|
746
758
|
}
|
|
759
|
+
/**
|
|
760
|
+
* Key/value pairs that can be used to store additional information on the product
|
|
761
|
+
* @export
|
|
762
|
+
* @interface MetaField
|
|
763
|
+
*/
|
|
764
|
+
export interface MetaField {
|
|
765
|
+
/**
|
|
766
|
+
* The name or key of the property
|
|
767
|
+
* @type {string}
|
|
768
|
+
* @memberof MetaField
|
|
769
|
+
*/
|
|
770
|
+
'name'?: string;
|
|
771
|
+
/**
|
|
772
|
+
* The string value of the property
|
|
773
|
+
* @type {string}
|
|
774
|
+
* @memberof MetaField
|
|
775
|
+
*/
|
|
776
|
+
'value'?: string;
|
|
777
|
+
}
|
|
747
778
|
/**
|
|
748
779
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
749
780
|
* @export
|
|
@@ -911,6 +942,12 @@ export interface Product {
|
|
|
911
942
|
* @memberof Product
|
|
912
943
|
*/
|
|
913
944
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
945
|
+
/**
|
|
946
|
+
*
|
|
947
|
+
* @type {Array<MetaField>}
|
|
948
|
+
* @memberof Product
|
|
949
|
+
*/
|
|
950
|
+
'metafields'?: Array<MetaField>;
|
|
914
951
|
}
|
|
915
952
|
/**
|
|
916
953
|
*
|
|
@@ -1203,6 +1240,12 @@ export interface UpdateProductRequest {
|
|
|
1203
1240
|
* @memberof UpdateProductRequest
|
|
1204
1241
|
*/
|
|
1205
1242
|
'includeInDataFeeds'?: boolean;
|
|
1243
|
+
/**
|
|
1244
|
+
* a set of key/value pairs
|
|
1245
|
+
* @type {Array<MetaField>}
|
|
1246
|
+
* @memberof UpdateProductRequest
|
|
1247
|
+
*/
|
|
1248
|
+
'metafields'?: Array<MetaField>;
|
|
1206
1249
|
}
|
|
1207
1250
|
/**
|
|
1208
1251
|
*
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage 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.28.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -51,6 +51,12 @@ export interface ApiError {
|
|
|
51
51
|
* @interface Application
|
|
52
52
|
*/
|
|
53
53
|
export interface Application {
|
|
54
|
+
/**
|
|
55
|
+
* Unique object identifier
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof Application
|
|
58
|
+
*/
|
|
59
|
+
'id'?: string;
|
|
54
60
|
/**
|
|
55
61
|
* Technology to use for the application.
|
|
56
62
|
* @type {string}
|
|
@@ -460,6 +466,12 @@ export interface CreateProductRequest {
|
|
|
460
466
|
* @memberof CreateProductRequest
|
|
461
467
|
*/
|
|
462
468
|
'includeInDataFeeds'?: boolean;
|
|
469
|
+
/**
|
|
470
|
+
* a set of key/value pairs
|
|
471
|
+
* @type {Array<MetaField>}
|
|
472
|
+
* @memberof CreateProductRequest
|
|
473
|
+
*/
|
|
474
|
+
'metafields'?: Array<MetaField>;
|
|
463
475
|
}
|
|
464
476
|
/**
|
|
465
477
|
*
|
|
@@ -744,6 +756,25 @@ export interface ImportProducts200Response {
|
|
|
744
756
|
*/
|
|
745
757
|
'importId'?: string;
|
|
746
758
|
}
|
|
759
|
+
/**
|
|
760
|
+
* Key/value pairs that can be used to store additional information on the product
|
|
761
|
+
* @export
|
|
762
|
+
* @interface MetaField
|
|
763
|
+
*/
|
|
764
|
+
export interface MetaField {
|
|
765
|
+
/**
|
|
766
|
+
* The name or key of the property
|
|
767
|
+
* @type {string}
|
|
768
|
+
* @memberof MetaField
|
|
769
|
+
*/
|
|
770
|
+
'name'?: string;
|
|
771
|
+
/**
|
|
772
|
+
* The string value of the property
|
|
773
|
+
* @type {string}
|
|
774
|
+
* @memberof MetaField
|
|
775
|
+
*/
|
|
776
|
+
'value'?: string;
|
|
777
|
+
}
|
|
747
778
|
/**
|
|
748
779
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
749
780
|
* @export
|
|
@@ -911,6 +942,12 @@ export interface Product {
|
|
|
911
942
|
* @memberof Product
|
|
912
943
|
*/
|
|
913
944
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
945
|
+
/**
|
|
946
|
+
*
|
|
947
|
+
* @type {Array<MetaField>}
|
|
948
|
+
* @memberof Product
|
|
949
|
+
*/
|
|
950
|
+
'metafields'?: Array<MetaField>;
|
|
914
951
|
}
|
|
915
952
|
/**
|
|
916
953
|
*
|
|
@@ -1203,6 +1240,12 @@ export interface UpdateProductRequest {
|
|
|
1203
1240
|
* @memberof UpdateProductRequest
|
|
1204
1241
|
*/
|
|
1205
1242
|
'includeInDataFeeds'?: boolean;
|
|
1243
|
+
/**
|
|
1244
|
+
* a set of key/value pairs
|
|
1245
|
+
* @type {Array<MetaField>}
|
|
1246
|
+
* @memberof UpdateProductRequest
|
|
1247
|
+
*/
|
|
1248
|
+
'metafields'?: Array<MetaField>;
|
|
1206
1249
|
}
|
|
1207
1250
|
/**
|
|
1208
1251
|
*
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage 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.28.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
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 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.28.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|