@teemill/product-catalog 1.27.1 → 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 +38 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +38 -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 +38 -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).
|
|
@@ -483,6 +483,12 @@ export interface CreateProductRequest {
|
|
|
483
483
|
* @memberof CreateProductRequest
|
|
484
484
|
*/
|
|
485
485
|
'includeInDataFeeds'?: boolean;
|
|
486
|
+
/**
|
|
487
|
+
* a set of key/value pairs
|
|
488
|
+
* @type {Array<MetaField>}
|
|
489
|
+
* @memberof CreateProductRequest
|
|
490
|
+
*/
|
|
491
|
+
'metafields'?: Array<MetaField>;
|
|
486
492
|
}
|
|
487
493
|
/**
|
|
488
494
|
*
|
|
@@ -776,6 +782,25 @@ export interface ImportProducts200Response {
|
|
|
776
782
|
*/
|
|
777
783
|
'importId'?: string;
|
|
778
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
|
+
}
|
|
779
804
|
/**
|
|
780
805
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
781
806
|
* @export
|
|
@@ -946,6 +971,12 @@ export interface Product {
|
|
|
946
971
|
* @memberof Product
|
|
947
972
|
*/
|
|
948
973
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
974
|
+
/**
|
|
975
|
+
*
|
|
976
|
+
* @type {Array<MetaField>}
|
|
977
|
+
* @memberof Product
|
|
978
|
+
*/
|
|
979
|
+
'metafields'?: Array<MetaField>;
|
|
949
980
|
}
|
|
950
981
|
/**
|
|
951
982
|
*
|
|
@@ -1238,6 +1269,12 @@ export interface UpdateProductRequest {
|
|
|
1238
1269
|
* @memberof UpdateProductRequest
|
|
1239
1270
|
*/
|
|
1240
1271
|
'includeInDataFeeds'?: boolean;
|
|
1272
|
+
/**
|
|
1273
|
+
* a set of key/value pairs
|
|
1274
|
+
* @type {Array<MetaField>}
|
|
1275
|
+
* @memberof UpdateProductRequest
|
|
1276
|
+
*/
|
|
1277
|
+
'metafields'?: Array<MetaField>;
|
|
1241
1278
|
}
|
|
1242
1279
|
/**
|
|
1243
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).
|
|
@@ -466,6 +466,12 @@ export interface CreateProductRequest {
|
|
|
466
466
|
* @memberof CreateProductRequest
|
|
467
467
|
*/
|
|
468
468
|
'includeInDataFeeds'?: boolean;
|
|
469
|
+
/**
|
|
470
|
+
* a set of key/value pairs
|
|
471
|
+
* @type {Array<MetaField>}
|
|
472
|
+
* @memberof CreateProductRequest
|
|
473
|
+
*/
|
|
474
|
+
'metafields'?: Array<MetaField>;
|
|
469
475
|
}
|
|
470
476
|
/**
|
|
471
477
|
*
|
|
@@ -750,6 +756,25 @@ export interface ImportProducts200Response {
|
|
|
750
756
|
*/
|
|
751
757
|
'importId'?: string;
|
|
752
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
|
+
}
|
|
753
778
|
/**
|
|
754
779
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
755
780
|
* @export
|
|
@@ -917,6 +942,12 @@ export interface Product {
|
|
|
917
942
|
* @memberof Product
|
|
918
943
|
*/
|
|
919
944
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
945
|
+
/**
|
|
946
|
+
*
|
|
947
|
+
* @type {Array<MetaField>}
|
|
948
|
+
* @memberof Product
|
|
949
|
+
*/
|
|
950
|
+
'metafields'?: Array<MetaField>;
|
|
920
951
|
}
|
|
921
952
|
/**
|
|
922
953
|
*
|
|
@@ -1209,6 +1240,12 @@ export interface UpdateProductRequest {
|
|
|
1209
1240
|
* @memberof UpdateProductRequest
|
|
1210
1241
|
*/
|
|
1211
1242
|
'includeInDataFeeds'?: boolean;
|
|
1243
|
+
/**
|
|
1244
|
+
* a set of key/value pairs
|
|
1245
|
+
* @type {Array<MetaField>}
|
|
1246
|
+
* @memberof UpdateProductRequest
|
|
1247
|
+
*/
|
|
1248
|
+
'metafields'?: Array<MetaField>;
|
|
1212
1249
|
}
|
|
1213
1250
|
/**
|
|
1214
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).
|
|
@@ -466,6 +466,12 @@ export interface CreateProductRequest {
|
|
|
466
466
|
* @memberof CreateProductRequest
|
|
467
467
|
*/
|
|
468
468
|
'includeInDataFeeds'?: boolean;
|
|
469
|
+
/**
|
|
470
|
+
* a set of key/value pairs
|
|
471
|
+
* @type {Array<MetaField>}
|
|
472
|
+
* @memberof CreateProductRequest
|
|
473
|
+
*/
|
|
474
|
+
'metafields'?: Array<MetaField>;
|
|
469
475
|
}
|
|
470
476
|
/**
|
|
471
477
|
*
|
|
@@ -750,6 +756,25 @@ export interface ImportProducts200Response {
|
|
|
750
756
|
*/
|
|
751
757
|
'importId'?: string;
|
|
752
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
|
+
}
|
|
753
778
|
/**
|
|
754
779
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
755
780
|
* @export
|
|
@@ -917,6 +942,12 @@ export interface Product {
|
|
|
917
942
|
* @memberof Product
|
|
918
943
|
*/
|
|
919
944
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
945
|
+
/**
|
|
946
|
+
*
|
|
947
|
+
* @type {Array<MetaField>}
|
|
948
|
+
* @memberof Product
|
|
949
|
+
*/
|
|
950
|
+
'metafields'?: Array<MetaField>;
|
|
920
951
|
}
|
|
921
952
|
/**
|
|
922
953
|
*
|
|
@@ -1209,6 +1240,12 @@ export interface UpdateProductRequest {
|
|
|
1209
1240
|
* @memberof UpdateProductRequest
|
|
1210
1241
|
*/
|
|
1211
1242
|
'includeInDataFeeds'?: boolean;
|
|
1243
|
+
/**
|
|
1244
|
+
* a set of key/value pairs
|
|
1245
|
+
* @type {Array<MetaField>}
|
|
1246
|
+
* @memberof UpdateProductRequest
|
|
1247
|
+
*/
|
|
1248
|
+
'metafields'?: Array<MetaField>;
|
|
1212
1249
|
}
|
|
1213
1250
|
/**
|
|
1214
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).
|