@infisale-client/api 1.2.20 → 1.2.23
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 +789 -177
- package/dist/api/api.js +444 -41
- package/dist/api/api.mjs +441 -38
- 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]: RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean; }}
|
|
1891
1906
|
* @memberof ICompany
|
|
1892
1907
|
*/
|
|
1893
1908
|
'roles': {
|
|
1894
|
-
[key: string]:
|
|
1909
|
+
[key: string]: RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean;
|
|
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]: RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean; }}
|
|
2260
2281
|
* @memberof ICompanyAdminResponse
|
|
2261
2282
|
*/
|
|
2262
2283
|
'roles': {
|
|
2263
|
-
[key: string]:
|
|
2284
|
+
[key: string]: RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean;
|
|
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]: object; }}
|
|
2651
2677
|
* @memberof ICompanyPatchRequest
|
|
2652
2678
|
*/
|
|
2653
2679
|
'roles'?: {
|
|
2654
|
-
[key: string]:
|
|
2680
|
+
[key: string]: object;
|
|
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}
|
|
@@ -4908,7 +5143,7 @@ export interface IOrderCollectionQueryParams {
|
|
|
4908
5143
|
* @type {string}
|
|
4909
5144
|
* @memberof IOrderCollectionQueryParams
|
|
4910
5145
|
*/
|
|
4911
|
-
'company'
|
|
5146
|
+
'company': string;
|
|
4912
5147
|
/**
|
|
4913
5148
|
*
|
|
4914
5149
|
* @type {string}
|
|
@@ -4922,6 +5157,11 @@ 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];
|
|
4925
5165
|
/**
|
|
4926
5166
|
*
|
|
4927
5167
|
* @export
|
|
@@ -5042,7 +5282,7 @@ export interface IOrderResponse {
|
|
|
5042
5282
|
* @type {number}
|
|
5043
5283
|
* @memberof IOrderResponse
|
|
5044
5284
|
*/
|
|
5045
|
-
'number'
|
|
5285
|
+
'number': number;
|
|
5046
5286
|
/**
|
|
5047
5287
|
*
|
|
5048
5288
|
* @type {Array<IOrderResponseProductsInner>}
|
|
@@ -5067,6 +5307,12 @@ export interface IOrderResponse {
|
|
|
5067
5307
|
* @memberof IOrderResponse
|
|
5068
5308
|
*/
|
|
5069
5309
|
'paymentMethod': PaymentMethodEnum;
|
|
5310
|
+
/**
|
|
5311
|
+
*
|
|
5312
|
+
* @type {PaymentGatewayEnum}
|
|
5313
|
+
* @memberof IOrderResponse
|
|
5314
|
+
*/
|
|
5315
|
+
'paymentGateway': PaymentGatewayEnum;
|
|
5070
5316
|
/**
|
|
5071
5317
|
*
|
|
5072
5318
|
* @type {string}
|
|
@@ -5146,24 +5392,36 @@ export interface IOrderResponseProductsInner {
|
|
|
5146
5392
|
* @memberof IOrderResponseProductsInner
|
|
5147
5393
|
*/
|
|
5148
5394
|
'amount': number;
|
|
5395
|
+
/**
|
|
5396
|
+
*
|
|
5397
|
+
* @type {string}
|
|
5398
|
+
* @memberof IOrderResponseProductsInner
|
|
5399
|
+
*/
|
|
5400
|
+
'subVariantId'?: string;
|
|
5401
|
+
/**
|
|
5402
|
+
*
|
|
5403
|
+
* @type {string}
|
|
5404
|
+
* @memberof IOrderResponseProductsInner
|
|
5405
|
+
*/
|
|
5406
|
+
'mainVariantId'?: string;
|
|
5149
5407
|
/**
|
|
5150
5408
|
*
|
|
5151
5409
|
* @type {PartialRecordLanguageEnumString}
|
|
5152
5410
|
* @memberof IOrderResponseProductsInner
|
|
5153
5411
|
*/
|
|
5154
|
-
'subVariantTitle'
|
|
5412
|
+
'subVariantTitle': PartialRecordLanguageEnumString;
|
|
5155
5413
|
/**
|
|
5156
5414
|
*
|
|
5157
5415
|
* @type {PartialRecordLanguageEnumString}
|
|
5158
5416
|
* @memberof IOrderResponseProductsInner
|
|
5159
5417
|
*/
|
|
5160
|
-
'mainVariantTitle'
|
|
5418
|
+
'mainVariantTitle': PartialRecordLanguageEnumString;
|
|
5161
5419
|
/**
|
|
5162
5420
|
*
|
|
5163
5421
|
* @type {PartialRecordLanguageEnumString}
|
|
5164
5422
|
* @memberof IOrderResponseProductsInner
|
|
5165
5423
|
*/
|
|
5166
|
-
'productSlug'
|
|
5424
|
+
'productSlug': PartialRecordLanguageEnumString;
|
|
5167
5425
|
/**
|
|
5168
5426
|
*
|
|
5169
5427
|
* @type {string}
|
|
@@ -5261,7 +5519,7 @@ export interface IPageCollectionQueryParams {
|
|
|
5261
5519
|
* @type {string}
|
|
5262
5520
|
* @memberof IPageCollectionQueryParams
|
|
5263
5521
|
*/
|
|
5264
|
-
'dateField'?:
|
|
5522
|
+
'dateField'?: IPageCollectionQueryParamsDateFieldEnum;
|
|
5265
5523
|
/**
|
|
5266
5524
|
*
|
|
5267
5525
|
* @type {OrderEnum}
|
|
@@ -5299,6 +5557,11 @@ export interface IPageCollectionQueryParams {
|
|
|
5299
5557
|
*/
|
|
5300
5558
|
'status'?: ContentStatusEnum;
|
|
5301
5559
|
}
|
|
5560
|
+
export declare const IPageCollectionQueryParamsDateFieldEnum: {
|
|
5561
|
+
readonly CREATED_AT: "createdAt";
|
|
5562
|
+
readonly UPDATED_AT: "updatedAt";
|
|
5563
|
+
};
|
|
5564
|
+
export type IPageCollectionQueryParamsDateFieldEnum = typeof IPageCollectionQueryParamsDateFieldEnum[keyof typeof IPageCollectionQueryParamsDateFieldEnum];
|
|
5302
5565
|
/**
|
|
5303
5566
|
*
|
|
5304
5567
|
* @export
|
|
@@ -5543,7 +5806,7 @@ export interface IPlanCollectionQueryParams {
|
|
|
5543
5806
|
* @type {string}
|
|
5544
5807
|
* @memberof IPlanCollectionQueryParams
|
|
5545
5808
|
*/
|
|
5546
|
-
'dateField'?:
|
|
5809
|
+
'dateField'?: IPlanCollectionQueryParamsDateFieldEnum;
|
|
5547
5810
|
/**
|
|
5548
5811
|
*
|
|
5549
5812
|
* @type {OrderEnum}
|
|
@@ -5569,6 +5832,11 @@ export interface IPlanCollectionQueryParams {
|
|
|
5569
5832
|
*/
|
|
5570
5833
|
'type'?: PlanTypeEnum;
|
|
5571
5834
|
}
|
|
5835
|
+
export declare const IPlanCollectionQueryParamsDateFieldEnum: {
|
|
5836
|
+
readonly CREATED_AT: "createdAt";
|
|
5837
|
+
readonly UPDATED_AT: "updatedAt";
|
|
5838
|
+
};
|
|
5839
|
+
export type IPlanCollectionQueryParamsDateFieldEnum = typeof IPlanCollectionQueryParamsDateFieldEnum[keyof typeof IPlanCollectionQueryParamsDateFieldEnum];
|
|
5572
5840
|
/**
|
|
5573
5841
|
*
|
|
5574
5842
|
* @export
|
|
@@ -5850,7 +6118,7 @@ export interface IProductCollectionQueryParams {
|
|
|
5850
6118
|
* @type {string}
|
|
5851
6119
|
* @memberof IProductCollectionQueryParams
|
|
5852
6120
|
*/
|
|
5853
|
-
'dateField'?:
|
|
6121
|
+
'dateField'?: IProductCollectionQueryParamsDateFieldEnum;
|
|
5854
6122
|
/**
|
|
5855
6123
|
*
|
|
5856
6124
|
* @type {OrderEnum}
|
|
@@ -5900,6 +6168,11 @@ export interface IProductCollectionQueryParams {
|
|
|
5900
6168
|
*/
|
|
5901
6169
|
'status'?: ContentStatusEnum;
|
|
5902
6170
|
}
|
|
6171
|
+
export declare const IProductCollectionQueryParamsDateFieldEnum: {
|
|
6172
|
+
readonly CREATED_AT: "createdAt";
|
|
6173
|
+
readonly UPDATED_AT: "updatedAt";
|
|
6174
|
+
};
|
|
6175
|
+
export type IProductCollectionQueryParamsDateFieldEnum = typeof IProductCollectionQueryParamsDateFieldEnum[keyof typeof IProductCollectionQueryParamsDateFieldEnum];
|
|
5903
6176
|
/**
|
|
5904
6177
|
*
|
|
5905
6178
|
* @export
|
|
@@ -7266,7 +7539,7 @@ export interface IUserCollectionQueryParams {
|
|
|
7266
7539
|
* @type {string}
|
|
7267
7540
|
* @memberof IUserCollectionQueryParams
|
|
7268
7541
|
*/
|
|
7269
|
-
'dateField'?:
|
|
7542
|
+
'dateField'?: IUserCollectionQueryParamsDateFieldEnum;
|
|
7270
7543
|
/**
|
|
7271
7544
|
*
|
|
7272
7545
|
* @type {OrderEnum}
|
|
@@ -7286,6 +7559,11 @@ export interface IUserCollectionQueryParams {
|
|
|
7286
7559
|
*/
|
|
7287
7560
|
'status'?: UserStatusEnum;
|
|
7288
7561
|
}
|
|
7562
|
+
export declare const IUserCollectionQueryParamsDateFieldEnum: {
|
|
7563
|
+
readonly CREATED_AT: "createdAt";
|
|
7564
|
+
readonly UPDATED_AT: "updatedAt";
|
|
7565
|
+
};
|
|
7566
|
+
export type IUserCollectionQueryParamsDateFieldEnum = typeof IUserCollectionQueryParamsDateFieldEnum[keyof typeof IUserCollectionQueryParamsDateFieldEnum];
|
|
7289
7567
|
/**
|
|
7290
7568
|
*
|
|
7291
7569
|
* @export
|
|
@@ -7621,6 +7899,7 @@ export declare const OrderStatusEnum: {
|
|
|
7621
7899
|
readonly READY_TO_SHIP: "ready_to_ship";
|
|
7622
7900
|
readonly SHIPPED: "shipped";
|
|
7623
7901
|
readonly COMPLETED: "completed";
|
|
7902
|
+
readonly FAILED: "failed";
|
|
7624
7903
|
};
|
|
7625
7904
|
export type OrderStatusEnum = typeof OrderStatusEnum[keyof typeof OrderStatusEnum];
|
|
7626
7905
|
/**
|
|
@@ -7712,6 +7991,15 @@ export interface PartialRecordLanguageEnumString {
|
|
|
7712
7991
|
*/
|
|
7713
7992
|
'de'?: string;
|
|
7714
7993
|
}
|
|
7994
|
+
/**
|
|
7995
|
+
*
|
|
7996
|
+
* @export
|
|
7997
|
+
* @enum {string}
|
|
7998
|
+
*/
|
|
7999
|
+
export declare const PaymentGatewayEnum: {
|
|
8000
|
+
readonly IYZICO: "iyzico";
|
|
8001
|
+
};
|
|
8002
|
+
export type PaymentGatewayEnum = typeof PaymentGatewayEnum[keyof typeof PaymentGatewayEnum];
|
|
7715
8003
|
/**
|
|
7716
8004
|
*
|
|
7717
8005
|
* @export
|
|
@@ -8249,11 +8537,11 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles {
|
|
|
8249
8537
|
'name': string;
|
|
8250
8538
|
/**
|
|
8251
8539
|
*
|
|
8252
|
-
* @type {{ [key: string]:
|
|
8540
|
+
* @type {{ [key: string]: object; }}
|
|
8253
8541
|
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
8254
8542
|
*/
|
|
8255
8543
|
'roles': {
|
|
8256
|
-
[key: string]:
|
|
8544
|
+
[key: string]: object;
|
|
8257
8545
|
};
|
|
8258
8546
|
/**
|
|
8259
8547
|
*
|
|
@@ -8286,62 +8574,6 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles {
|
|
|
8286
8574
|
*/
|
|
8287
8575
|
'domains': Array<string>;
|
|
8288
8576
|
}
|
|
8289
|
-
/**
|
|
8290
|
-
*
|
|
8291
|
-
* @export
|
|
8292
|
-
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8293
|
-
*/
|
|
8294
|
-
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue {
|
|
8295
|
-
/**
|
|
8296
|
-
*
|
|
8297
|
-
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
|
|
8298
|
-
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8299
|
-
*/
|
|
8300
|
-
'config': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
|
|
8301
|
-
/**
|
|
8302
|
-
*
|
|
8303
|
-
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
|
|
8304
|
-
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8305
|
-
*/
|
|
8306
|
-
'navigation': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
|
|
8307
|
-
/**
|
|
8308
|
-
*
|
|
8309
|
-
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
|
|
8310
|
-
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8311
|
-
*/
|
|
8312
|
-
'company': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
|
|
8313
|
-
/**
|
|
8314
|
-
*
|
|
8315
|
-
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
|
|
8316
|
-
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8317
|
-
*/
|
|
8318
|
-
'page': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
|
|
8319
|
-
/**
|
|
8320
|
-
*
|
|
8321
|
-
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig}
|
|
8322
|
-
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
8323
|
-
*/
|
|
8324
|
-
'product': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig;
|
|
8325
|
-
}
|
|
8326
|
-
/**
|
|
8327
|
-
*
|
|
8328
|
-
* @export
|
|
8329
|
-
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig
|
|
8330
|
-
*/
|
|
8331
|
-
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig {
|
|
8332
|
-
/**
|
|
8333
|
-
*
|
|
8334
|
-
* @type {boolean}
|
|
8335
|
-
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig
|
|
8336
|
-
*/
|
|
8337
|
-
'd': boolean;
|
|
8338
|
-
/**
|
|
8339
|
-
*
|
|
8340
|
-
* @type {boolean}
|
|
8341
|
-
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueConfig
|
|
8342
|
-
*/
|
|
8343
|
-
'm': boolean;
|
|
8344
|
-
}
|
|
8345
8577
|
/**
|
|
8346
8578
|
*
|
|
8347
8579
|
* @export
|
|
@@ -9119,6 +9351,68 @@ export interface RecordCurrencyEnumNumber {
|
|
|
9119
9351
|
*/
|
|
9120
9352
|
'jpy': number;
|
|
9121
9353
|
}
|
|
9354
|
+
/**
|
|
9355
|
+
* Construct a type with a set of properties K of type T
|
|
9356
|
+
* @export
|
|
9357
|
+
* @interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9358
|
+
*/
|
|
9359
|
+
export interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean {
|
|
9360
|
+
/**
|
|
9361
|
+
*
|
|
9362
|
+
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9363
|
+
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9364
|
+
*/
|
|
9365
|
+
'company': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9366
|
+
/**
|
|
9367
|
+
*
|
|
9368
|
+
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9369
|
+
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9370
|
+
*/
|
|
9371
|
+
'config': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9372
|
+
/**
|
|
9373
|
+
*
|
|
9374
|
+
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9375
|
+
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9376
|
+
*/
|
|
9377
|
+
'product': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9378
|
+
/**
|
|
9379
|
+
*
|
|
9380
|
+
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9381
|
+
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9382
|
+
*/
|
|
9383
|
+
'page': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9384
|
+
/**
|
|
9385
|
+
*
|
|
9386
|
+
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9387
|
+
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9388
|
+
*/
|
|
9389
|
+
'navigation': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9390
|
+
/**
|
|
9391
|
+
*
|
|
9392
|
+
* @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
|
|
9393
|
+
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
|
|
9394
|
+
*/
|
|
9395
|
+
'order': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
|
|
9396
|
+
}
|
|
9397
|
+
/**
|
|
9398
|
+
*
|
|
9399
|
+
* @export
|
|
9400
|
+
* @interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany
|
|
9401
|
+
*/
|
|
9402
|
+
export interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany {
|
|
9403
|
+
/**
|
|
9404
|
+
*
|
|
9405
|
+
* @type {boolean}
|
|
9406
|
+
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany
|
|
9407
|
+
*/
|
|
9408
|
+
'd': boolean;
|
|
9409
|
+
/**
|
|
9410
|
+
*
|
|
9411
|
+
* @type {boolean}
|
|
9412
|
+
* @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany
|
|
9413
|
+
*/
|
|
9414
|
+
'm': boolean;
|
|
9415
|
+
}
|
|
9122
9416
|
/**
|
|
9123
9417
|
*
|
|
9124
9418
|
* @export
|
|
@@ -10095,7 +10389,7 @@ export declare const BrandApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
10095
10389
|
* @param {string} [search]
|
|
10096
10390
|
* @param {string} [startDate]
|
|
10097
10391
|
* @param {string} [endDate]
|
|
10098
|
-
* @param {
|
|
10392
|
+
* @param {GetBrandsDateFieldEnum} [dateField]
|
|
10099
10393
|
* @param {OrderEnum} [order]
|
|
10100
10394
|
* @param {string} [sort]
|
|
10101
10395
|
* @param {string} [companyId]
|
|
@@ -10104,7 +10398,7 @@ export declare const BrandApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
10104
10398
|
* @param {*} [options] Override http request option.
|
|
10105
10399
|
* @throws {RequiredError}
|
|
10106
10400
|
*/
|
|
10107
|
-
getBrands: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10401
|
+
getBrands: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetBrandsDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10108
10402
|
/**
|
|
10109
10403
|
*
|
|
10110
10404
|
* @param {string} id
|
|
@@ -10154,7 +10448,7 @@ export declare const BrandApiFp: (configuration?: Configuration) => {
|
|
|
10154
10448
|
* @param {string} [search]
|
|
10155
10449
|
* @param {string} [startDate]
|
|
10156
10450
|
* @param {string} [endDate]
|
|
10157
|
-
* @param {
|
|
10451
|
+
* @param {GetBrandsDateFieldEnum} [dateField]
|
|
10158
10452
|
* @param {OrderEnum} [order]
|
|
10159
10453
|
* @param {string} [sort]
|
|
10160
10454
|
* @param {string} [companyId]
|
|
@@ -10163,7 +10457,7 @@ export declare const BrandApiFp: (configuration?: Configuration) => {
|
|
|
10163
10457
|
* @param {*} [options] Override http request option.
|
|
10164
10458
|
* @throws {RequiredError}
|
|
10165
10459
|
*/
|
|
10166
|
-
getBrands(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10460
|
+
getBrands(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetBrandsDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IBrandsResponse>>;
|
|
10167
10461
|
/**
|
|
10168
10462
|
*
|
|
10169
10463
|
* @param {string} id
|
|
@@ -10311,10 +10605,10 @@ export interface BrandApiGetBrandsRequest {
|
|
|
10311
10605
|
readonly endDate?: string;
|
|
10312
10606
|
/**
|
|
10313
10607
|
*
|
|
10314
|
-
* @type {
|
|
10608
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
10315
10609
|
* @memberof BrandApiGetBrands
|
|
10316
10610
|
*/
|
|
10317
|
-
readonly dateField?:
|
|
10611
|
+
readonly dateField?: GetBrandsDateFieldEnum;
|
|
10318
10612
|
/**
|
|
10319
10613
|
*
|
|
10320
10614
|
* @type {OrderEnum}
|
|
@@ -10421,6 +10715,14 @@ export declare class BrandApi extends BaseAPI {
|
|
|
10421
10715
|
*/
|
|
10422
10716
|
updateBrand(requestParameters: BrandApiUpdateBrandRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IBrandResponse, any>>;
|
|
10423
10717
|
}
|
|
10718
|
+
/**
|
|
10719
|
+
* @export
|
|
10720
|
+
*/
|
|
10721
|
+
export declare const GetBrandsDateFieldEnum: {
|
|
10722
|
+
readonly CREATED_AT: "createdAt";
|
|
10723
|
+
readonly UPDATED_AT: "updatedAt";
|
|
10724
|
+
};
|
|
10725
|
+
export type GetBrandsDateFieldEnum = typeof GetBrandsDateFieldEnum[keyof typeof GetBrandsDateFieldEnum];
|
|
10424
10726
|
/**
|
|
10425
10727
|
* CategoryApi - axios parameter creator
|
|
10426
10728
|
* @export
|
|
@@ -10454,7 +10756,7 @@ export declare const CategoryApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10454
10756
|
* @param {string} [search]
|
|
10455
10757
|
* @param {string} [startDate]
|
|
10456
10758
|
* @param {string} [endDate]
|
|
10457
|
-
* @param {
|
|
10759
|
+
* @param {GetCategoriesDateFieldEnum} [dateField]
|
|
10458
10760
|
* @param {OrderEnum} [order]
|
|
10459
10761
|
* @param {string} [sort]
|
|
10460
10762
|
* @param {string} [companyId]
|
|
@@ -10463,7 +10765,7 @@ export declare const CategoryApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10463
10765
|
* @param {*} [options] Override http request option.
|
|
10464
10766
|
* @throws {RequiredError}
|
|
10465
10767
|
*/
|
|
10466
|
-
getCategories: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10768
|
+
getCategories: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetCategoriesDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10467
10769
|
/**
|
|
10468
10770
|
*
|
|
10469
10771
|
* @param {string} companyId
|
|
@@ -10520,7 +10822,7 @@ export declare const CategoryApiFp: (configuration?: Configuration) => {
|
|
|
10520
10822
|
* @param {string} [search]
|
|
10521
10823
|
* @param {string} [startDate]
|
|
10522
10824
|
* @param {string} [endDate]
|
|
10523
|
-
* @param {
|
|
10825
|
+
* @param {GetCategoriesDateFieldEnum} [dateField]
|
|
10524
10826
|
* @param {OrderEnum} [order]
|
|
10525
10827
|
* @param {string} [sort]
|
|
10526
10828
|
* @param {string} [companyId]
|
|
@@ -10529,7 +10831,7 @@ export declare const CategoryApiFp: (configuration?: Configuration) => {
|
|
|
10529
10831
|
* @param {*} [options] Override http request option.
|
|
10530
10832
|
* @throws {RequiredError}
|
|
10531
10833
|
*/
|
|
10532
|
-
getCategories(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10834
|
+
getCategories(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetCategoriesDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICategoriesResponse>>;
|
|
10533
10835
|
/**
|
|
10534
10836
|
*
|
|
10535
10837
|
* @param {string} companyId
|
|
@@ -10685,10 +10987,10 @@ export interface CategoryApiGetCategoriesRequest {
|
|
|
10685
10987
|
readonly endDate?: string;
|
|
10686
10988
|
/**
|
|
10687
10989
|
*
|
|
10688
|
-
* @type {
|
|
10990
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
10689
10991
|
* @memberof CategoryApiGetCategories
|
|
10690
10992
|
*/
|
|
10691
|
-
readonly dateField?:
|
|
10993
|
+
readonly dateField?: GetCategoriesDateFieldEnum;
|
|
10692
10994
|
/**
|
|
10693
10995
|
*
|
|
10694
10996
|
* @type {OrderEnum}
|
|
@@ -10829,6 +11131,14 @@ export declare class CategoryApi extends BaseAPI {
|
|
|
10829
11131
|
*/
|
|
10830
11132
|
updateCategory(requestParameters: CategoryApiUpdateCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICategoryResponse, any>>;
|
|
10831
11133
|
}
|
|
11134
|
+
/**
|
|
11135
|
+
* @export
|
|
11136
|
+
*/
|
|
11137
|
+
export declare const GetCategoriesDateFieldEnum: {
|
|
11138
|
+
readonly CREATED_AT: "createdAt";
|
|
11139
|
+
readonly UPDATED_AT: "updatedAt";
|
|
11140
|
+
};
|
|
11141
|
+
export type GetCategoriesDateFieldEnum = typeof GetCategoriesDateFieldEnum[keyof typeof GetCategoriesDateFieldEnum];
|
|
10832
11142
|
/**
|
|
10833
11143
|
* CollectionApi - axios parameter creator
|
|
10834
11144
|
* @export
|
|
@@ -10880,14 +11190,14 @@ export declare const CollectionApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10880
11190
|
* @param {string} [search]
|
|
10881
11191
|
* @param {string} [startDate]
|
|
10882
11192
|
* @param {string} [endDate]
|
|
10883
|
-
* @param {
|
|
11193
|
+
* @param {GetCollectionsDateFieldEnum} [dateField]
|
|
10884
11194
|
* @param {OrderEnum} [order]
|
|
10885
11195
|
* @param {string} [sort]
|
|
10886
11196
|
* @param {ContentStatusEnum} [status]
|
|
10887
11197
|
* @param {*} [options] Override http request option.
|
|
10888
11198
|
* @throws {RequiredError}
|
|
10889
11199
|
*/
|
|
10890
|
-
getCollections: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11200
|
+
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>;
|
|
10891
11201
|
/**
|
|
10892
11202
|
*
|
|
10893
11203
|
* @param {string} companyId
|
|
@@ -10956,14 +11266,14 @@ export declare const CollectionApiFp: (configuration?: Configuration) => {
|
|
|
10956
11266
|
* @param {string} [search]
|
|
10957
11267
|
* @param {string} [startDate]
|
|
10958
11268
|
* @param {string} [endDate]
|
|
10959
|
-
* @param {
|
|
11269
|
+
* @param {GetCollectionsDateFieldEnum} [dateField]
|
|
10960
11270
|
* @param {OrderEnum} [order]
|
|
10961
11271
|
* @param {string} [sort]
|
|
10962
11272
|
* @param {ContentStatusEnum} [status]
|
|
10963
11273
|
* @param {*} [options] Override http request option.
|
|
10964
11274
|
* @throws {RequiredError}
|
|
10965
11275
|
*/
|
|
10966
|
-
getCollections(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11276
|
+
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>>;
|
|
10967
11277
|
/**
|
|
10968
11278
|
*
|
|
10969
11279
|
* @param {string} companyId
|
|
@@ -11170,10 +11480,10 @@ export interface CollectionApiGetCollectionsRequest {
|
|
|
11170
11480
|
readonly endDate?: string;
|
|
11171
11481
|
/**
|
|
11172
11482
|
*
|
|
11173
|
-
* @type {
|
|
11483
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
11174
11484
|
* @memberof CollectionApiGetCollections
|
|
11175
11485
|
*/
|
|
11176
|
-
readonly dateField?:
|
|
11486
|
+
readonly dateField?: GetCollectionsDateFieldEnum;
|
|
11177
11487
|
/**
|
|
11178
11488
|
*
|
|
11179
11489
|
* @type {OrderEnum}
|
|
@@ -11303,6 +11613,14 @@ export declare class CollectionApi extends BaseAPI {
|
|
|
11303
11613
|
*/
|
|
11304
11614
|
updateCollection(requestParameters: CollectionApiUpdateCollectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICollectionResponse, any>>;
|
|
11305
11615
|
}
|
|
11616
|
+
/**
|
|
11617
|
+
* @export
|
|
11618
|
+
*/
|
|
11619
|
+
export declare const GetCollectionsDateFieldEnum: {
|
|
11620
|
+
readonly CREATED_AT: "createdAt";
|
|
11621
|
+
readonly UPDATED_AT: "updatedAt";
|
|
11622
|
+
};
|
|
11623
|
+
export type GetCollectionsDateFieldEnum = typeof GetCollectionsDateFieldEnum[keyof typeof GetCollectionsDateFieldEnum];
|
|
11306
11624
|
/**
|
|
11307
11625
|
* CompanyApi - axios parameter creator
|
|
11308
11626
|
* @export
|
|
@@ -11368,7 +11686,7 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
11368
11686
|
* @param {string} [search]
|
|
11369
11687
|
* @param {string} [startDate]
|
|
11370
11688
|
* @param {string} [endDate]
|
|
11371
|
-
* @param {
|
|
11689
|
+
* @param {GetCompaniesDateFieldEnum} [dateField]
|
|
11372
11690
|
* @param {OrderEnum} [order]
|
|
11373
11691
|
* @param {string} [sort]
|
|
11374
11692
|
* @param {string} [owner]
|
|
@@ -11378,7 +11696,7 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
11378
11696
|
* @param {*} [options] Override http request option.
|
|
11379
11697
|
* @throws {RequiredError}
|
|
11380
11698
|
*/
|
|
11381
|
-
getCompanies: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11699
|
+
getCompanies: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetCompaniesDateFieldEnum, order?: OrderEnum, sort?: string, owner?: string, type?: string, plan?: PlanTypeEnum, status?: CompanyStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11382
11700
|
/**
|
|
11383
11701
|
*
|
|
11384
11702
|
* @param {string} domain
|
|
@@ -11401,14 +11719,21 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
11401
11719
|
* @param {string} [search]
|
|
11402
11720
|
* @param {string} [startDate]
|
|
11403
11721
|
* @param {string} [endDate]
|
|
11404
|
-
* @param {
|
|
11722
|
+
* @param {GetCompanyCustomersDateFieldEnum} [dateField]
|
|
11405
11723
|
* @param {OrderEnum} [order]
|
|
11406
11724
|
* @param {string} [sort]
|
|
11407
11725
|
* @param {CompanyUserStatusEnum} [status]
|
|
11408
11726
|
* @param {*} [options] Override http request option.
|
|
11409
11727
|
* @throws {RequiredError}
|
|
11410
11728
|
*/
|
|
11411
|
-
getCompanyCustomers: (id: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11729
|
+
getCompanyCustomers: (id: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetCompanyCustomersDateFieldEnum, order?: OrderEnum, sort?: string, status?: CompanyUserStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11730
|
+
/**
|
|
11731
|
+
*
|
|
11732
|
+
* @param {string} id
|
|
11733
|
+
* @param {*} [options] Override http request option.
|
|
11734
|
+
* @throws {RequiredError}
|
|
11735
|
+
*/
|
|
11736
|
+
getCompanyPaymentGateways: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11412
11737
|
/**
|
|
11413
11738
|
*
|
|
11414
11739
|
* @param {string} id
|
|
@@ -11464,6 +11789,14 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
11464
11789
|
* @throws {RequiredError}
|
|
11465
11790
|
*/
|
|
11466
11791
|
updateCompanyNavigations: (id: string, iCompanyUpdateNavigationRequest: ICompanyUpdateNavigationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11792
|
+
/**
|
|
11793
|
+
*
|
|
11794
|
+
* @param {string} id
|
|
11795
|
+
* @param {ICompanyUpdatePaymentGatewaysRequest} iCompanyUpdatePaymentGatewaysRequest
|
|
11796
|
+
* @param {*} [options] Override http request option.
|
|
11797
|
+
* @throws {RequiredError}
|
|
11798
|
+
*/
|
|
11799
|
+
updateCompanyPaymentGateways: (id: string, iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11467
11800
|
/**
|
|
11468
11801
|
*
|
|
11469
11802
|
* @param {string} id
|
|
@@ -11547,7 +11880,7 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
11547
11880
|
* @param {string} [search]
|
|
11548
11881
|
* @param {string} [startDate]
|
|
11549
11882
|
* @param {string} [endDate]
|
|
11550
|
-
* @param {
|
|
11883
|
+
* @param {GetCompaniesDateFieldEnum} [dateField]
|
|
11551
11884
|
* @param {OrderEnum} [order]
|
|
11552
11885
|
* @param {string} [sort]
|
|
11553
11886
|
* @param {string} [owner]
|
|
@@ -11557,7 +11890,7 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
11557
11890
|
* @param {*} [options] Override http request option.
|
|
11558
11891
|
* @throws {RequiredError}
|
|
11559
11892
|
*/
|
|
11560
|
-
getCompanies(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11893
|
+
getCompanies(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetCompaniesDateFieldEnum, order?: OrderEnum, sort?: string, owner?: string, type?: string, plan?: PlanTypeEnum, status?: CompanyStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompaniesResponse>>;
|
|
11561
11894
|
/**
|
|
11562
11895
|
*
|
|
11563
11896
|
* @param {string} domain
|
|
@@ -11580,14 +11913,21 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
11580
11913
|
* @param {string} [search]
|
|
11581
11914
|
* @param {string} [startDate]
|
|
11582
11915
|
* @param {string} [endDate]
|
|
11583
|
-
* @param {
|
|
11916
|
+
* @param {GetCompanyCustomersDateFieldEnum} [dateField]
|
|
11584
11917
|
* @param {OrderEnum} [order]
|
|
11585
11918
|
* @param {string} [sort]
|
|
11586
11919
|
* @param {CompanyUserStatusEnum} [status]
|
|
11587
11920
|
* @param {*} [options] Override http request option.
|
|
11588
11921
|
* @throws {RequiredError}
|
|
11589
11922
|
*/
|
|
11590
|
-
getCompanyCustomers(id: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11923
|
+
getCompanyCustomers(id: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetCompanyCustomersDateFieldEnum, order?: OrderEnum, sort?: string, status?: CompanyUserStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUsersResponse>>;
|
|
11924
|
+
/**
|
|
11925
|
+
*
|
|
11926
|
+
* @param {string} id
|
|
11927
|
+
* @param {*} [options] Override http request option.
|
|
11928
|
+
* @throws {RequiredError}
|
|
11929
|
+
*/
|
|
11930
|
+
getCompanyPaymentGateways(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyPaymentGatewaysResponse>>;
|
|
11591
11931
|
/**
|
|
11592
11932
|
*
|
|
11593
11933
|
* @param {string} id
|
|
@@ -11643,6 +11983,14 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
11643
11983
|
* @throws {RequiredError}
|
|
11644
11984
|
*/
|
|
11645
11985
|
updateCompanyNavigations(id: string, iCompanyUpdateNavigationRequest: ICompanyUpdateNavigationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyResponse>>;
|
|
11986
|
+
/**
|
|
11987
|
+
*
|
|
11988
|
+
* @param {string} id
|
|
11989
|
+
* @param {ICompanyUpdatePaymentGatewaysRequest} iCompanyUpdatePaymentGatewaysRequest
|
|
11990
|
+
* @param {*} [options] Override http request option.
|
|
11991
|
+
* @throws {RequiredError}
|
|
11992
|
+
*/
|
|
11993
|
+
updateCompanyPaymentGateways(id: string, iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11646
11994
|
/**
|
|
11647
11995
|
*
|
|
11648
11996
|
* @param {string} id
|
|
@@ -11743,6 +12091,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
11743
12091
|
* @throws {RequiredError}
|
|
11744
12092
|
*/
|
|
11745
12093
|
getCompanyCustomers(requestParameters: CompanyApiGetCompanyCustomersRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUsersResponse>;
|
|
12094
|
+
/**
|
|
12095
|
+
*
|
|
12096
|
+
* @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
12097
|
+
* @param {*} [options] Override http request option.
|
|
12098
|
+
* @throws {RequiredError}
|
|
12099
|
+
*/
|
|
12100
|
+
getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyPaymentGatewaysResponse>;
|
|
11746
12101
|
/**
|
|
11747
12102
|
*
|
|
11748
12103
|
* @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
|
|
@@ -11792,6 +12147,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
11792
12147
|
* @throws {RequiredError}
|
|
11793
12148
|
*/
|
|
11794
12149
|
updateCompanyNavigations(requestParameters: CompanyApiUpdateCompanyNavigationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyResponse>;
|
|
12150
|
+
/**
|
|
12151
|
+
*
|
|
12152
|
+
* @param {CompanyApiUpdateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
12153
|
+
* @param {*} [options] Override http request option.
|
|
12154
|
+
* @throws {RequiredError}
|
|
12155
|
+
*/
|
|
12156
|
+
updateCompanyPaymentGateways(requestParameters: CompanyApiUpdateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11795
12157
|
/**
|
|
11796
12158
|
*
|
|
11797
12159
|
* @param {CompanyApiUpdatePrimaryDomainRequest} requestParameters Request parameters.
|
|
@@ -11960,10 +12322,10 @@ export interface CompanyApiGetCompaniesRequest {
|
|
|
11960
12322
|
readonly endDate?: string;
|
|
11961
12323
|
/**
|
|
11962
12324
|
*
|
|
11963
|
-
* @type {
|
|
12325
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
11964
12326
|
* @memberof CompanyApiGetCompanies
|
|
11965
12327
|
*/
|
|
11966
|
-
readonly dateField?:
|
|
12328
|
+
readonly dateField?: GetCompaniesDateFieldEnum;
|
|
11967
12329
|
/**
|
|
11968
12330
|
*
|
|
11969
12331
|
* @type {OrderEnum}
|
|
@@ -12071,10 +12433,10 @@ export interface CompanyApiGetCompanyCustomersRequest {
|
|
|
12071
12433
|
readonly endDate?: string;
|
|
12072
12434
|
/**
|
|
12073
12435
|
*
|
|
12074
|
-
* @type {
|
|
12436
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
12075
12437
|
* @memberof CompanyApiGetCompanyCustomers
|
|
12076
12438
|
*/
|
|
12077
|
-
readonly dateField?:
|
|
12439
|
+
readonly dateField?: GetCompanyCustomersDateFieldEnum;
|
|
12078
12440
|
/**
|
|
12079
12441
|
*
|
|
12080
12442
|
* @type {OrderEnum}
|
|
@@ -12094,6 +12456,19 @@ export interface CompanyApiGetCompanyCustomersRequest {
|
|
|
12094
12456
|
*/
|
|
12095
12457
|
readonly status?: CompanyUserStatusEnum;
|
|
12096
12458
|
}
|
|
12459
|
+
/**
|
|
12460
|
+
* Request parameters for getCompanyPaymentGateways operation in CompanyApi.
|
|
12461
|
+
* @export
|
|
12462
|
+
* @interface CompanyApiGetCompanyPaymentGatewaysRequest
|
|
12463
|
+
*/
|
|
12464
|
+
export interface CompanyApiGetCompanyPaymentGatewaysRequest {
|
|
12465
|
+
/**
|
|
12466
|
+
*
|
|
12467
|
+
* @type {string}
|
|
12468
|
+
* @memberof CompanyApiGetCompanyPaymentGateways
|
|
12469
|
+
*/
|
|
12470
|
+
readonly id: string;
|
|
12471
|
+
}
|
|
12097
12472
|
/**
|
|
12098
12473
|
* Request parameters for getCompanyUsers operation in CompanyApi.
|
|
12099
12474
|
* @export
|
|
@@ -12221,6 +12596,25 @@ export interface CompanyApiUpdateCompanyNavigationsRequest {
|
|
|
12221
12596
|
*/
|
|
12222
12597
|
readonly iCompanyUpdateNavigationRequest: ICompanyUpdateNavigationRequest;
|
|
12223
12598
|
}
|
|
12599
|
+
/**
|
|
12600
|
+
* Request parameters for updateCompanyPaymentGateways operation in CompanyApi.
|
|
12601
|
+
* @export
|
|
12602
|
+
* @interface CompanyApiUpdateCompanyPaymentGatewaysRequest
|
|
12603
|
+
*/
|
|
12604
|
+
export interface CompanyApiUpdateCompanyPaymentGatewaysRequest {
|
|
12605
|
+
/**
|
|
12606
|
+
*
|
|
12607
|
+
* @type {string}
|
|
12608
|
+
* @memberof CompanyApiUpdateCompanyPaymentGateways
|
|
12609
|
+
*/
|
|
12610
|
+
readonly id: string;
|
|
12611
|
+
/**
|
|
12612
|
+
*
|
|
12613
|
+
* @type {ICompanyUpdatePaymentGatewaysRequest}
|
|
12614
|
+
* @memberof CompanyApiUpdateCompanyPaymentGateways
|
|
12615
|
+
*/
|
|
12616
|
+
readonly iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest;
|
|
12617
|
+
}
|
|
12224
12618
|
/**
|
|
12225
12619
|
* Request parameters for updatePrimaryDomain operation in CompanyApi.
|
|
12226
12620
|
* @export
|
|
@@ -12360,6 +12754,14 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
12360
12754
|
* @memberof CompanyApi
|
|
12361
12755
|
*/
|
|
12362
12756
|
getCompanyCustomers(requestParameters: CompanyApiGetCompanyCustomersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUsersResponse, any>>;
|
|
12757
|
+
/**
|
|
12758
|
+
*
|
|
12759
|
+
* @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
12760
|
+
* @param {*} [options] Override http request option.
|
|
12761
|
+
* @throws {RequiredError}
|
|
12762
|
+
* @memberof CompanyApi
|
|
12763
|
+
*/
|
|
12764
|
+
getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyPaymentGatewaysResponse, any>>;
|
|
12363
12765
|
/**
|
|
12364
12766
|
*
|
|
12365
12767
|
* @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
|
|
@@ -12416,6 +12818,14 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
12416
12818
|
* @memberof CompanyApi
|
|
12417
12819
|
*/
|
|
12418
12820
|
updateCompanyNavigations(requestParameters: CompanyApiUpdateCompanyNavigationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyResponse, any>>;
|
|
12821
|
+
/**
|
|
12822
|
+
*
|
|
12823
|
+
* @param {CompanyApiUpdateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
12824
|
+
* @param {*} [options] Override http request option.
|
|
12825
|
+
* @throws {RequiredError}
|
|
12826
|
+
* @memberof CompanyApi
|
|
12827
|
+
*/
|
|
12828
|
+
updateCompanyPaymentGateways(requestParameters: CompanyApiUpdateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12419
12829
|
/**
|
|
12420
12830
|
*
|
|
12421
12831
|
* @param {CompanyApiUpdatePrimaryDomainRequest} requestParameters Request parameters.
|
|
@@ -12433,6 +12843,22 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
12433
12843
|
*/
|
|
12434
12844
|
updateUserInCompany(requestParameters: CompanyApiUpdateUserInCompanyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyResponse, any>>;
|
|
12435
12845
|
}
|
|
12846
|
+
/**
|
|
12847
|
+
* @export
|
|
12848
|
+
*/
|
|
12849
|
+
export declare const GetCompaniesDateFieldEnum: {
|
|
12850
|
+
readonly CREATED_AT: "createdAt";
|
|
12851
|
+
readonly UPDATED_AT: "updatedAt";
|
|
12852
|
+
};
|
|
12853
|
+
export type GetCompaniesDateFieldEnum = typeof GetCompaniesDateFieldEnum[keyof typeof GetCompaniesDateFieldEnum];
|
|
12854
|
+
/**
|
|
12855
|
+
* @export
|
|
12856
|
+
*/
|
|
12857
|
+
export declare const GetCompanyCustomersDateFieldEnum: {
|
|
12858
|
+
readonly CREATED_AT: "createdAt";
|
|
12859
|
+
readonly UPDATED_AT: "updatedAt";
|
|
12860
|
+
};
|
|
12861
|
+
export type GetCompanyCustomersDateFieldEnum = typeof GetCompanyCustomersDateFieldEnum[keyof typeof GetCompanyCustomersDateFieldEnum];
|
|
12436
12862
|
/**
|
|
12437
12863
|
* ContactFormApi - axios parameter creator
|
|
12438
12864
|
* @export
|
|
@@ -12467,13 +12893,13 @@ export declare const ContactFormApiAxiosParamCreator: (configuration?: Configura
|
|
|
12467
12893
|
* @param {string} [search]
|
|
12468
12894
|
* @param {string} [startDate]
|
|
12469
12895
|
* @param {string} [endDate]
|
|
12470
|
-
* @param {
|
|
12896
|
+
* @param {GetContactFormsDateFieldEnum} [dateField]
|
|
12471
12897
|
* @param {OrderEnum} [order]
|
|
12472
12898
|
* @param {string} [sort]
|
|
12473
12899
|
* @param {*} [options] Override http request option.
|
|
12474
12900
|
* @throws {RequiredError}
|
|
12475
12901
|
*/
|
|
12476
|
-
getContactForms: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
12902
|
+
getContactForms: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetContactFormsDateFieldEnum, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12477
12903
|
};
|
|
12478
12904
|
/**
|
|
12479
12905
|
* ContactFormApi - functional programming interface
|
|
@@ -12509,13 +12935,13 @@ export declare const ContactFormApiFp: (configuration?: Configuration) => {
|
|
|
12509
12935
|
* @param {string} [search]
|
|
12510
12936
|
* @param {string} [startDate]
|
|
12511
12937
|
* @param {string} [endDate]
|
|
12512
|
-
* @param {
|
|
12938
|
+
* @param {GetContactFormsDateFieldEnum} [dateField]
|
|
12513
12939
|
* @param {OrderEnum} [order]
|
|
12514
12940
|
* @param {string} [sort]
|
|
12515
12941
|
* @param {*} [options] Override http request option.
|
|
12516
12942
|
* @throws {RequiredError}
|
|
12517
12943
|
*/
|
|
12518
|
-
getContactForms(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
12944
|
+
getContactForms(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetContactFormsDateFieldEnum, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IContactFormsResponse>>;
|
|
12519
12945
|
};
|
|
12520
12946
|
/**
|
|
12521
12947
|
* ContactFormApi - factory interface
|
|
@@ -12634,10 +13060,10 @@ export interface ContactFormApiGetContactFormsRequest {
|
|
|
12634
13060
|
readonly endDate?: string;
|
|
12635
13061
|
/**
|
|
12636
13062
|
*
|
|
12637
|
-
* @type {
|
|
13063
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
12638
13064
|
* @memberof ContactFormApiGetContactForms
|
|
12639
13065
|
*/
|
|
12640
|
-
readonly dateField?:
|
|
13066
|
+
readonly dateField?: GetContactFormsDateFieldEnum;
|
|
12641
13067
|
/**
|
|
12642
13068
|
*
|
|
12643
13069
|
* @type {OrderEnum}
|
|
@@ -12691,6 +13117,14 @@ export declare class ContactFormApi extends BaseAPI {
|
|
|
12691
13117
|
*/
|
|
12692
13118
|
getContactForms(requestParameters: ContactFormApiGetContactFormsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IContactFormsResponse, any>>;
|
|
12693
13119
|
}
|
|
13120
|
+
/**
|
|
13121
|
+
* @export
|
|
13122
|
+
*/
|
|
13123
|
+
export declare const GetContactFormsDateFieldEnum: {
|
|
13124
|
+
readonly CREATED_AT: "createdAt";
|
|
13125
|
+
readonly UPDATED_AT: "updatedAt";
|
|
13126
|
+
};
|
|
13127
|
+
export type GetContactFormsDateFieldEnum = typeof GetContactFormsDateFieldEnum[keyof typeof GetContactFormsDateFieldEnum];
|
|
12694
13128
|
/**
|
|
12695
13129
|
* FileApi - axios parameter creator
|
|
12696
13130
|
* @export
|
|
@@ -12718,7 +13152,7 @@ export declare const FileApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
12718
13152
|
* @param {string} [search]
|
|
12719
13153
|
* @param {string} [startDate]
|
|
12720
13154
|
* @param {string} [endDate]
|
|
12721
|
-
* @param {
|
|
13155
|
+
* @param {GetFilesDateFieldEnum} [dateField]
|
|
12722
13156
|
* @param {OrderEnum} [order]
|
|
12723
13157
|
* @param {string} [sort]
|
|
12724
13158
|
* @param {Array<FileKeywordEnum>} [keywords]
|
|
@@ -12727,7 +13161,7 @@ export declare const FileApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
12727
13161
|
* @param {*} [options] Override http request option.
|
|
12728
13162
|
* @throws {RequiredError}
|
|
12729
13163
|
*/
|
|
12730
|
-
getFiles: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
13164
|
+
getFiles: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetFilesDateFieldEnum, order?: OrderEnum, sort?: string, keywords?: Array<FileKeywordEnum>, type?: FileTypeEnum, status?: FileStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12731
13165
|
/**
|
|
12732
13166
|
*
|
|
12733
13167
|
* @param {string} id
|
|
@@ -12773,7 +13207,7 @@ export declare const FileApiFp: (configuration?: Configuration) => {
|
|
|
12773
13207
|
* @param {string} [search]
|
|
12774
13208
|
* @param {string} [startDate]
|
|
12775
13209
|
* @param {string} [endDate]
|
|
12776
|
-
* @param {
|
|
13210
|
+
* @param {GetFilesDateFieldEnum} [dateField]
|
|
12777
13211
|
* @param {OrderEnum} [order]
|
|
12778
13212
|
* @param {string} [sort]
|
|
12779
13213
|
* @param {Array<FileKeywordEnum>} [keywords]
|
|
@@ -12782,7 +13216,7 @@ export declare const FileApiFp: (configuration?: Configuration) => {
|
|
|
12782
13216
|
* @param {*} [options] Override http request option.
|
|
12783
13217
|
* @throws {RequiredError}
|
|
12784
13218
|
*/
|
|
12785
|
-
getFiles(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
13219
|
+
getFiles(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetFilesDateFieldEnum, order?: OrderEnum, sort?: string, keywords?: Array<FileKeywordEnum>, type?: FileTypeEnum, status?: FileStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IFilesResponse>>;
|
|
12786
13220
|
/**
|
|
12787
13221
|
*
|
|
12788
13222
|
* @param {string} id
|
|
@@ -12912,10 +13346,10 @@ export interface FileApiGetFilesRequest {
|
|
|
12912
13346
|
readonly endDate?: string;
|
|
12913
13347
|
/**
|
|
12914
13348
|
*
|
|
12915
|
-
* @type {
|
|
13349
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
12916
13350
|
* @memberof FileApiGetFiles
|
|
12917
13351
|
*/
|
|
12918
|
-
readonly dateField?:
|
|
13352
|
+
readonly dateField?: GetFilesDateFieldEnum;
|
|
12919
13353
|
/**
|
|
12920
13354
|
*
|
|
12921
13355
|
* @type {OrderEnum}
|
|
@@ -13039,6 +13473,14 @@ export declare class FileApi extends BaseAPI {
|
|
|
13039
13473
|
*/
|
|
13040
13474
|
uploadFile(requestParameters: FileApiUploadFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IImage, any>>;
|
|
13041
13475
|
}
|
|
13476
|
+
/**
|
|
13477
|
+
* @export
|
|
13478
|
+
*/
|
|
13479
|
+
export declare const GetFilesDateFieldEnum: {
|
|
13480
|
+
readonly CREATED_AT: "createdAt";
|
|
13481
|
+
readonly UPDATED_AT: "updatedAt";
|
|
13482
|
+
};
|
|
13483
|
+
export type GetFilesDateFieldEnum = typeof GetFilesDateFieldEnum[keyof typeof GetFilesDateFieldEnum];
|
|
13042
13484
|
/**
|
|
13043
13485
|
* NotificationApi - axios parameter creator
|
|
13044
13486
|
* @export
|
|
@@ -13065,7 +13507,7 @@ export declare const NotificationApiAxiosParamCreator: (configuration?: Configur
|
|
|
13065
13507
|
* @param {string} [search]
|
|
13066
13508
|
* @param {string} [startDate]
|
|
13067
13509
|
* @param {string} [endDate]
|
|
13068
|
-
* @param {
|
|
13510
|
+
* @param {GetNotificationsDateFieldEnum} [dateField]
|
|
13069
13511
|
* @param {OrderEnum} [order]
|
|
13070
13512
|
* @param {string} [sort]
|
|
13071
13513
|
* @param {string} [user]
|
|
@@ -13074,7 +13516,7 @@ export declare const NotificationApiAxiosParamCreator: (configuration?: Configur
|
|
|
13074
13516
|
* @param {*} [options] Override http request option.
|
|
13075
13517
|
* @throws {RequiredError}
|
|
13076
13518
|
*/
|
|
13077
|
-
getNotifications: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
13519
|
+
getNotifications: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetNotificationsDateFieldEnum, order?: OrderEnum, sort?: string, user?: string, companyId?: string, status?: NotificationStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13078
13520
|
/**
|
|
13079
13521
|
*
|
|
13080
13522
|
* @param {*} [options] Override http request option.
|
|
@@ -13115,7 +13557,7 @@ export declare const NotificationApiFp: (configuration?: Configuration) => {
|
|
|
13115
13557
|
* @param {string} [search]
|
|
13116
13558
|
* @param {string} [startDate]
|
|
13117
13559
|
* @param {string} [endDate]
|
|
13118
|
-
* @param {
|
|
13560
|
+
* @param {GetNotificationsDateFieldEnum} [dateField]
|
|
13119
13561
|
* @param {OrderEnum} [order]
|
|
13120
13562
|
* @param {string} [sort]
|
|
13121
13563
|
* @param {string} [user]
|
|
@@ -13124,7 +13566,7 @@ export declare const NotificationApiFp: (configuration?: Configuration) => {
|
|
|
13124
13566
|
* @param {*} [options] Override http request option.
|
|
13125
13567
|
* @throws {RequiredError}
|
|
13126
13568
|
*/
|
|
13127
|
-
getNotifications(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
13569
|
+
getNotifications(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetNotificationsDateFieldEnum, order?: OrderEnum, sort?: string, user?: string, companyId?: string, status?: NotificationStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<INotificationsResponse>>;
|
|
13128
13570
|
/**
|
|
13129
13571
|
*
|
|
13130
13572
|
* @param {*} [options] Override http request option.
|
|
@@ -13243,10 +13685,10 @@ export interface NotificationApiGetNotificationsRequest {
|
|
|
13243
13685
|
readonly endDate?: string;
|
|
13244
13686
|
/**
|
|
13245
13687
|
*
|
|
13246
|
-
* @type {
|
|
13688
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
13247
13689
|
* @memberof NotificationApiGetNotifications
|
|
13248
13690
|
*/
|
|
13249
|
-
readonly dateField?:
|
|
13691
|
+
readonly dateField?: GetNotificationsDateFieldEnum;
|
|
13250
13692
|
/**
|
|
13251
13693
|
*
|
|
13252
13694
|
* @type {OrderEnum}
|
|
@@ -13338,6 +13780,14 @@ export declare class NotificationApi extends BaseAPI {
|
|
|
13338
13780
|
*/
|
|
13339
13781
|
markNotificationAsRead(requestParameters: NotificationApiMarkNotificationAsReadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
13340
13782
|
}
|
|
13783
|
+
/**
|
|
13784
|
+
* @export
|
|
13785
|
+
*/
|
|
13786
|
+
export declare const GetNotificationsDateFieldEnum: {
|
|
13787
|
+
readonly CREATED_AT: "createdAt";
|
|
13788
|
+
readonly UPDATED_AT: "updatedAt";
|
|
13789
|
+
};
|
|
13790
|
+
export type GetNotificationsDateFieldEnum = typeof GetNotificationsDateFieldEnum[keyof typeof GetNotificationsDateFieldEnum];
|
|
13341
13791
|
/**
|
|
13342
13792
|
* OperationApi - axios parameter creator
|
|
13343
13793
|
* @export
|
|
@@ -13371,7 +13821,7 @@ export declare const OperationApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13371
13821
|
* @param {string} [search]
|
|
13372
13822
|
* @param {string} [startDate]
|
|
13373
13823
|
* @param {string} [endDate]
|
|
13374
|
-
* @param {
|
|
13824
|
+
* @param {GetOperationsDateFieldEnum} [dateField]
|
|
13375
13825
|
* @param {OrderEnum} [order]
|
|
13376
13826
|
* @param {string} [sort]
|
|
13377
13827
|
* @param {string} [user]
|
|
@@ -13380,7 +13830,7 @@ export declare const OperationApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13380
13830
|
* @param {*} [options] Override http request option.
|
|
13381
13831
|
* @throws {RequiredError}
|
|
13382
13832
|
*/
|
|
13383
|
-
getOperations: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
13833
|
+
getOperations: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetOperationsDateFieldEnum, order?: OrderEnum, sort?: string, user?: string, company?: string, status?: OperationStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13384
13834
|
/**
|
|
13385
13835
|
*
|
|
13386
13836
|
* @param {string} id
|
|
@@ -13430,7 +13880,7 @@ export declare const OperationApiFp: (configuration?: Configuration) => {
|
|
|
13430
13880
|
* @param {string} [search]
|
|
13431
13881
|
* @param {string} [startDate]
|
|
13432
13882
|
* @param {string} [endDate]
|
|
13433
|
-
* @param {
|
|
13883
|
+
* @param {GetOperationsDateFieldEnum} [dateField]
|
|
13434
13884
|
* @param {OrderEnum} [order]
|
|
13435
13885
|
* @param {string} [sort]
|
|
13436
13886
|
* @param {string} [user]
|
|
@@ -13439,7 +13889,7 @@ export declare const OperationApiFp: (configuration?: Configuration) => {
|
|
|
13439
13889
|
* @param {*} [options] Override http request option.
|
|
13440
13890
|
* @throws {RequiredError}
|
|
13441
13891
|
*/
|
|
13442
|
-
getOperations(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
13892
|
+
getOperations(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetOperationsDateFieldEnum, order?: OrderEnum, sort?: string, user?: string, company?: string, status?: OperationStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOperationsResponse>>;
|
|
13443
13893
|
/**
|
|
13444
13894
|
*
|
|
13445
13895
|
* @param {string} id
|
|
@@ -13581,10 +14031,10 @@ export interface OperationApiGetOperationsRequest {
|
|
|
13581
14031
|
readonly endDate?: string;
|
|
13582
14032
|
/**
|
|
13583
14033
|
*
|
|
13584
|
-
* @type {
|
|
14034
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
13585
14035
|
* @memberof OperationApiGetOperations
|
|
13586
14036
|
*/
|
|
13587
|
-
readonly dateField?:
|
|
14037
|
+
readonly dateField?: GetOperationsDateFieldEnum;
|
|
13588
14038
|
/**
|
|
13589
14039
|
*
|
|
13590
14040
|
* @type {OrderEnum}
|
|
@@ -13704,6 +14154,14 @@ export declare class OperationApi extends BaseAPI {
|
|
|
13704
14154
|
*/
|
|
13705
14155
|
updateOperation(requestParameters: OperationApiUpdateOperationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOperationResponse, any>>;
|
|
13706
14156
|
}
|
|
14157
|
+
/**
|
|
14158
|
+
* @export
|
|
14159
|
+
*/
|
|
14160
|
+
export declare const GetOperationsDateFieldEnum: {
|
|
14161
|
+
readonly CREATED_AT: "createdAt";
|
|
14162
|
+
readonly UPDATED_AT: "updatedAt";
|
|
14163
|
+
};
|
|
14164
|
+
export type GetOperationsDateFieldEnum = typeof GetOperationsDateFieldEnum[keyof typeof GetOperationsDateFieldEnum];
|
|
13707
14165
|
/**
|
|
13708
14166
|
* OrderApi - axios parameter creator
|
|
13709
14167
|
* @export
|
|
@@ -13716,6 +14174,21 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13716
14174
|
* @throws {RequiredError}
|
|
13717
14175
|
*/
|
|
13718
14176
|
createOrder: (iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14177
|
+
/**
|
|
14178
|
+
*
|
|
14179
|
+
* @param {number} [page]
|
|
14180
|
+
* @param {number} [itemsPerPage]
|
|
14181
|
+
* @param {string} [search]
|
|
14182
|
+
* @param {string} [startDate]
|
|
14183
|
+
* @param {string} [endDate]
|
|
14184
|
+
* @param {GetMyOrdersDateFieldEnum} [dateField]
|
|
14185
|
+
* @param {OrderEnum} [order]
|
|
14186
|
+
* @param {string} [sort]
|
|
14187
|
+
* @param {OrderStatusEnum} [status]
|
|
14188
|
+
* @param {*} [options] Override http request option.
|
|
14189
|
+
* @throws {RequiredError}
|
|
14190
|
+
*/
|
|
14191
|
+
getMyOrders: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetMyOrdersDateFieldEnum, order?: OrderEnum, sort?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13719
14192
|
/**
|
|
13720
14193
|
*
|
|
13721
14194
|
* @param {string} id
|
|
@@ -13725,21 +14198,21 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13725
14198
|
getOrderById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13726
14199
|
/**
|
|
13727
14200
|
*
|
|
14201
|
+
* @param {string} company
|
|
13728
14202
|
* @param {number} [page]
|
|
13729
14203
|
* @param {number} [itemsPerPage]
|
|
13730
14204
|
* @param {string} [search]
|
|
13731
14205
|
* @param {string} [startDate]
|
|
13732
14206
|
* @param {string} [endDate]
|
|
13733
|
-
* @param {
|
|
14207
|
+
* @param {GetOrdersDateFieldEnum} [dateField]
|
|
13734
14208
|
* @param {OrderEnum} [order]
|
|
13735
14209
|
* @param {string} [sort]
|
|
13736
|
-
* @param {string} [company]
|
|
13737
14210
|
* @param {string} [user]
|
|
13738
14211
|
* @param {OrderStatusEnum} [status]
|
|
13739
14212
|
* @param {*} [options] Override http request option.
|
|
13740
14213
|
* @throws {RequiredError}
|
|
13741
14214
|
*/
|
|
13742
|
-
getOrders: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
14215
|
+
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>;
|
|
13743
14216
|
};
|
|
13744
14217
|
/**
|
|
13745
14218
|
* OrderApi - functional programming interface
|
|
@@ -13753,6 +14226,21 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
13753
14226
|
* @throws {RequiredError}
|
|
13754
14227
|
*/
|
|
13755
14228
|
createOrder(iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrderResponse>>;
|
|
14229
|
+
/**
|
|
14230
|
+
*
|
|
14231
|
+
* @param {number} [page]
|
|
14232
|
+
* @param {number} [itemsPerPage]
|
|
14233
|
+
* @param {string} [search]
|
|
14234
|
+
* @param {string} [startDate]
|
|
14235
|
+
* @param {string} [endDate]
|
|
14236
|
+
* @param {GetMyOrdersDateFieldEnum} [dateField]
|
|
14237
|
+
* @param {OrderEnum} [order]
|
|
14238
|
+
* @param {string} [sort]
|
|
14239
|
+
* @param {OrderStatusEnum} [status]
|
|
14240
|
+
* @param {*} [options] Override http request option.
|
|
14241
|
+
* @throws {RequiredError}
|
|
14242
|
+
*/
|
|
14243
|
+
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>>;
|
|
13756
14244
|
/**
|
|
13757
14245
|
*
|
|
13758
14246
|
* @param {string} id
|
|
@@ -13762,21 +14250,21 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
13762
14250
|
getOrderById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrderResponse>>;
|
|
13763
14251
|
/**
|
|
13764
14252
|
*
|
|
14253
|
+
* @param {string} company
|
|
13765
14254
|
* @param {number} [page]
|
|
13766
14255
|
* @param {number} [itemsPerPage]
|
|
13767
14256
|
* @param {string} [search]
|
|
13768
14257
|
* @param {string} [startDate]
|
|
13769
14258
|
* @param {string} [endDate]
|
|
13770
|
-
* @param {
|
|
14259
|
+
* @param {GetOrdersDateFieldEnum} [dateField]
|
|
13771
14260
|
* @param {OrderEnum} [order]
|
|
13772
14261
|
* @param {string} [sort]
|
|
13773
|
-
* @param {string} [company]
|
|
13774
14262
|
* @param {string} [user]
|
|
13775
14263
|
* @param {OrderStatusEnum} [status]
|
|
13776
14264
|
* @param {*} [options] Override http request option.
|
|
13777
14265
|
* @throws {RequiredError}
|
|
13778
14266
|
*/
|
|
13779
|
-
getOrders(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
14267
|
+
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>>;
|
|
13780
14268
|
};
|
|
13781
14269
|
/**
|
|
13782
14270
|
* OrderApi - factory interface
|
|
@@ -13790,6 +14278,13 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
|
|
|
13790
14278
|
* @throws {RequiredError}
|
|
13791
14279
|
*/
|
|
13792
14280
|
createOrder(requestParameters: OrderApiCreateOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<IOrderResponse>;
|
|
14281
|
+
/**
|
|
14282
|
+
*
|
|
14283
|
+
* @param {OrderApiGetMyOrdersRequest} requestParameters Request parameters.
|
|
14284
|
+
* @param {*} [options] Override http request option.
|
|
14285
|
+
* @throws {RequiredError}
|
|
14286
|
+
*/
|
|
14287
|
+
getMyOrders(requestParameters?: OrderApiGetMyOrdersRequest, options?: RawAxiosRequestConfig): AxiosPromise<IOrdersResponse>;
|
|
13793
14288
|
/**
|
|
13794
14289
|
*
|
|
13795
14290
|
* @param {OrderApiGetOrderByIdRequest} requestParameters Request parameters.
|
|
@@ -13803,7 +14298,7 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
|
|
|
13803
14298
|
* @param {*} [options] Override http request option.
|
|
13804
14299
|
* @throws {RequiredError}
|
|
13805
14300
|
*/
|
|
13806
|
-
getOrders(requestParameters
|
|
14301
|
+
getOrders(requestParameters: OrderApiGetOrdersRequest, options?: RawAxiosRequestConfig): AxiosPromise<IOrdersResponse>;
|
|
13807
14302
|
};
|
|
13808
14303
|
/**
|
|
13809
14304
|
* Request parameters for createOrder operation in OrderApi.
|
|
@@ -13818,6 +14313,67 @@ export interface OrderApiCreateOrderRequest {
|
|
|
13818
14313
|
*/
|
|
13819
14314
|
readonly iOrderPostRequest: IOrderPostRequest;
|
|
13820
14315
|
}
|
|
14316
|
+
/**
|
|
14317
|
+
* Request parameters for getMyOrders operation in OrderApi.
|
|
14318
|
+
* @export
|
|
14319
|
+
* @interface OrderApiGetMyOrdersRequest
|
|
14320
|
+
*/
|
|
14321
|
+
export interface OrderApiGetMyOrdersRequest {
|
|
14322
|
+
/**
|
|
14323
|
+
*
|
|
14324
|
+
* @type {number}
|
|
14325
|
+
* @memberof OrderApiGetMyOrders
|
|
14326
|
+
*/
|
|
14327
|
+
readonly page?: number;
|
|
14328
|
+
/**
|
|
14329
|
+
*
|
|
14330
|
+
* @type {number}
|
|
14331
|
+
* @memberof OrderApiGetMyOrders
|
|
14332
|
+
*/
|
|
14333
|
+
readonly itemsPerPage?: number;
|
|
14334
|
+
/**
|
|
14335
|
+
*
|
|
14336
|
+
* @type {string}
|
|
14337
|
+
* @memberof OrderApiGetMyOrders
|
|
14338
|
+
*/
|
|
14339
|
+
readonly search?: string;
|
|
14340
|
+
/**
|
|
14341
|
+
*
|
|
14342
|
+
* @type {string}
|
|
14343
|
+
* @memberof OrderApiGetMyOrders
|
|
14344
|
+
*/
|
|
14345
|
+
readonly startDate?: string;
|
|
14346
|
+
/**
|
|
14347
|
+
*
|
|
14348
|
+
* @type {string}
|
|
14349
|
+
* @memberof OrderApiGetMyOrders
|
|
14350
|
+
*/
|
|
14351
|
+
readonly endDate?: string;
|
|
14352
|
+
/**
|
|
14353
|
+
*
|
|
14354
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
14355
|
+
* @memberof OrderApiGetMyOrders
|
|
14356
|
+
*/
|
|
14357
|
+
readonly dateField?: GetMyOrdersDateFieldEnum;
|
|
14358
|
+
/**
|
|
14359
|
+
*
|
|
14360
|
+
* @type {OrderEnum}
|
|
14361
|
+
* @memberof OrderApiGetMyOrders
|
|
14362
|
+
*/
|
|
14363
|
+
readonly order?: OrderEnum;
|
|
14364
|
+
/**
|
|
14365
|
+
*
|
|
14366
|
+
* @type {string}
|
|
14367
|
+
* @memberof OrderApiGetMyOrders
|
|
14368
|
+
*/
|
|
14369
|
+
readonly sort?: string;
|
|
14370
|
+
/**
|
|
14371
|
+
*
|
|
14372
|
+
* @type {OrderStatusEnum}
|
|
14373
|
+
* @memberof OrderApiGetMyOrders
|
|
14374
|
+
*/
|
|
14375
|
+
readonly status?: OrderStatusEnum;
|
|
14376
|
+
}
|
|
13821
14377
|
/**
|
|
13822
14378
|
* Request parameters for getOrderById operation in OrderApi.
|
|
13823
14379
|
* @export
|
|
@@ -13837,6 +14393,12 @@ export interface OrderApiGetOrderByIdRequest {
|
|
|
13837
14393
|
* @interface OrderApiGetOrdersRequest
|
|
13838
14394
|
*/
|
|
13839
14395
|
export interface OrderApiGetOrdersRequest {
|
|
14396
|
+
/**
|
|
14397
|
+
*
|
|
14398
|
+
* @type {string}
|
|
14399
|
+
* @memberof OrderApiGetOrders
|
|
14400
|
+
*/
|
|
14401
|
+
readonly company: string;
|
|
13840
14402
|
/**
|
|
13841
14403
|
*
|
|
13842
14404
|
* @type {number}
|
|
@@ -13869,10 +14431,10 @@ export interface OrderApiGetOrdersRequest {
|
|
|
13869
14431
|
readonly endDate?: string;
|
|
13870
14432
|
/**
|
|
13871
14433
|
*
|
|
13872
|
-
* @type {
|
|
14434
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
13873
14435
|
* @memberof OrderApiGetOrders
|
|
13874
14436
|
*/
|
|
13875
|
-
readonly dateField?:
|
|
14437
|
+
readonly dateField?: GetOrdersDateFieldEnum;
|
|
13876
14438
|
/**
|
|
13877
14439
|
*
|
|
13878
14440
|
* @type {OrderEnum}
|
|
@@ -13885,12 +14447,6 @@ export interface OrderApiGetOrdersRequest {
|
|
|
13885
14447
|
* @memberof OrderApiGetOrders
|
|
13886
14448
|
*/
|
|
13887
14449
|
readonly sort?: string;
|
|
13888
|
-
/**
|
|
13889
|
-
*
|
|
13890
|
-
* @type {string}
|
|
13891
|
-
* @memberof OrderApiGetOrders
|
|
13892
|
-
*/
|
|
13893
|
-
readonly company?: string;
|
|
13894
14450
|
/**
|
|
13895
14451
|
*
|
|
13896
14452
|
* @type {string}
|
|
@@ -13919,6 +14475,14 @@ export declare class OrderApi extends BaseAPI {
|
|
|
13919
14475
|
* @memberof OrderApi
|
|
13920
14476
|
*/
|
|
13921
14477
|
createOrder(requestParameters: OrderApiCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOrderResponse, any>>;
|
|
14478
|
+
/**
|
|
14479
|
+
*
|
|
14480
|
+
* @param {OrderApiGetMyOrdersRequest} requestParameters Request parameters.
|
|
14481
|
+
* @param {*} [options] Override http request option.
|
|
14482
|
+
* @throws {RequiredError}
|
|
14483
|
+
* @memberof OrderApi
|
|
14484
|
+
*/
|
|
14485
|
+
getMyOrders(requestParameters?: OrderApiGetMyOrdersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOrdersResponse, any>>;
|
|
13922
14486
|
/**
|
|
13923
14487
|
*
|
|
13924
14488
|
* @param {OrderApiGetOrderByIdRequest} requestParameters Request parameters.
|
|
@@ -13934,8 +14498,24 @@ export declare class OrderApi extends BaseAPI {
|
|
|
13934
14498
|
* @throws {RequiredError}
|
|
13935
14499
|
* @memberof OrderApi
|
|
13936
14500
|
*/
|
|
13937
|
-
getOrders(requestParameters
|
|
14501
|
+
getOrders(requestParameters: OrderApiGetOrdersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOrdersResponse, any>>;
|
|
13938
14502
|
}
|
|
14503
|
+
/**
|
|
14504
|
+
* @export
|
|
14505
|
+
*/
|
|
14506
|
+
export declare const GetMyOrdersDateFieldEnum: {
|
|
14507
|
+
readonly CREATED_AT: "createdAt";
|
|
14508
|
+
readonly UPDATED_AT: "updatedAt";
|
|
14509
|
+
};
|
|
14510
|
+
export type GetMyOrdersDateFieldEnum = typeof GetMyOrdersDateFieldEnum[keyof typeof GetMyOrdersDateFieldEnum];
|
|
14511
|
+
/**
|
|
14512
|
+
* @export
|
|
14513
|
+
*/
|
|
14514
|
+
export declare const GetOrdersDateFieldEnum: {
|
|
14515
|
+
readonly CREATED_AT: "createdAt";
|
|
14516
|
+
readonly UPDATED_AT: "updatedAt";
|
|
14517
|
+
};
|
|
14518
|
+
export type GetOrdersDateFieldEnum = typeof GetOrdersDateFieldEnum[keyof typeof GetOrdersDateFieldEnum];
|
|
13939
14519
|
/**
|
|
13940
14520
|
* PageApi - axios parameter creator
|
|
13941
14521
|
* @export
|
|
@@ -13999,7 +14579,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
13999
14579
|
* @param {string} [search]
|
|
14000
14580
|
* @param {string} [startDate]
|
|
14001
14581
|
* @param {string} [endDate]
|
|
14002
|
-
* @param {
|
|
14582
|
+
* @param {GetPagesDateFieldEnum} [dateField]
|
|
14003
14583
|
* @param {OrderEnum} [order]
|
|
14004
14584
|
* @param {string} [sort]
|
|
14005
14585
|
* @param {string} [companyId]
|
|
@@ -14009,7 +14589,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
14009
14589
|
* @param {*} [options] Override http request option.
|
|
14010
14590
|
* @throws {RequiredError}
|
|
14011
14591
|
*/
|
|
14012
|
-
getPages: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
14592
|
+
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>;
|
|
14013
14593
|
/**
|
|
14014
14594
|
*
|
|
14015
14595
|
* @param {string} companyId
|
|
@@ -14089,7 +14669,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
14089
14669
|
* @param {string} [search]
|
|
14090
14670
|
* @param {string} [startDate]
|
|
14091
14671
|
* @param {string} [endDate]
|
|
14092
|
-
* @param {
|
|
14672
|
+
* @param {GetPagesDateFieldEnum} [dateField]
|
|
14093
14673
|
* @param {OrderEnum} [order]
|
|
14094
14674
|
* @param {string} [sort]
|
|
14095
14675
|
* @param {string} [companyId]
|
|
@@ -14099,7 +14679,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
14099
14679
|
* @param {*} [options] Override http request option.
|
|
14100
14680
|
* @throws {RequiredError}
|
|
14101
14681
|
*/
|
|
14102
|
-
getPages(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
14682
|
+
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>>;
|
|
14103
14683
|
/**
|
|
14104
14684
|
*
|
|
14105
14685
|
* @param {string} companyId
|
|
@@ -14355,10 +14935,10 @@ export interface PageApiGetPagesRequest {
|
|
|
14355
14935
|
readonly endDate?: string;
|
|
14356
14936
|
/**
|
|
14357
14937
|
*
|
|
14358
|
-
* @type {
|
|
14938
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
14359
14939
|
* @memberof PageApiGetPages
|
|
14360
14940
|
*/
|
|
14361
|
-
readonly dateField?:
|
|
14941
|
+
readonly dateField?: GetPagesDateFieldEnum;
|
|
14362
14942
|
/**
|
|
14363
14943
|
*
|
|
14364
14944
|
* @type {OrderEnum}
|
|
@@ -14508,6 +15088,14 @@ export declare class PageApi extends BaseAPI {
|
|
|
14508
15088
|
*/
|
|
14509
15089
|
updatePage(requestParameters: PageApiUpdatePageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPageResponse, any>>;
|
|
14510
15090
|
}
|
|
15091
|
+
/**
|
|
15092
|
+
* @export
|
|
15093
|
+
*/
|
|
15094
|
+
export declare const GetPagesDateFieldEnum: {
|
|
15095
|
+
readonly CREATED_AT: "createdAt";
|
|
15096
|
+
readonly UPDATED_AT: "updatedAt";
|
|
15097
|
+
};
|
|
15098
|
+
export type GetPagesDateFieldEnum = typeof GetPagesDateFieldEnum[keyof typeof GetPagesDateFieldEnum];
|
|
14511
15099
|
/**
|
|
14512
15100
|
* PlanApi - axios parameter creator
|
|
14513
15101
|
* @export
|
|
@@ -14541,7 +15129,7 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
14541
15129
|
* @param {string} [search]
|
|
14542
15130
|
* @param {string} [startDate]
|
|
14543
15131
|
* @param {string} [endDate]
|
|
14544
|
-
* @param {
|
|
15132
|
+
* @param {GetPlansDateFieldEnum} [dateField]
|
|
14545
15133
|
* @param {OrderEnum} [order]
|
|
14546
15134
|
* @param {string} [sort]
|
|
14547
15135
|
* @param {PlanStatusEnum} [status]
|
|
@@ -14549,7 +15137,7 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
14549
15137
|
* @param {*} [options] Override http request option.
|
|
14550
15138
|
* @throws {RequiredError}
|
|
14551
15139
|
*/
|
|
14552
|
-
getPlans: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
15140
|
+
getPlans: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPlansDateFieldEnum, order?: OrderEnum, sort?: string, status?: PlanStatusEnum, type?: PlanTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14553
15141
|
/**
|
|
14554
15142
|
*
|
|
14555
15143
|
* @param {string} id
|
|
@@ -14592,7 +15180,7 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
|
|
|
14592
15180
|
* @param {string} [search]
|
|
14593
15181
|
* @param {string} [startDate]
|
|
14594
15182
|
* @param {string} [endDate]
|
|
14595
|
-
* @param {
|
|
15183
|
+
* @param {GetPlansDateFieldEnum} [dateField]
|
|
14596
15184
|
* @param {OrderEnum} [order]
|
|
14597
15185
|
* @param {string} [sort]
|
|
14598
15186
|
* @param {PlanStatusEnum} [status]
|
|
@@ -14600,7 +15188,7 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
|
|
|
14600
15188
|
* @param {*} [options] Override http request option.
|
|
14601
15189
|
* @throws {RequiredError}
|
|
14602
15190
|
*/
|
|
14603
|
-
getPlans(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
15191
|
+
getPlans(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPlansDateFieldEnum, order?: OrderEnum, sort?: string, status?: PlanStatusEnum, type?: PlanTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPlansResponse>>;
|
|
14604
15192
|
/**
|
|
14605
15193
|
*
|
|
14606
15194
|
* @param {string} id
|
|
@@ -14728,10 +15316,10 @@ export interface PlanApiGetPlansRequest {
|
|
|
14728
15316
|
readonly endDate?: string;
|
|
14729
15317
|
/**
|
|
14730
15318
|
*
|
|
14731
|
-
* @type {
|
|
15319
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
14732
15320
|
* @memberof PlanApiGetPlans
|
|
14733
15321
|
*/
|
|
14734
|
-
readonly dateField?:
|
|
15322
|
+
readonly dateField?: GetPlansDateFieldEnum;
|
|
14735
15323
|
/**
|
|
14736
15324
|
*
|
|
14737
15325
|
* @type {OrderEnum}
|
|
@@ -14824,6 +15412,14 @@ export declare class PlanApi extends BaseAPI {
|
|
|
14824
15412
|
*/
|
|
14825
15413
|
updatePlan(requestParameters: PlanApiUpdatePlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPlanResponse, any>>;
|
|
14826
15414
|
}
|
|
15415
|
+
/**
|
|
15416
|
+
* @export
|
|
15417
|
+
*/
|
|
15418
|
+
export declare const GetPlansDateFieldEnum: {
|
|
15419
|
+
readonly CREATED_AT: "createdAt";
|
|
15420
|
+
readonly UPDATED_AT: "updatedAt";
|
|
15421
|
+
};
|
|
15422
|
+
export type GetPlansDateFieldEnum = typeof GetPlansDateFieldEnum[keyof typeof GetPlansDateFieldEnum];
|
|
14827
15423
|
/**
|
|
14828
15424
|
* ProductApi - axios parameter creator
|
|
14829
15425
|
* @export
|
|
@@ -14883,7 +15479,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14883
15479
|
* @param {string} [search]
|
|
14884
15480
|
* @param {string} [startDate]
|
|
14885
15481
|
* @param {string} [endDate]
|
|
14886
|
-
* @param {
|
|
15482
|
+
* @param {GetProductsDateFieldEnum} [dateField]
|
|
14887
15483
|
* @param {OrderEnum} [order]
|
|
14888
15484
|
* @param {string} [sort]
|
|
14889
15485
|
* @param {string} [companyId]
|
|
@@ -14895,7 +15491,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14895
15491
|
* @param {*} [options] Override http request option.
|
|
14896
15492
|
* @throws {RequiredError}
|
|
14897
15493
|
*/
|
|
14898
|
-
getProducts: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
15494
|
+
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>;
|
|
14899
15495
|
/**
|
|
14900
15496
|
*
|
|
14901
15497
|
* @param {string} search
|
|
@@ -14973,7 +15569,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
14973
15569
|
* @param {string} [search]
|
|
14974
15570
|
* @param {string} [startDate]
|
|
14975
15571
|
* @param {string} [endDate]
|
|
14976
|
-
* @param {
|
|
15572
|
+
* @param {GetProductsDateFieldEnum} [dateField]
|
|
14977
15573
|
* @param {OrderEnum} [order]
|
|
14978
15574
|
* @param {string} [sort]
|
|
14979
15575
|
* @param {string} [companyId]
|
|
@@ -14985,7 +15581,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
14985
15581
|
* @param {*} [options] Override http request option.
|
|
14986
15582
|
* @throws {RequiredError}
|
|
14987
15583
|
*/
|
|
14988
|
-
getProducts(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
15584
|
+
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>>;
|
|
14989
15585
|
/**
|
|
14990
15586
|
*
|
|
14991
15587
|
* @param {string} search
|
|
@@ -15219,10 +15815,10 @@ export interface ProductApiGetProductsRequest {
|
|
|
15219
15815
|
readonly endDate?: string;
|
|
15220
15816
|
/**
|
|
15221
15817
|
*
|
|
15222
|
-
* @type {
|
|
15818
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
15223
15819
|
* @memberof ProductApiGetProducts
|
|
15224
15820
|
*/
|
|
15225
|
-
readonly dateField?:
|
|
15821
|
+
readonly dateField?: GetProductsDateFieldEnum;
|
|
15226
15822
|
/**
|
|
15227
15823
|
*
|
|
15228
15824
|
* @type {OrderEnum}
|
|
@@ -15396,6 +15992,14 @@ export declare class ProductApi extends BaseAPI {
|
|
|
15396
15992
|
*/
|
|
15397
15993
|
updateProduct(requestParameters: ProductApiUpdateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IProductResponse, any>>;
|
|
15398
15994
|
}
|
|
15995
|
+
/**
|
|
15996
|
+
* @export
|
|
15997
|
+
*/
|
|
15998
|
+
export declare const GetProductsDateFieldEnum: {
|
|
15999
|
+
readonly CREATED_AT: "createdAt";
|
|
16000
|
+
readonly UPDATED_AT: "updatedAt";
|
|
16001
|
+
};
|
|
16002
|
+
export type GetProductsDateFieldEnum = typeof GetProductsDateFieldEnum[keyof typeof GetProductsDateFieldEnum];
|
|
15399
16003
|
/**
|
|
15400
16004
|
* SitemapApi - axios parameter creator
|
|
15401
16005
|
* @export
|
|
@@ -16074,14 +16678,14 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
16074
16678
|
* @param {string} [search]
|
|
16075
16679
|
* @param {string} [startDate]
|
|
16076
16680
|
* @param {string} [endDate]
|
|
16077
|
-
* @param {
|
|
16681
|
+
* @param {GetUsersDateFieldEnum} [dateField]
|
|
16078
16682
|
* @param {OrderEnum} [order]
|
|
16079
16683
|
* @param {string} [sort]
|
|
16080
16684
|
* @param {UserStatusEnum} [status]
|
|
16081
16685
|
* @param {*} [options] Override http request option.
|
|
16082
16686
|
* @throws {RequiredError}
|
|
16083
16687
|
*/
|
|
16084
|
-
getUsers: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
16688
|
+
getUsers: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetUsersDateFieldEnum, order?: OrderEnum, sort?: string, status?: UserStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16085
16689
|
/**
|
|
16086
16690
|
*
|
|
16087
16691
|
* @param {*} [options] Override http request option.
|
|
@@ -16159,14 +16763,14 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
16159
16763
|
* @param {string} [search]
|
|
16160
16764
|
* @param {string} [startDate]
|
|
16161
16765
|
* @param {string} [endDate]
|
|
16162
|
-
* @param {
|
|
16766
|
+
* @param {GetUsersDateFieldEnum} [dateField]
|
|
16163
16767
|
* @param {OrderEnum} [order]
|
|
16164
16768
|
* @param {string} [sort]
|
|
16165
16769
|
* @param {UserStatusEnum} [status]
|
|
16166
16770
|
* @param {*} [options] Override http request option.
|
|
16167
16771
|
* @throws {RequiredError}
|
|
16168
16772
|
*/
|
|
16169
|
-
getUsers(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
16773
|
+
getUsers(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetUsersDateFieldEnum, order?: OrderEnum, sort?: string, status?: UserStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUsersResponse>>;
|
|
16170
16774
|
/**
|
|
16171
16775
|
*
|
|
16172
16776
|
* @param {*} [options] Override http request option.
|
|
@@ -16372,10 +16976,10 @@ export interface UserApiGetUsersRequest {
|
|
|
16372
16976
|
readonly endDate?: string;
|
|
16373
16977
|
/**
|
|
16374
16978
|
*
|
|
16375
|
-
* @type {
|
|
16979
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
16376
16980
|
* @memberof UserApiGetUsers
|
|
16377
16981
|
*/
|
|
16378
|
-
readonly dateField?:
|
|
16982
|
+
readonly dateField?: GetUsersDateFieldEnum;
|
|
16379
16983
|
/**
|
|
16380
16984
|
*
|
|
16381
16985
|
* @type {OrderEnum}
|
|
@@ -16526,3 +17130,11 @@ export declare class UserApi extends BaseAPI {
|
|
|
16526
17130
|
*/
|
|
16527
17131
|
verifyUser(requestParameters: UserApiVerifyUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUserResponse, any>>;
|
|
16528
17132
|
}
|
|
17133
|
+
/**
|
|
17134
|
+
* @export
|
|
17135
|
+
*/
|
|
17136
|
+
export declare const GetUsersDateFieldEnum: {
|
|
17137
|
+
readonly CREATED_AT: "createdAt";
|
|
17138
|
+
readonly UPDATED_AT: "updatedAt";
|
|
17139
|
+
};
|
|
17140
|
+
export type GetUsersDateFieldEnum = typeof GetUsersDateFieldEnum[keyof typeof GetUsersDateFieldEnum];
|