@teemill/product-catalog 1.18.0 → 1.19.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 +51 -2
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +51 -2
- 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 +51 -2
- 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.19.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.19.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.19.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -84,7 +84,7 @@ export interface Application {
|
|
|
84
84
|
* @type {ApplicationMockup}
|
|
85
85
|
* @memberof Application
|
|
86
86
|
*/
|
|
87
|
-
'mockup'?: ApplicationMockup;
|
|
87
|
+
'mockup'?: ApplicationMockup | null;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
export const ApplicationTechnologyEnum = {
|
|
@@ -459,6 +459,12 @@ export interface CreateProductRequest {
|
|
|
459
459
|
* @memberof CreateProductRequest
|
|
460
460
|
*/
|
|
461
461
|
'additionalFiles'?: Array<CreateProductRequestAdditionalFilesInner>;
|
|
462
|
+
/**
|
|
463
|
+
* List of application set UUIDs to associate with this product
|
|
464
|
+
* @type {Array<string>}
|
|
465
|
+
* @memberof CreateProductRequest
|
|
466
|
+
*/
|
|
467
|
+
'applicationSets'?: Array<string>;
|
|
462
468
|
}
|
|
463
469
|
/**
|
|
464
470
|
*
|
|
@@ -535,6 +541,12 @@ export interface CreateProductVariant {
|
|
|
535
541
|
* @memberof CreateProductVariant
|
|
536
542
|
*/
|
|
537
543
|
'images'?: Array<CreateProductVariantImagesInner>;
|
|
544
|
+
/**
|
|
545
|
+
* List of application set UUIDs to associate with this variant
|
|
546
|
+
* @type {Array<string>}
|
|
547
|
+
* @memberof CreateProductVariant
|
|
548
|
+
*/
|
|
549
|
+
'applicationSets'?: Array<string>;
|
|
538
550
|
}
|
|
539
551
|
/**
|
|
540
552
|
*
|
|
@@ -799,6 +811,12 @@ export interface Product {
|
|
|
799
811
|
* @memberof Product
|
|
800
812
|
*/
|
|
801
813
|
'additionalFiles'?: Array<ProductAdditionalFilesInner>;
|
|
814
|
+
/**
|
|
815
|
+
* List of application sets associated with this product
|
|
816
|
+
* @type {Array<ProductApplicationSetsInner>}
|
|
817
|
+
* @memberof Product
|
|
818
|
+
*/
|
|
819
|
+
'applicationSets'?: Array<ProductApplicationSetsInner>;
|
|
802
820
|
}
|
|
803
821
|
/**
|
|
804
822
|
*
|
|
@@ -819,6 +837,31 @@ export interface ProductAdditionalFilesInner {
|
|
|
819
837
|
*/
|
|
820
838
|
'src'?: string;
|
|
821
839
|
}
|
|
840
|
+
/**
|
|
841
|
+
*
|
|
842
|
+
* @export
|
|
843
|
+
* @interface ProductApplicationSetsInner
|
|
844
|
+
*/
|
|
845
|
+
export interface ProductApplicationSetsInner {
|
|
846
|
+
/**
|
|
847
|
+
* Unique object identifier
|
|
848
|
+
* @type {string}
|
|
849
|
+
* @memberof ProductApplicationSetsInner
|
|
850
|
+
*/
|
|
851
|
+
'id'?: string;
|
|
852
|
+
/**
|
|
853
|
+
* A reference to the resource location
|
|
854
|
+
* @type {string}
|
|
855
|
+
* @memberof ProductApplicationSetsInner
|
|
856
|
+
*/
|
|
857
|
+
'ref'?: string;
|
|
858
|
+
/**
|
|
859
|
+
* Name of the application set
|
|
860
|
+
* @type {string}
|
|
861
|
+
* @memberof ProductApplicationSetsInner
|
|
862
|
+
*/
|
|
863
|
+
'name'?: string;
|
|
864
|
+
}
|
|
822
865
|
/**
|
|
823
866
|
*
|
|
824
867
|
* @export
|
|
@@ -1023,6 +1066,12 @@ export interface UpdateProductRequest {
|
|
|
1023
1066
|
* @memberof UpdateProductRequest
|
|
1024
1067
|
*/
|
|
1025
1068
|
'additionalFiles'?: Array<AdditionalFile>;
|
|
1069
|
+
/**
|
|
1070
|
+
* List of application set UUIDs to associate with this product
|
|
1071
|
+
* @type {Array<string>}
|
|
1072
|
+
* @memberof UpdateProductRequest
|
|
1073
|
+
*/
|
|
1074
|
+
'applicationSets'?: Array<string>;
|
|
1026
1075
|
}
|
|
1027
1076
|
/**
|
|
1028
1077
|
*
|
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.19.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.19.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.19.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.19.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -74,7 +74,7 @@ export interface Application {
|
|
|
74
74
|
* @type {ApplicationMockup}
|
|
75
75
|
* @memberof Application
|
|
76
76
|
*/
|
|
77
|
-
'mockup'?: ApplicationMockup;
|
|
77
|
+
'mockup'?: ApplicationMockup | null;
|
|
78
78
|
}
|
|
79
79
|
export declare const ApplicationTechnologyEnum: {
|
|
80
80
|
readonly Dtg: "dtg";
|
|
@@ -442,6 +442,12 @@ export interface CreateProductRequest {
|
|
|
442
442
|
* @memberof CreateProductRequest
|
|
443
443
|
*/
|
|
444
444
|
'additionalFiles'?: Array<CreateProductRequestAdditionalFilesInner>;
|
|
445
|
+
/**
|
|
446
|
+
* List of application set UUIDs to associate with this product
|
|
447
|
+
* @type {Array<string>}
|
|
448
|
+
* @memberof CreateProductRequest
|
|
449
|
+
*/
|
|
450
|
+
'applicationSets'?: Array<string>;
|
|
445
451
|
}
|
|
446
452
|
/**
|
|
447
453
|
*
|
|
@@ -518,6 +524,12 @@ export interface CreateProductVariant {
|
|
|
518
524
|
* @memberof CreateProductVariant
|
|
519
525
|
*/
|
|
520
526
|
'images'?: Array<CreateProductVariantImagesInner>;
|
|
527
|
+
/**
|
|
528
|
+
* List of application set UUIDs to associate with this variant
|
|
529
|
+
* @type {Array<string>}
|
|
530
|
+
* @memberof CreateProductVariant
|
|
531
|
+
*/
|
|
532
|
+
'applicationSets'?: Array<string>;
|
|
521
533
|
}
|
|
522
534
|
/**
|
|
523
535
|
*
|
|
@@ -773,6 +785,12 @@ export interface Product {
|
|
|
773
785
|
* @memberof Product
|
|
774
786
|
*/
|
|
775
787
|
'additionalFiles'?: Array<ProductAdditionalFilesInner>;
|
|
788
|
+
/**
|
|
789
|
+
* List of application sets associated with this product
|
|
790
|
+
* @type {Array<ProductApplicationSetsInner>}
|
|
791
|
+
* @memberof Product
|
|
792
|
+
*/
|
|
793
|
+
'applicationSets'?: Array<ProductApplicationSetsInner>;
|
|
776
794
|
}
|
|
777
795
|
/**
|
|
778
796
|
*
|
|
@@ -793,6 +811,31 @@ export interface ProductAdditionalFilesInner {
|
|
|
793
811
|
*/
|
|
794
812
|
'src'?: string;
|
|
795
813
|
}
|
|
814
|
+
/**
|
|
815
|
+
*
|
|
816
|
+
* @export
|
|
817
|
+
* @interface ProductApplicationSetsInner
|
|
818
|
+
*/
|
|
819
|
+
export interface ProductApplicationSetsInner {
|
|
820
|
+
/**
|
|
821
|
+
* Unique object identifier
|
|
822
|
+
* @type {string}
|
|
823
|
+
* @memberof ProductApplicationSetsInner
|
|
824
|
+
*/
|
|
825
|
+
'id'?: string;
|
|
826
|
+
/**
|
|
827
|
+
* A reference to the resource location
|
|
828
|
+
* @type {string}
|
|
829
|
+
* @memberof ProductApplicationSetsInner
|
|
830
|
+
*/
|
|
831
|
+
'ref'?: string;
|
|
832
|
+
/**
|
|
833
|
+
* Name of the application set
|
|
834
|
+
* @type {string}
|
|
835
|
+
* @memberof ProductApplicationSetsInner
|
|
836
|
+
*/
|
|
837
|
+
'name'?: string;
|
|
838
|
+
}
|
|
796
839
|
/**
|
|
797
840
|
*
|
|
798
841
|
* @export
|
|
@@ -997,6 +1040,12 @@ export interface UpdateProductRequest {
|
|
|
997
1040
|
* @memberof UpdateProductRequest
|
|
998
1041
|
*/
|
|
999
1042
|
'additionalFiles'?: Array<AdditionalFile>;
|
|
1043
|
+
/**
|
|
1044
|
+
* List of application set UUIDs to associate with this product
|
|
1045
|
+
* @type {Array<string>}
|
|
1046
|
+
* @memberof UpdateProductRequest
|
|
1047
|
+
*/
|
|
1048
|
+
'applicationSets'?: Array<string>;
|
|
1000
1049
|
}
|
|
1001
1050
|
/**
|
|
1002
1051
|
*
|
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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -74,7 +74,7 @@ export interface Application {
|
|
|
74
74
|
* @type {ApplicationMockup}
|
|
75
75
|
* @memberof Application
|
|
76
76
|
*/
|
|
77
|
-
'mockup'?: ApplicationMockup;
|
|
77
|
+
'mockup'?: ApplicationMockup | null;
|
|
78
78
|
}
|
|
79
79
|
export declare const ApplicationTechnologyEnum: {
|
|
80
80
|
readonly Dtg: "dtg";
|
|
@@ -442,6 +442,12 @@ export interface CreateProductRequest {
|
|
|
442
442
|
* @memberof CreateProductRequest
|
|
443
443
|
*/
|
|
444
444
|
'additionalFiles'?: Array<CreateProductRequestAdditionalFilesInner>;
|
|
445
|
+
/**
|
|
446
|
+
* List of application set UUIDs to associate with this product
|
|
447
|
+
* @type {Array<string>}
|
|
448
|
+
* @memberof CreateProductRequest
|
|
449
|
+
*/
|
|
450
|
+
'applicationSets'?: Array<string>;
|
|
445
451
|
}
|
|
446
452
|
/**
|
|
447
453
|
*
|
|
@@ -518,6 +524,12 @@ export interface CreateProductVariant {
|
|
|
518
524
|
* @memberof CreateProductVariant
|
|
519
525
|
*/
|
|
520
526
|
'images'?: Array<CreateProductVariantImagesInner>;
|
|
527
|
+
/**
|
|
528
|
+
* List of application set UUIDs to associate with this variant
|
|
529
|
+
* @type {Array<string>}
|
|
530
|
+
* @memberof CreateProductVariant
|
|
531
|
+
*/
|
|
532
|
+
'applicationSets'?: Array<string>;
|
|
521
533
|
}
|
|
522
534
|
/**
|
|
523
535
|
*
|
|
@@ -773,6 +785,12 @@ export interface Product {
|
|
|
773
785
|
* @memberof Product
|
|
774
786
|
*/
|
|
775
787
|
'additionalFiles'?: Array<ProductAdditionalFilesInner>;
|
|
788
|
+
/**
|
|
789
|
+
* List of application sets associated with this product
|
|
790
|
+
* @type {Array<ProductApplicationSetsInner>}
|
|
791
|
+
* @memberof Product
|
|
792
|
+
*/
|
|
793
|
+
'applicationSets'?: Array<ProductApplicationSetsInner>;
|
|
776
794
|
}
|
|
777
795
|
/**
|
|
778
796
|
*
|
|
@@ -793,6 +811,31 @@ export interface ProductAdditionalFilesInner {
|
|
|
793
811
|
*/
|
|
794
812
|
'src'?: string;
|
|
795
813
|
}
|
|
814
|
+
/**
|
|
815
|
+
*
|
|
816
|
+
* @export
|
|
817
|
+
* @interface ProductApplicationSetsInner
|
|
818
|
+
*/
|
|
819
|
+
export interface ProductApplicationSetsInner {
|
|
820
|
+
/**
|
|
821
|
+
* Unique object identifier
|
|
822
|
+
* @type {string}
|
|
823
|
+
* @memberof ProductApplicationSetsInner
|
|
824
|
+
*/
|
|
825
|
+
'id'?: string;
|
|
826
|
+
/**
|
|
827
|
+
* A reference to the resource location
|
|
828
|
+
* @type {string}
|
|
829
|
+
* @memberof ProductApplicationSetsInner
|
|
830
|
+
*/
|
|
831
|
+
'ref'?: string;
|
|
832
|
+
/**
|
|
833
|
+
* Name of the application set
|
|
834
|
+
* @type {string}
|
|
835
|
+
* @memberof ProductApplicationSetsInner
|
|
836
|
+
*/
|
|
837
|
+
'name'?: string;
|
|
838
|
+
}
|
|
796
839
|
/**
|
|
797
840
|
*
|
|
798
841
|
* @export
|
|
@@ -997,6 +1040,12 @@ export interface UpdateProductRequest {
|
|
|
997
1040
|
* @memberof UpdateProductRequest
|
|
998
1041
|
*/
|
|
999
1042
|
'additionalFiles'?: Array<AdditionalFile>;
|
|
1043
|
+
/**
|
|
1044
|
+
* List of application set UUIDs to associate with this product
|
|
1045
|
+
* @type {Array<string>}
|
|
1046
|
+
* @memberof UpdateProductRequest
|
|
1047
|
+
*/
|
|
1048
|
+
'applicationSets'?: Array<string>;
|
|
1000
1049
|
}
|
|
1001
1050
|
/**
|
|
1002
1051
|
*
|
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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|