@infisale-client/api-client 1.2.76 → 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 +491 -224
- 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}
|
|
@@ -7173,57 +7216,172 @@ export interface IReviewPatchRequest {
|
|
|
7173
7216
|
/**
|
|
7174
7217
|
*
|
|
7175
7218
|
* @export
|
|
7176
|
-
* @interface
|
|
7219
|
+
* @interface IReviewResponse
|
|
7177
7220
|
*/
|
|
7178
|
-
export interface
|
|
7221
|
+
export interface IReviewResponse {
|
|
7179
7222
|
/**
|
|
7180
7223
|
*
|
|
7181
|
-
* @type {
|
|
7182
|
-
* @memberof
|
|
7224
|
+
* @type {string}
|
|
7225
|
+
* @memberof IReviewResponse
|
|
7183
7226
|
*/
|
|
7184
|
-
'
|
|
7227
|
+
'name': string;
|
|
7185
7228
|
/**
|
|
7186
7229
|
*
|
|
7187
|
-
* @type {
|
|
7188
|
-
* @memberof
|
|
7230
|
+
* @type {string}
|
|
7231
|
+
* @memberof IReviewResponse
|
|
7189
7232
|
*/
|
|
7190
|
-
'
|
|
7191
|
-
}
|
|
7192
|
-
/**
|
|
7193
|
-
*
|
|
7194
|
-
* @export
|
|
7195
|
-
* @interface ISitemapResponseSlugsInner
|
|
7196
|
-
*/
|
|
7197
|
-
export interface ISitemapResponseSlugsInner {
|
|
7233
|
+
'company': string;
|
|
7198
7234
|
/**
|
|
7199
7235
|
*
|
|
7200
|
-
* @type {
|
|
7201
|
-
* @memberof
|
|
7236
|
+
* @type {ReviewStatusEnum}
|
|
7237
|
+
* @memberof IReviewResponse
|
|
7202
7238
|
*/
|
|
7203
|
-
'
|
|
7239
|
+
'status': ReviewStatusEnum;
|
|
7204
7240
|
/**
|
|
7205
7241
|
*
|
|
7206
7242
|
* @type {string}
|
|
7207
|
-
* @memberof
|
|
7243
|
+
* @memberof IReviewResponse
|
|
7208
7244
|
*/
|
|
7209
|
-
'
|
|
7245
|
+
'_id': string;
|
|
7210
7246
|
/**
|
|
7211
7247
|
*
|
|
7212
|
-
* @type {
|
|
7213
|
-
* @memberof
|
|
7248
|
+
* @type {number}
|
|
7249
|
+
* @memberof IReviewResponse
|
|
7214
7250
|
*/
|
|
7215
|
-
'
|
|
7216
|
-
}
|
|
7217
|
-
/**
|
|
7218
|
-
*
|
|
7219
|
-
* @export
|
|
7220
|
-
* @interface ISitemapsResponse
|
|
7221
|
-
*/
|
|
7222
|
-
export interface ISitemapsResponse {
|
|
7251
|
+
'__v': number;
|
|
7223
7252
|
/**
|
|
7224
7253
|
*
|
|
7225
|
-
* @type {
|
|
7226
|
-
* @memberof
|
|
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 {
|
|
7356
|
+
/**
|
|
7357
|
+
*
|
|
7358
|
+
* @type {string}
|
|
7359
|
+
* @memberof ISitemapResponseSlugsInner
|
|
7360
|
+
*/
|
|
7361
|
+
'updatedAt': string;
|
|
7362
|
+
/**
|
|
7363
|
+
*
|
|
7364
|
+
* @type {string}
|
|
7365
|
+
* @memberof ISitemapResponseSlugsInner
|
|
7366
|
+
*/
|
|
7367
|
+
'slug': string;
|
|
7368
|
+
/**
|
|
7369
|
+
*
|
|
7370
|
+
* @type {LanguageEnum}
|
|
7371
|
+
* @memberof ISitemapResponseSlugsInner
|
|
7372
|
+
*/
|
|
7373
|
+
'lang': LanguageEnum;
|
|
7374
|
+
}
|
|
7375
|
+
/**
|
|
7376
|
+
*
|
|
7377
|
+
* @export
|
|
7378
|
+
* @interface ISitemapsResponse
|
|
7379
|
+
*/
|
|
7380
|
+
export interface ISitemapsResponse {
|
|
7381
|
+
/**
|
|
7382
|
+
*
|
|
7383
|
+
* @type {Array<ISitemapsResponseDataInner>}
|
|
7384
|
+
* @memberof ISitemapsResponse
|
|
7227
7385
|
*/
|
|
7228
7386
|
'data': Array<ISitemapsResponseDataInner>;
|
|
7229
7387
|
}
|
|
@@ -7292,10 +7450,10 @@ export interface IState {
|
|
|
7292
7450
|
export interface ITemplatePatchRequest {
|
|
7293
7451
|
/**
|
|
7294
7452
|
*
|
|
7295
|
-
* @type {
|
|
7453
|
+
* @type {string}
|
|
7296
7454
|
* @memberof ITemplatePatchRequest
|
|
7297
7455
|
*/
|
|
7298
|
-
'
|
|
7456
|
+
'title'?: string;
|
|
7299
7457
|
/**
|
|
7300
7458
|
*
|
|
7301
7459
|
* @type {Array<ITemplateResponseComponentsInner>}
|
|
@@ -7304,10 +7462,10 @@ export interface ITemplatePatchRequest {
|
|
|
7304
7462
|
'components'?: Array<ITemplateResponseComponentsInner>;
|
|
7305
7463
|
/**
|
|
7306
7464
|
*
|
|
7307
|
-
* @type {
|
|
7465
|
+
* @type {TemplateTypeEnum}
|
|
7308
7466
|
* @memberof ITemplatePatchRequest
|
|
7309
7467
|
*/
|
|
7310
|
-
'
|
|
7468
|
+
'type'?: TemplateTypeEnum;
|
|
7311
7469
|
}
|
|
7312
7470
|
/**
|
|
7313
7471
|
*
|
|
@@ -7326,25 +7484,25 @@ export interface ITemplatePostRequest {
|
|
|
7326
7484
|
* @type {string}
|
|
7327
7485
|
* @memberof ITemplatePostRequest
|
|
7328
7486
|
*/
|
|
7329
|
-
'
|
|
7487
|
+
'title': string;
|
|
7330
7488
|
/**
|
|
7331
7489
|
*
|
|
7332
|
-
* @type {
|
|
7490
|
+
* @type {Array<ITemplateResponseComponentsInner>}
|
|
7333
7491
|
* @memberof ITemplatePostRequest
|
|
7334
7492
|
*/
|
|
7335
|
-
'
|
|
7493
|
+
'components': Array<ITemplateResponseComponentsInner>;
|
|
7336
7494
|
/**
|
|
7337
7495
|
*
|
|
7338
|
-
* @type {
|
|
7496
|
+
* @type {string}
|
|
7339
7497
|
* @memberof ITemplatePostRequest
|
|
7340
7498
|
*/
|
|
7341
|
-
'
|
|
7499
|
+
'theme': string;
|
|
7342
7500
|
/**
|
|
7343
7501
|
*
|
|
7344
|
-
* @type {
|
|
7502
|
+
* @type {TemplateTypeEnum}
|
|
7345
7503
|
* @memberof ITemplatePostRequest
|
|
7346
7504
|
*/
|
|
7347
|
-
'
|
|
7505
|
+
'type': TemplateTypeEnum;
|
|
7348
7506
|
}
|
|
7349
7507
|
/**
|
|
7350
7508
|
*
|
|
@@ -7387,19 +7545,19 @@ export interface ITemplateResponse {
|
|
|
7387
7545
|
* @type {string}
|
|
7388
7546
|
* @memberof ITemplateResponse
|
|
7389
7547
|
*/
|
|
7390
|
-
'
|
|
7548
|
+
'title': string;
|
|
7391
7549
|
/**
|
|
7392
7550
|
*
|
|
7393
|
-
* @type {
|
|
7551
|
+
* @type {string}
|
|
7394
7552
|
* @memberof ITemplateResponse
|
|
7395
7553
|
*/
|
|
7396
|
-
'
|
|
7554
|
+
'theme': string;
|
|
7397
7555
|
/**
|
|
7398
7556
|
*
|
|
7399
|
-
* @type {
|
|
7557
|
+
* @type {TemplateTypeEnum}
|
|
7400
7558
|
* @memberof ITemplateResponse
|
|
7401
7559
|
*/
|
|
7402
|
-
'
|
|
7560
|
+
'type': TemplateTypeEnum;
|
|
7403
7561
|
/**
|
|
7404
7562
|
*
|
|
7405
7563
|
* @type {Array<ITemplateResponseComponentsInner>}
|
|
@@ -8069,16 +8227,16 @@ export interface IThemeResponse {
|
|
|
8069
8227
|
'updatedAt': string;
|
|
8070
8228
|
/**
|
|
8071
8229
|
*
|
|
8072
|
-
* @type {
|
|
8230
|
+
* @type {IImage}
|
|
8073
8231
|
* @memberof IThemeResponse
|
|
8074
8232
|
*/
|
|
8075
|
-
'
|
|
8233
|
+
'thumbnail'?: IImage;
|
|
8076
8234
|
/**
|
|
8077
8235
|
*
|
|
8078
|
-
* @type {
|
|
8236
|
+
* @type {string}
|
|
8079
8237
|
* @memberof IThemeResponse
|
|
8080
8238
|
*/
|
|
8081
|
-
'
|
|
8239
|
+
'main'?: string;
|
|
8082
8240
|
/**
|
|
8083
8241
|
*
|
|
8084
8242
|
* @type {string}
|
|
@@ -8793,16 +8951,16 @@ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponse
|
|
|
8793
8951
|
'company': string;
|
|
8794
8952
|
/**
|
|
8795
8953
|
*
|
|
8796
|
-
* @type {
|
|
8954
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
8797
8955
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponse
|
|
8798
8956
|
*/
|
|
8799
|
-
'
|
|
8957
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
8800
8958
|
/**
|
|
8801
8959
|
*
|
|
8802
|
-
* @type {
|
|
8960
|
+
* @type {IImage}
|
|
8803
8961
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponse
|
|
8804
8962
|
*/
|
|
8805
|
-
'
|
|
8963
|
+
'thumbnail'?: IImage;
|
|
8806
8964
|
}
|
|
8807
8965
|
/**
|
|
8808
8966
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -8842,10 +9000,10 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
8842
9000
|
'updatedAt': string;
|
|
8843
9001
|
/**
|
|
8844
9002
|
*
|
|
8845
|
-
* @type {
|
|
9003
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
8846
9004
|
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
8847
9005
|
*/
|
|
8848
|
-
'
|
|
9006
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
8849
9007
|
/**
|
|
8850
9008
|
*
|
|
8851
9009
|
* @type {IImage}
|
|
@@ -8854,10 +9012,10 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
8854
9012
|
'thumbnail'?: IImage;
|
|
8855
9013
|
/**
|
|
8856
9014
|
*
|
|
8857
|
-
* @type {
|
|
9015
|
+
* @type {string}
|
|
8858
9016
|
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
8859
9017
|
*/
|
|
8860
|
-
'
|
|
9018
|
+
'main'?: string;
|
|
8861
9019
|
}
|
|
8862
9020
|
/**
|
|
8863
9021
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -8873,10 +9031,10 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
8873
9031
|
'company': string;
|
|
8874
9032
|
/**
|
|
8875
9033
|
*
|
|
8876
|
-
* @type {
|
|
9034
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
8877
9035
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributes
|
|
8878
9036
|
*/
|
|
8879
|
-
'
|
|
9037
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
8880
9038
|
/**
|
|
8881
9039
|
*
|
|
8882
9040
|
* @type {IImage}
|
|
@@ -8885,10 +9043,10 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
8885
9043
|
'thumbnail'?: IImage;
|
|
8886
9044
|
/**
|
|
8887
9045
|
*
|
|
8888
|
-
* @type {
|
|
9046
|
+
* @type {string}
|
|
8889
9047
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributes
|
|
8890
9048
|
*/
|
|
8891
|
-
'
|
|
9049
|
+
'main'?: string;
|
|
8892
9050
|
}
|
|
8893
9051
|
/**
|
|
8894
9052
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -8904,16 +9062,16 @@ export interface PickICategoryResponseIdOrAttributesOrMain {
|
|
|
8904
9062
|
'_id': string;
|
|
8905
9063
|
/**
|
|
8906
9064
|
*
|
|
8907
|
-
* @type {
|
|
9065
|
+
* @type {Array<ICategoryResponseAttributesInner>}
|
|
8908
9066
|
* @memberof PickICategoryResponseIdOrAttributesOrMain
|
|
8909
9067
|
*/
|
|
8910
|
-
'
|
|
9068
|
+
'attributes': Array<ICategoryResponseAttributesInner>;
|
|
8911
9069
|
/**
|
|
8912
9070
|
*
|
|
8913
|
-
* @type {
|
|
9071
|
+
* @type {string}
|
|
8914
9072
|
* @memberof PickICategoryResponseIdOrAttributesOrMain
|
|
8915
9073
|
*/
|
|
8916
|
-
'
|
|
9074
|
+
'main'?: string;
|
|
8917
9075
|
}
|
|
8918
9076
|
/**
|
|
8919
9077
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -8946,6 +9104,12 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
|
8946
9104
|
* @interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8947
9105
|
*/
|
|
8948
9106
|
export interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort {
|
|
9107
|
+
/**
|
|
9108
|
+
*
|
|
9109
|
+
* @type {OrderEnum}
|
|
9110
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9111
|
+
*/
|
|
9112
|
+
'order'?: OrderEnum;
|
|
8949
9113
|
/**
|
|
8950
9114
|
*
|
|
8951
9115
|
* @type {number}
|
|
@@ -8982,12 +9146,6 @@ export interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSor
|
|
|
8982
9146
|
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8983
9147
|
*/
|
|
8984
9148
|
'dateField'?: PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum;
|
|
8985
|
-
/**
|
|
8986
|
-
*
|
|
8987
|
-
* @type {OrderEnum}
|
|
8988
|
-
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
8989
|
-
*/
|
|
8990
|
-
'order'?: OrderEnum;
|
|
8991
9149
|
}
|
|
8992
9150
|
export declare const PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum: {
|
|
8993
9151
|
readonly CREATED_AT: "createdAt";
|
|
@@ -9008,16 +9166,16 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
|
|
|
9008
9166
|
'company': string;
|
|
9009
9167
|
/**
|
|
9010
9168
|
*
|
|
9011
|
-
* @type {
|
|
9169
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
9012
9170
|
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplates
|
|
9013
9171
|
*/
|
|
9014
|
-
'
|
|
9172
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9015
9173
|
/**
|
|
9016
9174
|
*
|
|
9017
|
-
* @type {
|
|
9175
|
+
* @type {IImage}
|
|
9018
9176
|
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplates
|
|
9019
9177
|
*/
|
|
9020
|
-
'
|
|
9178
|
+
'thumbnail'?: IImage;
|
|
9021
9179
|
}
|
|
9022
9180
|
/**
|
|
9023
9181
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9081,16 +9239,16 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
9081
9239
|
'updatedAt': string;
|
|
9082
9240
|
/**
|
|
9083
9241
|
*
|
|
9084
|
-
* @type {
|
|
9242
|
+
* @type {CompanyTypeEnum}
|
|
9085
9243
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9086
9244
|
*/
|
|
9087
|
-
'
|
|
9245
|
+
'type': CompanyTypeEnum;
|
|
9088
9246
|
/**
|
|
9089
9247
|
*
|
|
9090
|
-
* @type {
|
|
9248
|
+
* @type {PlanTypeEnum}
|
|
9091
9249
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9092
9250
|
*/
|
|
9093
|
-
'
|
|
9251
|
+
'plan': PlanTypeEnum;
|
|
9094
9252
|
/**
|
|
9095
9253
|
*
|
|
9096
9254
|
* @type {string}
|
|
@@ -9508,16 +9666,16 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
|
9508
9666
|
'updatedAt': string;
|
|
9509
9667
|
/**
|
|
9510
9668
|
*
|
|
9511
|
-
* @type {
|
|
9669
|
+
* @type {string}
|
|
9512
9670
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
9513
9671
|
*/
|
|
9514
|
-
'
|
|
9672
|
+
'user'?: string;
|
|
9515
9673
|
/**
|
|
9516
9674
|
*
|
|
9517
|
-
* @type {
|
|
9675
|
+
* @type {CurrencyEnum}
|
|
9518
9676
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
9519
9677
|
*/
|
|
9520
|
-
'
|
|
9678
|
+
'currency': CurrencyEnum;
|
|
9521
9679
|
/**
|
|
9522
9680
|
*
|
|
9523
9681
|
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>}
|
|
@@ -9865,18 +10023,6 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
9865
10023
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
9866
10024
|
*/
|
|
9867
10025
|
'updatedAt': string;
|
|
9868
|
-
/**
|
|
9869
|
-
*
|
|
9870
|
-
* @type {PageTypeEnum}
|
|
9871
|
-
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
9872
|
-
*/
|
|
9873
|
-
'type': PageTypeEnum;
|
|
9874
|
-
/**
|
|
9875
|
-
*
|
|
9876
|
-
* @type {IImage}
|
|
9877
|
-
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
9878
|
-
*/
|
|
9879
|
-
'thumbnail'?: IImage;
|
|
9880
10026
|
/**
|
|
9881
10027
|
* Construct a type with a set of properties K of type T
|
|
9882
10028
|
* @type {{ [key: string]: string; }}
|
|
@@ -9891,6 +10037,18 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
9891
10037
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
9892
10038
|
*/
|
|
9893
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;
|
|
9894
10052
|
}
|
|
9895
10053
|
/**
|
|
9896
10054
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9906,10 +10064,10 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
9906
10064
|
'company': string;
|
|
9907
10065
|
/**
|
|
9908
10066
|
*
|
|
9909
|
-
* @type {
|
|
10067
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
9910
10068
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplates
|
|
9911
10069
|
*/
|
|
9912
|
-
'
|
|
10070
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9913
10071
|
/**
|
|
9914
10072
|
*
|
|
9915
10073
|
* @type {IImage}
|
|
@@ -9918,10 +10076,10 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
9918
10076
|
'thumbnail'?: IImage;
|
|
9919
10077
|
/**
|
|
9920
10078
|
*
|
|
9921
|
-
* @type {
|
|
10079
|
+
* @type {PageTypeEnum}
|
|
9922
10080
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplates
|
|
9923
10081
|
*/
|
|
9924
|
-
'
|
|
10082
|
+
'type': PageTypeEnum;
|
|
9925
10083
|
}
|
|
9926
10084
|
/**
|
|
9927
10085
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9959,6 +10117,12 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
9959
10117
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
9960
10118
|
*/
|
|
9961
10119
|
'updatedAt': string;
|
|
10120
|
+
/**
|
|
10121
|
+
*
|
|
10122
|
+
* @type {number}
|
|
10123
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10124
|
+
*/
|
|
10125
|
+
'rating': number;
|
|
9962
10126
|
/**
|
|
9963
10127
|
*
|
|
9964
10128
|
* @type {number}
|
|
@@ -10057,12 +10221,6 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
10057
10221
|
'attributes'?: {
|
|
10058
10222
|
[key: string]: string;
|
|
10059
10223
|
};
|
|
10060
|
-
/**
|
|
10061
|
-
*
|
|
10062
|
-
* @type {number}
|
|
10063
|
-
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10064
|
-
*/
|
|
10065
|
-
'rating': number;
|
|
10066
10224
|
/**
|
|
10067
10225
|
*
|
|
10068
10226
|
* @type {number}
|
|
@@ -10198,6 +10356,115 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
10198
10356
|
[key: string]: string;
|
|
10199
10357
|
};
|
|
10200
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
|
+
}
|
|
10201
10468
|
/**
|
|
10202
10469
|
* From T, pick a set of properties whose keys are in the union K
|
|
10203
10470
|
* @export
|
|
@@ -10239,19 +10506,19 @@ export interface PickITemplateExcludeKeyofITemplateComponents {
|
|
|
10239
10506
|
* @type {string}
|
|
10240
10507
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
10241
10508
|
*/
|
|
10242
|
-
'
|
|
10509
|
+
'title': string;
|
|
10243
10510
|
/**
|
|
10244
10511
|
*
|
|
10245
|
-
* @type {
|
|
10512
|
+
* @type {string}
|
|
10246
10513
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
10247
10514
|
*/
|
|
10248
|
-
'
|
|
10515
|
+
'theme': string;
|
|
10249
10516
|
/**
|
|
10250
10517
|
*
|
|
10251
|
-
* @type {
|
|
10518
|
+
* @type {TemplateTypeEnum}
|
|
10252
10519
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
10253
10520
|
*/
|
|
10254
|
-
'
|
|
10521
|
+
'type': TemplateTypeEnum;
|
|
10255
10522
|
}
|
|
10256
10523
|
/**
|
|
10257
10524
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -10270,25 +10537,25 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
10270
10537
|
* @type {string}
|
|
10271
10538
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
10272
10539
|
*/
|
|
10273
|
-
'
|
|
10540
|
+
'title': string;
|
|
10274
10541
|
/**
|
|
10275
10542
|
*
|
|
10276
|
-
* @type {
|
|
10543
|
+
* @type {Array<ITemplateResponseComponentsInner>}
|
|
10277
10544
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
10278
10545
|
*/
|
|
10279
|
-
'
|
|
10546
|
+
'components': Array<ITemplateResponseComponentsInner>;
|
|
10280
10547
|
/**
|
|
10281
10548
|
*
|
|
10282
|
-
* @type {
|
|
10549
|
+
* @type {string}
|
|
10283
10550
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
10284
10551
|
*/
|
|
10285
|
-
'
|
|
10552
|
+
'theme': string;
|
|
10286
10553
|
/**
|
|
10287
10554
|
*
|
|
10288
|
-
* @type {
|
|
10555
|
+
* @type {TemplateTypeEnum}
|
|
10289
10556
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
10290
10557
|
*/
|
|
10291
|
-
'
|
|
10558
|
+
'type': TemplateTypeEnum;
|
|
10292
10559
|
}
|
|
10293
10560
|
/**
|
|
10294
10561
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -10334,16 +10601,16 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
|
|
|
10334
10601
|
'updatedAt': string;
|
|
10335
10602
|
/**
|
|
10336
10603
|
*
|
|
10337
|
-
* @type {
|
|
10604
|
+
* @type {IImage}
|
|
10338
10605
|
* @memberof PickIThemeExcludeKeyofIThemeTemplate
|
|
10339
10606
|
*/
|
|
10340
|
-
'
|
|
10607
|
+
'thumbnail'?: IImage;
|
|
10341
10608
|
/**
|
|
10342
10609
|
*
|
|
10343
|
-
* @type {
|
|
10610
|
+
* @type {string}
|
|
10344
10611
|
* @memberof PickIThemeExcludeKeyofIThemeTemplate
|
|
10345
10612
|
*/
|
|
10346
|
-
'
|
|
10613
|
+
'main'?: string;
|
|
10347
10614
|
/**
|
|
10348
10615
|
*
|
|
10349
10616
|
* @type {string}
|
|
@@ -13115,13 +13382,13 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
13115
13382
|
getProductReviews: (id: string, rating?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13116
13383
|
/**
|
|
13117
13384
|
*
|
|
13385
|
+
* @param {OrderEnum} [order]
|
|
13118
13386
|
* @param {number} [page]
|
|
13119
13387
|
* @param {number} [itemsPerPage]
|
|
13120
13388
|
* @param {string} [search]
|
|
13121
13389
|
* @param {string} [startDate]
|
|
13122
13390
|
* @param {string} [endDate]
|
|
13123
13391
|
* @param {GetProductsDateFieldEnum} [dateField]
|
|
13124
|
-
* @param {OrderEnum} [order]
|
|
13125
13392
|
* @param {string} [companyId]
|
|
13126
13393
|
* @param {string} [domain]
|
|
13127
13394
|
* @param {Array<string>} [collections]
|
|
@@ -13136,7 +13403,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
13136
13403
|
* @param {*} [options] Override http request option.
|
|
13137
13404
|
* @throws {RequiredError}
|
|
13138
13405
|
*/
|
|
13139
|
-
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>;
|
|
13140
13407
|
};
|
|
13141
13408
|
/**
|
|
13142
13409
|
* ProductApi - functional programming interface
|
|
@@ -13162,13 +13429,13 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
13162
13429
|
getProductReviews(id: string, rating?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductReviewsResponse>>;
|
|
13163
13430
|
/**
|
|
13164
13431
|
*
|
|
13432
|
+
* @param {OrderEnum} [order]
|
|
13165
13433
|
* @param {number} [page]
|
|
13166
13434
|
* @param {number} [itemsPerPage]
|
|
13167
13435
|
* @param {string} [search]
|
|
13168
13436
|
* @param {string} [startDate]
|
|
13169
13437
|
* @param {string} [endDate]
|
|
13170
13438
|
* @param {GetProductsDateFieldEnum} [dateField]
|
|
13171
|
-
* @param {OrderEnum} [order]
|
|
13172
13439
|
* @param {string} [companyId]
|
|
13173
13440
|
* @param {string} [domain]
|
|
13174
13441
|
* @param {Array<string>} [collections]
|
|
@@ -13183,7 +13450,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
13183
13450
|
* @param {*} [options] Override http request option.
|
|
13184
13451
|
* @throws {RequiredError}
|
|
13185
13452
|
*/
|
|
13186
|
-
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>>;
|
|
13187
13454
|
};
|
|
13188
13455
|
/**
|
|
13189
13456
|
* ProductApi - factory interface
|
|
@@ -13262,6 +13529,12 @@ export interface ProductApiGetProductReviewsRequest {
|
|
|
13262
13529
|
* @interface ProductApiGetProductsRequest
|
|
13263
13530
|
*/
|
|
13264
13531
|
export interface ProductApiGetProductsRequest {
|
|
13532
|
+
/**
|
|
13533
|
+
*
|
|
13534
|
+
* @type {OrderEnum}
|
|
13535
|
+
* @memberof ProductApiGetProducts
|
|
13536
|
+
*/
|
|
13537
|
+
readonly order?: OrderEnum;
|
|
13265
13538
|
/**
|
|
13266
13539
|
*
|
|
13267
13540
|
* @type {number}
|
|
@@ -13298,12 +13571,6 @@ export interface ProductApiGetProductsRequest {
|
|
|
13298
13571
|
* @memberof ProductApiGetProducts
|
|
13299
13572
|
*/
|
|
13300
13573
|
readonly dateField?: GetProductsDateFieldEnum;
|
|
13301
|
-
/**
|
|
13302
|
-
*
|
|
13303
|
-
* @type {OrderEnum}
|
|
13304
|
-
* @memberof ProductApiGetProducts
|
|
13305
|
-
*/
|
|
13306
|
-
readonly order?: OrderEnum;
|
|
13307
13574
|
/**
|
|
13308
13575
|
*
|
|
13309
13576
|
* @type {string}
|