@infisale-client/api-client 1.2.75 → 1.2.77
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/dist/api/api.d.ts +498 -207
- package/dist/api/api.js +10 -10
- package/dist/api/api.mjs +10 -10
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -1076,16 +1076,16 @@ export type IBrandCollectionQueryParamsDateFieldEnum = typeof IBrandCollectionQu
|
|
|
1076
1076
|
export interface IBrandPatchRequest {
|
|
1077
1077
|
/**
|
|
1078
1078
|
*
|
|
1079
|
-
* @type {
|
|
1079
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1080
1080
|
* @memberof IBrandPatchRequest
|
|
1081
1081
|
*/
|
|
1082
|
-
'
|
|
1082
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1083
1083
|
/**
|
|
1084
1084
|
*
|
|
1085
|
-
* @type {
|
|
1085
|
+
* @type {IImage}
|
|
1086
1086
|
* @memberof IBrandPatchRequest
|
|
1087
1087
|
*/
|
|
1088
|
-
'
|
|
1088
|
+
'thumbnail'?: IImage;
|
|
1089
1089
|
}
|
|
1090
1090
|
/**
|
|
1091
1091
|
*
|
|
@@ -1101,16 +1101,16 @@ export interface IBrandPostRequest {
|
|
|
1101
1101
|
'company': string;
|
|
1102
1102
|
/**
|
|
1103
1103
|
*
|
|
1104
|
-
* @type {
|
|
1104
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1105
1105
|
* @memberof IBrandPostRequest
|
|
1106
1106
|
*/
|
|
1107
|
-
'
|
|
1107
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1108
1108
|
/**
|
|
1109
1109
|
*
|
|
1110
|
-
* @type {
|
|
1110
|
+
* @type {IImage}
|
|
1111
1111
|
* @memberof IBrandPostRequest
|
|
1112
1112
|
*/
|
|
1113
|
-
'
|
|
1113
|
+
'thumbnail'?: IImage;
|
|
1114
1114
|
}
|
|
1115
1115
|
/**
|
|
1116
1116
|
*
|
|
@@ -1385,10 +1385,10 @@ export interface ICategoryPatchRequest {
|
|
|
1385
1385
|
'company'?: string;
|
|
1386
1386
|
/**
|
|
1387
1387
|
*
|
|
1388
|
-
* @type {
|
|
1388
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1389
1389
|
* @memberof ICategoryPatchRequest
|
|
1390
1390
|
*/
|
|
1391
|
-
'
|
|
1391
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1392
1392
|
/**
|
|
1393
1393
|
*
|
|
1394
1394
|
* @type {IImage}
|
|
@@ -1397,10 +1397,10 @@ export interface ICategoryPatchRequest {
|
|
|
1397
1397
|
'thumbnail'?: IImage;
|
|
1398
1398
|
/**
|
|
1399
1399
|
*
|
|
1400
|
-
* @type {
|
|
1400
|
+
* @type {string}
|
|
1401
1401
|
* @memberof ICategoryPatchRequest
|
|
1402
1402
|
*/
|
|
1403
|
-
'
|
|
1403
|
+
'main'?: string;
|
|
1404
1404
|
}
|
|
1405
1405
|
/**
|
|
1406
1406
|
*
|
|
@@ -1416,10 +1416,10 @@ export interface ICategoryPostRequest {
|
|
|
1416
1416
|
'company': string;
|
|
1417
1417
|
/**
|
|
1418
1418
|
*
|
|
1419
|
-
* @type {
|
|
1419
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1420
1420
|
* @memberof ICategoryPostRequest
|
|
1421
1421
|
*/
|
|
1422
|
-
'
|
|
1422
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1423
1423
|
/**
|
|
1424
1424
|
*
|
|
1425
1425
|
* @type {IImage}
|
|
@@ -1428,10 +1428,10 @@ export interface ICategoryPostRequest {
|
|
|
1428
1428
|
'thumbnail'?: IImage;
|
|
1429
1429
|
/**
|
|
1430
1430
|
*
|
|
1431
|
-
* @type {
|
|
1431
|
+
* @type {string}
|
|
1432
1432
|
* @memberof ICategoryPostRequest
|
|
1433
1433
|
*/
|
|
1434
|
-
'
|
|
1434
|
+
'main'?: string;
|
|
1435
1435
|
/**
|
|
1436
1436
|
*
|
|
1437
1437
|
* @type {Array<ICategoryAttributesResponseAttributesInner>}
|
|
@@ -1477,10 +1477,10 @@ export interface ICategoryResponse {
|
|
|
1477
1477
|
'updatedAt': string;
|
|
1478
1478
|
/**
|
|
1479
1479
|
*
|
|
1480
|
-
* @type {
|
|
1480
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1481
1481
|
* @memberof ICategoryResponse
|
|
1482
1482
|
*/
|
|
1483
|
-
'
|
|
1483
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1484
1484
|
/**
|
|
1485
1485
|
*
|
|
1486
1486
|
* @type {IImage}
|
|
@@ -1489,10 +1489,10 @@ export interface ICategoryResponse {
|
|
|
1489
1489
|
'thumbnail'?: IImage;
|
|
1490
1490
|
/**
|
|
1491
1491
|
*
|
|
1492
|
-
* @type {
|
|
1492
|
+
* @type {string}
|
|
1493
1493
|
* @memberof ICategoryResponse
|
|
1494
1494
|
*/
|
|
1495
|
-
'
|
|
1495
|
+
'main'?: string;
|
|
1496
1496
|
/**
|
|
1497
1497
|
*
|
|
1498
1498
|
* @type {Array<ICategoryResponseAttributesInner>}
|
|
@@ -1747,16 +1747,16 @@ export interface ICollectionPatchRequest {
|
|
|
1747
1747
|
'template'?: ITemplateResponse;
|
|
1748
1748
|
/**
|
|
1749
1749
|
*
|
|
1750
|
-
* @type {
|
|
1750
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1751
1751
|
* @memberof ICollectionPatchRequest
|
|
1752
1752
|
*/
|
|
1753
|
-
'
|
|
1753
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1754
1754
|
/**
|
|
1755
1755
|
*
|
|
1756
|
-
* @type {
|
|
1756
|
+
* @type {IImage}
|
|
1757
1757
|
* @memberof ICollectionPatchRequest
|
|
1758
1758
|
*/
|
|
1759
|
-
'
|
|
1759
|
+
'thumbnail'?: IImage;
|
|
1760
1760
|
}
|
|
1761
1761
|
/**
|
|
1762
1762
|
*
|
|
@@ -1772,16 +1772,16 @@ export interface ICollectionPostRequest {
|
|
|
1772
1772
|
'company': string;
|
|
1773
1773
|
/**
|
|
1774
1774
|
*
|
|
1775
|
-
* @type {
|
|
1775
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1776
1776
|
* @memberof ICollectionPostRequest
|
|
1777
1777
|
*/
|
|
1778
|
-
'
|
|
1778
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1779
1779
|
/**
|
|
1780
1780
|
*
|
|
1781
|
-
* @type {
|
|
1781
|
+
* @type {IImage}
|
|
1782
1782
|
* @memberof ICollectionPostRequest
|
|
1783
1783
|
*/
|
|
1784
|
-
'
|
|
1784
|
+
'thumbnail'?: IImage;
|
|
1785
1785
|
/**
|
|
1786
1786
|
*
|
|
1787
1787
|
* @type {ITemplateResponse}
|
|
@@ -2277,16 +2277,16 @@ export interface ICompanyAdminResponse {
|
|
|
2277
2277
|
'updatedAt': string;
|
|
2278
2278
|
/**
|
|
2279
2279
|
*
|
|
2280
|
-
* @type {
|
|
2280
|
+
* @type {CompanyTypeEnum}
|
|
2281
2281
|
* @memberof ICompanyAdminResponse
|
|
2282
2282
|
*/
|
|
2283
|
-
'
|
|
2283
|
+
'type': CompanyTypeEnum;
|
|
2284
2284
|
/**
|
|
2285
2285
|
*
|
|
2286
|
-
* @type {
|
|
2286
|
+
* @type {PlanTypeEnum}
|
|
2287
2287
|
* @memberof ICompanyAdminResponse
|
|
2288
2288
|
*/
|
|
2289
|
-
'
|
|
2289
|
+
'plan': PlanTypeEnum;
|
|
2290
2290
|
/**
|
|
2291
2291
|
*
|
|
2292
2292
|
* @type {string}
|
|
@@ -2707,6 +2707,18 @@ export interface ICompanyPatchRequest {
|
|
|
2707
2707
|
* @memberof ICompanyPatchRequest
|
|
2708
2708
|
*/
|
|
2709
2709
|
'status'?: CompanyStatusEnum;
|
|
2710
|
+
/**
|
|
2711
|
+
*
|
|
2712
|
+
* @type {string}
|
|
2713
|
+
* @memberof ICompanyPatchRequest
|
|
2714
|
+
*/
|
|
2715
|
+
'theme'?: string;
|
|
2716
|
+
/**
|
|
2717
|
+
*
|
|
2718
|
+
* @type {CompanyTypeEnum}
|
|
2719
|
+
* @memberof ICompanyPatchRequest
|
|
2720
|
+
*/
|
|
2721
|
+
'type'?: CompanyTypeEnum;
|
|
2710
2722
|
/**
|
|
2711
2723
|
*
|
|
2712
2724
|
* @type {ICompanyResponseFirebaseAdminCredentials}
|
|
@@ -2749,18 +2761,6 @@ export interface ICompanyPatchRequest {
|
|
|
2749
2761
|
* @memberof ICompanyPatchRequest
|
|
2750
2762
|
*/
|
|
2751
2763
|
'paymentGateways'?: Array<ICompanyPatchRequestPaymentGatewaysInner>;
|
|
2752
|
-
/**
|
|
2753
|
-
*
|
|
2754
|
-
* @type {string}
|
|
2755
|
-
* @memberof ICompanyPatchRequest
|
|
2756
|
-
*/
|
|
2757
|
-
'theme'?: string;
|
|
2758
|
-
/**
|
|
2759
|
-
*
|
|
2760
|
-
* @type {CompanyTypeEnum}
|
|
2761
|
-
* @memberof ICompanyPatchRequest
|
|
2762
|
-
*/
|
|
2763
|
-
'type'?: CompanyTypeEnum;
|
|
2764
2764
|
/**
|
|
2765
2765
|
*
|
|
2766
2766
|
* @type {string}
|
|
@@ -3021,16 +3021,16 @@ export interface ICompanyResponse {
|
|
|
3021
3021
|
'updatedAt': string;
|
|
3022
3022
|
/**
|
|
3023
3023
|
*
|
|
3024
|
-
* @type {
|
|
3024
|
+
* @type {CompanyTypeEnum}
|
|
3025
3025
|
* @memberof ICompanyResponse
|
|
3026
3026
|
*/
|
|
3027
|
-
'
|
|
3027
|
+
'type': CompanyTypeEnum;
|
|
3028
3028
|
/**
|
|
3029
3029
|
*
|
|
3030
|
-
* @type {
|
|
3030
|
+
* @type {PlanTypeEnum}
|
|
3031
3031
|
* @memberof ICompanyResponse
|
|
3032
3032
|
*/
|
|
3033
|
-
'
|
|
3033
|
+
'plan': PlanTypeEnum;
|
|
3034
3034
|
/**
|
|
3035
3035
|
*
|
|
3036
3036
|
* @type {string}
|
|
@@ -5291,16 +5291,16 @@ export interface IOrderResponse {
|
|
|
5291
5291
|
'updatedAt': string;
|
|
5292
5292
|
/**
|
|
5293
5293
|
*
|
|
5294
|
-
* @type {
|
|
5294
|
+
* @type {string}
|
|
5295
5295
|
* @memberof IOrderResponse
|
|
5296
5296
|
*/
|
|
5297
|
-
'
|
|
5297
|
+
'user'?: string;
|
|
5298
5298
|
/**
|
|
5299
5299
|
*
|
|
5300
|
-
* @type {
|
|
5300
|
+
* @type {CurrencyEnum}
|
|
5301
5301
|
* @memberof IOrderResponse
|
|
5302
5302
|
*/
|
|
5303
|
-
'
|
|
5303
|
+
'currency': CurrencyEnum;
|
|
5304
5304
|
/**
|
|
5305
5305
|
*
|
|
5306
5306
|
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>}
|
|
@@ -5755,16 +5755,16 @@ export interface IPageGetAllQueryParams {
|
|
|
5755
5755
|
export interface IPagePatchRequest {
|
|
5756
5756
|
/**
|
|
5757
5757
|
*
|
|
5758
|
-
* @type {
|
|
5758
|
+
* @type {ITemplateResponse}
|
|
5759
5759
|
* @memberof IPagePatchRequest
|
|
5760
5760
|
*/
|
|
5761
|
-
'
|
|
5761
|
+
'template'?: ITemplateResponse;
|
|
5762
5762
|
/**
|
|
5763
5763
|
*
|
|
5764
|
-
* @type {
|
|
5764
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
5765
5765
|
* @memberof IPagePatchRequest
|
|
5766
5766
|
*/
|
|
5767
|
-
'
|
|
5767
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
5768
5768
|
/**
|
|
5769
5769
|
*
|
|
5770
5770
|
* @type {IImage}
|
|
@@ -5773,10 +5773,10 @@ export interface IPagePatchRequest {
|
|
|
5773
5773
|
'thumbnail'?: IImage;
|
|
5774
5774
|
/**
|
|
5775
5775
|
*
|
|
5776
|
-
* @type {
|
|
5776
|
+
* @type {PageTypeEnum}
|
|
5777
5777
|
* @memberof IPagePatchRequest
|
|
5778
5778
|
*/
|
|
5779
|
-
'
|
|
5779
|
+
'type'?: PageTypeEnum;
|
|
5780
5780
|
}
|
|
5781
5781
|
/**
|
|
5782
5782
|
*
|
|
@@ -5792,10 +5792,10 @@ export interface IPagePostRequest {
|
|
|
5792
5792
|
'company': string;
|
|
5793
5793
|
/**
|
|
5794
5794
|
*
|
|
5795
|
-
* @type {
|
|
5795
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
5796
5796
|
* @memberof IPagePostRequest
|
|
5797
5797
|
*/
|
|
5798
|
-
'
|
|
5798
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
5799
5799
|
/**
|
|
5800
5800
|
*
|
|
5801
5801
|
* @type {IImage}
|
|
@@ -5804,10 +5804,10 @@ export interface IPagePostRequest {
|
|
|
5804
5804
|
'thumbnail'?: IImage;
|
|
5805
5805
|
/**
|
|
5806
5806
|
*
|
|
5807
|
-
* @type {
|
|
5807
|
+
* @type {PageTypeEnum}
|
|
5808
5808
|
* @memberof IPagePostRequest
|
|
5809
5809
|
*/
|
|
5810
|
-
'
|
|
5810
|
+
'type': PageTypeEnum;
|
|
5811
5811
|
/**
|
|
5812
5812
|
*
|
|
5813
5813
|
* @type {ITemplateResponse}
|
|
@@ -5851,18 +5851,6 @@ export interface IPageResponse {
|
|
|
5851
5851
|
* @memberof IPageResponse
|
|
5852
5852
|
*/
|
|
5853
5853
|
'updatedAt': string;
|
|
5854
|
-
/**
|
|
5855
|
-
*
|
|
5856
|
-
* @type {PageTypeEnum}
|
|
5857
|
-
* @memberof IPageResponse
|
|
5858
|
-
*/
|
|
5859
|
-
'type': PageTypeEnum;
|
|
5860
|
-
/**
|
|
5861
|
-
*
|
|
5862
|
-
* @type {IImage}
|
|
5863
|
-
* @memberof IPageResponse
|
|
5864
|
-
*/
|
|
5865
|
-
'thumbnail'?: IImage;
|
|
5866
5854
|
/**
|
|
5867
5855
|
* Construct a type with a set of properties K of type T
|
|
5868
5856
|
* @type {{ [key: string]: string; }}
|
|
@@ -5877,6 +5865,18 @@ export interface IPageResponse {
|
|
|
5877
5865
|
* @memberof IPageResponse
|
|
5878
5866
|
*/
|
|
5879
5867
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
5868
|
+
/**
|
|
5869
|
+
*
|
|
5870
|
+
* @type {IImage}
|
|
5871
|
+
* @memberof IPageResponse
|
|
5872
|
+
*/
|
|
5873
|
+
'thumbnail'?: IImage;
|
|
5874
|
+
/**
|
|
5875
|
+
*
|
|
5876
|
+
* @type {PageTypeEnum}
|
|
5877
|
+
* @memberof IPageResponse
|
|
5878
|
+
*/
|
|
5879
|
+
'type': PageTypeEnum;
|
|
5880
5880
|
/**
|
|
5881
5881
|
*
|
|
5882
5882
|
* @type {ITemplateResponse}
|
|
@@ -6239,6 +6239,12 @@ export interface IPlansResponse {
|
|
|
6239
6239
|
* @interface IProductCollectionQueryParams
|
|
6240
6240
|
*/
|
|
6241
6241
|
export interface IProductCollectionQueryParams {
|
|
6242
|
+
/**
|
|
6243
|
+
*
|
|
6244
|
+
* @type {OrderEnum}
|
|
6245
|
+
* @memberof IProductCollectionQueryParams
|
|
6246
|
+
*/
|
|
6247
|
+
'order'?: OrderEnum;
|
|
6242
6248
|
/**
|
|
6243
6249
|
*
|
|
6244
6250
|
* @type {number}
|
|
@@ -6275,12 +6281,6 @@ export interface IProductCollectionQueryParams {
|
|
|
6275
6281
|
* @memberof IProductCollectionQueryParams
|
|
6276
6282
|
*/
|
|
6277
6283
|
'dateField'?: IProductCollectionQueryParamsDateFieldEnum;
|
|
6278
|
-
/**
|
|
6279
|
-
*
|
|
6280
|
-
* @type {OrderEnum}
|
|
6281
|
-
* @memberof IProductCollectionQueryParams
|
|
6282
|
-
*/
|
|
6283
|
-
'order'?: OrderEnum;
|
|
6284
6284
|
/**
|
|
6285
6285
|
*
|
|
6286
6286
|
* @type {string}
|
|
@@ -6615,6 +6615,12 @@ export interface IProductResponse {
|
|
|
6615
6615
|
* @memberof IProductResponse
|
|
6616
6616
|
*/
|
|
6617
6617
|
'updatedAt': string;
|
|
6618
|
+
/**
|
|
6619
|
+
*
|
|
6620
|
+
* @type {number}
|
|
6621
|
+
* @memberof IProductResponse
|
|
6622
|
+
*/
|
|
6623
|
+
'rating': number;
|
|
6618
6624
|
/**
|
|
6619
6625
|
*
|
|
6620
6626
|
* @type {number}
|
|
@@ -6713,12 +6719,6 @@ export interface IProductResponse {
|
|
|
6713
6719
|
'attributes'?: {
|
|
6714
6720
|
[key: string]: string;
|
|
6715
6721
|
};
|
|
6716
|
-
/**
|
|
6717
|
-
*
|
|
6718
|
-
* @type {number}
|
|
6719
|
-
* @memberof IProductResponse
|
|
6720
|
-
*/
|
|
6721
|
-
'rating': number;
|
|
6722
6722
|
/**
|
|
6723
6723
|
*
|
|
6724
6724
|
* @type {number}
|
|
@@ -6800,6 +6800,43 @@ export interface IProductResponseStockValue {
|
|
|
6800
6800
|
*/
|
|
6801
6801
|
'quantity': number;
|
|
6802
6802
|
}
|
|
6803
|
+
/**
|
|
6804
|
+
*
|
|
6805
|
+
* @export
|
|
6806
|
+
* @interface IProductReviewsPopulateResponse
|
|
6807
|
+
*/
|
|
6808
|
+
export interface IProductReviewsPopulateResponse {
|
|
6809
|
+
/**
|
|
6810
|
+
*
|
|
6811
|
+
* @type {number}
|
|
6812
|
+
* @memberof IProductReviewsPopulateResponse
|
|
6813
|
+
*/
|
|
6814
|
+
'page': number;
|
|
6815
|
+
/**
|
|
6816
|
+
*
|
|
6817
|
+
* @type {number}
|
|
6818
|
+
* @memberof IProductReviewsPopulateResponse
|
|
6819
|
+
*/
|
|
6820
|
+
'itemsPerPage': number;
|
|
6821
|
+
/**
|
|
6822
|
+
*
|
|
6823
|
+
* @type {number}
|
|
6824
|
+
* @memberof IProductReviewsPopulateResponse
|
|
6825
|
+
*/
|
|
6826
|
+
'total': number;
|
|
6827
|
+
/**
|
|
6828
|
+
*
|
|
6829
|
+
* @type {number}
|
|
6830
|
+
* @memberof IProductReviewsPopulateResponse
|
|
6831
|
+
*/
|
|
6832
|
+
'totalPages': number;
|
|
6833
|
+
/**
|
|
6834
|
+
*
|
|
6835
|
+
* @type {Array<IReviewResponse>}
|
|
6836
|
+
* @memberof IProductReviewsPopulateResponse
|
|
6837
|
+
*/
|
|
6838
|
+
'data': Array<IReviewResponse>;
|
|
6839
|
+
}
|
|
6803
6840
|
/**
|
|
6804
6841
|
*
|
|
6805
6842
|
* @export
|
|
@@ -6931,16 +6968,16 @@ export interface IProductsResponseCategory {
|
|
|
6931
6968
|
'_id': string;
|
|
6932
6969
|
/**
|
|
6933
6970
|
*
|
|
6934
|
-
* @type {
|
|
6971
|
+
* @type {Array<ICategoryResponseAttributesInner>}
|
|
6935
6972
|
* @memberof IProductsResponseCategory
|
|
6936
6973
|
*/
|
|
6937
|
-
'
|
|
6974
|
+
'attributes': Array<ICategoryResponseAttributesInner>;
|
|
6938
6975
|
/**
|
|
6939
6976
|
*
|
|
6940
|
-
* @type {
|
|
6977
|
+
* @type {string}
|
|
6941
6978
|
* @memberof IProductsResponseCategory
|
|
6942
6979
|
*/
|
|
6943
|
-
'
|
|
6980
|
+
'main'?: string;
|
|
6944
6981
|
/**
|
|
6945
6982
|
*
|
|
6946
6983
|
* @type {RecordLanguageEnumTitleString}
|
|
@@ -7066,6 +7103,12 @@ export interface IReview {
|
|
|
7066
7103
|
* @memberof IReview
|
|
7067
7104
|
*/
|
|
7068
7105
|
'company': string;
|
|
7106
|
+
/**
|
|
7107
|
+
*
|
|
7108
|
+
* @type {string}
|
|
7109
|
+
* @memberof IReview
|
|
7110
|
+
*/
|
|
7111
|
+
'user': string;
|
|
7069
7112
|
/**
|
|
7070
7113
|
*
|
|
7071
7114
|
* @type {string}
|
|
@@ -7084,6 +7127,30 @@ export interface IReview {
|
|
|
7084
7127
|
* @memberof IReview
|
|
7085
7128
|
*/
|
|
7086
7129
|
'product': string;
|
|
7130
|
+
/**
|
|
7131
|
+
*
|
|
7132
|
+
* @type {PartialRecordLanguageEnumString}
|
|
7133
|
+
* @memberof IReview
|
|
7134
|
+
*/
|
|
7135
|
+
'mainVariantTitle': PartialRecordLanguageEnumString;
|
|
7136
|
+
/**
|
|
7137
|
+
*
|
|
7138
|
+
* @type {PartialRecordLanguageEnumString}
|
|
7139
|
+
* @memberof IReview
|
|
7140
|
+
*/
|
|
7141
|
+
'subVariantTitle': PartialRecordLanguageEnumString;
|
|
7142
|
+
/**
|
|
7143
|
+
*
|
|
7144
|
+
* @type {string}
|
|
7145
|
+
* @memberof IReview
|
|
7146
|
+
*/
|
|
7147
|
+
'mainVariantId'?: string;
|
|
7148
|
+
/**
|
|
7149
|
+
*
|
|
7150
|
+
* @type {string}
|
|
7151
|
+
* @memberof IReview
|
|
7152
|
+
*/
|
|
7153
|
+
'subVariantId'?: string;
|
|
7087
7154
|
/**
|
|
7088
7155
|
*
|
|
7089
7156
|
* @type {number}
|
|
@@ -7149,28 +7216,143 @@ export interface IReviewPatchRequest {
|
|
|
7149
7216
|
/**
|
|
7150
7217
|
*
|
|
7151
7218
|
* @export
|
|
7152
|
-
* @interface
|
|
7219
|
+
* @interface IReviewResponse
|
|
7153
7220
|
*/
|
|
7154
|
-
export interface
|
|
7221
|
+
export interface IReviewResponse {
|
|
7155
7222
|
/**
|
|
7156
7223
|
*
|
|
7157
|
-
* @type {
|
|
7158
|
-
* @memberof
|
|
7224
|
+
* @type {string}
|
|
7225
|
+
* @memberof IReviewResponse
|
|
7159
7226
|
*/
|
|
7160
|
-
'
|
|
7227
|
+
'name': string;
|
|
7161
7228
|
/**
|
|
7162
7229
|
*
|
|
7163
|
-
* @type {
|
|
7164
|
-
* @memberof
|
|
7230
|
+
* @type {string}
|
|
7231
|
+
* @memberof IReviewResponse
|
|
7165
7232
|
*/
|
|
7166
|
-
'
|
|
7167
|
-
|
|
7168
|
-
|
|
7169
|
-
|
|
7170
|
-
|
|
7171
|
-
|
|
7172
|
-
|
|
7173
|
-
|
|
7233
|
+
'company': string;
|
|
7234
|
+
/**
|
|
7235
|
+
*
|
|
7236
|
+
* @type {ReviewStatusEnum}
|
|
7237
|
+
* @memberof IReviewResponse
|
|
7238
|
+
*/
|
|
7239
|
+
'status': ReviewStatusEnum;
|
|
7240
|
+
/**
|
|
7241
|
+
*
|
|
7242
|
+
* @type {string}
|
|
7243
|
+
* @memberof IReviewResponse
|
|
7244
|
+
*/
|
|
7245
|
+
'_id': string;
|
|
7246
|
+
/**
|
|
7247
|
+
*
|
|
7248
|
+
* @type {number}
|
|
7249
|
+
* @memberof IReviewResponse
|
|
7250
|
+
*/
|
|
7251
|
+
'__v': number;
|
|
7252
|
+
/**
|
|
7253
|
+
*
|
|
7254
|
+
* @type {string}
|
|
7255
|
+
* @memberof IReviewResponse
|
|
7256
|
+
*/
|
|
7257
|
+
'createdAt': string;
|
|
7258
|
+
/**
|
|
7259
|
+
*
|
|
7260
|
+
* @type {string}
|
|
7261
|
+
* @memberof IReviewResponse
|
|
7262
|
+
*/
|
|
7263
|
+
'updatedAt': string;
|
|
7264
|
+
/**
|
|
7265
|
+
*
|
|
7266
|
+
* @type {string}
|
|
7267
|
+
* @memberof IReviewResponse
|
|
7268
|
+
*/
|
|
7269
|
+
'user': string;
|
|
7270
|
+
/**
|
|
7271
|
+
*
|
|
7272
|
+
* @type {string}
|
|
7273
|
+
* @memberof IReviewResponse
|
|
7274
|
+
*/
|
|
7275
|
+
'order': string;
|
|
7276
|
+
/**
|
|
7277
|
+
*
|
|
7278
|
+
* @type {string}
|
|
7279
|
+
* @memberof IReviewResponse
|
|
7280
|
+
*/
|
|
7281
|
+
'relId': string;
|
|
7282
|
+
/**
|
|
7283
|
+
*
|
|
7284
|
+
* @type {PartialRecordLanguageEnumString}
|
|
7285
|
+
* @memberof IReviewResponse
|
|
7286
|
+
*/
|
|
7287
|
+
'mainVariantTitle': PartialRecordLanguageEnumString;
|
|
7288
|
+
/**
|
|
7289
|
+
*
|
|
7290
|
+
* @type {PartialRecordLanguageEnumString}
|
|
7291
|
+
* @memberof IReviewResponse
|
|
7292
|
+
*/
|
|
7293
|
+
'subVariantTitle': PartialRecordLanguageEnumString;
|
|
7294
|
+
/**
|
|
7295
|
+
*
|
|
7296
|
+
* @type {string}
|
|
7297
|
+
* @memberof IReviewResponse
|
|
7298
|
+
*/
|
|
7299
|
+
'mainVariantId'?: string;
|
|
7300
|
+
/**
|
|
7301
|
+
*
|
|
7302
|
+
* @type {string}
|
|
7303
|
+
* @memberof IReviewResponse
|
|
7304
|
+
*/
|
|
7305
|
+
'subVariantId'?: string;
|
|
7306
|
+
/**
|
|
7307
|
+
*
|
|
7308
|
+
* @type {number}
|
|
7309
|
+
* @memberof IReviewResponse
|
|
7310
|
+
*/
|
|
7311
|
+
'rating': number;
|
|
7312
|
+
/**
|
|
7313
|
+
*
|
|
7314
|
+
* @type {string}
|
|
7315
|
+
* @memberof IReviewResponse
|
|
7316
|
+
*/
|
|
7317
|
+
'title': string;
|
|
7318
|
+
/**
|
|
7319
|
+
*
|
|
7320
|
+
* @type {string}
|
|
7321
|
+
* @memberof IReviewResponse
|
|
7322
|
+
*/
|
|
7323
|
+
'comment': string;
|
|
7324
|
+
/**
|
|
7325
|
+
*
|
|
7326
|
+
* @type {IProductResponse}
|
|
7327
|
+
* @memberof IReviewResponse
|
|
7328
|
+
*/
|
|
7329
|
+
'product': IProductResponse;
|
|
7330
|
+
}
|
|
7331
|
+
/**
|
|
7332
|
+
*
|
|
7333
|
+
* @export
|
|
7334
|
+
* @interface ISitemapResponse
|
|
7335
|
+
*/
|
|
7336
|
+
export interface ISitemapResponse {
|
|
7337
|
+
/**
|
|
7338
|
+
*
|
|
7339
|
+
* @type {LanguageEnum}
|
|
7340
|
+
* @memberof ISitemapResponse
|
|
7341
|
+
*/
|
|
7342
|
+
'companyDefaultLanguage': LanguageEnum;
|
|
7343
|
+
/**
|
|
7344
|
+
*
|
|
7345
|
+
* @type {Array<ISitemapResponseSlugsInner>}
|
|
7346
|
+
* @memberof ISitemapResponse
|
|
7347
|
+
*/
|
|
7348
|
+
'slugs': Array<ISitemapResponseSlugsInner>;
|
|
7349
|
+
}
|
|
7350
|
+
/**
|
|
7351
|
+
*
|
|
7352
|
+
* @export
|
|
7353
|
+
* @interface ISitemapResponseSlugsInner
|
|
7354
|
+
*/
|
|
7355
|
+
export interface ISitemapResponseSlugsInner {
|
|
7174
7356
|
/**
|
|
7175
7357
|
*
|
|
7176
7358
|
* @type {string}
|
|
@@ -7268,10 +7450,10 @@ export interface IState {
|
|
|
7268
7450
|
export interface ITemplatePatchRequest {
|
|
7269
7451
|
/**
|
|
7270
7452
|
*
|
|
7271
|
-
* @type {
|
|
7453
|
+
* @type {string}
|
|
7272
7454
|
* @memberof ITemplatePatchRequest
|
|
7273
7455
|
*/
|
|
7274
|
-
'
|
|
7456
|
+
'title'?: string;
|
|
7275
7457
|
/**
|
|
7276
7458
|
*
|
|
7277
7459
|
* @type {Array<ITemplateResponseComponentsInner>}
|
|
@@ -7280,10 +7462,10 @@ export interface ITemplatePatchRequest {
|
|
|
7280
7462
|
'components'?: Array<ITemplateResponseComponentsInner>;
|
|
7281
7463
|
/**
|
|
7282
7464
|
*
|
|
7283
|
-
* @type {
|
|
7465
|
+
* @type {TemplateTypeEnum}
|
|
7284
7466
|
* @memberof ITemplatePatchRequest
|
|
7285
7467
|
*/
|
|
7286
|
-
'
|
|
7468
|
+
'type'?: TemplateTypeEnum;
|
|
7287
7469
|
}
|
|
7288
7470
|
/**
|
|
7289
7471
|
*
|
|
@@ -7302,25 +7484,25 @@ export interface ITemplatePostRequest {
|
|
|
7302
7484
|
* @type {string}
|
|
7303
7485
|
* @memberof ITemplatePostRequest
|
|
7304
7486
|
*/
|
|
7305
|
-
'
|
|
7487
|
+
'title': string;
|
|
7306
7488
|
/**
|
|
7307
7489
|
*
|
|
7308
|
-
* @type {
|
|
7490
|
+
* @type {Array<ITemplateResponseComponentsInner>}
|
|
7309
7491
|
* @memberof ITemplatePostRequest
|
|
7310
7492
|
*/
|
|
7311
|
-
'
|
|
7493
|
+
'components': Array<ITemplateResponseComponentsInner>;
|
|
7312
7494
|
/**
|
|
7313
7495
|
*
|
|
7314
|
-
* @type {
|
|
7496
|
+
* @type {string}
|
|
7315
7497
|
* @memberof ITemplatePostRequest
|
|
7316
7498
|
*/
|
|
7317
|
-
'
|
|
7499
|
+
'theme': string;
|
|
7318
7500
|
/**
|
|
7319
7501
|
*
|
|
7320
|
-
* @type {
|
|
7502
|
+
* @type {TemplateTypeEnum}
|
|
7321
7503
|
* @memberof ITemplatePostRequest
|
|
7322
7504
|
*/
|
|
7323
|
-
'
|
|
7505
|
+
'type': TemplateTypeEnum;
|
|
7324
7506
|
}
|
|
7325
7507
|
/**
|
|
7326
7508
|
*
|
|
@@ -7363,19 +7545,19 @@ export interface ITemplateResponse {
|
|
|
7363
7545
|
* @type {string}
|
|
7364
7546
|
* @memberof ITemplateResponse
|
|
7365
7547
|
*/
|
|
7366
|
-
'
|
|
7548
|
+
'title': string;
|
|
7367
7549
|
/**
|
|
7368
7550
|
*
|
|
7369
|
-
* @type {
|
|
7551
|
+
* @type {string}
|
|
7370
7552
|
* @memberof ITemplateResponse
|
|
7371
7553
|
*/
|
|
7372
|
-
'
|
|
7554
|
+
'theme': string;
|
|
7373
7555
|
/**
|
|
7374
7556
|
*
|
|
7375
|
-
* @type {
|
|
7557
|
+
* @type {TemplateTypeEnum}
|
|
7376
7558
|
* @memberof ITemplateResponse
|
|
7377
7559
|
*/
|
|
7378
|
-
'
|
|
7560
|
+
'type': TemplateTypeEnum;
|
|
7379
7561
|
/**
|
|
7380
7562
|
*
|
|
7381
7563
|
* @type {Array<ITemplateResponseComponentsInner>}
|
|
@@ -8045,16 +8227,16 @@ export interface IThemeResponse {
|
|
|
8045
8227
|
'updatedAt': string;
|
|
8046
8228
|
/**
|
|
8047
8229
|
*
|
|
8048
|
-
* @type {
|
|
8230
|
+
* @type {IImage}
|
|
8049
8231
|
* @memberof IThemeResponse
|
|
8050
8232
|
*/
|
|
8051
|
-
'
|
|
8233
|
+
'thumbnail'?: IImage;
|
|
8052
8234
|
/**
|
|
8053
8235
|
*
|
|
8054
|
-
* @type {
|
|
8236
|
+
* @type {string}
|
|
8055
8237
|
* @memberof IThemeResponse
|
|
8056
8238
|
*/
|
|
8057
|
-
'
|
|
8239
|
+
'main'?: string;
|
|
8058
8240
|
/**
|
|
8059
8241
|
*
|
|
8060
8242
|
* @type {string}
|
|
@@ -8769,16 +8951,16 @@ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponse
|
|
|
8769
8951
|
'company': string;
|
|
8770
8952
|
/**
|
|
8771
8953
|
*
|
|
8772
|
-
* @type {
|
|
8954
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
8773
8955
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponse
|
|
8774
8956
|
*/
|
|
8775
|
-
'
|
|
8957
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
8776
8958
|
/**
|
|
8777
8959
|
*
|
|
8778
|
-
* @type {
|
|
8960
|
+
* @type {IImage}
|
|
8779
8961
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponse
|
|
8780
8962
|
*/
|
|
8781
|
-
'
|
|
8963
|
+
'thumbnail'?: IImage;
|
|
8782
8964
|
}
|
|
8783
8965
|
/**
|
|
8784
8966
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -8818,10 +9000,10 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
8818
9000
|
'updatedAt': string;
|
|
8819
9001
|
/**
|
|
8820
9002
|
*
|
|
8821
|
-
* @type {
|
|
9003
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
8822
9004
|
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
8823
9005
|
*/
|
|
8824
|
-
'
|
|
9006
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
8825
9007
|
/**
|
|
8826
9008
|
*
|
|
8827
9009
|
* @type {IImage}
|
|
@@ -8830,10 +9012,10 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
8830
9012
|
'thumbnail'?: IImage;
|
|
8831
9013
|
/**
|
|
8832
9014
|
*
|
|
8833
|
-
* @type {
|
|
9015
|
+
* @type {string}
|
|
8834
9016
|
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
8835
9017
|
*/
|
|
8836
|
-
'
|
|
9018
|
+
'main'?: string;
|
|
8837
9019
|
}
|
|
8838
9020
|
/**
|
|
8839
9021
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -8849,10 +9031,10 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
8849
9031
|
'company': string;
|
|
8850
9032
|
/**
|
|
8851
9033
|
*
|
|
8852
|
-
* @type {
|
|
9034
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
8853
9035
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributes
|
|
8854
9036
|
*/
|
|
8855
|
-
'
|
|
9037
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
8856
9038
|
/**
|
|
8857
9039
|
*
|
|
8858
9040
|
* @type {IImage}
|
|
@@ -8861,10 +9043,10 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
8861
9043
|
'thumbnail'?: IImage;
|
|
8862
9044
|
/**
|
|
8863
9045
|
*
|
|
8864
|
-
* @type {
|
|
9046
|
+
* @type {string}
|
|
8865
9047
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributes
|
|
8866
9048
|
*/
|
|
8867
|
-
'
|
|
9049
|
+
'main'?: string;
|
|
8868
9050
|
}
|
|
8869
9051
|
/**
|
|
8870
9052
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -8880,16 +9062,16 @@ export interface PickICategoryResponseIdOrAttributesOrMain {
|
|
|
8880
9062
|
'_id': string;
|
|
8881
9063
|
/**
|
|
8882
9064
|
*
|
|
8883
|
-
* @type {
|
|
9065
|
+
* @type {Array<ICategoryResponseAttributesInner>}
|
|
8884
9066
|
* @memberof PickICategoryResponseIdOrAttributesOrMain
|
|
8885
9067
|
*/
|
|
8886
|
-
'
|
|
9068
|
+
'attributes': Array<ICategoryResponseAttributesInner>;
|
|
8887
9069
|
/**
|
|
8888
9070
|
*
|
|
8889
|
-
* @type {
|
|
9071
|
+
* @type {string}
|
|
8890
9072
|
* @memberof PickICategoryResponseIdOrAttributesOrMain
|
|
8891
9073
|
*/
|
|
8892
|
-
'
|
|
9074
|
+
'main'?: string;
|
|
8893
9075
|
}
|
|
8894
9076
|
/**
|
|
8895
9077
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -8922,6 +9104,12 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
|
8922
9104
|
* @interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8923
9105
|
*/
|
|
8924
9106
|
export interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort {
|
|
9107
|
+
/**
|
|
9108
|
+
*
|
|
9109
|
+
* @type {OrderEnum}
|
|
9110
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9111
|
+
*/
|
|
9112
|
+
'order'?: OrderEnum;
|
|
8925
9113
|
/**
|
|
8926
9114
|
*
|
|
8927
9115
|
* @type {number}
|
|
@@ -8958,12 +9146,6 @@ export interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSor
|
|
|
8958
9146
|
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8959
9147
|
*/
|
|
8960
9148
|
'dateField'?: PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum;
|
|
8961
|
-
/**
|
|
8962
|
-
*
|
|
8963
|
-
* @type {OrderEnum}
|
|
8964
|
-
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8965
|
-
*/
|
|
8966
|
-
'order'?: OrderEnum;
|
|
8967
9149
|
}
|
|
8968
9150
|
export declare const PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum: {
|
|
8969
9151
|
readonly CREATED_AT: "createdAt";
|
|
@@ -8984,16 +9166,16 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
|
|
|
8984
9166
|
'company': string;
|
|
8985
9167
|
/**
|
|
8986
9168
|
*
|
|
8987
|
-
* @type {
|
|
9169
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
8988
9170
|
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplates
|
|
8989
9171
|
*/
|
|
8990
|
-
'
|
|
9172
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
8991
9173
|
/**
|
|
8992
9174
|
*
|
|
8993
|
-
* @type {
|
|
9175
|
+
* @type {IImage}
|
|
8994
9176
|
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplates
|
|
8995
9177
|
*/
|
|
8996
|
-
'
|
|
9178
|
+
'thumbnail'?: IImage;
|
|
8997
9179
|
}
|
|
8998
9180
|
/**
|
|
8999
9181
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9057,16 +9239,16 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
9057
9239
|
'updatedAt': string;
|
|
9058
9240
|
/**
|
|
9059
9241
|
*
|
|
9060
|
-
* @type {
|
|
9242
|
+
* @type {CompanyTypeEnum}
|
|
9061
9243
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9062
9244
|
*/
|
|
9063
|
-
'
|
|
9245
|
+
'type': CompanyTypeEnum;
|
|
9064
9246
|
/**
|
|
9065
9247
|
*
|
|
9066
|
-
* @type {
|
|
9248
|
+
* @type {PlanTypeEnum}
|
|
9067
9249
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9068
9250
|
*/
|
|
9069
|
-
'
|
|
9251
|
+
'plan': PlanTypeEnum;
|
|
9070
9252
|
/**
|
|
9071
9253
|
*
|
|
9072
9254
|
* @type {string}
|
|
@@ -9484,16 +9666,16 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
|
9484
9666
|
'updatedAt': string;
|
|
9485
9667
|
/**
|
|
9486
9668
|
*
|
|
9487
|
-
* @type {
|
|
9669
|
+
* @type {string}
|
|
9488
9670
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
9489
9671
|
*/
|
|
9490
|
-
'
|
|
9672
|
+
'user'?: string;
|
|
9491
9673
|
/**
|
|
9492
9674
|
*
|
|
9493
|
-
* @type {
|
|
9675
|
+
* @type {CurrencyEnum}
|
|
9494
9676
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
9495
9677
|
*/
|
|
9496
|
-
'
|
|
9678
|
+
'currency': CurrencyEnum;
|
|
9497
9679
|
/**
|
|
9498
9680
|
*
|
|
9499
9681
|
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>}
|
|
@@ -9841,18 +10023,6 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
9841
10023
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
9842
10024
|
*/
|
|
9843
10025
|
'updatedAt': string;
|
|
9844
|
-
/**
|
|
9845
|
-
*
|
|
9846
|
-
* @type {PageTypeEnum}
|
|
9847
|
-
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
9848
|
-
*/
|
|
9849
|
-
'type': PageTypeEnum;
|
|
9850
|
-
/**
|
|
9851
|
-
*
|
|
9852
|
-
* @type {IImage}
|
|
9853
|
-
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
9854
|
-
*/
|
|
9855
|
-
'thumbnail'?: IImage;
|
|
9856
10026
|
/**
|
|
9857
10027
|
* Construct a type with a set of properties K of type T
|
|
9858
10028
|
* @type {{ [key: string]: string; }}
|
|
@@ -9867,6 +10037,18 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
9867
10037
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
9868
10038
|
*/
|
|
9869
10039
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10040
|
+
/**
|
|
10041
|
+
*
|
|
10042
|
+
* @type {IImage}
|
|
10043
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10044
|
+
*/
|
|
10045
|
+
'thumbnail'?: IImage;
|
|
10046
|
+
/**
|
|
10047
|
+
*
|
|
10048
|
+
* @type {PageTypeEnum}
|
|
10049
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10050
|
+
*/
|
|
10051
|
+
'type': PageTypeEnum;
|
|
9870
10052
|
}
|
|
9871
10053
|
/**
|
|
9872
10054
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9882,10 +10064,10 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
9882
10064
|
'company': string;
|
|
9883
10065
|
/**
|
|
9884
10066
|
*
|
|
9885
|
-
* @type {
|
|
10067
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
9886
10068
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplates
|
|
9887
10069
|
*/
|
|
9888
|
-
'
|
|
10070
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9889
10071
|
/**
|
|
9890
10072
|
*
|
|
9891
10073
|
* @type {IImage}
|
|
@@ -9894,10 +10076,10 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
9894
10076
|
'thumbnail'?: IImage;
|
|
9895
10077
|
/**
|
|
9896
10078
|
*
|
|
9897
|
-
* @type {
|
|
10079
|
+
* @type {PageTypeEnum}
|
|
9898
10080
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplates
|
|
9899
10081
|
*/
|
|
9900
|
-
'
|
|
10082
|
+
'type': PageTypeEnum;
|
|
9901
10083
|
}
|
|
9902
10084
|
/**
|
|
9903
10085
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9935,6 +10117,12 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
9935
10117
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
9936
10118
|
*/
|
|
9937
10119
|
'updatedAt': string;
|
|
10120
|
+
/**
|
|
10121
|
+
*
|
|
10122
|
+
* @type {number}
|
|
10123
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10124
|
+
*/
|
|
10125
|
+
'rating': number;
|
|
9938
10126
|
/**
|
|
9939
10127
|
*
|
|
9940
10128
|
* @type {number}
|
|
@@ -10033,12 +10221,6 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
10033
10221
|
'attributes'?: {
|
|
10034
10222
|
[key: string]: string;
|
|
10035
10223
|
};
|
|
10036
|
-
/**
|
|
10037
|
-
*
|
|
10038
|
-
* @type {number}
|
|
10039
|
-
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10040
|
-
*/
|
|
10041
|
-
'rating': number;
|
|
10042
10224
|
/**
|
|
10043
10225
|
*
|
|
10044
10226
|
* @type {number}
|
|
@@ -10174,6 +10356,115 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
10174
10356
|
[key: string]: string;
|
|
10175
10357
|
};
|
|
10176
10358
|
}
|
|
10359
|
+
/**
|
|
10360
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10361
|
+
* @export
|
|
10362
|
+
* @interface PickIReviewExcludeKeyofIReviewProduct
|
|
10363
|
+
*/
|
|
10364
|
+
export interface PickIReviewExcludeKeyofIReviewProduct {
|
|
10365
|
+
/**
|
|
10366
|
+
*
|
|
10367
|
+
* @type {string}
|
|
10368
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10369
|
+
*/
|
|
10370
|
+
'name': string;
|
|
10371
|
+
/**
|
|
10372
|
+
*
|
|
10373
|
+
* @type {string}
|
|
10374
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10375
|
+
*/
|
|
10376
|
+
'company': string;
|
|
10377
|
+
/**
|
|
10378
|
+
*
|
|
10379
|
+
* @type {ReviewStatusEnum}
|
|
10380
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10381
|
+
*/
|
|
10382
|
+
'status': ReviewStatusEnum;
|
|
10383
|
+
/**
|
|
10384
|
+
*
|
|
10385
|
+
* @type {string}
|
|
10386
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10387
|
+
*/
|
|
10388
|
+
'_id': string;
|
|
10389
|
+
/**
|
|
10390
|
+
*
|
|
10391
|
+
* @type {number}
|
|
10392
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10393
|
+
*/
|
|
10394
|
+
'__v': number;
|
|
10395
|
+
/**
|
|
10396
|
+
*
|
|
10397
|
+
* @type {string}
|
|
10398
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10399
|
+
*/
|
|
10400
|
+
'createdAt': string;
|
|
10401
|
+
/**
|
|
10402
|
+
*
|
|
10403
|
+
* @type {string}
|
|
10404
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10405
|
+
*/
|
|
10406
|
+
'updatedAt': string;
|
|
10407
|
+
/**
|
|
10408
|
+
*
|
|
10409
|
+
* @type {string}
|
|
10410
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10411
|
+
*/
|
|
10412
|
+
'user': string;
|
|
10413
|
+
/**
|
|
10414
|
+
*
|
|
10415
|
+
* @type {string}
|
|
10416
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10417
|
+
*/
|
|
10418
|
+
'order': string;
|
|
10419
|
+
/**
|
|
10420
|
+
*
|
|
10421
|
+
* @type {string}
|
|
10422
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10423
|
+
*/
|
|
10424
|
+
'relId': string;
|
|
10425
|
+
/**
|
|
10426
|
+
*
|
|
10427
|
+
* @type {PartialRecordLanguageEnumString}
|
|
10428
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10429
|
+
*/
|
|
10430
|
+
'mainVariantTitle': PartialRecordLanguageEnumString;
|
|
10431
|
+
/**
|
|
10432
|
+
*
|
|
10433
|
+
* @type {PartialRecordLanguageEnumString}
|
|
10434
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10435
|
+
*/
|
|
10436
|
+
'subVariantTitle': PartialRecordLanguageEnumString;
|
|
10437
|
+
/**
|
|
10438
|
+
*
|
|
10439
|
+
* @type {string}
|
|
10440
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10441
|
+
*/
|
|
10442
|
+
'mainVariantId'?: string;
|
|
10443
|
+
/**
|
|
10444
|
+
*
|
|
10445
|
+
* @type {string}
|
|
10446
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10447
|
+
*/
|
|
10448
|
+
'subVariantId'?: string;
|
|
10449
|
+
/**
|
|
10450
|
+
*
|
|
10451
|
+
* @type {number}
|
|
10452
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10453
|
+
*/
|
|
10454
|
+
'rating': number;
|
|
10455
|
+
/**
|
|
10456
|
+
*
|
|
10457
|
+
* @type {string}
|
|
10458
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10459
|
+
*/
|
|
10460
|
+
'title': string;
|
|
10461
|
+
/**
|
|
10462
|
+
*
|
|
10463
|
+
* @type {string}
|
|
10464
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10465
|
+
*/
|
|
10466
|
+
'comment': string;
|
|
10467
|
+
}
|
|
10177
10468
|
/**
|
|
10178
10469
|
* From T, pick a set of properties whose keys are in the union K
|
|
10179
10470
|
* @export
|
|
@@ -10215,19 +10506,19 @@ export interface PickITemplateExcludeKeyofITemplateComponents {
|
|
|
10215
10506
|
* @type {string}
|
|
10216
10507
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
10217
10508
|
*/
|
|
10218
|
-
'
|
|
10509
|
+
'title': string;
|
|
10219
10510
|
/**
|
|
10220
10511
|
*
|
|
10221
|
-
* @type {
|
|
10512
|
+
* @type {string}
|
|
10222
10513
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
10223
10514
|
*/
|
|
10224
|
-
'
|
|
10515
|
+
'theme': string;
|
|
10225
10516
|
/**
|
|
10226
10517
|
*
|
|
10227
|
-
* @type {
|
|
10518
|
+
* @type {TemplateTypeEnum}
|
|
10228
10519
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
10229
10520
|
*/
|
|
10230
|
-
'
|
|
10521
|
+
'type': TemplateTypeEnum;
|
|
10231
10522
|
}
|
|
10232
10523
|
/**
|
|
10233
10524
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -10246,25 +10537,25 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
10246
10537
|
* @type {string}
|
|
10247
10538
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
10248
10539
|
*/
|
|
10249
|
-
'
|
|
10540
|
+
'title': string;
|
|
10250
10541
|
/**
|
|
10251
10542
|
*
|
|
10252
|
-
* @type {
|
|
10543
|
+
* @type {Array<ITemplateResponseComponentsInner>}
|
|
10253
10544
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
10254
10545
|
*/
|
|
10255
|
-
'
|
|
10546
|
+
'components': Array<ITemplateResponseComponentsInner>;
|
|
10256
10547
|
/**
|
|
10257
10548
|
*
|
|
10258
|
-
* @type {
|
|
10549
|
+
* @type {string}
|
|
10259
10550
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
10260
10551
|
*/
|
|
10261
|
-
'
|
|
10552
|
+
'theme': string;
|
|
10262
10553
|
/**
|
|
10263
10554
|
*
|
|
10264
|
-
* @type {
|
|
10555
|
+
* @type {TemplateTypeEnum}
|
|
10265
10556
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
10266
10557
|
*/
|
|
10267
|
-
'
|
|
10558
|
+
'type': TemplateTypeEnum;
|
|
10268
10559
|
}
|
|
10269
10560
|
/**
|
|
10270
10561
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -10310,16 +10601,16 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
|
|
|
10310
10601
|
'updatedAt': string;
|
|
10311
10602
|
/**
|
|
10312
10603
|
*
|
|
10313
|
-
* @type {
|
|
10604
|
+
* @type {IImage}
|
|
10314
10605
|
* @memberof PickIThemeExcludeKeyofIThemeTemplate
|
|
10315
10606
|
*/
|
|
10316
|
-
'
|
|
10607
|
+
'thumbnail'?: IImage;
|
|
10317
10608
|
/**
|
|
10318
10609
|
*
|
|
10319
|
-
* @type {
|
|
10610
|
+
* @type {string}
|
|
10320
10611
|
* @memberof PickIThemeExcludeKeyofIThemeTemplate
|
|
10321
10612
|
*/
|
|
10322
|
-
'
|
|
10613
|
+
'main'?: string;
|
|
10323
10614
|
/**
|
|
10324
10615
|
*
|
|
10325
10616
|
* @type {string}
|
|
@@ -13091,13 +13382,13 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
13091
13382
|
getProductReviews: (id: string, rating?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13092
13383
|
/**
|
|
13093
13384
|
*
|
|
13385
|
+
* @param {OrderEnum} [order]
|
|
13094
13386
|
* @param {number} [page]
|
|
13095
13387
|
* @param {number} [itemsPerPage]
|
|
13096
13388
|
* @param {string} [search]
|
|
13097
13389
|
* @param {string} [startDate]
|
|
13098
13390
|
* @param {string} [endDate]
|
|
13099
13391
|
* @param {GetProductsDateFieldEnum} [dateField]
|
|
13100
|
-
* @param {OrderEnum} [order]
|
|
13101
13392
|
* @param {string} [companyId]
|
|
13102
13393
|
* @param {string} [domain]
|
|
13103
13394
|
* @param {Array<string>} [collections]
|
|
@@ -13112,7 +13403,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
13112
13403
|
* @param {*} [options] Override http request option.
|
|
13113
13404
|
* @throws {RequiredError}
|
|
13114
13405
|
*/
|
|
13115
|
-
getProducts: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum,
|
|
13406
|
+
getProducts: (order?: OrderEnum, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum, companyId?: string, domain?: string, collections?: Array<string>, category?: string, brand?: Array<string>, inStock?: boolean, priceGte?: number, priceLte?: number, autoComplete?: boolean, sort?: GetProductsSortEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13116
13407
|
};
|
|
13117
13408
|
/**
|
|
13118
13409
|
* ProductApi - functional programming interface
|
|
@@ -13138,13 +13429,13 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
13138
13429
|
getProductReviews(id: string, rating?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductReviewsResponse>>;
|
|
13139
13430
|
/**
|
|
13140
13431
|
*
|
|
13432
|
+
* @param {OrderEnum} [order]
|
|
13141
13433
|
* @param {number} [page]
|
|
13142
13434
|
* @param {number} [itemsPerPage]
|
|
13143
13435
|
* @param {string} [search]
|
|
13144
13436
|
* @param {string} [startDate]
|
|
13145
13437
|
* @param {string} [endDate]
|
|
13146
13438
|
* @param {GetProductsDateFieldEnum} [dateField]
|
|
13147
|
-
* @param {OrderEnum} [order]
|
|
13148
13439
|
* @param {string} [companyId]
|
|
13149
13440
|
* @param {string} [domain]
|
|
13150
13441
|
* @param {Array<string>} [collections]
|
|
@@ -13159,7 +13450,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
13159
13450
|
* @param {*} [options] Override http request option.
|
|
13160
13451
|
* @throws {RequiredError}
|
|
13161
13452
|
*/
|
|
13162
|
-
getProducts(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum,
|
|
13453
|
+
getProducts(order?: OrderEnum, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum, companyId?: string, domain?: string, collections?: Array<string>, category?: string, brand?: Array<string>, inStock?: boolean, priceGte?: number, priceLte?: number, autoComplete?: boolean, sort?: GetProductsSortEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductsResponse>>;
|
|
13163
13454
|
};
|
|
13164
13455
|
/**
|
|
13165
13456
|
* ProductApi - factory interface
|
|
@@ -13238,6 +13529,12 @@ export interface ProductApiGetProductReviewsRequest {
|
|
|
13238
13529
|
* @interface ProductApiGetProductsRequest
|
|
13239
13530
|
*/
|
|
13240
13531
|
export interface ProductApiGetProductsRequest {
|
|
13532
|
+
/**
|
|
13533
|
+
*
|
|
13534
|
+
* @type {OrderEnum}
|
|
13535
|
+
* @memberof ProductApiGetProducts
|
|
13536
|
+
*/
|
|
13537
|
+
readonly order?: OrderEnum;
|
|
13241
13538
|
/**
|
|
13242
13539
|
*
|
|
13243
13540
|
* @type {number}
|
|
@@ -13274,12 +13571,6 @@ export interface ProductApiGetProductsRequest {
|
|
|
13274
13571
|
* @memberof ProductApiGetProducts
|
|
13275
13572
|
*/
|
|
13276
13573
|
readonly dateField?: GetProductsDateFieldEnum;
|
|
13277
|
-
/**
|
|
13278
|
-
*
|
|
13279
|
-
* @type {OrderEnum}
|
|
13280
|
-
* @memberof ProductApiGetProducts
|
|
13281
|
-
*/
|
|
13282
|
-
readonly order?: OrderEnum;
|
|
13283
13574
|
/**
|
|
13284
13575
|
*
|
|
13285
13576
|
* @type {string}
|