@teemill/product-catalog 1.18.1 → 1.23.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 +113 -2
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +110 -2
- package/dist/api.js +5 -2
- 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 +110 -2
- package/dist/esm/api.js +4 -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.23.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.23.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.23.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,18 @@ 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>;
|
|
468
|
+
/**
|
|
469
|
+
* Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
|
|
470
|
+
* @type {boolean}
|
|
471
|
+
* @memberof CreateProductRequest
|
|
472
|
+
*/
|
|
473
|
+
'includeInDataFeeds'?: boolean;
|
|
462
474
|
}
|
|
463
475
|
/**
|
|
464
476
|
*
|
|
@@ -498,6 +510,12 @@ export interface CreateProductRequestSeoMetadata {
|
|
|
498
510
|
* @memberof CreateProductRequestSeoMetadata
|
|
499
511
|
*/
|
|
500
512
|
'title'?: string;
|
|
513
|
+
/**
|
|
514
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
515
|
+
* @type {string}
|
|
516
|
+
* @memberof CreateProductRequestSeoMetadata
|
|
517
|
+
*/
|
|
518
|
+
'description'?: string | null;
|
|
501
519
|
}
|
|
502
520
|
/**
|
|
503
521
|
*
|
|
@@ -517,6 +535,12 @@ export interface CreateProductVariant {
|
|
|
517
535
|
* @memberof CreateProductVariant
|
|
518
536
|
*/
|
|
519
537
|
'retailPrice': CreateProductVariantRetailPrice;
|
|
538
|
+
/**
|
|
539
|
+
*
|
|
540
|
+
* @type {CreateProductVariantSalePrice}
|
|
541
|
+
* @memberof CreateProductVariant
|
|
542
|
+
*/
|
|
543
|
+
'salePrice'?: CreateProductVariantSalePrice;
|
|
520
544
|
/**
|
|
521
545
|
* A custom stock keeping unit for the variant.
|
|
522
546
|
* @type {string}
|
|
@@ -535,6 +559,12 @@ export interface CreateProductVariant {
|
|
|
535
559
|
* @memberof CreateProductVariant
|
|
536
560
|
*/
|
|
537
561
|
'images'?: Array<CreateProductVariantImagesInner>;
|
|
562
|
+
/**
|
|
563
|
+
* List of application set UUIDs to associate with this variant
|
|
564
|
+
* @type {Array<string>}
|
|
565
|
+
* @memberof CreateProductVariant
|
|
566
|
+
*/
|
|
567
|
+
'applicationSets'?: Array<string>;
|
|
538
568
|
}
|
|
539
569
|
/**
|
|
540
570
|
*
|
|
@@ -602,6 +632,32 @@ export const CreateProductVariantRetailPriceCurrencyCodeEnum = {
|
|
|
602
632
|
|
|
603
633
|
export type CreateProductVariantRetailPriceCurrencyCodeEnum = typeof CreateProductVariantRetailPriceCurrencyCodeEnum[keyof typeof CreateProductVariantRetailPriceCurrencyCodeEnum];
|
|
604
634
|
|
|
635
|
+
/**
|
|
636
|
+
* Variant discounted price including tax.
|
|
637
|
+
* @export
|
|
638
|
+
* @interface CreateProductVariantSalePrice
|
|
639
|
+
*/
|
|
640
|
+
export interface CreateProductVariantSalePrice {
|
|
641
|
+
/**
|
|
642
|
+
* Sale price including tax in the specified currency.
|
|
643
|
+
* @type {number}
|
|
644
|
+
* @memberof CreateProductVariantSalePrice
|
|
645
|
+
*/
|
|
646
|
+
'amount': number;
|
|
647
|
+
/**
|
|
648
|
+
* Currency code for the currency the sale price is valued in.
|
|
649
|
+
* @type {string}
|
|
650
|
+
* @memberof CreateProductVariantSalePrice
|
|
651
|
+
*/
|
|
652
|
+
'currencyCode': CreateProductVariantSalePriceCurrencyCodeEnum;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
export const CreateProductVariantSalePriceCurrencyCodeEnum = {
|
|
656
|
+
Gbp: 'GBP'
|
|
657
|
+
} as const;
|
|
658
|
+
|
|
659
|
+
export type CreateProductVariantSalePriceCurrencyCodeEnum = typeof CreateProductVariantSalePriceCurrencyCodeEnum[keyof typeof CreateProductVariantSalePriceCurrencyCodeEnum];
|
|
660
|
+
|
|
605
661
|
/**
|
|
606
662
|
* Image description
|
|
607
663
|
* @export
|
|
@@ -799,6 +855,18 @@ export interface Product {
|
|
|
799
855
|
* @memberof Product
|
|
800
856
|
*/
|
|
801
857
|
'additionalFiles'?: Array<ProductAdditionalFilesInner>;
|
|
858
|
+
/**
|
|
859
|
+
* List of application sets associated with this product
|
|
860
|
+
* @type {Array<ProductApplicationSetsInner>}
|
|
861
|
+
* @memberof Product
|
|
862
|
+
*/
|
|
863
|
+
'applicationSets'?: Array<ProductApplicationSetsInner>;
|
|
864
|
+
/**
|
|
865
|
+
*
|
|
866
|
+
* @type {boolean}
|
|
867
|
+
* @memberof Product
|
|
868
|
+
*/
|
|
869
|
+
'includeInDataFeeds'?: boolean;
|
|
802
870
|
}
|
|
803
871
|
/**
|
|
804
872
|
*
|
|
@@ -819,6 +887,31 @@ export interface ProductAdditionalFilesInner {
|
|
|
819
887
|
*/
|
|
820
888
|
'src'?: string;
|
|
821
889
|
}
|
|
890
|
+
/**
|
|
891
|
+
*
|
|
892
|
+
* @export
|
|
893
|
+
* @interface ProductApplicationSetsInner
|
|
894
|
+
*/
|
|
895
|
+
export interface ProductApplicationSetsInner {
|
|
896
|
+
/**
|
|
897
|
+
* Unique object identifier
|
|
898
|
+
* @type {string}
|
|
899
|
+
* @memberof ProductApplicationSetsInner
|
|
900
|
+
*/
|
|
901
|
+
'id'?: string;
|
|
902
|
+
/**
|
|
903
|
+
* A reference to the resource location
|
|
904
|
+
* @type {string}
|
|
905
|
+
* @memberof ProductApplicationSetsInner
|
|
906
|
+
*/
|
|
907
|
+
'ref'?: string;
|
|
908
|
+
/**
|
|
909
|
+
* Name of the application set
|
|
910
|
+
* @type {string}
|
|
911
|
+
* @memberof ProductApplicationSetsInner
|
|
912
|
+
*/
|
|
913
|
+
'name'?: string;
|
|
914
|
+
}
|
|
822
915
|
/**
|
|
823
916
|
*
|
|
824
917
|
* @export
|
|
@@ -850,6 +943,12 @@ export interface SeoMetadata {
|
|
|
850
943
|
* @memberof SeoMetadata
|
|
851
944
|
*/
|
|
852
945
|
'title'?: string;
|
|
946
|
+
/**
|
|
947
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
948
|
+
* @type {string}
|
|
949
|
+
* @memberof SeoMetadata
|
|
950
|
+
*/
|
|
951
|
+
'description'?: string | null;
|
|
853
952
|
}
|
|
854
953
|
/**
|
|
855
954
|
*
|
|
@@ -1023,6 +1122,18 @@ export interface UpdateProductRequest {
|
|
|
1023
1122
|
* @memberof UpdateProductRequest
|
|
1024
1123
|
*/
|
|
1025
1124
|
'additionalFiles'?: Array<AdditionalFile>;
|
|
1125
|
+
/**
|
|
1126
|
+
* List of application set UUIDs to associate with this product
|
|
1127
|
+
* @type {Array<string>}
|
|
1128
|
+
* @memberof UpdateProductRequest
|
|
1129
|
+
*/
|
|
1130
|
+
'applicationSets'?: Array<string>;
|
|
1131
|
+
/**
|
|
1132
|
+
* Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
|
|
1133
|
+
* @type {boolean}
|
|
1134
|
+
* @memberof UpdateProductRequest
|
|
1135
|
+
*/
|
|
1136
|
+
'includeInDataFeeds'?: boolean;
|
|
1026
1137
|
}
|
|
1027
1138
|
/**
|
|
1028
1139
|
*
|
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.23.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.23.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.23.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.23.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,18 @@ 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>;
|
|
451
|
+
/**
|
|
452
|
+
* Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
|
|
453
|
+
* @type {boolean}
|
|
454
|
+
* @memberof CreateProductRequest
|
|
455
|
+
*/
|
|
456
|
+
'includeInDataFeeds'?: boolean;
|
|
445
457
|
}
|
|
446
458
|
/**
|
|
447
459
|
*
|
|
@@ -481,6 +493,12 @@ export interface CreateProductRequestSeoMetadata {
|
|
|
481
493
|
* @memberof CreateProductRequestSeoMetadata
|
|
482
494
|
*/
|
|
483
495
|
'title'?: string;
|
|
496
|
+
/**
|
|
497
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
498
|
+
* @type {string}
|
|
499
|
+
* @memberof CreateProductRequestSeoMetadata
|
|
500
|
+
*/
|
|
501
|
+
'description'?: string | null;
|
|
484
502
|
}
|
|
485
503
|
/**
|
|
486
504
|
*
|
|
@@ -500,6 +518,12 @@ export interface CreateProductVariant {
|
|
|
500
518
|
* @memberof CreateProductVariant
|
|
501
519
|
*/
|
|
502
520
|
'retailPrice': CreateProductVariantRetailPrice;
|
|
521
|
+
/**
|
|
522
|
+
*
|
|
523
|
+
* @type {CreateProductVariantSalePrice}
|
|
524
|
+
* @memberof CreateProductVariant
|
|
525
|
+
*/
|
|
526
|
+
'salePrice'?: CreateProductVariantSalePrice;
|
|
503
527
|
/**
|
|
504
528
|
* A custom stock keeping unit for the variant.
|
|
505
529
|
* @type {string}
|
|
@@ -518,6 +542,12 @@ export interface CreateProductVariant {
|
|
|
518
542
|
* @memberof CreateProductVariant
|
|
519
543
|
*/
|
|
520
544
|
'images'?: Array<CreateProductVariantImagesInner>;
|
|
545
|
+
/**
|
|
546
|
+
* List of application set UUIDs to associate with this variant
|
|
547
|
+
* @type {Array<string>}
|
|
548
|
+
* @memberof CreateProductVariant
|
|
549
|
+
*/
|
|
550
|
+
'applicationSets'?: Array<string>;
|
|
521
551
|
}
|
|
522
552
|
/**
|
|
523
553
|
*
|
|
@@ -579,6 +609,29 @@ export declare const CreateProductVariantRetailPriceCurrencyCodeEnum: {
|
|
|
579
609
|
readonly Gbp: "GBP";
|
|
580
610
|
};
|
|
581
611
|
export type CreateProductVariantRetailPriceCurrencyCodeEnum = typeof CreateProductVariantRetailPriceCurrencyCodeEnum[keyof typeof CreateProductVariantRetailPriceCurrencyCodeEnum];
|
|
612
|
+
/**
|
|
613
|
+
* Variant discounted price including tax.
|
|
614
|
+
* @export
|
|
615
|
+
* @interface CreateProductVariantSalePrice
|
|
616
|
+
*/
|
|
617
|
+
export interface CreateProductVariantSalePrice {
|
|
618
|
+
/**
|
|
619
|
+
* Sale price including tax in the specified currency.
|
|
620
|
+
* @type {number}
|
|
621
|
+
* @memberof CreateProductVariantSalePrice
|
|
622
|
+
*/
|
|
623
|
+
'amount': number;
|
|
624
|
+
/**
|
|
625
|
+
* Currency code for the currency the sale price is valued in.
|
|
626
|
+
* @type {string}
|
|
627
|
+
* @memberof CreateProductVariantSalePrice
|
|
628
|
+
*/
|
|
629
|
+
'currencyCode': CreateProductVariantSalePriceCurrencyCodeEnum;
|
|
630
|
+
}
|
|
631
|
+
export declare const CreateProductVariantSalePriceCurrencyCodeEnum: {
|
|
632
|
+
readonly Gbp: "GBP";
|
|
633
|
+
};
|
|
634
|
+
export type CreateProductVariantSalePriceCurrencyCodeEnum = typeof CreateProductVariantSalePriceCurrencyCodeEnum[keyof typeof CreateProductVariantSalePriceCurrencyCodeEnum];
|
|
582
635
|
/**
|
|
583
636
|
* Image description
|
|
584
637
|
* @export
|
|
@@ -773,6 +826,18 @@ export interface Product {
|
|
|
773
826
|
* @memberof Product
|
|
774
827
|
*/
|
|
775
828
|
'additionalFiles'?: Array<ProductAdditionalFilesInner>;
|
|
829
|
+
/**
|
|
830
|
+
* List of application sets associated with this product
|
|
831
|
+
* @type {Array<ProductApplicationSetsInner>}
|
|
832
|
+
* @memberof Product
|
|
833
|
+
*/
|
|
834
|
+
'applicationSets'?: Array<ProductApplicationSetsInner>;
|
|
835
|
+
/**
|
|
836
|
+
*
|
|
837
|
+
* @type {boolean}
|
|
838
|
+
* @memberof Product
|
|
839
|
+
*/
|
|
840
|
+
'includeInDataFeeds'?: boolean;
|
|
776
841
|
}
|
|
777
842
|
/**
|
|
778
843
|
*
|
|
@@ -793,6 +858,31 @@ export interface ProductAdditionalFilesInner {
|
|
|
793
858
|
*/
|
|
794
859
|
'src'?: string;
|
|
795
860
|
}
|
|
861
|
+
/**
|
|
862
|
+
*
|
|
863
|
+
* @export
|
|
864
|
+
* @interface ProductApplicationSetsInner
|
|
865
|
+
*/
|
|
866
|
+
export interface ProductApplicationSetsInner {
|
|
867
|
+
/**
|
|
868
|
+
* Unique object identifier
|
|
869
|
+
* @type {string}
|
|
870
|
+
* @memberof ProductApplicationSetsInner
|
|
871
|
+
*/
|
|
872
|
+
'id'?: string;
|
|
873
|
+
/**
|
|
874
|
+
* A reference to the resource location
|
|
875
|
+
* @type {string}
|
|
876
|
+
* @memberof ProductApplicationSetsInner
|
|
877
|
+
*/
|
|
878
|
+
'ref'?: string;
|
|
879
|
+
/**
|
|
880
|
+
* Name of the application set
|
|
881
|
+
* @type {string}
|
|
882
|
+
* @memberof ProductApplicationSetsInner
|
|
883
|
+
*/
|
|
884
|
+
'name'?: string;
|
|
885
|
+
}
|
|
796
886
|
/**
|
|
797
887
|
*
|
|
798
888
|
* @export
|
|
@@ -824,6 +914,12 @@ export interface SeoMetadata {
|
|
|
824
914
|
* @memberof SeoMetadata
|
|
825
915
|
*/
|
|
826
916
|
'title'?: string;
|
|
917
|
+
/**
|
|
918
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
919
|
+
* @type {string}
|
|
920
|
+
* @memberof SeoMetadata
|
|
921
|
+
*/
|
|
922
|
+
'description'?: string | null;
|
|
827
923
|
}
|
|
828
924
|
/**
|
|
829
925
|
*
|
|
@@ -997,6 +1093,18 @@ export interface UpdateProductRequest {
|
|
|
997
1093
|
* @memberof UpdateProductRequest
|
|
998
1094
|
*/
|
|
999
1095
|
'additionalFiles'?: Array<AdditionalFile>;
|
|
1096
|
+
/**
|
|
1097
|
+
* List of application set UUIDs to associate with this product
|
|
1098
|
+
* @type {Array<string>}
|
|
1099
|
+
* @memberof UpdateProductRequest
|
|
1100
|
+
*/
|
|
1101
|
+
'applicationSets'?: Array<string>;
|
|
1102
|
+
/**
|
|
1103
|
+
* Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
|
|
1104
|
+
* @type {boolean}
|
|
1105
|
+
* @memberof UpdateProductRequest
|
|
1106
|
+
*/
|
|
1107
|
+
'includeInDataFeeds'?: boolean;
|
|
1000
1108
|
}
|
|
1001
1109
|
/**
|
|
1002
1110
|
*
|
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.23.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.VariantsApi = exports.VariantsApiFactory = exports.VariantsApiFp = exports.VariantsApiAxiosParamCreator = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.ApplicationSetsApi = exports.ApplicationSetsApiFactory = exports.ApplicationSetsApiFp = exports.ApplicationSetsApiAxiosParamCreator = exports.PriceCurrencyCodeEnum = exports.CreateProductVariantRetailPriceCurrencyCodeEnum = exports.CreateProductVariantAttributesInnerNameEnum = exports.CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
|
|
25
|
+
exports.VariantsApi = exports.VariantsApiFactory = exports.VariantsApiFp = exports.VariantsApiAxiosParamCreator = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.ApplicationSetsApi = exports.ApplicationSetsApiFactory = exports.ApplicationSetsApiFp = exports.ApplicationSetsApiAxiosParamCreator = exports.PriceCurrencyCodeEnum = exports.CreateProductVariantSalePriceCurrencyCodeEnum = exports.CreateProductVariantRetailPriceCurrencyCodeEnum = exports.CreateProductVariantAttributesInnerNameEnum = exports.CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -59,6 +59,9 @@ exports.CreateProductVariantAttributesInnerNameEnum = {
|
|
|
59
59
|
exports.CreateProductVariantRetailPriceCurrencyCodeEnum = {
|
|
60
60
|
Gbp: 'GBP'
|
|
61
61
|
};
|
|
62
|
+
exports.CreateProductVariantSalePriceCurrencyCodeEnum = {
|
|
63
|
+
Gbp: 'GBP'
|
|
64
|
+
};
|
|
62
65
|
exports.PriceCurrencyCodeEnum = {
|
|
63
66
|
Gbp: 'GBP'
|
|
64
67
|
};
|
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.23.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.23.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.23.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.23.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.23.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.23.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.23.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,18 @@ 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>;
|
|
451
|
+
/**
|
|
452
|
+
* Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
|
|
453
|
+
* @type {boolean}
|
|
454
|
+
* @memberof CreateProductRequest
|
|
455
|
+
*/
|
|
456
|
+
'includeInDataFeeds'?: boolean;
|
|
445
457
|
}
|
|
446
458
|
/**
|
|
447
459
|
*
|
|
@@ -481,6 +493,12 @@ export interface CreateProductRequestSeoMetadata {
|
|
|
481
493
|
* @memberof CreateProductRequestSeoMetadata
|
|
482
494
|
*/
|
|
483
495
|
'title'?: string;
|
|
496
|
+
/**
|
|
497
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
498
|
+
* @type {string}
|
|
499
|
+
* @memberof CreateProductRequestSeoMetadata
|
|
500
|
+
*/
|
|
501
|
+
'description'?: string | null;
|
|
484
502
|
}
|
|
485
503
|
/**
|
|
486
504
|
*
|
|
@@ -500,6 +518,12 @@ export interface CreateProductVariant {
|
|
|
500
518
|
* @memberof CreateProductVariant
|
|
501
519
|
*/
|
|
502
520
|
'retailPrice': CreateProductVariantRetailPrice;
|
|
521
|
+
/**
|
|
522
|
+
*
|
|
523
|
+
* @type {CreateProductVariantSalePrice}
|
|
524
|
+
* @memberof CreateProductVariant
|
|
525
|
+
*/
|
|
526
|
+
'salePrice'?: CreateProductVariantSalePrice;
|
|
503
527
|
/**
|
|
504
528
|
* A custom stock keeping unit for the variant.
|
|
505
529
|
* @type {string}
|
|
@@ -518,6 +542,12 @@ export interface CreateProductVariant {
|
|
|
518
542
|
* @memberof CreateProductVariant
|
|
519
543
|
*/
|
|
520
544
|
'images'?: Array<CreateProductVariantImagesInner>;
|
|
545
|
+
/**
|
|
546
|
+
* List of application set UUIDs to associate with this variant
|
|
547
|
+
* @type {Array<string>}
|
|
548
|
+
* @memberof CreateProductVariant
|
|
549
|
+
*/
|
|
550
|
+
'applicationSets'?: Array<string>;
|
|
521
551
|
}
|
|
522
552
|
/**
|
|
523
553
|
*
|
|
@@ -579,6 +609,29 @@ export declare const CreateProductVariantRetailPriceCurrencyCodeEnum: {
|
|
|
579
609
|
readonly Gbp: "GBP";
|
|
580
610
|
};
|
|
581
611
|
export type CreateProductVariantRetailPriceCurrencyCodeEnum = typeof CreateProductVariantRetailPriceCurrencyCodeEnum[keyof typeof CreateProductVariantRetailPriceCurrencyCodeEnum];
|
|
612
|
+
/**
|
|
613
|
+
* Variant discounted price including tax.
|
|
614
|
+
* @export
|
|
615
|
+
* @interface CreateProductVariantSalePrice
|
|
616
|
+
*/
|
|
617
|
+
export interface CreateProductVariantSalePrice {
|
|
618
|
+
/**
|
|
619
|
+
* Sale price including tax in the specified currency.
|
|
620
|
+
* @type {number}
|
|
621
|
+
* @memberof CreateProductVariantSalePrice
|
|
622
|
+
*/
|
|
623
|
+
'amount': number;
|
|
624
|
+
/**
|
|
625
|
+
* Currency code for the currency the sale price is valued in.
|
|
626
|
+
* @type {string}
|
|
627
|
+
* @memberof CreateProductVariantSalePrice
|
|
628
|
+
*/
|
|
629
|
+
'currencyCode': CreateProductVariantSalePriceCurrencyCodeEnum;
|
|
630
|
+
}
|
|
631
|
+
export declare const CreateProductVariantSalePriceCurrencyCodeEnum: {
|
|
632
|
+
readonly Gbp: "GBP";
|
|
633
|
+
};
|
|
634
|
+
export type CreateProductVariantSalePriceCurrencyCodeEnum = typeof CreateProductVariantSalePriceCurrencyCodeEnum[keyof typeof CreateProductVariantSalePriceCurrencyCodeEnum];
|
|
582
635
|
/**
|
|
583
636
|
* Image description
|
|
584
637
|
* @export
|
|
@@ -773,6 +826,18 @@ export interface Product {
|
|
|
773
826
|
* @memberof Product
|
|
774
827
|
*/
|
|
775
828
|
'additionalFiles'?: Array<ProductAdditionalFilesInner>;
|
|
829
|
+
/**
|
|
830
|
+
* List of application sets associated with this product
|
|
831
|
+
* @type {Array<ProductApplicationSetsInner>}
|
|
832
|
+
* @memberof Product
|
|
833
|
+
*/
|
|
834
|
+
'applicationSets'?: Array<ProductApplicationSetsInner>;
|
|
835
|
+
/**
|
|
836
|
+
*
|
|
837
|
+
* @type {boolean}
|
|
838
|
+
* @memberof Product
|
|
839
|
+
*/
|
|
840
|
+
'includeInDataFeeds'?: boolean;
|
|
776
841
|
}
|
|
777
842
|
/**
|
|
778
843
|
*
|
|
@@ -793,6 +858,31 @@ export interface ProductAdditionalFilesInner {
|
|
|
793
858
|
*/
|
|
794
859
|
'src'?: string;
|
|
795
860
|
}
|
|
861
|
+
/**
|
|
862
|
+
*
|
|
863
|
+
* @export
|
|
864
|
+
* @interface ProductApplicationSetsInner
|
|
865
|
+
*/
|
|
866
|
+
export interface ProductApplicationSetsInner {
|
|
867
|
+
/**
|
|
868
|
+
* Unique object identifier
|
|
869
|
+
* @type {string}
|
|
870
|
+
* @memberof ProductApplicationSetsInner
|
|
871
|
+
*/
|
|
872
|
+
'id'?: string;
|
|
873
|
+
/**
|
|
874
|
+
* A reference to the resource location
|
|
875
|
+
* @type {string}
|
|
876
|
+
* @memberof ProductApplicationSetsInner
|
|
877
|
+
*/
|
|
878
|
+
'ref'?: string;
|
|
879
|
+
/**
|
|
880
|
+
* Name of the application set
|
|
881
|
+
* @type {string}
|
|
882
|
+
* @memberof ProductApplicationSetsInner
|
|
883
|
+
*/
|
|
884
|
+
'name'?: string;
|
|
885
|
+
}
|
|
796
886
|
/**
|
|
797
887
|
*
|
|
798
888
|
* @export
|
|
@@ -824,6 +914,12 @@ export interface SeoMetadata {
|
|
|
824
914
|
* @memberof SeoMetadata
|
|
825
915
|
*/
|
|
826
916
|
'title'?: string;
|
|
917
|
+
/**
|
|
918
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
919
|
+
* @type {string}
|
|
920
|
+
* @memberof SeoMetadata
|
|
921
|
+
*/
|
|
922
|
+
'description'?: string | null;
|
|
827
923
|
}
|
|
828
924
|
/**
|
|
829
925
|
*
|
|
@@ -997,6 +1093,18 @@ export interface UpdateProductRequest {
|
|
|
997
1093
|
* @memberof UpdateProductRequest
|
|
998
1094
|
*/
|
|
999
1095
|
'additionalFiles'?: Array<AdditionalFile>;
|
|
1096
|
+
/**
|
|
1097
|
+
* List of application set UUIDs to associate with this product
|
|
1098
|
+
* @type {Array<string>}
|
|
1099
|
+
* @memberof UpdateProductRequest
|
|
1100
|
+
*/
|
|
1101
|
+
'applicationSets'?: Array<string>;
|
|
1102
|
+
/**
|
|
1103
|
+
* Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
|
|
1104
|
+
* @type {boolean}
|
|
1105
|
+
* @memberof UpdateProductRequest
|
|
1106
|
+
*/
|
|
1107
|
+
'includeInDataFeeds'?: boolean;
|
|
1000
1108
|
}
|
|
1001
1109
|
/**
|
|
1002
1110
|
*
|
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.23.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -56,6 +56,9 @@ export const CreateProductVariantAttributesInnerNameEnum = {
|
|
|
56
56
|
export const CreateProductVariantRetailPriceCurrencyCodeEnum = {
|
|
57
57
|
Gbp: 'GBP'
|
|
58
58
|
};
|
|
59
|
+
export const CreateProductVariantSalePriceCurrencyCodeEnum = {
|
|
60
|
+
Gbp: 'GBP'
|
|
61
|
+
};
|
|
59
62
|
export const PriceCurrencyCodeEnum = {
|
|
60
63
|
Gbp: 'GBP'
|
|
61
64
|
};
|
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.23.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.23.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.23.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.23.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.23.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.23.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.23.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.23.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.23.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.23.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.23.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|