@infisale-client/api-client 1.2.22 → 1.2.24
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 +778 -240
- package/dist/api/api.js +164 -15
- package/dist/api/api.mjs +161 -13
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -919,7 +919,7 @@ export interface IBrandCollectionQueryParams {
|
|
|
919
919
|
* @type {string}
|
|
920
920
|
* @memberof IBrandCollectionQueryParams
|
|
921
921
|
*/
|
|
922
|
-
'dateField'?:
|
|
922
|
+
'dateField'?: IBrandCollectionQueryParamsDateFieldEnum;
|
|
923
923
|
/**
|
|
924
924
|
*
|
|
925
925
|
* @type {OrderEnum}
|
|
@@ -951,6 +951,11 @@ export interface IBrandCollectionQueryParams {
|
|
|
951
951
|
*/
|
|
952
952
|
'status'?: ContentStatusEnum;
|
|
953
953
|
}
|
|
954
|
+
export declare const IBrandCollectionQueryParamsDateFieldEnum: {
|
|
955
|
+
readonly CREATED_AT: "createdAt";
|
|
956
|
+
readonly UPDATED_AT: "updatedAt";
|
|
957
|
+
};
|
|
958
|
+
export type IBrandCollectionQueryParamsDateFieldEnum = typeof IBrandCollectionQueryParamsDateFieldEnum[keyof typeof IBrandCollectionQueryParamsDateFieldEnum];
|
|
954
959
|
/**
|
|
955
960
|
*
|
|
956
961
|
* @export
|
|
@@ -1211,7 +1216,7 @@ export interface ICategoryCollectionQueryParams {
|
|
|
1211
1216
|
* @type {string}
|
|
1212
1217
|
* @memberof ICategoryCollectionQueryParams
|
|
1213
1218
|
*/
|
|
1214
|
-
'dateField'?:
|
|
1219
|
+
'dateField'?: ICategoryCollectionQueryParamsDateFieldEnum;
|
|
1215
1220
|
/**
|
|
1216
1221
|
*
|
|
1217
1222
|
* @type {OrderEnum}
|
|
@@ -1243,6 +1248,11 @@ export interface ICategoryCollectionQueryParams {
|
|
|
1243
1248
|
*/
|
|
1244
1249
|
'status'?: ContentStatusEnum;
|
|
1245
1250
|
}
|
|
1251
|
+
export declare const ICategoryCollectionQueryParamsDateFieldEnum: {
|
|
1252
|
+
readonly CREATED_AT: "createdAt";
|
|
1253
|
+
readonly UPDATED_AT: "updatedAt";
|
|
1254
|
+
};
|
|
1255
|
+
export type ICategoryCollectionQueryParamsDateFieldEnum = typeof ICategoryCollectionQueryParamsDateFieldEnum[keyof typeof ICategoryCollectionQueryParamsDateFieldEnum];
|
|
1246
1256
|
/**
|
|
1247
1257
|
*
|
|
1248
1258
|
* @export
|
|
@@ -1578,7 +1588,7 @@ export interface ICollectionCollectionsQueryParams {
|
|
|
1578
1588
|
* @type {string}
|
|
1579
1589
|
* @memberof ICollectionCollectionsQueryParams
|
|
1580
1590
|
*/
|
|
1581
|
-
'dateField'?:
|
|
1591
|
+
'dateField'?: ICollectionCollectionsQueryParamsDateFieldEnum;
|
|
1582
1592
|
/**
|
|
1583
1593
|
*
|
|
1584
1594
|
* @type {OrderEnum}
|
|
@@ -1604,6 +1614,11 @@ export interface ICollectionCollectionsQueryParams {
|
|
|
1604
1614
|
*/
|
|
1605
1615
|
'status'?: ContentStatusEnum;
|
|
1606
1616
|
}
|
|
1617
|
+
export declare const ICollectionCollectionsQueryParamsDateFieldEnum: {
|
|
1618
|
+
readonly CREATED_AT: "createdAt";
|
|
1619
|
+
readonly UPDATED_AT: "updatedAt";
|
|
1620
|
+
};
|
|
1621
|
+
export type ICollectionCollectionsQueryParamsDateFieldEnum = typeof ICollectionCollectionsQueryParamsDateFieldEnum[keyof typeof ICollectionCollectionsQueryParamsDateFieldEnum];
|
|
1607
1622
|
/**
|
|
1608
1623
|
*
|
|
1609
1624
|
* @export
|
|
@@ -1887,11 +1902,11 @@ export interface ICompany {
|
|
|
1887
1902
|
'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>;
|
|
1888
1903
|
/**
|
|
1889
1904
|
*
|
|
1890
|
-
* @type {{ [key: string]:
|
|
1905
|
+
* @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
|
|
1891
1906
|
* @memberof ICompany
|
|
1892
1907
|
*/
|
|
1893
1908
|
'roles': {
|
|
1894
|
-
[key: string]:
|
|
1909
|
+
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
1895
1910
|
};
|
|
1896
1911
|
/**
|
|
1897
1912
|
*
|
|
@@ -2041,6 +2056,12 @@ export interface ICompany {
|
|
|
2041
2056
|
* @memberof ICompany
|
|
2042
2057
|
*/
|
|
2043
2058
|
'senderName'?: string;
|
|
2059
|
+
/**
|
|
2060
|
+
*
|
|
2061
|
+
* @type {Array<ICompanyPatchRequestPaymentGatewaysInner>}
|
|
2062
|
+
* @memberof ICompany
|
|
2063
|
+
*/
|
|
2064
|
+
'paymentGateways': Array<ICompanyPatchRequestPaymentGatewaysInner>;
|
|
2044
2065
|
/**
|
|
2045
2066
|
*
|
|
2046
2067
|
* @type {CompanyStatusEnum}
|
|
@@ -2256,11 +2277,11 @@ export interface ICompanyAdminResponse {
|
|
|
2256
2277
|
'users': Array<ICompanyAdminResponseUsersInner>;
|
|
2257
2278
|
/**
|
|
2258
2279
|
*
|
|
2259
|
-
* @type {{ [key: string]:
|
|
2280
|
+
* @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
|
|
2260
2281
|
* @memberof ICompanyAdminResponse
|
|
2261
2282
|
*/
|
|
2262
2283
|
'roles': {
|
|
2263
|
-
[key: string]:
|
|
2284
|
+
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
2264
2285
|
};
|
|
2265
2286
|
/**
|
|
2266
2287
|
*
|
|
@@ -2379,7 +2400,7 @@ export interface ICompanyCollectionQueryParams {
|
|
|
2379
2400
|
* @type {string}
|
|
2380
2401
|
* @memberof ICompanyCollectionQueryParams
|
|
2381
2402
|
*/
|
|
2382
|
-
'dateField'?:
|
|
2403
|
+
'dateField'?: ICompanyCollectionQueryParamsDateFieldEnum;
|
|
2383
2404
|
/**
|
|
2384
2405
|
*
|
|
2385
2406
|
* @type {OrderEnum}
|
|
@@ -2417,6 +2438,11 @@ export interface ICompanyCollectionQueryParams {
|
|
|
2417
2438
|
*/
|
|
2418
2439
|
'status'?: CompanyStatusEnum;
|
|
2419
2440
|
}
|
|
2441
|
+
export declare const ICompanyCollectionQueryParamsDateFieldEnum: {
|
|
2442
|
+
readonly CREATED_AT: "createdAt";
|
|
2443
|
+
readonly UPDATED_AT: "updatedAt";
|
|
2444
|
+
};
|
|
2445
|
+
export type ICompanyCollectionQueryParamsDateFieldEnum = typeof ICompanyCollectionQueryParamsDateFieldEnum[keyof typeof ICompanyCollectionQueryParamsDateFieldEnum];
|
|
2420
2446
|
/**
|
|
2421
2447
|
*
|
|
2422
2448
|
* @export
|
|
@@ -2647,11 +2673,11 @@ export interface ICompanyPatchRequest {
|
|
|
2647
2673
|
'email'?: string;
|
|
2648
2674
|
/**
|
|
2649
2675
|
*
|
|
2650
|
-
* @type {{ [key: string]:
|
|
2676
|
+
* @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
|
|
2651
2677
|
* @memberof ICompanyPatchRequest
|
|
2652
2678
|
*/
|
|
2653
2679
|
'roles'?: {
|
|
2654
|
-
[key: string]:
|
|
2680
|
+
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
2655
2681
|
};
|
|
2656
2682
|
/**
|
|
2657
2683
|
*
|
|
@@ -2695,6 +2721,12 @@ export interface ICompanyPatchRequest {
|
|
|
2695
2721
|
* @memberof ICompanyPatchRequest
|
|
2696
2722
|
*/
|
|
2697
2723
|
'dkim'?: string;
|
|
2724
|
+
/**
|
|
2725
|
+
*
|
|
2726
|
+
* @type {Array<ICompanyPatchRequestPaymentGatewaysInner>}
|
|
2727
|
+
* @memberof ICompanyPatchRequest
|
|
2728
|
+
*/
|
|
2729
|
+
'paymentGateways'?: Array<ICompanyPatchRequestPaymentGatewaysInner>;
|
|
2698
2730
|
/**
|
|
2699
2731
|
*
|
|
2700
2732
|
* @type {CompanyTypeEnum}
|
|
@@ -2782,6 +2814,62 @@ export interface ICompanyPatchRequest {
|
|
|
2782
2814
|
*/
|
|
2783
2815
|
'currencies'?: RecordCurrencyEnumCurrency;
|
|
2784
2816
|
}
|
|
2817
|
+
/**
|
|
2818
|
+
*
|
|
2819
|
+
* @export
|
|
2820
|
+
* @interface ICompanyPatchRequestPaymentGatewaysInner
|
|
2821
|
+
*/
|
|
2822
|
+
export interface ICompanyPatchRequestPaymentGatewaysInner {
|
|
2823
|
+
/**
|
|
2824
|
+
*
|
|
2825
|
+
* @type {boolean}
|
|
2826
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2827
|
+
*/
|
|
2828
|
+
'active': boolean;
|
|
2829
|
+
/**
|
|
2830
|
+
*
|
|
2831
|
+
* @type {boolean}
|
|
2832
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2833
|
+
*/
|
|
2834
|
+
'testMode': boolean;
|
|
2835
|
+
/**
|
|
2836
|
+
*
|
|
2837
|
+
* @type {string}
|
|
2838
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2839
|
+
*/
|
|
2840
|
+
'secretKey': string;
|
|
2841
|
+
/**
|
|
2842
|
+
*
|
|
2843
|
+
* @type {string}
|
|
2844
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2845
|
+
*/
|
|
2846
|
+
'apiKey': string;
|
|
2847
|
+
/**
|
|
2848
|
+
*
|
|
2849
|
+
* @type {PaymentGatewayEnum}
|
|
2850
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2851
|
+
*/
|
|
2852
|
+
'type': PaymentGatewayEnum;
|
|
2853
|
+
/**
|
|
2854
|
+
*
|
|
2855
|
+
* @type {string}
|
|
2856
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2857
|
+
*/
|
|
2858
|
+
'_id': string;
|
|
2859
|
+
}
|
|
2860
|
+
/**
|
|
2861
|
+
*
|
|
2862
|
+
* @export
|
|
2863
|
+
* @interface ICompanyPaymentGatewaysResponse
|
|
2864
|
+
*/
|
|
2865
|
+
export interface ICompanyPaymentGatewaysResponse {
|
|
2866
|
+
/**
|
|
2867
|
+
*
|
|
2868
|
+
* @type {Array<ICompanyPatchRequestPaymentGatewaysInner>}
|
|
2869
|
+
* @memberof ICompanyPaymentGatewaysResponse
|
|
2870
|
+
*/
|
|
2871
|
+
'data': Array<ICompanyPatchRequestPaymentGatewaysInner>;
|
|
2872
|
+
}
|
|
2785
2873
|
/**
|
|
2786
2874
|
*
|
|
2787
2875
|
* @export
|
|
@@ -3509,6 +3597,62 @@ export interface ICompanyUpdateNavigationRequest {
|
|
|
3509
3597
|
[key: string]: ICompanyResponseNavigationsValue;
|
|
3510
3598
|
};
|
|
3511
3599
|
}
|
|
3600
|
+
/**
|
|
3601
|
+
*
|
|
3602
|
+
* @export
|
|
3603
|
+
* @interface ICompanyUpdatePaymentGatewaysRequest
|
|
3604
|
+
*/
|
|
3605
|
+
export interface ICompanyUpdatePaymentGatewaysRequest {
|
|
3606
|
+
/**
|
|
3607
|
+
*
|
|
3608
|
+
* @type {Array<ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner>}
|
|
3609
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3610
|
+
*/
|
|
3611
|
+
'paymentGateways': Array<ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner>;
|
|
3612
|
+
}
|
|
3613
|
+
/**
|
|
3614
|
+
*
|
|
3615
|
+
* @export
|
|
3616
|
+
* @interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3617
|
+
*/
|
|
3618
|
+
export interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner {
|
|
3619
|
+
/**
|
|
3620
|
+
*
|
|
3621
|
+
* @type {boolean}
|
|
3622
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3623
|
+
*/
|
|
3624
|
+
'active': boolean;
|
|
3625
|
+
/**
|
|
3626
|
+
*
|
|
3627
|
+
* @type {boolean}
|
|
3628
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3629
|
+
*/
|
|
3630
|
+
'testMode': boolean;
|
|
3631
|
+
/**
|
|
3632
|
+
*
|
|
3633
|
+
* @type {string}
|
|
3634
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3635
|
+
*/
|
|
3636
|
+
'secretKey': string;
|
|
3637
|
+
/**
|
|
3638
|
+
*
|
|
3639
|
+
* @type {string}
|
|
3640
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3641
|
+
*/
|
|
3642
|
+
'apiKey': string;
|
|
3643
|
+
/**
|
|
3644
|
+
*
|
|
3645
|
+
* @type {PaymentGatewayEnum}
|
|
3646
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3647
|
+
*/
|
|
3648
|
+
'type': PaymentGatewayEnum;
|
|
3649
|
+
/**
|
|
3650
|
+
*
|
|
3651
|
+
* @type {string}
|
|
3652
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3653
|
+
*/
|
|
3654
|
+
'_id'?: string;
|
|
3655
|
+
}
|
|
3512
3656
|
/**
|
|
3513
3657
|
*
|
|
3514
3658
|
* @export
|
|
@@ -3569,7 +3713,7 @@ export interface ICompanyUsersCollectionQueryParams {
|
|
|
3569
3713
|
* @type {string}
|
|
3570
3714
|
* @memberof ICompanyUsersCollectionQueryParams
|
|
3571
3715
|
*/
|
|
3572
|
-
'dateField'?:
|
|
3716
|
+
'dateField'?: ICompanyUsersCollectionQueryParamsDateFieldEnum;
|
|
3573
3717
|
/**
|
|
3574
3718
|
*
|
|
3575
3719
|
* @type {OrderEnum}
|
|
@@ -3589,6 +3733,11 @@ export interface ICompanyUsersCollectionQueryParams {
|
|
|
3589
3733
|
*/
|
|
3590
3734
|
'status'?: CompanyUserStatusEnum;
|
|
3591
3735
|
}
|
|
3736
|
+
export declare const ICompanyUsersCollectionQueryParamsDateFieldEnum: {
|
|
3737
|
+
readonly CREATED_AT: "createdAt";
|
|
3738
|
+
readonly UPDATED_AT: "updatedAt";
|
|
3739
|
+
};
|
|
3740
|
+
export type ICompanyUsersCollectionQueryParamsDateFieldEnum = typeof ICompanyUsersCollectionQueryParamsDateFieldEnum[keyof typeof ICompanyUsersCollectionQueryParamsDateFieldEnum];
|
|
3592
3741
|
/**
|
|
3593
3742
|
*
|
|
3594
3743
|
* @export
|
|
@@ -3643,7 +3792,7 @@ export interface IContactFormCollectionQueryParams {
|
|
|
3643
3792
|
* @type {string}
|
|
3644
3793
|
* @memberof IContactFormCollectionQueryParams
|
|
3645
3794
|
*/
|
|
3646
|
-
'dateField'?:
|
|
3795
|
+
'dateField'?: IContactFormCollectionQueryParamsDateFieldEnum;
|
|
3647
3796
|
/**
|
|
3648
3797
|
*
|
|
3649
3798
|
* @type {OrderEnum}
|
|
@@ -3663,6 +3812,11 @@ export interface IContactFormCollectionQueryParams {
|
|
|
3663
3812
|
*/
|
|
3664
3813
|
'companyId': string;
|
|
3665
3814
|
}
|
|
3815
|
+
export declare const IContactFormCollectionQueryParamsDateFieldEnum: {
|
|
3816
|
+
readonly CREATED_AT: "createdAt";
|
|
3817
|
+
readonly UPDATED_AT: "updatedAt";
|
|
3818
|
+
};
|
|
3819
|
+
export type IContactFormCollectionQueryParamsDateFieldEnum = typeof IContactFormCollectionQueryParamsDateFieldEnum[keyof typeof IContactFormCollectionQueryParamsDateFieldEnum];
|
|
3666
3820
|
/**
|
|
3667
3821
|
*
|
|
3668
3822
|
* @export
|
|
@@ -4037,7 +4191,7 @@ export interface IFileCollectionQueryParams {
|
|
|
4037
4191
|
* @type {string}
|
|
4038
4192
|
* @memberof IFileCollectionQueryParams
|
|
4039
4193
|
*/
|
|
4040
|
-
'dateField'?:
|
|
4194
|
+
'dateField'?: IFileCollectionQueryParamsDateFieldEnum;
|
|
4041
4195
|
/**
|
|
4042
4196
|
*
|
|
4043
4197
|
* @type {OrderEnum}
|
|
@@ -4075,6 +4229,11 @@ export interface IFileCollectionQueryParams {
|
|
|
4075
4229
|
*/
|
|
4076
4230
|
'status'?: FileStatusEnum;
|
|
4077
4231
|
}
|
|
4232
|
+
export declare const IFileCollectionQueryParamsDateFieldEnum: {
|
|
4233
|
+
readonly CREATED_AT: "createdAt";
|
|
4234
|
+
readonly UPDATED_AT: "updatedAt";
|
|
4235
|
+
};
|
|
4236
|
+
export type IFileCollectionQueryParamsDateFieldEnum = typeof IFileCollectionQueryParamsDateFieldEnum[keyof typeof IFileCollectionQueryParamsDateFieldEnum];
|
|
4078
4237
|
/**
|
|
4079
4238
|
*
|
|
4080
4239
|
* @export
|
|
@@ -4367,6 +4526,72 @@ export interface ILoginResponseExpiresIn {
|
|
|
4367
4526
|
*/
|
|
4368
4527
|
'accessToken': number;
|
|
4369
4528
|
}
|
|
4529
|
+
/**
|
|
4530
|
+
*
|
|
4531
|
+
* @export
|
|
4532
|
+
* @interface IMyOrderCollectionQueryParams
|
|
4533
|
+
*/
|
|
4534
|
+
export interface IMyOrderCollectionQueryParams {
|
|
4535
|
+
/**
|
|
4536
|
+
*
|
|
4537
|
+
* @type {number}
|
|
4538
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4539
|
+
*/
|
|
4540
|
+
'page'?: number;
|
|
4541
|
+
/**
|
|
4542
|
+
*
|
|
4543
|
+
* @type {number}
|
|
4544
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4545
|
+
*/
|
|
4546
|
+
'itemsPerPage'?: number;
|
|
4547
|
+
/**
|
|
4548
|
+
*
|
|
4549
|
+
* @type {string}
|
|
4550
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4551
|
+
*/
|
|
4552
|
+
'search'?: string;
|
|
4553
|
+
/**
|
|
4554
|
+
*
|
|
4555
|
+
* @type {string}
|
|
4556
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4557
|
+
*/
|
|
4558
|
+
'startDate'?: string;
|
|
4559
|
+
/**
|
|
4560
|
+
*
|
|
4561
|
+
* @type {string}
|
|
4562
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4563
|
+
*/
|
|
4564
|
+
'endDate'?: string;
|
|
4565
|
+
/**
|
|
4566
|
+
*
|
|
4567
|
+
* @type {string}
|
|
4568
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4569
|
+
*/
|
|
4570
|
+
'dateField'?: IMyOrderCollectionQueryParamsDateFieldEnum;
|
|
4571
|
+
/**
|
|
4572
|
+
*
|
|
4573
|
+
* @type {OrderEnum}
|
|
4574
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4575
|
+
*/
|
|
4576
|
+
'order'?: OrderEnum;
|
|
4577
|
+
/**
|
|
4578
|
+
*
|
|
4579
|
+
* @type {string}
|
|
4580
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4581
|
+
*/
|
|
4582
|
+
'sort'?: string;
|
|
4583
|
+
/**
|
|
4584
|
+
*
|
|
4585
|
+
* @type {OrderStatusEnum}
|
|
4586
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4587
|
+
*/
|
|
4588
|
+
'status'?: OrderStatusEnum;
|
|
4589
|
+
}
|
|
4590
|
+
export declare const IMyOrderCollectionQueryParamsDateFieldEnum: {
|
|
4591
|
+
readonly CREATED_AT: "createdAt";
|
|
4592
|
+
readonly UPDATED_AT: "updatedAt";
|
|
4593
|
+
};
|
|
4594
|
+
export type IMyOrderCollectionQueryParamsDateFieldEnum = typeof IMyOrderCollectionQueryParamsDateFieldEnum[keyof typeof IMyOrderCollectionQueryParamsDateFieldEnum];
|
|
4370
4595
|
/**
|
|
4371
4596
|
*
|
|
4372
4597
|
* @export
|
|
@@ -4408,7 +4633,7 @@ export interface INotificationCollectionQueryParams {
|
|
|
4408
4633
|
* @type {string}
|
|
4409
4634
|
* @memberof INotificationCollectionQueryParams
|
|
4410
4635
|
*/
|
|
4411
|
-
'dateField'?:
|
|
4636
|
+
'dateField'?: INotificationCollectionQueryParamsDateFieldEnum;
|
|
4412
4637
|
/**
|
|
4413
4638
|
*
|
|
4414
4639
|
* @type {OrderEnum}
|
|
@@ -4440,6 +4665,11 @@ export interface INotificationCollectionQueryParams {
|
|
|
4440
4665
|
*/
|
|
4441
4666
|
'status'?: NotificationStatusEnum;
|
|
4442
4667
|
}
|
|
4668
|
+
export declare const INotificationCollectionQueryParamsDateFieldEnum: {
|
|
4669
|
+
readonly CREATED_AT: "createdAt";
|
|
4670
|
+
readonly UPDATED_AT: "updatedAt";
|
|
4671
|
+
};
|
|
4672
|
+
export type INotificationCollectionQueryParamsDateFieldEnum = typeof INotificationCollectionQueryParamsDateFieldEnum[keyof typeof INotificationCollectionQueryParamsDateFieldEnum];
|
|
4443
4673
|
/**
|
|
4444
4674
|
*
|
|
4445
4675
|
* @export
|
|
@@ -4597,7 +4827,7 @@ export interface IOperationCollectionQueryParams {
|
|
|
4597
4827
|
* @type {string}
|
|
4598
4828
|
* @memberof IOperationCollectionQueryParams
|
|
4599
4829
|
*/
|
|
4600
|
-
'dateField'?:
|
|
4830
|
+
'dateField'?: IOperationCollectionQueryParamsDateFieldEnum;
|
|
4601
4831
|
/**
|
|
4602
4832
|
*
|
|
4603
4833
|
* @type {OrderEnum}
|
|
@@ -4629,6 +4859,11 @@ export interface IOperationCollectionQueryParams {
|
|
|
4629
4859
|
*/
|
|
4630
4860
|
'status'?: OperationStatusEnum;
|
|
4631
4861
|
}
|
|
4862
|
+
export declare const IOperationCollectionQueryParamsDateFieldEnum: {
|
|
4863
|
+
readonly CREATED_AT: "createdAt";
|
|
4864
|
+
readonly UPDATED_AT: "updatedAt";
|
|
4865
|
+
};
|
|
4866
|
+
export type IOperationCollectionQueryParamsDateFieldEnum = typeof IOperationCollectionQueryParamsDateFieldEnum[keyof typeof IOperationCollectionQueryParamsDateFieldEnum];
|
|
4632
4867
|
/**
|
|
4633
4868
|
*
|
|
4634
4869
|
* @export
|
|
@@ -4890,7 +5125,7 @@ export interface IOrderCollectionQueryParams {
|
|
|
4890
5125
|
* @type {string}
|
|
4891
5126
|
* @memberof IOrderCollectionQueryParams
|
|
4892
5127
|
*/
|
|
4893
|
-
'dateField'?:
|
|
5128
|
+
'dateField'?: IOrderCollectionQueryParamsDateFieldEnum;
|
|
4894
5129
|
/**
|
|
4895
5130
|
*
|
|
4896
5131
|
* @type {OrderEnum}
|
|
@@ -4922,6 +5157,24 @@ export interface IOrderCollectionQueryParams {
|
|
|
4922
5157
|
*/
|
|
4923
5158
|
'status'?: OrderStatusEnum;
|
|
4924
5159
|
}
|
|
5160
|
+
export declare const IOrderCollectionQueryParamsDateFieldEnum: {
|
|
5161
|
+
readonly CREATED_AT: "createdAt";
|
|
5162
|
+
readonly UPDATED_AT: "updatedAt";
|
|
5163
|
+
};
|
|
5164
|
+
export type IOrderCollectionQueryParamsDateFieldEnum = typeof IOrderCollectionQueryParamsDateFieldEnum[keyof typeof IOrderCollectionQueryParamsDateFieldEnum];
|
|
5165
|
+
/**
|
|
5166
|
+
*
|
|
5167
|
+
* @export
|
|
5168
|
+
* @interface IOrderCreateResponse
|
|
5169
|
+
*/
|
|
5170
|
+
export interface IOrderCreateResponse {
|
|
5171
|
+
/**
|
|
5172
|
+
*
|
|
5173
|
+
* @type {string}
|
|
5174
|
+
* @memberof IOrderCreateResponse
|
|
5175
|
+
*/
|
|
5176
|
+
'redirectUrl'?: string;
|
|
5177
|
+
}
|
|
4925
5178
|
/**
|
|
4926
5179
|
*
|
|
4927
5180
|
* @export
|
|
@@ -4997,58 +5250,70 @@ export interface IOrderPostRequest {
|
|
|
4997
5250
|
export interface IOrderResponse {
|
|
4998
5251
|
/**
|
|
4999
5252
|
*
|
|
5000
|
-
* @type {
|
|
5253
|
+
* @type {number}
|
|
5001
5254
|
* @memberof IOrderResponse
|
|
5002
5255
|
*/
|
|
5003
|
-
'
|
|
5256
|
+
'number': number;
|
|
5004
5257
|
/**
|
|
5005
5258
|
*
|
|
5006
|
-
* @type {
|
|
5259
|
+
* @type {string}
|
|
5007
5260
|
* @memberof IOrderResponse
|
|
5008
5261
|
*/
|
|
5009
|
-
'
|
|
5262
|
+
'email'?: string;
|
|
5010
5263
|
/**
|
|
5011
5264
|
*
|
|
5012
5265
|
* @type {string}
|
|
5013
5266
|
* @memberof IOrderResponse
|
|
5014
5267
|
*/
|
|
5015
|
-
'
|
|
5268
|
+
'company': string;
|
|
5016
5269
|
/**
|
|
5017
5270
|
*
|
|
5018
|
-
* @type {
|
|
5271
|
+
* @type {OrderStatusEnum}
|
|
5019
5272
|
* @memberof IOrderResponse
|
|
5020
5273
|
*/
|
|
5021
|
-
'
|
|
5274
|
+
'status': OrderStatusEnum;
|
|
5022
5275
|
/**
|
|
5023
5276
|
*
|
|
5024
5277
|
* @type {string}
|
|
5025
5278
|
* @memberof IOrderResponse
|
|
5026
5279
|
*/
|
|
5027
|
-
'
|
|
5280
|
+
'_id': string;
|
|
5281
|
+
/**
|
|
5282
|
+
*
|
|
5283
|
+
* @type {number}
|
|
5284
|
+
* @memberof IOrderResponse
|
|
5285
|
+
*/
|
|
5286
|
+
'__v': number;
|
|
5028
5287
|
/**
|
|
5029
5288
|
*
|
|
5030
5289
|
* @type {string}
|
|
5031
5290
|
* @memberof IOrderResponse
|
|
5032
5291
|
*/
|
|
5033
|
-
'
|
|
5292
|
+
'createdAt': string;
|
|
5034
5293
|
/**
|
|
5035
5294
|
*
|
|
5036
5295
|
* @type {string}
|
|
5037
5296
|
* @memberof IOrderResponse
|
|
5038
5297
|
*/
|
|
5039
|
-
'
|
|
5298
|
+
'updatedAt': string;
|
|
5040
5299
|
/**
|
|
5041
5300
|
*
|
|
5042
|
-
* @type {
|
|
5301
|
+
* @type {CurrencyEnum}
|
|
5043
5302
|
* @memberof IOrderResponse
|
|
5044
5303
|
*/
|
|
5045
|
-
'
|
|
5304
|
+
'currency': CurrencyEnum;
|
|
5046
5305
|
/**
|
|
5047
5306
|
*
|
|
5048
|
-
* @type {
|
|
5307
|
+
* @type {string}
|
|
5308
|
+
* @memberof IOrderResponse
|
|
5309
|
+
*/
|
|
5310
|
+
'user'?: string;
|
|
5311
|
+
/**
|
|
5312
|
+
*
|
|
5313
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlProductsInner>}
|
|
5049
5314
|
* @memberof IOrderResponse
|
|
5050
5315
|
*/
|
|
5051
|
-
'products': Array<
|
|
5316
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlProductsInner>;
|
|
5052
5317
|
/**
|
|
5053
5318
|
*
|
|
5054
5319
|
* @type {IAddress}
|
|
@@ -5067,6 +5332,12 @@ export interface IOrderResponse {
|
|
|
5067
5332
|
* @memberof IOrderResponse
|
|
5068
5333
|
*/
|
|
5069
5334
|
'paymentMethod': PaymentMethodEnum;
|
|
5335
|
+
/**
|
|
5336
|
+
*
|
|
5337
|
+
* @type {PaymentGatewayEnum}
|
|
5338
|
+
* @memberof IOrderResponse
|
|
5339
|
+
*/
|
|
5340
|
+
'paymentGateway': PaymentGatewayEnum;
|
|
5070
5341
|
/**
|
|
5071
5342
|
*
|
|
5072
5343
|
* @type {string}
|
|
@@ -5115,157 +5386,78 @@ export interface IOrderResponse {
|
|
|
5115
5386
|
* @memberof IOrderResponse
|
|
5116
5387
|
*/
|
|
5117
5388
|
'note'?: string;
|
|
5118
|
-
/**
|
|
5119
|
-
*
|
|
5120
|
-
* @type {CurrencyEnum}
|
|
5121
|
-
* @memberof IOrderResponse
|
|
5122
|
-
*/
|
|
5123
|
-
'currency': CurrencyEnum;
|
|
5124
|
-
/**
|
|
5125
|
-
*
|
|
5126
|
-
* @type {OrderStatusEnum}
|
|
5127
|
-
* @memberof IOrderResponse
|
|
5128
|
-
*/
|
|
5129
|
-
'status': OrderStatusEnum;
|
|
5130
5389
|
}
|
|
5131
5390
|
/**
|
|
5132
5391
|
*
|
|
5133
5392
|
* @export
|
|
5134
|
-
* @interface
|
|
5393
|
+
* @interface IOrdersResponse
|
|
5135
5394
|
*/
|
|
5136
|
-
export interface
|
|
5395
|
+
export interface IOrdersResponse {
|
|
5137
5396
|
/**
|
|
5138
5397
|
*
|
|
5139
5398
|
* @type {number}
|
|
5140
|
-
* @memberof
|
|
5399
|
+
* @memberof IOrdersResponse
|
|
5141
5400
|
*/
|
|
5142
|
-
'
|
|
5401
|
+
'page': number;
|
|
5143
5402
|
/**
|
|
5144
5403
|
*
|
|
5145
5404
|
* @type {number}
|
|
5146
|
-
* @memberof
|
|
5405
|
+
* @memberof IOrdersResponse
|
|
5147
5406
|
*/
|
|
5148
|
-
'
|
|
5407
|
+
'itemsPerPage': number;
|
|
5149
5408
|
/**
|
|
5150
5409
|
*
|
|
5151
|
-
* @type {
|
|
5152
|
-
* @memberof
|
|
5410
|
+
* @type {number}
|
|
5411
|
+
* @memberof IOrdersResponse
|
|
5153
5412
|
*/
|
|
5154
|
-
'
|
|
5413
|
+
'total': number;
|
|
5155
5414
|
/**
|
|
5156
5415
|
*
|
|
5157
|
-
* @type {
|
|
5158
|
-
* @memberof
|
|
5416
|
+
* @type {number}
|
|
5417
|
+
* @memberof IOrdersResponse
|
|
5159
5418
|
*/
|
|
5160
|
-
'
|
|
5419
|
+
'totalPages': number;
|
|
5161
5420
|
/**
|
|
5162
5421
|
*
|
|
5163
|
-
* @type {
|
|
5164
|
-
* @memberof
|
|
5422
|
+
* @type {Array<IOrderResponse>}
|
|
5423
|
+
* @memberof IOrdersResponse
|
|
5165
5424
|
*/
|
|
5166
|
-
'
|
|
5425
|
+
'data': Array<IOrderResponse>;
|
|
5426
|
+
}
|
|
5427
|
+
/**
|
|
5428
|
+
*
|
|
5429
|
+
* @export
|
|
5430
|
+
* @interface IPageCollectionQueryParams
|
|
5431
|
+
*/
|
|
5432
|
+
export interface IPageCollectionQueryParams {
|
|
5167
5433
|
/**
|
|
5168
5434
|
*
|
|
5169
|
-
* @type {
|
|
5170
|
-
* @memberof
|
|
5435
|
+
* @type {number}
|
|
5436
|
+
* @memberof IPageCollectionQueryParams
|
|
5171
5437
|
*/
|
|
5172
|
-
'
|
|
5438
|
+
'page'?: number;
|
|
5173
5439
|
/**
|
|
5174
5440
|
*
|
|
5175
|
-
* @type {
|
|
5176
|
-
* @memberof
|
|
5441
|
+
* @type {number}
|
|
5442
|
+
* @memberof IPageCollectionQueryParams
|
|
5177
5443
|
*/
|
|
5178
|
-
'
|
|
5444
|
+
'itemsPerPage'?: number;
|
|
5179
5445
|
/**
|
|
5180
5446
|
*
|
|
5181
5447
|
* @type {string}
|
|
5182
|
-
* @memberof
|
|
5448
|
+
* @memberof IPageCollectionQueryParams
|
|
5183
5449
|
*/
|
|
5184
|
-
'
|
|
5450
|
+
'search'?: string;
|
|
5185
5451
|
/**
|
|
5186
5452
|
*
|
|
5187
|
-
* @type {
|
|
5188
|
-
* @memberof
|
|
5453
|
+
* @type {string}
|
|
5454
|
+
* @memberof IPageCollectionQueryParams
|
|
5189
5455
|
*/
|
|
5190
|
-
'
|
|
5456
|
+
'startDate'?: string;
|
|
5191
5457
|
/**
|
|
5192
5458
|
*
|
|
5193
5459
|
* @type {string}
|
|
5194
|
-
* @memberof
|
|
5195
|
-
*/
|
|
5196
|
-
'productId': string;
|
|
5197
|
-
}
|
|
5198
|
-
/**
|
|
5199
|
-
*
|
|
5200
|
-
* @export
|
|
5201
|
-
* @interface IOrdersResponse
|
|
5202
|
-
*/
|
|
5203
|
-
export interface IOrdersResponse {
|
|
5204
|
-
/**
|
|
5205
|
-
*
|
|
5206
|
-
* @type {number}
|
|
5207
|
-
* @memberof IOrdersResponse
|
|
5208
|
-
*/
|
|
5209
|
-
'page': number;
|
|
5210
|
-
/**
|
|
5211
|
-
*
|
|
5212
|
-
* @type {number}
|
|
5213
|
-
* @memberof IOrdersResponse
|
|
5214
|
-
*/
|
|
5215
|
-
'itemsPerPage': number;
|
|
5216
|
-
/**
|
|
5217
|
-
*
|
|
5218
|
-
* @type {number}
|
|
5219
|
-
* @memberof IOrdersResponse
|
|
5220
|
-
*/
|
|
5221
|
-
'total': number;
|
|
5222
|
-
/**
|
|
5223
|
-
*
|
|
5224
|
-
* @type {number}
|
|
5225
|
-
* @memberof IOrdersResponse
|
|
5226
|
-
*/
|
|
5227
|
-
'totalPages': number;
|
|
5228
|
-
/**
|
|
5229
|
-
*
|
|
5230
|
-
* @type {Array<IOrderResponse>}
|
|
5231
|
-
* @memberof IOrdersResponse
|
|
5232
|
-
*/
|
|
5233
|
-
'data': Array<IOrderResponse>;
|
|
5234
|
-
}
|
|
5235
|
-
/**
|
|
5236
|
-
*
|
|
5237
|
-
* @export
|
|
5238
|
-
* @interface IPageCollectionQueryParams
|
|
5239
|
-
*/
|
|
5240
|
-
export interface IPageCollectionQueryParams {
|
|
5241
|
-
/**
|
|
5242
|
-
*
|
|
5243
|
-
* @type {number}
|
|
5244
|
-
* @memberof IPageCollectionQueryParams
|
|
5245
|
-
*/
|
|
5246
|
-
'page'?: number;
|
|
5247
|
-
/**
|
|
5248
|
-
*
|
|
5249
|
-
* @type {number}
|
|
5250
|
-
* @memberof IPageCollectionQueryParams
|
|
5251
|
-
*/
|
|
5252
|
-
'itemsPerPage'?: number;
|
|
5253
|
-
/**
|
|
5254
|
-
*
|
|
5255
|
-
* @type {string}
|
|
5256
|
-
* @memberof IPageCollectionQueryParams
|
|
5257
|
-
*/
|
|
5258
|
-
'search'?: string;
|
|
5259
|
-
/**
|
|
5260
|
-
*
|
|
5261
|
-
* @type {string}
|
|
5262
|
-
* @memberof IPageCollectionQueryParams
|
|
5263
|
-
*/
|
|
5264
|
-
'startDate'?: string;
|
|
5265
|
-
/**
|
|
5266
|
-
*
|
|
5267
|
-
* @type {string}
|
|
5268
|
-
* @memberof IPageCollectionQueryParams
|
|
5460
|
+
* @memberof IPageCollectionQueryParams
|
|
5269
5461
|
*/
|
|
5270
5462
|
'endDate'?: string;
|
|
5271
5463
|
/**
|
|
@@ -5273,7 +5465,7 @@ export interface IPageCollectionQueryParams {
|
|
|
5273
5465
|
* @type {string}
|
|
5274
5466
|
* @memberof IPageCollectionQueryParams
|
|
5275
5467
|
*/
|
|
5276
|
-
'dateField'?:
|
|
5468
|
+
'dateField'?: IPageCollectionQueryParamsDateFieldEnum;
|
|
5277
5469
|
/**
|
|
5278
5470
|
*
|
|
5279
5471
|
* @type {OrderEnum}
|
|
@@ -5311,6 +5503,11 @@ export interface IPageCollectionQueryParams {
|
|
|
5311
5503
|
*/
|
|
5312
5504
|
'status'?: ContentStatusEnum;
|
|
5313
5505
|
}
|
|
5506
|
+
export declare const IPageCollectionQueryParamsDateFieldEnum: {
|
|
5507
|
+
readonly CREATED_AT: "createdAt";
|
|
5508
|
+
readonly UPDATED_AT: "updatedAt";
|
|
5509
|
+
};
|
|
5510
|
+
export type IPageCollectionQueryParamsDateFieldEnum = typeof IPageCollectionQueryParamsDateFieldEnum[keyof typeof IPageCollectionQueryParamsDateFieldEnum];
|
|
5314
5511
|
/**
|
|
5315
5512
|
*
|
|
5316
5513
|
* @export
|
|
@@ -5555,7 +5752,7 @@ export interface IPlanCollectionQueryParams {
|
|
|
5555
5752
|
* @type {string}
|
|
5556
5753
|
* @memberof IPlanCollectionQueryParams
|
|
5557
5754
|
*/
|
|
5558
|
-
'dateField'?:
|
|
5755
|
+
'dateField'?: IPlanCollectionQueryParamsDateFieldEnum;
|
|
5559
5756
|
/**
|
|
5560
5757
|
*
|
|
5561
5758
|
* @type {OrderEnum}
|
|
@@ -5581,6 +5778,11 @@ export interface IPlanCollectionQueryParams {
|
|
|
5581
5778
|
*/
|
|
5582
5779
|
'type'?: PlanTypeEnum;
|
|
5583
5780
|
}
|
|
5781
|
+
export declare const IPlanCollectionQueryParamsDateFieldEnum: {
|
|
5782
|
+
readonly CREATED_AT: "createdAt";
|
|
5783
|
+
readonly UPDATED_AT: "updatedAt";
|
|
5784
|
+
};
|
|
5785
|
+
export type IPlanCollectionQueryParamsDateFieldEnum = typeof IPlanCollectionQueryParamsDateFieldEnum[keyof typeof IPlanCollectionQueryParamsDateFieldEnum];
|
|
5584
5786
|
/**
|
|
5585
5787
|
*
|
|
5586
5788
|
* @export
|
|
@@ -5862,7 +6064,7 @@ export interface IProductCollectionQueryParams {
|
|
|
5862
6064
|
* @type {string}
|
|
5863
6065
|
* @memberof IProductCollectionQueryParams
|
|
5864
6066
|
*/
|
|
5865
|
-
'dateField'?:
|
|
6067
|
+
'dateField'?: IProductCollectionQueryParamsDateFieldEnum;
|
|
5866
6068
|
/**
|
|
5867
6069
|
*
|
|
5868
6070
|
* @type {OrderEnum}
|
|
@@ -5912,6 +6114,11 @@ export interface IProductCollectionQueryParams {
|
|
|
5912
6114
|
*/
|
|
5913
6115
|
'status'?: ContentStatusEnum;
|
|
5914
6116
|
}
|
|
6117
|
+
export declare const IProductCollectionQueryParamsDateFieldEnum: {
|
|
6118
|
+
readonly CREATED_AT: "createdAt";
|
|
6119
|
+
readonly UPDATED_AT: "updatedAt";
|
|
6120
|
+
};
|
|
6121
|
+
export type IProductCollectionQueryParamsDateFieldEnum = typeof IProductCollectionQueryParamsDateFieldEnum[keyof typeof IProductCollectionQueryParamsDateFieldEnum];
|
|
5915
6122
|
/**
|
|
5916
6123
|
*
|
|
5917
6124
|
* @export
|
|
@@ -7278,7 +7485,7 @@ export interface IUserCollectionQueryParams {
|
|
|
7278
7485
|
* @type {string}
|
|
7279
7486
|
* @memberof IUserCollectionQueryParams
|
|
7280
7487
|
*/
|
|
7281
|
-
'dateField'?:
|
|
7488
|
+
'dateField'?: IUserCollectionQueryParamsDateFieldEnum;
|
|
7282
7489
|
/**
|
|
7283
7490
|
*
|
|
7284
7491
|
* @type {OrderEnum}
|
|
@@ -7298,6 +7505,11 @@ export interface IUserCollectionQueryParams {
|
|
|
7298
7505
|
*/
|
|
7299
7506
|
'status'?: UserStatusEnum;
|
|
7300
7507
|
}
|
|
7508
|
+
export declare const IUserCollectionQueryParamsDateFieldEnum: {
|
|
7509
|
+
readonly CREATED_AT: "createdAt";
|
|
7510
|
+
readonly UPDATED_AT: "updatedAt";
|
|
7511
|
+
};
|
|
7512
|
+
export type IUserCollectionQueryParamsDateFieldEnum = typeof IUserCollectionQueryParamsDateFieldEnum[keyof typeof IUserCollectionQueryParamsDateFieldEnum];
|
|
7301
7513
|
/**
|
|
7302
7514
|
*
|
|
7303
7515
|
* @export
|
|
@@ -7725,6 +7937,16 @@ export interface PartialRecordLanguageEnumString {
|
|
|
7725
7937
|
*/
|
|
7726
7938
|
'de'?: string;
|
|
7727
7939
|
}
|
|
7940
|
+
/**
|
|
7941
|
+
*
|
|
7942
|
+
* @export
|
|
7943
|
+
* @enum {string}
|
|
7944
|
+
*/
|
|
7945
|
+
export declare const PaymentGatewayEnum: {
|
|
7946
|
+
readonly IYZICO: "iyzico";
|
|
7947
|
+
readonly PAYTR: "paytr";
|
|
7948
|
+
};
|
|
7949
|
+
export type PaymentGatewayEnum = typeof PaymentGatewayEnum[keyof typeof PaymentGatewayEnum];
|
|
7728
7950
|
/**
|
|
7729
7951
|
*
|
|
7730
7952
|
* @export
|
|
@@ -8262,11 +8484,11 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles {
|
|
|
8262
8484
|
'name': string;
|
|
8263
8485
|
/**
|
|
8264
8486
|
*
|
|
8265
|
-
* @type {{ [key: string]:
|
|
8487
|
+
* @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
|
|
8266
8488
|
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
8267
8489
|
*/
|
|
8268
8490
|
'roles': {
|
|
8269
|
-
[key: string]:
|
|
8491
|
+
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
8270
8492
|
};
|
|
8271
8493
|
/**
|
|
8272
8494
|
*
|
|
@@ -8299,6 +8521,68 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles {
|
|
|
8299
8521
|
*/
|
|
8300
8522
|
'domains': Array<string>;
|
|
8301
8523
|
}
|
|
8524
|
+
/**
|
|
8525
|
+
*
|
|
8526
|
+
* @export
|
|
8527
|
+
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8528
|
+
*/
|
|
8529
|
+
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue {
|
|
8530
|
+
/**
|
|
8531
|
+
*
|
|
8532
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
8533
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8534
|
+
*/
|
|
8535
|
+
'order': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
8536
|
+
/**
|
|
8537
|
+
*
|
|
8538
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
8539
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8540
|
+
*/
|
|
8541
|
+
'config': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
8542
|
+
/**
|
|
8543
|
+
*
|
|
8544
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
8545
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8546
|
+
*/
|
|
8547
|
+
'navigation': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
8548
|
+
/**
|
|
8549
|
+
*
|
|
8550
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
8551
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8552
|
+
*/
|
|
8553
|
+
'company': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
8554
|
+
/**
|
|
8555
|
+
*
|
|
8556
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
8557
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8558
|
+
*/
|
|
8559
|
+
'page': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
8560
|
+
/**
|
|
8561
|
+
*
|
|
8562
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
8563
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8564
|
+
*/
|
|
8565
|
+
'product': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
8566
|
+
}
|
|
8567
|
+
/**
|
|
8568
|
+
*
|
|
8569
|
+
* @export
|
|
8570
|
+
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder
|
|
8571
|
+
*/
|
|
8572
|
+
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder {
|
|
8573
|
+
/**
|
|
8574
|
+
*
|
|
8575
|
+
* @type {boolean}
|
|
8576
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder
|
|
8577
|
+
*/
|
|
8578
|
+
'd': boolean;
|
|
8579
|
+
/**
|
|
8580
|
+
*
|
|
8581
|
+
* @type {boolean}
|
|
8582
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder
|
|
8583
|
+
*/
|
|
8584
|
+
'm': boolean;
|
|
8585
|
+
}
|
|
8302
8586
|
/**
|
|
8303
8587
|
*
|
|
8304
8588
|
* @export
|
|
@@ -8349,6 +8633,218 @@ export interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCom
|
|
|
8349
8633
|
*/
|
|
8350
8634
|
'message': string;
|
|
8351
8635
|
}
|
|
8636
|
+
/**
|
|
8637
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
8638
|
+
* @export
|
|
8639
|
+
* @interface PickIOrderExcludeKeyofIOrderHtml
|
|
8640
|
+
*/
|
|
8641
|
+
export interface PickIOrderExcludeKeyofIOrderHtml {
|
|
8642
|
+
/**
|
|
8643
|
+
*
|
|
8644
|
+
* @type {number}
|
|
8645
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8646
|
+
*/
|
|
8647
|
+
'number': number;
|
|
8648
|
+
/**
|
|
8649
|
+
*
|
|
8650
|
+
* @type {string}
|
|
8651
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8652
|
+
*/
|
|
8653
|
+
'email'?: string;
|
|
8654
|
+
/**
|
|
8655
|
+
*
|
|
8656
|
+
* @type {string}
|
|
8657
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8658
|
+
*/
|
|
8659
|
+
'company': string;
|
|
8660
|
+
/**
|
|
8661
|
+
*
|
|
8662
|
+
* @type {OrderStatusEnum}
|
|
8663
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8664
|
+
*/
|
|
8665
|
+
'status': OrderStatusEnum;
|
|
8666
|
+
/**
|
|
8667
|
+
*
|
|
8668
|
+
* @type {string}
|
|
8669
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8670
|
+
*/
|
|
8671
|
+
'_id': string;
|
|
8672
|
+
/**
|
|
8673
|
+
*
|
|
8674
|
+
* @type {number}
|
|
8675
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8676
|
+
*/
|
|
8677
|
+
'__v': number;
|
|
8678
|
+
/**
|
|
8679
|
+
*
|
|
8680
|
+
* @type {string}
|
|
8681
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8682
|
+
*/
|
|
8683
|
+
'createdAt': string;
|
|
8684
|
+
/**
|
|
8685
|
+
*
|
|
8686
|
+
* @type {string}
|
|
8687
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8688
|
+
*/
|
|
8689
|
+
'updatedAt': string;
|
|
8690
|
+
/**
|
|
8691
|
+
*
|
|
8692
|
+
* @type {CurrencyEnum}
|
|
8693
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8694
|
+
*/
|
|
8695
|
+
'currency': CurrencyEnum;
|
|
8696
|
+
/**
|
|
8697
|
+
*
|
|
8698
|
+
* @type {string}
|
|
8699
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8700
|
+
*/
|
|
8701
|
+
'user'?: string;
|
|
8702
|
+
/**
|
|
8703
|
+
*
|
|
8704
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlProductsInner>}
|
|
8705
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8706
|
+
*/
|
|
8707
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlProductsInner>;
|
|
8708
|
+
/**
|
|
8709
|
+
*
|
|
8710
|
+
* @type {IAddress}
|
|
8711
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8712
|
+
*/
|
|
8713
|
+
'shippingAddress': IAddress;
|
|
8714
|
+
/**
|
|
8715
|
+
*
|
|
8716
|
+
* @type {IAddress}
|
|
8717
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8718
|
+
*/
|
|
8719
|
+
'billingAddress'?: IAddress;
|
|
8720
|
+
/**
|
|
8721
|
+
*
|
|
8722
|
+
* @type {PaymentMethodEnum}
|
|
8723
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8724
|
+
*/
|
|
8725
|
+
'paymentMethod': PaymentMethodEnum;
|
|
8726
|
+
/**
|
|
8727
|
+
*
|
|
8728
|
+
* @type {PaymentGatewayEnum}
|
|
8729
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8730
|
+
*/
|
|
8731
|
+
'paymentGateway': PaymentGatewayEnum;
|
|
8732
|
+
/**
|
|
8733
|
+
*
|
|
8734
|
+
* @type {string}
|
|
8735
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8736
|
+
*/
|
|
8737
|
+
'paymentId': string;
|
|
8738
|
+
/**
|
|
8739
|
+
*
|
|
8740
|
+
* @type {number}
|
|
8741
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8742
|
+
*/
|
|
8743
|
+
'subtotal': number;
|
|
8744
|
+
/**
|
|
8745
|
+
*
|
|
8746
|
+
* @type {number}
|
|
8747
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8748
|
+
*/
|
|
8749
|
+
'discount': number;
|
|
8750
|
+
/**
|
|
8751
|
+
*
|
|
8752
|
+
* @type {number}
|
|
8753
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8754
|
+
*/
|
|
8755
|
+
'tax': number;
|
|
8756
|
+
/**
|
|
8757
|
+
*
|
|
8758
|
+
* @type {number}
|
|
8759
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8760
|
+
*/
|
|
8761
|
+
'shipping': number;
|
|
8762
|
+
/**
|
|
8763
|
+
*
|
|
8764
|
+
* @type {boolean}
|
|
8765
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8766
|
+
*/
|
|
8767
|
+
'freeShipping': boolean;
|
|
8768
|
+
/**
|
|
8769
|
+
*
|
|
8770
|
+
* @type {number}
|
|
8771
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8772
|
+
*/
|
|
8773
|
+
'total': number;
|
|
8774
|
+
/**
|
|
8775
|
+
*
|
|
8776
|
+
* @type {string}
|
|
8777
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtml
|
|
8778
|
+
*/
|
|
8779
|
+
'note'?: string;
|
|
8780
|
+
}
|
|
8781
|
+
/**
|
|
8782
|
+
*
|
|
8783
|
+
* @export
|
|
8784
|
+
* @interface PickIOrderExcludeKeyofIOrderHtmlProductsInner
|
|
8785
|
+
*/
|
|
8786
|
+
export interface PickIOrderExcludeKeyofIOrderHtmlProductsInner {
|
|
8787
|
+
/**
|
|
8788
|
+
*
|
|
8789
|
+
* @type {number}
|
|
8790
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
|
|
8791
|
+
*/
|
|
8792
|
+
'price': number;
|
|
8793
|
+
/**
|
|
8794
|
+
*
|
|
8795
|
+
* @type {number}
|
|
8796
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
|
|
8797
|
+
*/
|
|
8798
|
+
'amount': number;
|
|
8799
|
+
/**
|
|
8800
|
+
*
|
|
8801
|
+
* @type {string}
|
|
8802
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
|
|
8803
|
+
*/
|
|
8804
|
+
'subVariantId'?: string;
|
|
8805
|
+
/**
|
|
8806
|
+
*
|
|
8807
|
+
* @type {string}
|
|
8808
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
|
|
8809
|
+
*/
|
|
8810
|
+
'mainVariantId'?: string;
|
|
8811
|
+
/**
|
|
8812
|
+
*
|
|
8813
|
+
* @type {PartialRecordLanguageEnumString}
|
|
8814
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
|
|
8815
|
+
*/
|
|
8816
|
+
'subVariantTitle': PartialRecordLanguageEnumString;
|
|
8817
|
+
/**
|
|
8818
|
+
*
|
|
8819
|
+
* @type {PartialRecordLanguageEnumString}
|
|
8820
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
|
|
8821
|
+
*/
|
|
8822
|
+
'mainVariantTitle': PartialRecordLanguageEnumString;
|
|
8823
|
+
/**
|
|
8824
|
+
*
|
|
8825
|
+
* @type {PartialRecordLanguageEnumString}
|
|
8826
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
|
|
8827
|
+
*/
|
|
8828
|
+
'productSlug': PartialRecordLanguageEnumString;
|
|
8829
|
+
/**
|
|
8830
|
+
*
|
|
8831
|
+
* @type {string}
|
|
8832
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
|
|
8833
|
+
*/
|
|
8834
|
+
'productThumbnail'?: string;
|
|
8835
|
+
/**
|
|
8836
|
+
*
|
|
8837
|
+
* @type {PartialRecordLanguageEnumString}
|
|
8838
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
|
|
8839
|
+
*/
|
|
8840
|
+
'productTitle': PartialRecordLanguageEnumString;
|
|
8841
|
+
/**
|
|
8842
|
+
*
|
|
8843
|
+
* @type {string}
|
|
8844
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
|
|
8845
|
+
*/
|
|
8846
|
+
'productId': string;
|
|
8847
|
+
}
|
|
8352
8848
|
/**
|
|
8353
8849
|
* From T, pick a set of properties whose keys are in the union K
|
|
8354
8850
|
* @export
|
|
@@ -9076,68 +9572,6 @@ export interface RecordCurrencyEnumNumber {
|
|
|
9076
9572
|
*/
|
|
9077
9573
|
'jpy': number;
|
|
9078
9574
|
}
|
|
9079
|
-
/**
|
|
9080
|
-
* Construct a type with a set of properties K of type T
|
|
9081
|
-
* @export
|
|
9082
|
-
* @interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9083
|
-
*/
|
|
9084
|
-
export interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean {
|
|
9085
|
-
/**
|
|
9086
|
-
*
|
|
9087
|
-
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9088
|
-
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9089
|
-
*/
|
|
9090
|
-
'company': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9091
|
-
/**
|
|
9092
|
-
*
|
|
9093
|
-
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9094
|
-
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9095
|
-
*/
|
|
9096
|
-
'config': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9097
|
-
/**
|
|
9098
|
-
*
|
|
9099
|
-
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9100
|
-
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9101
|
-
*/
|
|
9102
|
-
'product': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9103
|
-
/**
|
|
9104
|
-
*
|
|
9105
|
-
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9106
|
-
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9107
|
-
*/
|
|
9108
|
-
'page': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9109
|
-
/**
|
|
9110
|
-
*
|
|
9111
|
-
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9112
|
-
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9113
|
-
*/
|
|
9114
|
-
'navigation': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9115
|
-
/**
|
|
9116
|
-
*
|
|
9117
|
-
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9118
|
-
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9119
|
-
*/
|
|
9120
|
-
'order': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9121
|
-
}
|
|
9122
|
-
/**
|
|
9123
|
-
*
|
|
9124
|
-
* @export
|
|
9125
|
-
* @interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany
|
|
9126
|
-
*/
|
|
9127
|
-
export interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany {
|
|
9128
|
-
/**
|
|
9129
|
-
*
|
|
9130
|
-
* @type {boolean}
|
|
9131
|
-
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany
|
|
9132
|
-
*/
|
|
9133
|
-
'd': boolean;
|
|
9134
|
-
/**
|
|
9135
|
-
*
|
|
9136
|
-
* @type {boolean}
|
|
9137
|
-
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany
|
|
9138
|
-
*/
|
|
9139
|
-
'm': boolean;
|
|
9140
|
-
}
|
|
9141
9575
|
/**
|
|
9142
9576
|
*
|
|
9143
9577
|
* @export
|
|
@@ -10034,14 +10468,14 @@ export declare const CollectionApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10034
10468
|
* @param {string} [search]
|
|
10035
10469
|
* @param {string} [startDate]
|
|
10036
10470
|
* @param {string} [endDate]
|
|
10037
|
-
* @param {
|
|
10471
|
+
* @param {GetCollectionsDateFieldEnum} [dateField]
|
|
10038
10472
|
* @param {OrderEnum} [order]
|
|
10039
10473
|
* @param {string} [sort]
|
|
10040
10474
|
* @param {ContentStatusEnum} [status]
|
|
10041
10475
|
* @param {*} [options] Override http request option.
|
|
10042
10476
|
* @throws {RequiredError}
|
|
10043
10477
|
*/
|
|
10044
|
-
getCollections: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10478
|
+
getCollections: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetCollectionsDateFieldEnum, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10045
10479
|
};
|
|
10046
10480
|
/**
|
|
10047
10481
|
* CollectionApi - functional programming interface
|
|
@@ -10064,14 +10498,14 @@ export declare const CollectionApiFp: (configuration?: Configuration) => {
|
|
|
10064
10498
|
* @param {string} [search]
|
|
10065
10499
|
* @param {string} [startDate]
|
|
10066
10500
|
* @param {string} [endDate]
|
|
10067
|
-
* @param {
|
|
10501
|
+
* @param {GetCollectionsDateFieldEnum} [dateField]
|
|
10068
10502
|
* @param {OrderEnum} [order]
|
|
10069
10503
|
* @param {string} [sort]
|
|
10070
10504
|
* @param {ContentStatusEnum} [status]
|
|
10071
10505
|
* @param {*} [options] Override http request option.
|
|
10072
10506
|
* @throws {RequiredError}
|
|
10073
10507
|
*/
|
|
10074
|
-
getCollections(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10508
|
+
getCollections(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetCollectionsDateFieldEnum, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICollectionsResponse>>;
|
|
10075
10509
|
};
|
|
10076
10510
|
/**
|
|
10077
10511
|
* CollectionApi - factory interface
|
|
@@ -10156,10 +10590,10 @@ export interface CollectionApiGetCollectionsRequest {
|
|
|
10156
10590
|
readonly endDate?: string;
|
|
10157
10591
|
/**
|
|
10158
10592
|
*
|
|
10159
|
-
* @type {
|
|
10593
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
10160
10594
|
* @memberof CollectionApiGetCollections
|
|
10161
10595
|
*/
|
|
10162
|
-
readonly dateField?:
|
|
10596
|
+
readonly dateField?: GetCollectionsDateFieldEnum;
|
|
10163
10597
|
/**
|
|
10164
10598
|
*
|
|
10165
10599
|
* @type {OrderEnum}
|
|
@@ -10203,6 +10637,14 @@ export declare class CollectionApi extends BaseAPI {
|
|
|
10203
10637
|
*/
|
|
10204
10638
|
getCollections(requestParameters: CollectionApiGetCollectionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICollectionsResponse, any>>;
|
|
10205
10639
|
}
|
|
10640
|
+
/**
|
|
10641
|
+
* @export
|
|
10642
|
+
*/
|
|
10643
|
+
export declare const GetCollectionsDateFieldEnum: {
|
|
10644
|
+
readonly CREATED_AT: "createdAt";
|
|
10645
|
+
readonly UPDATED_AT: "updatedAt";
|
|
10646
|
+
};
|
|
10647
|
+
export type GetCollectionsDateFieldEnum = typeof GetCollectionsDateFieldEnum[keyof typeof GetCollectionsDateFieldEnum];
|
|
10206
10648
|
/**
|
|
10207
10649
|
* CompanyApi - axios parameter creator
|
|
10208
10650
|
* @export
|
|
@@ -10353,11 +10795,19 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
10353
10795
|
createOrder: (iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10354
10796
|
/**
|
|
10355
10797
|
*
|
|
10798
|
+
* @param {number} [page]
|
|
10799
|
+
* @param {number} [itemsPerPage]
|
|
10800
|
+
* @param {string} [search]
|
|
10801
|
+
* @param {string} [startDate]
|
|
10802
|
+
* @param {string} [endDate]
|
|
10803
|
+
* @param {GetMyOrdersDateFieldEnum} [dateField]
|
|
10804
|
+
* @param {OrderEnum} [order]
|
|
10805
|
+
* @param {string} [sort]
|
|
10356
10806
|
* @param {OrderStatusEnum} [status]
|
|
10357
10807
|
* @param {*} [options] Override http request option.
|
|
10358
10808
|
* @throws {RequiredError}
|
|
10359
10809
|
*/
|
|
10360
|
-
getMyOrders: (status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10810
|
+
getMyOrders: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetMyOrdersDateFieldEnum, order?: OrderEnum, sort?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10361
10811
|
/**
|
|
10362
10812
|
*
|
|
10363
10813
|
* @param {string} id
|
|
@@ -10373,7 +10823,7 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
10373
10823
|
* @param {string} [search]
|
|
10374
10824
|
* @param {string} [startDate]
|
|
10375
10825
|
* @param {string} [endDate]
|
|
10376
|
-
* @param {
|
|
10826
|
+
* @param {GetOrdersDateFieldEnum} [dateField]
|
|
10377
10827
|
* @param {OrderEnum} [order]
|
|
10378
10828
|
* @param {string} [sort]
|
|
10379
10829
|
* @param {string} [user]
|
|
@@ -10381,7 +10831,7 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
10381
10831
|
* @param {*} [options] Override http request option.
|
|
10382
10832
|
* @throws {RequiredError}
|
|
10383
10833
|
*/
|
|
10384
|
-
getOrders: (company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10834
|
+
getOrders: (company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetOrdersDateFieldEnum, order?: OrderEnum, sort?: string, user?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10385
10835
|
};
|
|
10386
10836
|
/**
|
|
10387
10837
|
* OrderApi - functional programming interface
|
|
@@ -10394,14 +10844,22 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
10394
10844
|
* @param {*} [options] Override http request option.
|
|
10395
10845
|
* @throws {RequiredError}
|
|
10396
10846
|
*/
|
|
10397
|
-
createOrder(iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
10847
|
+
createOrder(iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrderCreateResponse>>;
|
|
10398
10848
|
/**
|
|
10399
10849
|
*
|
|
10850
|
+
* @param {number} [page]
|
|
10851
|
+
* @param {number} [itemsPerPage]
|
|
10852
|
+
* @param {string} [search]
|
|
10853
|
+
* @param {string} [startDate]
|
|
10854
|
+
* @param {string} [endDate]
|
|
10855
|
+
* @param {GetMyOrdersDateFieldEnum} [dateField]
|
|
10856
|
+
* @param {OrderEnum} [order]
|
|
10857
|
+
* @param {string} [sort]
|
|
10400
10858
|
* @param {OrderStatusEnum} [status]
|
|
10401
10859
|
* @param {*} [options] Override http request option.
|
|
10402
10860
|
* @throws {RequiredError}
|
|
10403
10861
|
*/
|
|
10404
|
-
getMyOrders(status?: OrderStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrdersResponse>>;
|
|
10862
|
+
getMyOrders(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetMyOrdersDateFieldEnum, order?: OrderEnum, sort?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrdersResponse>>;
|
|
10405
10863
|
/**
|
|
10406
10864
|
*
|
|
10407
10865
|
* @param {string} id
|
|
@@ -10417,7 +10875,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
10417
10875
|
* @param {string} [search]
|
|
10418
10876
|
* @param {string} [startDate]
|
|
10419
10877
|
* @param {string} [endDate]
|
|
10420
|
-
* @param {
|
|
10878
|
+
* @param {GetOrdersDateFieldEnum} [dateField]
|
|
10421
10879
|
* @param {OrderEnum} [order]
|
|
10422
10880
|
* @param {string} [sort]
|
|
10423
10881
|
* @param {string} [user]
|
|
@@ -10425,7 +10883,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
10425
10883
|
* @param {*} [options] Override http request option.
|
|
10426
10884
|
* @throws {RequiredError}
|
|
10427
10885
|
*/
|
|
10428
|
-
getOrders(company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10886
|
+
getOrders(company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetOrdersDateFieldEnum, order?: OrderEnum, sort?: string, user?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrdersResponse>>;
|
|
10429
10887
|
};
|
|
10430
10888
|
/**
|
|
10431
10889
|
* OrderApi - factory interface
|
|
@@ -10438,7 +10896,7 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
|
|
|
10438
10896
|
* @param {*} [options] Override http request option.
|
|
10439
10897
|
* @throws {RequiredError}
|
|
10440
10898
|
*/
|
|
10441
|
-
createOrder(requestParameters: OrderApiCreateOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
10899
|
+
createOrder(requestParameters: OrderApiCreateOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<IOrderCreateResponse>;
|
|
10442
10900
|
/**
|
|
10443
10901
|
*
|
|
10444
10902
|
* @param {OrderApiGetMyOrdersRequest} requestParameters Request parameters.
|
|
@@ -10480,6 +10938,54 @@ export interface OrderApiCreateOrderRequest {
|
|
|
10480
10938
|
* @interface OrderApiGetMyOrdersRequest
|
|
10481
10939
|
*/
|
|
10482
10940
|
export interface OrderApiGetMyOrdersRequest {
|
|
10941
|
+
/**
|
|
10942
|
+
*
|
|
10943
|
+
* @type {number}
|
|
10944
|
+
* @memberof OrderApiGetMyOrders
|
|
10945
|
+
*/
|
|
10946
|
+
readonly page?: number;
|
|
10947
|
+
/**
|
|
10948
|
+
*
|
|
10949
|
+
* @type {number}
|
|
10950
|
+
* @memberof OrderApiGetMyOrders
|
|
10951
|
+
*/
|
|
10952
|
+
readonly itemsPerPage?: number;
|
|
10953
|
+
/**
|
|
10954
|
+
*
|
|
10955
|
+
* @type {string}
|
|
10956
|
+
* @memberof OrderApiGetMyOrders
|
|
10957
|
+
*/
|
|
10958
|
+
readonly search?: string;
|
|
10959
|
+
/**
|
|
10960
|
+
*
|
|
10961
|
+
* @type {string}
|
|
10962
|
+
* @memberof OrderApiGetMyOrders
|
|
10963
|
+
*/
|
|
10964
|
+
readonly startDate?: string;
|
|
10965
|
+
/**
|
|
10966
|
+
*
|
|
10967
|
+
* @type {string}
|
|
10968
|
+
* @memberof OrderApiGetMyOrders
|
|
10969
|
+
*/
|
|
10970
|
+
readonly endDate?: string;
|
|
10971
|
+
/**
|
|
10972
|
+
*
|
|
10973
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
10974
|
+
* @memberof OrderApiGetMyOrders
|
|
10975
|
+
*/
|
|
10976
|
+
readonly dateField?: GetMyOrdersDateFieldEnum;
|
|
10977
|
+
/**
|
|
10978
|
+
*
|
|
10979
|
+
* @type {OrderEnum}
|
|
10980
|
+
* @memberof OrderApiGetMyOrders
|
|
10981
|
+
*/
|
|
10982
|
+
readonly order?: OrderEnum;
|
|
10983
|
+
/**
|
|
10984
|
+
*
|
|
10985
|
+
* @type {string}
|
|
10986
|
+
* @memberof OrderApiGetMyOrders
|
|
10987
|
+
*/
|
|
10988
|
+
readonly sort?: string;
|
|
10483
10989
|
/**
|
|
10484
10990
|
*
|
|
10485
10991
|
* @type {OrderStatusEnum}
|
|
@@ -10544,10 +11050,10 @@ export interface OrderApiGetOrdersRequest {
|
|
|
10544
11050
|
readonly endDate?: string;
|
|
10545
11051
|
/**
|
|
10546
11052
|
*
|
|
10547
|
-
* @type {
|
|
11053
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
10548
11054
|
* @memberof OrderApiGetOrders
|
|
10549
11055
|
*/
|
|
10550
|
-
readonly dateField?:
|
|
11056
|
+
readonly dateField?: GetOrdersDateFieldEnum;
|
|
10551
11057
|
/**
|
|
10552
11058
|
*
|
|
10553
11059
|
* @type {OrderEnum}
|
|
@@ -10587,7 +11093,7 @@ export declare class OrderApi extends BaseAPI {
|
|
|
10587
11093
|
* @throws {RequiredError}
|
|
10588
11094
|
* @memberof OrderApi
|
|
10589
11095
|
*/
|
|
10590
|
-
createOrder(requestParameters: OrderApiCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11096
|
+
createOrder(requestParameters: OrderApiCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOrderCreateResponse, any>>;
|
|
10591
11097
|
/**
|
|
10592
11098
|
*
|
|
10593
11099
|
* @param {OrderApiGetMyOrdersRequest} requestParameters Request parameters.
|
|
@@ -10613,6 +11119,22 @@ export declare class OrderApi extends BaseAPI {
|
|
|
10613
11119
|
*/
|
|
10614
11120
|
getOrders(requestParameters: OrderApiGetOrdersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOrdersResponse, any>>;
|
|
10615
11121
|
}
|
|
11122
|
+
/**
|
|
11123
|
+
* @export
|
|
11124
|
+
*/
|
|
11125
|
+
export declare const GetMyOrdersDateFieldEnum: {
|
|
11126
|
+
readonly CREATED_AT: "createdAt";
|
|
11127
|
+
readonly UPDATED_AT: "updatedAt";
|
|
11128
|
+
};
|
|
11129
|
+
export type GetMyOrdersDateFieldEnum = typeof GetMyOrdersDateFieldEnum[keyof typeof GetMyOrdersDateFieldEnum];
|
|
11130
|
+
/**
|
|
11131
|
+
* @export
|
|
11132
|
+
*/
|
|
11133
|
+
export declare const GetOrdersDateFieldEnum: {
|
|
11134
|
+
readonly CREATED_AT: "createdAt";
|
|
11135
|
+
readonly UPDATED_AT: "updatedAt";
|
|
11136
|
+
};
|
|
11137
|
+
export type GetOrdersDateFieldEnum = typeof GetOrdersDateFieldEnum[keyof typeof GetOrdersDateFieldEnum];
|
|
10616
11138
|
/**
|
|
10617
11139
|
* PageApi - axios parameter creator
|
|
10618
11140
|
* @export
|
|
@@ -10644,7 +11166,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
10644
11166
|
* @param {string} [search]
|
|
10645
11167
|
* @param {string} [startDate]
|
|
10646
11168
|
* @param {string} [endDate]
|
|
10647
|
-
* @param {
|
|
11169
|
+
* @param {GetPagesDateFieldEnum} [dateField]
|
|
10648
11170
|
* @param {OrderEnum} [order]
|
|
10649
11171
|
* @param {string} [sort]
|
|
10650
11172
|
* @param {string} [companyId]
|
|
@@ -10654,7 +11176,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
10654
11176
|
* @param {*} [options] Override http request option.
|
|
10655
11177
|
* @throws {RequiredError}
|
|
10656
11178
|
*/
|
|
10657
|
-
getPages: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11179
|
+
getPages: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPagesDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10658
11180
|
};
|
|
10659
11181
|
/**
|
|
10660
11182
|
* PageApi - functional programming interface
|
|
@@ -10687,7 +11209,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
10687
11209
|
* @param {string} [search]
|
|
10688
11210
|
* @param {string} [startDate]
|
|
10689
11211
|
* @param {string} [endDate]
|
|
10690
|
-
* @param {
|
|
11212
|
+
* @param {GetPagesDateFieldEnum} [dateField]
|
|
10691
11213
|
* @param {OrderEnum} [order]
|
|
10692
11214
|
* @param {string} [sort]
|
|
10693
11215
|
* @param {string} [companyId]
|
|
@@ -10697,7 +11219,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
10697
11219
|
* @param {*} [options] Override http request option.
|
|
10698
11220
|
* @throws {RequiredError}
|
|
10699
11221
|
*/
|
|
10700
|
-
getPages(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11222
|
+
getPages(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPagesDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPagesResponse>>;
|
|
10701
11223
|
};
|
|
10702
11224
|
/**
|
|
10703
11225
|
* PageApi - factory interface
|
|
@@ -10820,10 +11342,10 @@ export interface PageApiGetPagesRequest {
|
|
|
10820
11342
|
readonly endDate?: string;
|
|
10821
11343
|
/**
|
|
10822
11344
|
*
|
|
10823
|
-
* @type {
|
|
11345
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
10824
11346
|
* @memberof PageApiGetPages
|
|
10825
11347
|
*/
|
|
10826
|
-
readonly dateField?:
|
|
11348
|
+
readonly dateField?: GetPagesDateFieldEnum;
|
|
10827
11349
|
/**
|
|
10828
11350
|
*
|
|
10829
11351
|
* @type {OrderEnum}
|
|
@@ -10893,6 +11415,14 @@ export declare class PageApi extends BaseAPI {
|
|
|
10893
11415
|
*/
|
|
10894
11416
|
getPages(requestParameters?: PageApiGetPagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPagesResponse, any>>;
|
|
10895
11417
|
}
|
|
11418
|
+
/**
|
|
11419
|
+
* @export
|
|
11420
|
+
*/
|
|
11421
|
+
export declare const GetPagesDateFieldEnum: {
|
|
11422
|
+
readonly CREATED_AT: "createdAt";
|
|
11423
|
+
readonly UPDATED_AT: "updatedAt";
|
|
11424
|
+
};
|
|
11425
|
+
export type GetPagesDateFieldEnum = typeof GetPagesDateFieldEnum[keyof typeof GetPagesDateFieldEnum];
|
|
10896
11426
|
/**
|
|
10897
11427
|
* ProductApi - axios parameter creator
|
|
10898
11428
|
* @export
|
|
@@ -10914,7 +11444,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10914
11444
|
* @param {string} [search]
|
|
10915
11445
|
* @param {string} [startDate]
|
|
10916
11446
|
* @param {string} [endDate]
|
|
10917
|
-
* @param {
|
|
11447
|
+
* @param {GetProductsDateFieldEnum} [dateField]
|
|
10918
11448
|
* @param {OrderEnum} [order]
|
|
10919
11449
|
* @param {string} [sort]
|
|
10920
11450
|
* @param {string} [companyId]
|
|
@@ -10926,7 +11456,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10926
11456
|
* @param {*} [options] Override http request option.
|
|
10927
11457
|
* @throws {RequiredError}
|
|
10928
11458
|
*/
|
|
10929
|
-
getProducts: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11459
|
+
getProducts: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, collections?: string, category?: string, brand?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10930
11460
|
/**
|
|
10931
11461
|
*
|
|
10932
11462
|
* @param {string} search
|
|
@@ -10958,7 +11488,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
10958
11488
|
* @param {string} [search]
|
|
10959
11489
|
* @param {string} [startDate]
|
|
10960
11490
|
* @param {string} [endDate]
|
|
10961
|
-
* @param {
|
|
11491
|
+
* @param {GetProductsDateFieldEnum} [dateField]
|
|
10962
11492
|
* @param {OrderEnum} [order]
|
|
10963
11493
|
* @param {string} [sort]
|
|
10964
11494
|
* @param {string} [companyId]
|
|
@@ -10970,7 +11500,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
10970
11500
|
* @param {*} [options] Override http request option.
|
|
10971
11501
|
* @throws {RequiredError}
|
|
10972
11502
|
*/
|
|
10973
|
-
getProducts(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11503
|
+
getProducts(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, collections?: string, category?: string, brand?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductsResponse>>;
|
|
10974
11504
|
/**
|
|
10975
11505
|
*
|
|
10976
11506
|
* @param {string} search
|
|
@@ -11071,10 +11601,10 @@ export interface ProductApiGetProductsRequest {
|
|
|
11071
11601
|
readonly endDate?: string;
|
|
11072
11602
|
/**
|
|
11073
11603
|
*
|
|
11074
|
-
* @type {
|
|
11604
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
11075
11605
|
* @memberof ProductApiGetProducts
|
|
11076
11606
|
*/
|
|
11077
|
-
readonly dateField?:
|
|
11607
|
+
readonly dateField?: GetProductsDateFieldEnum;
|
|
11078
11608
|
/**
|
|
11079
11609
|
*
|
|
11080
11610
|
* @type {OrderEnum}
|
|
@@ -11181,6 +11711,14 @@ export declare class ProductApi extends BaseAPI {
|
|
|
11181
11711
|
*/
|
|
11182
11712
|
searchProducts(requestParameters: ProductApiSearchProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ISearchProductsResponse, any>>;
|
|
11183
11713
|
}
|
|
11714
|
+
/**
|
|
11715
|
+
* @export
|
|
11716
|
+
*/
|
|
11717
|
+
export declare const GetProductsDateFieldEnum: {
|
|
11718
|
+
readonly CREATED_AT: "createdAt";
|
|
11719
|
+
readonly UPDATED_AT: "updatedAt";
|
|
11720
|
+
};
|
|
11721
|
+
export type GetProductsDateFieldEnum = typeof GetProductsDateFieldEnum[keyof typeof GetProductsDateFieldEnum];
|
|
11184
11722
|
/**
|
|
11185
11723
|
* SitemapApi - axios parameter creator
|
|
11186
11724
|
* @export
|