@teemill/product-catalog 1.25.0 → 1.27.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.27.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.27.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.27.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -503,6 +503,12 @@ export interface CreateProductRequestImagesInner {
|
|
|
503
503
|
* @memberof CreateProductRequestImagesInner
|
|
504
504
|
*/
|
|
505
505
|
'src'?: string;
|
|
506
|
+
/**
|
|
507
|
+
* Image type.
|
|
508
|
+
* @type {string}
|
|
509
|
+
* @memberof CreateProductRequestImagesInner
|
|
510
|
+
*/
|
|
511
|
+
'type'?: string | null;
|
|
506
512
|
}
|
|
507
513
|
/**
|
|
508
514
|
*
|
|
@@ -695,6 +701,12 @@ export interface Image {
|
|
|
695
701
|
* @memberof Image
|
|
696
702
|
*/
|
|
697
703
|
'src'?: string;
|
|
704
|
+
/**
|
|
705
|
+
*
|
|
706
|
+
* @type {string}
|
|
707
|
+
* @memberof Image
|
|
708
|
+
*/
|
|
709
|
+
'type'?: string | null;
|
|
698
710
|
/**
|
|
699
711
|
*
|
|
700
712
|
* @type {string}
|
|
@@ -738,6 +750,12 @@ export interface ImageFile {
|
|
|
738
750
|
* @memberof ImageFile
|
|
739
751
|
*/
|
|
740
752
|
'src'?: string;
|
|
753
|
+
/**
|
|
754
|
+
* Image type.
|
|
755
|
+
* @type {string}
|
|
756
|
+
* @memberof ImageFile
|
|
757
|
+
*/
|
|
758
|
+
'type'?: string | null;
|
|
741
759
|
}
|
|
742
760
|
/**
|
|
743
761
|
*
|
|
@@ -916,6 +934,12 @@ export interface Product {
|
|
|
916
934
|
* @memberof Product
|
|
917
935
|
*/
|
|
918
936
|
'includeInDataFeeds'?: boolean;
|
|
937
|
+
/**
|
|
938
|
+
*
|
|
939
|
+
* @type {ProductWarehouseProduct}
|
|
940
|
+
* @memberof Product
|
|
941
|
+
*/
|
|
942
|
+
'warehouseProduct'?: ProductWarehouseProduct;
|
|
919
943
|
}
|
|
920
944
|
/**
|
|
921
945
|
*
|
|
@@ -961,6 +985,25 @@ export interface ProductApplicationSetsInner {
|
|
|
961
985
|
*/
|
|
962
986
|
'name'?: string;
|
|
963
987
|
}
|
|
988
|
+
/**
|
|
989
|
+
*
|
|
990
|
+
* @export
|
|
991
|
+
* @interface ProductWarehouseProduct
|
|
992
|
+
*/
|
|
993
|
+
export interface ProductWarehouseProduct {
|
|
994
|
+
/**
|
|
995
|
+
* Unique object identifier
|
|
996
|
+
* @type {string}
|
|
997
|
+
* @memberof ProductWarehouseProduct
|
|
998
|
+
*/
|
|
999
|
+
'id'?: string;
|
|
1000
|
+
/**
|
|
1001
|
+
* Reference to the product in the Global Fulfillment Network (GFN) catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
|
|
1002
|
+
* @type {string}
|
|
1003
|
+
* @memberof ProductWarehouseProduct
|
|
1004
|
+
*/
|
|
1005
|
+
'gfnProductRef'?: string;
|
|
1006
|
+
}
|
|
964
1007
|
/**
|
|
965
1008
|
*
|
|
966
1009
|
* @export
|
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.27.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.27.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.27.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.27.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -486,6 +486,12 @@ export interface CreateProductRequestImagesInner {
|
|
|
486
486
|
* @memberof CreateProductRequestImagesInner
|
|
487
487
|
*/
|
|
488
488
|
'src'?: string;
|
|
489
|
+
/**
|
|
490
|
+
* Image type.
|
|
491
|
+
* @type {string}
|
|
492
|
+
* @memberof CreateProductRequestImagesInner
|
|
493
|
+
*/
|
|
494
|
+
'type'?: string | null;
|
|
489
495
|
}
|
|
490
496
|
/**
|
|
491
497
|
*
|
|
@@ -669,6 +675,12 @@ export interface Image {
|
|
|
669
675
|
* @memberof Image
|
|
670
676
|
*/
|
|
671
677
|
'src'?: string;
|
|
678
|
+
/**
|
|
679
|
+
*
|
|
680
|
+
* @type {string}
|
|
681
|
+
* @memberof Image
|
|
682
|
+
*/
|
|
683
|
+
'type'?: string | null;
|
|
672
684
|
/**
|
|
673
685
|
*
|
|
674
686
|
* @type {string}
|
|
@@ -712,6 +724,12 @@ export interface ImageFile {
|
|
|
712
724
|
* @memberof ImageFile
|
|
713
725
|
*/
|
|
714
726
|
'src'?: string;
|
|
727
|
+
/**
|
|
728
|
+
* Image type.
|
|
729
|
+
* @type {string}
|
|
730
|
+
* @memberof ImageFile
|
|
731
|
+
*/
|
|
732
|
+
'type'?: string | null;
|
|
715
733
|
}
|
|
716
734
|
/**
|
|
717
735
|
*
|
|
@@ -887,6 +905,12 @@ export interface Product {
|
|
|
887
905
|
* @memberof Product
|
|
888
906
|
*/
|
|
889
907
|
'includeInDataFeeds'?: boolean;
|
|
908
|
+
/**
|
|
909
|
+
*
|
|
910
|
+
* @type {ProductWarehouseProduct}
|
|
911
|
+
* @memberof Product
|
|
912
|
+
*/
|
|
913
|
+
'warehouseProduct'?: ProductWarehouseProduct;
|
|
890
914
|
}
|
|
891
915
|
/**
|
|
892
916
|
*
|
|
@@ -932,6 +956,25 @@ export interface ProductApplicationSetsInner {
|
|
|
932
956
|
*/
|
|
933
957
|
'name'?: string;
|
|
934
958
|
}
|
|
959
|
+
/**
|
|
960
|
+
*
|
|
961
|
+
* @export
|
|
962
|
+
* @interface ProductWarehouseProduct
|
|
963
|
+
*/
|
|
964
|
+
export interface ProductWarehouseProduct {
|
|
965
|
+
/**
|
|
966
|
+
* Unique object identifier
|
|
967
|
+
* @type {string}
|
|
968
|
+
* @memberof ProductWarehouseProduct
|
|
969
|
+
*/
|
|
970
|
+
'id'?: string;
|
|
971
|
+
/**
|
|
972
|
+
* Reference to the product in the Global Fulfillment Network (GFN) catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
|
|
973
|
+
* @type {string}
|
|
974
|
+
* @memberof ProductWarehouseProduct
|
|
975
|
+
*/
|
|
976
|
+
'gfnProductRef'?: string;
|
|
977
|
+
}
|
|
935
978
|
/**
|
|
936
979
|
*
|
|
937
980
|
* @export
|
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.27.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.27.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.27.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.27.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.27.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.27.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.27.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.27.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -486,6 +486,12 @@ export interface CreateProductRequestImagesInner {
|
|
|
486
486
|
* @memberof CreateProductRequestImagesInner
|
|
487
487
|
*/
|
|
488
488
|
'src'?: string;
|
|
489
|
+
/**
|
|
490
|
+
* Image type.
|
|
491
|
+
* @type {string}
|
|
492
|
+
* @memberof CreateProductRequestImagesInner
|
|
493
|
+
*/
|
|
494
|
+
'type'?: string | null;
|
|
489
495
|
}
|
|
490
496
|
/**
|
|
491
497
|
*
|
|
@@ -669,6 +675,12 @@ export interface Image {
|
|
|
669
675
|
* @memberof Image
|
|
670
676
|
*/
|
|
671
677
|
'src'?: string;
|
|
678
|
+
/**
|
|
679
|
+
*
|
|
680
|
+
* @type {string}
|
|
681
|
+
* @memberof Image
|
|
682
|
+
*/
|
|
683
|
+
'type'?: string | null;
|
|
672
684
|
/**
|
|
673
685
|
*
|
|
674
686
|
* @type {string}
|
|
@@ -712,6 +724,12 @@ export interface ImageFile {
|
|
|
712
724
|
* @memberof ImageFile
|
|
713
725
|
*/
|
|
714
726
|
'src'?: string;
|
|
727
|
+
/**
|
|
728
|
+
* Image type.
|
|
729
|
+
* @type {string}
|
|
730
|
+
* @memberof ImageFile
|
|
731
|
+
*/
|
|
732
|
+
'type'?: string | null;
|
|
715
733
|
}
|
|
716
734
|
/**
|
|
717
735
|
*
|
|
@@ -887,6 +905,12 @@ export interface Product {
|
|
|
887
905
|
* @memberof Product
|
|
888
906
|
*/
|
|
889
907
|
'includeInDataFeeds'?: boolean;
|
|
908
|
+
/**
|
|
909
|
+
*
|
|
910
|
+
* @type {ProductWarehouseProduct}
|
|
911
|
+
* @memberof Product
|
|
912
|
+
*/
|
|
913
|
+
'warehouseProduct'?: ProductWarehouseProduct;
|
|
890
914
|
}
|
|
891
915
|
/**
|
|
892
916
|
*
|
|
@@ -932,6 +956,25 @@ export interface ProductApplicationSetsInner {
|
|
|
932
956
|
*/
|
|
933
957
|
'name'?: string;
|
|
934
958
|
}
|
|
959
|
+
/**
|
|
960
|
+
*
|
|
961
|
+
* @export
|
|
962
|
+
* @interface ProductWarehouseProduct
|
|
963
|
+
*/
|
|
964
|
+
export interface ProductWarehouseProduct {
|
|
965
|
+
/**
|
|
966
|
+
* Unique object identifier
|
|
967
|
+
* @type {string}
|
|
968
|
+
* @memberof ProductWarehouseProduct
|
|
969
|
+
*/
|
|
970
|
+
'id'?: string;
|
|
971
|
+
/**
|
|
972
|
+
* Reference to the product in the Global Fulfillment Network (GFN) catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
|
|
973
|
+
* @type {string}
|
|
974
|
+
* @memberof ProductWarehouseProduct
|
|
975
|
+
*/
|
|
976
|
+
'gfnProductRef'?: string;
|
|
977
|
+
}
|
|
935
978
|
/**
|
|
936
979
|
*
|
|
937
980
|
* @export
|
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.27.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.27.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.27.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.27.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.27.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.27.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.27.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.27.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.27.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.27.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.27.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.27.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|