@infisale-client/api 1.2.21 → 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 CHANGED
@@ -919,7 +919,7 @@ export interface IBrandCollectionQueryParams {
919
919
  * @type {string}
920
920
  * @memberof IBrandCollectionQueryParams
921
921
  */
922
- 'dateField'?: string;
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'?: string;
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'?: string;
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
@@ -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}
@@ -2379,7 +2400,7 @@ export interface ICompanyCollectionQueryParams {
2379
2400
  * @type {string}
2380
2401
  * @memberof ICompanyCollectionQueryParams
2381
2402
  */
2382
- 'dateField'?: string;
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
@@ -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'?: string;
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'?: string;
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'?: string;
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'?: string;
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'?: string;
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'?: string;
5128
+ 'dateField'?: IOrderCollectionQueryParamsDateFieldEnum;
4894
5129
  /**
4895
5130
  *
4896
5131
  * @type {OrderEnum}
@@ -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
@@ -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}
@@ -5273,7 +5519,7 @@ export interface IPageCollectionQueryParams {
5273
5519
  * @type {string}
5274
5520
  * @memberof IPageCollectionQueryParams
5275
5521
  */
5276
- 'dateField'?: string;
5522
+ 'dateField'?: IPageCollectionQueryParamsDateFieldEnum;
5277
5523
  /**
5278
5524
  *
5279
5525
  * @type {OrderEnum}
@@ -5311,6 +5557,11 @@ export interface IPageCollectionQueryParams {
5311
5557
  */
5312
5558
  'status'?: ContentStatusEnum;
5313
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];
5314
5565
  /**
5315
5566
  *
5316
5567
  * @export
@@ -5555,7 +5806,7 @@ export interface IPlanCollectionQueryParams {
5555
5806
  * @type {string}
5556
5807
  * @memberof IPlanCollectionQueryParams
5557
5808
  */
5558
- 'dateField'?: string;
5809
+ 'dateField'?: IPlanCollectionQueryParamsDateFieldEnum;
5559
5810
  /**
5560
5811
  *
5561
5812
  * @type {OrderEnum}
@@ -5581,6 +5832,11 @@ export interface IPlanCollectionQueryParams {
5581
5832
  */
5582
5833
  'type'?: PlanTypeEnum;
5583
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];
5584
5840
  /**
5585
5841
  *
5586
5842
  * @export
@@ -5862,7 +6118,7 @@ export interface IProductCollectionQueryParams {
5862
6118
  * @type {string}
5863
6119
  * @memberof IProductCollectionQueryParams
5864
6120
  */
5865
- 'dateField'?: string;
6121
+ 'dateField'?: IProductCollectionQueryParamsDateFieldEnum;
5866
6122
  /**
5867
6123
  *
5868
6124
  * @type {OrderEnum}
@@ -5912,6 +6168,11 @@ export interface IProductCollectionQueryParams {
5912
6168
  */
5913
6169
  'status'?: ContentStatusEnum;
5914
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];
5915
6176
  /**
5916
6177
  *
5917
6178
  * @export
@@ -7278,7 +7539,7 @@ export interface IUserCollectionQueryParams {
7278
7539
  * @type {string}
7279
7540
  * @memberof IUserCollectionQueryParams
7280
7541
  */
7281
- 'dateField'?: string;
7542
+ 'dateField'?: IUserCollectionQueryParamsDateFieldEnum;
7282
7543
  /**
7283
7544
  *
7284
7545
  * @type {OrderEnum}
@@ -7298,6 +7559,11 @@ export interface IUserCollectionQueryParams {
7298
7559
  */
7299
7560
  'status'?: UserStatusEnum;
7300
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];
7301
7567
  /**
7302
7568
  *
7303
7569
  * @export
@@ -7725,6 +7991,15 @@ export interface PartialRecordLanguageEnumString {
7725
7991
  */
7726
7992
  'de'?: string;
7727
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];
7728
8003
  /**
7729
8004
  *
7730
8005
  * @export
@@ -10114,7 +10389,7 @@ export declare const BrandApiAxiosParamCreator: (configuration?: Configuration)
10114
10389
  * @param {string} [search]
10115
10390
  * @param {string} [startDate]
10116
10391
  * @param {string} [endDate]
10117
- * @param {string} [dateField]
10392
+ * @param {GetBrandsDateFieldEnum} [dateField]
10118
10393
  * @param {OrderEnum} [order]
10119
10394
  * @param {string} [sort]
10120
10395
  * @param {string} [companyId]
@@ -10123,7 +10398,7 @@ export declare const BrandApiAxiosParamCreator: (configuration?: Configuration)
10123
10398
  * @param {*} [options] Override http request option.
10124
10399
  * @throws {RequiredError}
10125
10400
  */
10126
- getBrands: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
10127
10402
  /**
10128
10403
  *
10129
10404
  * @param {string} id
@@ -10173,7 +10448,7 @@ export declare const BrandApiFp: (configuration?: Configuration) => {
10173
10448
  * @param {string} [search]
10174
10449
  * @param {string} [startDate]
10175
10450
  * @param {string} [endDate]
10176
- * @param {string} [dateField]
10451
+ * @param {GetBrandsDateFieldEnum} [dateField]
10177
10452
  * @param {OrderEnum} [order]
10178
10453
  * @param {string} [sort]
10179
10454
  * @param {string} [companyId]
@@ -10182,7 +10457,7 @@ export declare const BrandApiFp: (configuration?: Configuration) => {
10182
10457
  * @param {*} [options] Override http request option.
10183
10458
  * @throws {RequiredError}
10184
10459
  */
10185
- getBrands(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IBrandsResponse>>;
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>>;
10186
10461
  /**
10187
10462
  *
10188
10463
  * @param {string} id
@@ -10330,10 +10605,10 @@ export interface BrandApiGetBrandsRequest {
10330
10605
  readonly endDate?: string;
10331
10606
  /**
10332
10607
  *
10333
- * @type {string}
10608
+ * @type {'createdAt' | 'updatedAt'}
10334
10609
  * @memberof BrandApiGetBrands
10335
10610
  */
10336
- readonly dateField?: string;
10611
+ readonly dateField?: GetBrandsDateFieldEnum;
10337
10612
  /**
10338
10613
  *
10339
10614
  * @type {OrderEnum}
@@ -10440,6 +10715,14 @@ export declare class BrandApi extends BaseAPI {
10440
10715
  */
10441
10716
  updateBrand(requestParameters: BrandApiUpdateBrandRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IBrandResponse, any>>;
10442
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];
10443
10726
  /**
10444
10727
  * CategoryApi - axios parameter creator
10445
10728
  * @export
@@ -10473,7 +10756,7 @@ export declare const CategoryApiAxiosParamCreator: (configuration?: Configuratio
10473
10756
  * @param {string} [search]
10474
10757
  * @param {string} [startDate]
10475
10758
  * @param {string} [endDate]
10476
- * @param {string} [dateField]
10759
+ * @param {GetCategoriesDateFieldEnum} [dateField]
10477
10760
  * @param {OrderEnum} [order]
10478
10761
  * @param {string} [sort]
10479
10762
  * @param {string} [companyId]
@@ -10482,7 +10765,7 @@ export declare const CategoryApiAxiosParamCreator: (configuration?: Configuratio
10482
10765
  * @param {*} [options] Override http request option.
10483
10766
  * @throws {RequiredError}
10484
10767
  */
10485
- getCategories: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
10486
10769
  /**
10487
10770
  *
10488
10771
  * @param {string} companyId
@@ -10539,7 +10822,7 @@ export declare const CategoryApiFp: (configuration?: Configuration) => {
10539
10822
  * @param {string} [search]
10540
10823
  * @param {string} [startDate]
10541
10824
  * @param {string} [endDate]
10542
- * @param {string} [dateField]
10825
+ * @param {GetCategoriesDateFieldEnum} [dateField]
10543
10826
  * @param {OrderEnum} [order]
10544
10827
  * @param {string} [sort]
10545
10828
  * @param {string} [companyId]
@@ -10548,7 +10831,7 @@ export declare const CategoryApiFp: (configuration?: Configuration) => {
10548
10831
  * @param {*} [options] Override http request option.
10549
10832
  * @throws {RequiredError}
10550
10833
  */
10551
- getCategories(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICategoriesResponse>>;
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>>;
10552
10835
  /**
10553
10836
  *
10554
10837
  * @param {string} companyId
@@ -10704,10 +10987,10 @@ export interface CategoryApiGetCategoriesRequest {
10704
10987
  readonly endDate?: string;
10705
10988
  /**
10706
10989
  *
10707
- * @type {string}
10990
+ * @type {'createdAt' | 'updatedAt'}
10708
10991
  * @memberof CategoryApiGetCategories
10709
10992
  */
10710
- readonly dateField?: string;
10993
+ readonly dateField?: GetCategoriesDateFieldEnum;
10711
10994
  /**
10712
10995
  *
10713
10996
  * @type {OrderEnum}
@@ -10848,6 +11131,14 @@ export declare class CategoryApi extends BaseAPI {
10848
11131
  */
10849
11132
  updateCategory(requestParameters: CategoryApiUpdateCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICategoryResponse, any>>;
10850
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];
10851
11142
  /**
10852
11143
  * CollectionApi - axios parameter creator
10853
11144
  * @export
@@ -10899,14 +11190,14 @@ export declare const CollectionApiAxiosParamCreator: (configuration?: Configurat
10899
11190
  * @param {string} [search]
10900
11191
  * @param {string} [startDate]
10901
11192
  * @param {string} [endDate]
10902
- * @param {string} [dateField]
11193
+ * @param {GetCollectionsDateFieldEnum} [dateField]
10903
11194
  * @param {OrderEnum} [order]
10904
11195
  * @param {string} [sort]
10905
11196
  * @param {ContentStatusEnum} [status]
10906
11197
  * @param {*} [options] Override http request option.
10907
11198
  * @throws {RequiredError}
10908
11199
  */
10909
- getCollections: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
10910
11201
  /**
10911
11202
  *
10912
11203
  * @param {string} companyId
@@ -10975,14 +11266,14 @@ export declare const CollectionApiFp: (configuration?: Configuration) => {
10975
11266
  * @param {string} [search]
10976
11267
  * @param {string} [startDate]
10977
11268
  * @param {string} [endDate]
10978
- * @param {string} [dateField]
11269
+ * @param {GetCollectionsDateFieldEnum} [dateField]
10979
11270
  * @param {OrderEnum} [order]
10980
11271
  * @param {string} [sort]
10981
11272
  * @param {ContentStatusEnum} [status]
10982
11273
  * @param {*} [options] Override http request option.
10983
11274
  * @throws {RequiredError}
10984
11275
  */
10985
- getCollections(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICollectionsResponse>>;
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>>;
10986
11277
  /**
10987
11278
  *
10988
11279
  * @param {string} companyId
@@ -11189,10 +11480,10 @@ export interface CollectionApiGetCollectionsRequest {
11189
11480
  readonly endDate?: string;
11190
11481
  /**
11191
11482
  *
11192
- * @type {string}
11483
+ * @type {'createdAt' | 'updatedAt'}
11193
11484
  * @memberof CollectionApiGetCollections
11194
11485
  */
11195
- readonly dateField?: string;
11486
+ readonly dateField?: GetCollectionsDateFieldEnum;
11196
11487
  /**
11197
11488
  *
11198
11489
  * @type {OrderEnum}
@@ -11322,6 +11613,14 @@ export declare class CollectionApi extends BaseAPI {
11322
11613
  */
11323
11614
  updateCollection(requestParameters: CollectionApiUpdateCollectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICollectionResponse, any>>;
11324
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];
11325
11624
  /**
11326
11625
  * CompanyApi - axios parameter creator
11327
11626
  * @export
@@ -11387,7 +11686,7 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
11387
11686
  * @param {string} [search]
11388
11687
  * @param {string} [startDate]
11389
11688
  * @param {string} [endDate]
11390
- * @param {string} [dateField]
11689
+ * @param {GetCompaniesDateFieldEnum} [dateField]
11391
11690
  * @param {OrderEnum} [order]
11392
11691
  * @param {string} [sort]
11393
11692
  * @param {string} [owner]
@@ -11397,7 +11696,7 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
11397
11696
  * @param {*} [options] Override http request option.
11398
11697
  * @throws {RequiredError}
11399
11698
  */
11400
- getCompanies: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, owner?: string, type?: string, plan?: PlanTypeEnum, status?: CompanyStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
11401
11700
  /**
11402
11701
  *
11403
11702
  * @param {string} domain
@@ -11420,14 +11719,21 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
11420
11719
  * @param {string} [search]
11421
11720
  * @param {string} [startDate]
11422
11721
  * @param {string} [endDate]
11423
- * @param {string} [dateField]
11722
+ * @param {GetCompanyCustomersDateFieldEnum} [dateField]
11424
11723
  * @param {OrderEnum} [order]
11425
11724
  * @param {string} [sort]
11426
11725
  * @param {CompanyUserStatusEnum} [status]
11427
11726
  * @param {*} [options] Override http request option.
11428
11727
  * @throws {RequiredError}
11429
11728
  */
11430
- getCompanyCustomers: (id: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: CompanyUserStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
11431
11737
  /**
11432
11738
  *
11433
11739
  * @param {string} id
@@ -11483,6 +11789,14 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
11483
11789
  * @throws {RequiredError}
11484
11790
  */
11485
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>;
11486
11800
  /**
11487
11801
  *
11488
11802
  * @param {string} id
@@ -11566,7 +11880,7 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
11566
11880
  * @param {string} [search]
11567
11881
  * @param {string} [startDate]
11568
11882
  * @param {string} [endDate]
11569
- * @param {string} [dateField]
11883
+ * @param {GetCompaniesDateFieldEnum} [dateField]
11570
11884
  * @param {OrderEnum} [order]
11571
11885
  * @param {string} [sort]
11572
11886
  * @param {string} [owner]
@@ -11576,7 +11890,7 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
11576
11890
  * @param {*} [options] Override http request option.
11577
11891
  * @throws {RequiredError}
11578
11892
  */
11579
- getCompanies(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, owner?: string, type?: string, plan?: PlanTypeEnum, status?: CompanyStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompaniesResponse>>;
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>>;
11580
11894
  /**
11581
11895
  *
11582
11896
  * @param {string} domain
@@ -11599,14 +11913,21 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
11599
11913
  * @param {string} [search]
11600
11914
  * @param {string} [startDate]
11601
11915
  * @param {string} [endDate]
11602
- * @param {string} [dateField]
11916
+ * @param {GetCompanyCustomersDateFieldEnum} [dateField]
11603
11917
  * @param {OrderEnum} [order]
11604
11918
  * @param {string} [sort]
11605
11919
  * @param {CompanyUserStatusEnum} [status]
11606
11920
  * @param {*} [options] Override http request option.
11607
11921
  * @throws {RequiredError}
11608
11922
  */
11609
- getCompanyCustomers(id: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: CompanyUserStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUsersResponse>>;
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>>;
11610
11931
  /**
11611
11932
  *
11612
11933
  * @param {string} id
@@ -11662,6 +11983,14 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
11662
11983
  * @throws {RequiredError}
11663
11984
  */
11664
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>>;
11665
11994
  /**
11666
11995
  *
11667
11996
  * @param {string} id
@@ -11762,6 +12091,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
11762
12091
  * @throws {RequiredError}
11763
12092
  */
11764
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>;
11765
12101
  /**
11766
12102
  *
11767
12103
  * @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
@@ -11811,6 +12147,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
11811
12147
  * @throws {RequiredError}
11812
12148
  */
11813
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>;
11814
12157
  /**
11815
12158
  *
11816
12159
  * @param {CompanyApiUpdatePrimaryDomainRequest} requestParameters Request parameters.
@@ -11979,10 +12322,10 @@ export interface CompanyApiGetCompaniesRequest {
11979
12322
  readonly endDate?: string;
11980
12323
  /**
11981
12324
  *
11982
- * @type {string}
12325
+ * @type {'createdAt' | 'updatedAt'}
11983
12326
  * @memberof CompanyApiGetCompanies
11984
12327
  */
11985
- readonly dateField?: string;
12328
+ readonly dateField?: GetCompaniesDateFieldEnum;
11986
12329
  /**
11987
12330
  *
11988
12331
  * @type {OrderEnum}
@@ -12090,10 +12433,10 @@ export interface CompanyApiGetCompanyCustomersRequest {
12090
12433
  readonly endDate?: string;
12091
12434
  /**
12092
12435
  *
12093
- * @type {string}
12436
+ * @type {'createdAt' | 'updatedAt'}
12094
12437
  * @memberof CompanyApiGetCompanyCustomers
12095
12438
  */
12096
- readonly dateField?: string;
12439
+ readonly dateField?: GetCompanyCustomersDateFieldEnum;
12097
12440
  /**
12098
12441
  *
12099
12442
  * @type {OrderEnum}
@@ -12113,6 +12456,19 @@ export interface CompanyApiGetCompanyCustomersRequest {
12113
12456
  */
12114
12457
  readonly status?: CompanyUserStatusEnum;
12115
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
+ }
12116
12472
  /**
12117
12473
  * Request parameters for getCompanyUsers operation in CompanyApi.
12118
12474
  * @export
@@ -12240,6 +12596,25 @@ export interface CompanyApiUpdateCompanyNavigationsRequest {
12240
12596
  */
12241
12597
  readonly iCompanyUpdateNavigationRequest: ICompanyUpdateNavigationRequest;
12242
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
+ }
12243
12618
  /**
12244
12619
  * Request parameters for updatePrimaryDomain operation in CompanyApi.
12245
12620
  * @export
@@ -12379,6 +12754,14 @@ export declare class CompanyApi extends BaseAPI {
12379
12754
  * @memberof CompanyApi
12380
12755
  */
12381
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>>;
12382
12765
  /**
12383
12766
  *
12384
12767
  * @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
@@ -12435,6 +12818,14 @@ export declare class CompanyApi extends BaseAPI {
12435
12818
  * @memberof CompanyApi
12436
12819
  */
12437
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>>;
12438
12829
  /**
12439
12830
  *
12440
12831
  * @param {CompanyApiUpdatePrimaryDomainRequest} requestParameters Request parameters.
@@ -12452,6 +12843,22 @@ export declare class CompanyApi extends BaseAPI {
12452
12843
  */
12453
12844
  updateUserInCompany(requestParameters: CompanyApiUpdateUserInCompanyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyResponse, any>>;
12454
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];
12455
12862
  /**
12456
12863
  * ContactFormApi - axios parameter creator
12457
12864
  * @export
@@ -12486,13 +12893,13 @@ export declare const ContactFormApiAxiosParamCreator: (configuration?: Configura
12486
12893
  * @param {string} [search]
12487
12894
  * @param {string} [startDate]
12488
12895
  * @param {string} [endDate]
12489
- * @param {string} [dateField]
12896
+ * @param {GetContactFormsDateFieldEnum} [dateField]
12490
12897
  * @param {OrderEnum} [order]
12491
12898
  * @param {string} [sort]
12492
12899
  * @param {*} [options] Override http request option.
12493
12900
  * @throws {RequiredError}
12494
12901
  */
12495
- getContactForms: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12902
+ getContactForms: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetContactFormsDateFieldEnum, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12496
12903
  };
12497
12904
  /**
12498
12905
  * ContactFormApi - functional programming interface
@@ -12528,13 +12935,13 @@ export declare const ContactFormApiFp: (configuration?: Configuration) => {
12528
12935
  * @param {string} [search]
12529
12936
  * @param {string} [startDate]
12530
12937
  * @param {string} [endDate]
12531
- * @param {string} [dateField]
12938
+ * @param {GetContactFormsDateFieldEnum} [dateField]
12532
12939
  * @param {OrderEnum} [order]
12533
12940
  * @param {string} [sort]
12534
12941
  * @param {*} [options] Override http request option.
12535
12942
  * @throws {RequiredError}
12536
12943
  */
12537
- getContactForms(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IContactFormsResponse>>;
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>>;
12538
12945
  };
12539
12946
  /**
12540
12947
  * ContactFormApi - factory interface
@@ -12653,10 +13060,10 @@ export interface ContactFormApiGetContactFormsRequest {
12653
13060
  readonly endDate?: string;
12654
13061
  /**
12655
13062
  *
12656
- * @type {string}
13063
+ * @type {'createdAt' | 'updatedAt'}
12657
13064
  * @memberof ContactFormApiGetContactForms
12658
13065
  */
12659
- readonly dateField?: string;
13066
+ readonly dateField?: GetContactFormsDateFieldEnum;
12660
13067
  /**
12661
13068
  *
12662
13069
  * @type {OrderEnum}
@@ -12710,6 +13117,14 @@ export declare class ContactFormApi extends BaseAPI {
12710
13117
  */
12711
13118
  getContactForms(requestParameters: ContactFormApiGetContactFormsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IContactFormsResponse, any>>;
12712
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];
12713
13128
  /**
12714
13129
  * FileApi - axios parameter creator
12715
13130
  * @export
@@ -12737,7 +13152,7 @@ export declare const FileApiAxiosParamCreator: (configuration?: Configuration) =
12737
13152
  * @param {string} [search]
12738
13153
  * @param {string} [startDate]
12739
13154
  * @param {string} [endDate]
12740
- * @param {string} [dateField]
13155
+ * @param {GetFilesDateFieldEnum} [dateField]
12741
13156
  * @param {OrderEnum} [order]
12742
13157
  * @param {string} [sort]
12743
13158
  * @param {Array<FileKeywordEnum>} [keywords]
@@ -12746,7 +13161,7 @@ export declare const FileApiAxiosParamCreator: (configuration?: Configuration) =
12746
13161
  * @param {*} [options] Override http request option.
12747
13162
  * @throws {RequiredError}
12748
13163
  */
12749
- getFiles: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, keywords?: Array<FileKeywordEnum>, type?: FileTypeEnum, status?: FileStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
12750
13165
  /**
12751
13166
  *
12752
13167
  * @param {string} id
@@ -12792,7 +13207,7 @@ export declare const FileApiFp: (configuration?: Configuration) => {
12792
13207
  * @param {string} [search]
12793
13208
  * @param {string} [startDate]
12794
13209
  * @param {string} [endDate]
12795
- * @param {string} [dateField]
13210
+ * @param {GetFilesDateFieldEnum} [dateField]
12796
13211
  * @param {OrderEnum} [order]
12797
13212
  * @param {string} [sort]
12798
13213
  * @param {Array<FileKeywordEnum>} [keywords]
@@ -12801,7 +13216,7 @@ export declare const FileApiFp: (configuration?: Configuration) => {
12801
13216
  * @param {*} [options] Override http request option.
12802
13217
  * @throws {RequiredError}
12803
13218
  */
12804
- getFiles(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, keywords?: Array<FileKeywordEnum>, type?: FileTypeEnum, status?: FileStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IFilesResponse>>;
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>>;
12805
13220
  /**
12806
13221
  *
12807
13222
  * @param {string} id
@@ -12931,10 +13346,10 @@ export interface FileApiGetFilesRequest {
12931
13346
  readonly endDate?: string;
12932
13347
  /**
12933
13348
  *
12934
- * @type {string}
13349
+ * @type {'createdAt' | 'updatedAt'}
12935
13350
  * @memberof FileApiGetFiles
12936
13351
  */
12937
- readonly dateField?: string;
13352
+ readonly dateField?: GetFilesDateFieldEnum;
12938
13353
  /**
12939
13354
  *
12940
13355
  * @type {OrderEnum}
@@ -13058,6 +13473,14 @@ export declare class FileApi extends BaseAPI {
13058
13473
  */
13059
13474
  uploadFile(requestParameters: FileApiUploadFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IImage, any>>;
13060
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];
13061
13484
  /**
13062
13485
  * NotificationApi - axios parameter creator
13063
13486
  * @export
@@ -13084,7 +13507,7 @@ export declare const NotificationApiAxiosParamCreator: (configuration?: Configur
13084
13507
  * @param {string} [search]
13085
13508
  * @param {string} [startDate]
13086
13509
  * @param {string} [endDate]
13087
- * @param {string} [dateField]
13510
+ * @param {GetNotificationsDateFieldEnum} [dateField]
13088
13511
  * @param {OrderEnum} [order]
13089
13512
  * @param {string} [sort]
13090
13513
  * @param {string} [user]
@@ -13093,7 +13516,7 @@ export declare const NotificationApiAxiosParamCreator: (configuration?: Configur
13093
13516
  * @param {*} [options] Override http request option.
13094
13517
  * @throws {RequiredError}
13095
13518
  */
13096
- getNotifications: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, user?: string, companyId?: string, status?: NotificationStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
13097
13520
  /**
13098
13521
  *
13099
13522
  * @param {*} [options] Override http request option.
@@ -13134,7 +13557,7 @@ export declare const NotificationApiFp: (configuration?: Configuration) => {
13134
13557
  * @param {string} [search]
13135
13558
  * @param {string} [startDate]
13136
13559
  * @param {string} [endDate]
13137
- * @param {string} [dateField]
13560
+ * @param {GetNotificationsDateFieldEnum} [dateField]
13138
13561
  * @param {OrderEnum} [order]
13139
13562
  * @param {string} [sort]
13140
13563
  * @param {string} [user]
@@ -13143,7 +13566,7 @@ export declare const NotificationApiFp: (configuration?: Configuration) => {
13143
13566
  * @param {*} [options] Override http request option.
13144
13567
  * @throws {RequiredError}
13145
13568
  */
13146
- getNotifications(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, user?: string, companyId?: string, status?: NotificationStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<INotificationsResponse>>;
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>>;
13147
13570
  /**
13148
13571
  *
13149
13572
  * @param {*} [options] Override http request option.
@@ -13262,10 +13685,10 @@ export interface NotificationApiGetNotificationsRequest {
13262
13685
  readonly endDate?: string;
13263
13686
  /**
13264
13687
  *
13265
- * @type {string}
13688
+ * @type {'createdAt' | 'updatedAt'}
13266
13689
  * @memberof NotificationApiGetNotifications
13267
13690
  */
13268
- readonly dateField?: string;
13691
+ readonly dateField?: GetNotificationsDateFieldEnum;
13269
13692
  /**
13270
13693
  *
13271
13694
  * @type {OrderEnum}
@@ -13357,6 +13780,14 @@ export declare class NotificationApi extends BaseAPI {
13357
13780
  */
13358
13781
  markNotificationAsRead(requestParameters: NotificationApiMarkNotificationAsReadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
13359
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];
13360
13791
  /**
13361
13792
  * OperationApi - axios parameter creator
13362
13793
  * @export
@@ -13390,7 +13821,7 @@ export declare const OperationApiAxiosParamCreator: (configuration?: Configurati
13390
13821
  * @param {string} [search]
13391
13822
  * @param {string} [startDate]
13392
13823
  * @param {string} [endDate]
13393
- * @param {string} [dateField]
13824
+ * @param {GetOperationsDateFieldEnum} [dateField]
13394
13825
  * @param {OrderEnum} [order]
13395
13826
  * @param {string} [sort]
13396
13827
  * @param {string} [user]
@@ -13399,7 +13830,7 @@ export declare const OperationApiAxiosParamCreator: (configuration?: Configurati
13399
13830
  * @param {*} [options] Override http request option.
13400
13831
  * @throws {RequiredError}
13401
13832
  */
13402
- getOperations: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, user?: string, company?: string, status?: OperationStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
13403
13834
  /**
13404
13835
  *
13405
13836
  * @param {string} id
@@ -13449,7 +13880,7 @@ export declare const OperationApiFp: (configuration?: Configuration) => {
13449
13880
  * @param {string} [search]
13450
13881
  * @param {string} [startDate]
13451
13882
  * @param {string} [endDate]
13452
- * @param {string} [dateField]
13883
+ * @param {GetOperationsDateFieldEnum} [dateField]
13453
13884
  * @param {OrderEnum} [order]
13454
13885
  * @param {string} [sort]
13455
13886
  * @param {string} [user]
@@ -13458,7 +13889,7 @@ export declare const OperationApiFp: (configuration?: Configuration) => {
13458
13889
  * @param {*} [options] Override http request option.
13459
13890
  * @throws {RequiredError}
13460
13891
  */
13461
- getOperations(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, user?: string, company?: string, status?: OperationStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOperationsResponse>>;
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>>;
13462
13893
  /**
13463
13894
  *
13464
13895
  * @param {string} id
@@ -13600,10 +14031,10 @@ export interface OperationApiGetOperationsRequest {
13600
14031
  readonly endDate?: string;
13601
14032
  /**
13602
14033
  *
13603
- * @type {string}
14034
+ * @type {'createdAt' | 'updatedAt'}
13604
14035
  * @memberof OperationApiGetOperations
13605
14036
  */
13606
- readonly dateField?: string;
14037
+ readonly dateField?: GetOperationsDateFieldEnum;
13607
14038
  /**
13608
14039
  *
13609
14040
  * @type {OrderEnum}
@@ -13723,6 +14154,14 @@ export declare class OperationApi extends BaseAPI {
13723
14154
  */
13724
14155
  updateOperation(requestParameters: OperationApiUpdateOperationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOperationResponse, any>>;
13725
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];
13726
14165
  /**
13727
14166
  * OrderApi - axios parameter creator
13728
14167
  * @export
@@ -13737,11 +14176,19 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
13737
14176
  createOrder: (iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13738
14177
  /**
13739
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]
13740
14187
  * @param {OrderStatusEnum} [status]
13741
14188
  * @param {*} [options] Override http request option.
13742
14189
  * @throws {RequiredError}
13743
14190
  */
13744
- getMyOrders: (status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14191
+ getMyOrders: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetMyOrdersDateFieldEnum, order?: OrderEnum, sort?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13745
14192
  /**
13746
14193
  *
13747
14194
  * @param {string} id
@@ -13757,7 +14204,7 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
13757
14204
  * @param {string} [search]
13758
14205
  * @param {string} [startDate]
13759
14206
  * @param {string} [endDate]
13760
- * @param {string} [dateField]
14207
+ * @param {GetOrdersDateFieldEnum} [dateField]
13761
14208
  * @param {OrderEnum} [order]
13762
14209
  * @param {string} [sort]
13763
14210
  * @param {string} [user]
@@ -13765,7 +14212,7 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
13765
14212
  * @param {*} [options] Override http request option.
13766
14213
  * @throws {RequiredError}
13767
14214
  */
13768
- getOrders: (company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, user?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
13769
14216
  };
13770
14217
  /**
13771
14218
  * OrderApi - functional programming interface
@@ -13781,11 +14228,19 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
13781
14228
  createOrder(iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrderResponse>>;
13782
14229
  /**
13783
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]
13784
14239
  * @param {OrderStatusEnum} [status]
13785
14240
  * @param {*} [options] Override http request option.
13786
14241
  * @throws {RequiredError}
13787
14242
  */
13788
- getMyOrders(status?: OrderStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrdersResponse>>;
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>>;
13789
14244
  /**
13790
14245
  *
13791
14246
  * @param {string} id
@@ -13801,7 +14256,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
13801
14256
  * @param {string} [search]
13802
14257
  * @param {string} [startDate]
13803
14258
  * @param {string} [endDate]
13804
- * @param {string} [dateField]
14259
+ * @param {GetOrdersDateFieldEnum} [dateField]
13805
14260
  * @param {OrderEnum} [order]
13806
14261
  * @param {string} [sort]
13807
14262
  * @param {string} [user]
@@ -13809,7 +14264,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
13809
14264
  * @param {*} [options] Override http request option.
13810
14265
  * @throws {RequiredError}
13811
14266
  */
13812
- getOrders(company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, user?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrdersResponse>>;
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>>;
13813
14268
  };
13814
14269
  /**
13815
14270
  * OrderApi - factory interface
@@ -13864,6 +14319,54 @@ export interface OrderApiCreateOrderRequest {
13864
14319
  * @interface OrderApiGetMyOrdersRequest
13865
14320
  */
13866
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;
13867
14370
  /**
13868
14371
  *
13869
14372
  * @type {OrderStatusEnum}
@@ -13928,10 +14431,10 @@ export interface OrderApiGetOrdersRequest {
13928
14431
  readonly endDate?: string;
13929
14432
  /**
13930
14433
  *
13931
- * @type {string}
14434
+ * @type {'createdAt' | 'updatedAt'}
13932
14435
  * @memberof OrderApiGetOrders
13933
14436
  */
13934
- readonly dateField?: string;
14437
+ readonly dateField?: GetOrdersDateFieldEnum;
13935
14438
  /**
13936
14439
  *
13937
14440
  * @type {OrderEnum}
@@ -13997,6 +14500,22 @@ export declare class OrderApi extends BaseAPI {
13997
14500
  */
13998
14501
  getOrders(requestParameters: OrderApiGetOrdersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOrdersResponse, any>>;
13999
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];
14000
14519
  /**
14001
14520
  * PageApi - axios parameter creator
14002
14521
  * @export
@@ -14060,7 +14579,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
14060
14579
  * @param {string} [search]
14061
14580
  * @param {string} [startDate]
14062
14581
  * @param {string} [endDate]
14063
- * @param {string} [dateField]
14582
+ * @param {GetPagesDateFieldEnum} [dateField]
14064
14583
  * @param {OrderEnum} [order]
14065
14584
  * @param {string} [sort]
14066
14585
  * @param {string} [companyId]
@@ -14070,7 +14589,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
14070
14589
  * @param {*} [options] Override http request option.
14071
14590
  * @throws {RequiredError}
14072
14591
  */
14073
- getPages: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
14074
14593
  /**
14075
14594
  *
14076
14595
  * @param {string} companyId
@@ -14150,7 +14669,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
14150
14669
  * @param {string} [search]
14151
14670
  * @param {string} [startDate]
14152
14671
  * @param {string} [endDate]
14153
- * @param {string} [dateField]
14672
+ * @param {GetPagesDateFieldEnum} [dateField]
14154
14673
  * @param {OrderEnum} [order]
14155
14674
  * @param {string} [sort]
14156
14675
  * @param {string} [companyId]
@@ -14160,7 +14679,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
14160
14679
  * @param {*} [options] Override http request option.
14161
14680
  * @throws {RequiredError}
14162
14681
  */
14163
- getPages(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPagesResponse>>;
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>>;
14164
14683
  /**
14165
14684
  *
14166
14685
  * @param {string} companyId
@@ -14416,10 +14935,10 @@ export interface PageApiGetPagesRequest {
14416
14935
  readonly endDate?: string;
14417
14936
  /**
14418
14937
  *
14419
- * @type {string}
14938
+ * @type {'createdAt' | 'updatedAt'}
14420
14939
  * @memberof PageApiGetPages
14421
14940
  */
14422
- readonly dateField?: string;
14941
+ readonly dateField?: GetPagesDateFieldEnum;
14423
14942
  /**
14424
14943
  *
14425
14944
  * @type {OrderEnum}
@@ -14569,6 +15088,14 @@ export declare class PageApi extends BaseAPI {
14569
15088
  */
14570
15089
  updatePage(requestParameters: PageApiUpdatePageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPageResponse, any>>;
14571
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];
14572
15099
  /**
14573
15100
  * PlanApi - axios parameter creator
14574
15101
  * @export
@@ -14602,7 +15129,7 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
14602
15129
  * @param {string} [search]
14603
15130
  * @param {string} [startDate]
14604
15131
  * @param {string} [endDate]
14605
- * @param {string} [dateField]
15132
+ * @param {GetPlansDateFieldEnum} [dateField]
14606
15133
  * @param {OrderEnum} [order]
14607
15134
  * @param {string} [sort]
14608
15135
  * @param {PlanStatusEnum} [status]
@@ -14610,7 +15137,7 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
14610
15137
  * @param {*} [options] Override http request option.
14611
15138
  * @throws {RequiredError}
14612
15139
  */
14613
- getPlans: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: PlanStatusEnum, type?: PlanTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
14614
15141
  /**
14615
15142
  *
14616
15143
  * @param {string} id
@@ -14653,7 +15180,7 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
14653
15180
  * @param {string} [search]
14654
15181
  * @param {string} [startDate]
14655
15182
  * @param {string} [endDate]
14656
- * @param {string} [dateField]
15183
+ * @param {GetPlansDateFieldEnum} [dateField]
14657
15184
  * @param {OrderEnum} [order]
14658
15185
  * @param {string} [sort]
14659
15186
  * @param {PlanStatusEnum} [status]
@@ -14661,7 +15188,7 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
14661
15188
  * @param {*} [options] Override http request option.
14662
15189
  * @throws {RequiredError}
14663
15190
  */
14664
- getPlans(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: PlanStatusEnum, type?: PlanTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPlansResponse>>;
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>>;
14665
15192
  /**
14666
15193
  *
14667
15194
  * @param {string} id
@@ -14789,10 +15316,10 @@ export interface PlanApiGetPlansRequest {
14789
15316
  readonly endDate?: string;
14790
15317
  /**
14791
15318
  *
14792
- * @type {string}
15319
+ * @type {'createdAt' | 'updatedAt'}
14793
15320
  * @memberof PlanApiGetPlans
14794
15321
  */
14795
- readonly dateField?: string;
15322
+ readonly dateField?: GetPlansDateFieldEnum;
14796
15323
  /**
14797
15324
  *
14798
15325
  * @type {OrderEnum}
@@ -14885,6 +15412,14 @@ export declare class PlanApi extends BaseAPI {
14885
15412
  */
14886
15413
  updatePlan(requestParameters: PlanApiUpdatePlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPlanResponse, any>>;
14887
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];
14888
15423
  /**
14889
15424
  * ProductApi - axios parameter creator
14890
15425
  * @export
@@ -14944,7 +15479,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
14944
15479
  * @param {string} [search]
14945
15480
  * @param {string} [startDate]
14946
15481
  * @param {string} [endDate]
14947
- * @param {string} [dateField]
15482
+ * @param {GetProductsDateFieldEnum} [dateField]
14948
15483
  * @param {OrderEnum} [order]
14949
15484
  * @param {string} [sort]
14950
15485
  * @param {string} [companyId]
@@ -14956,7 +15491,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
14956
15491
  * @param {*} [options] Override http request option.
14957
15492
  * @throws {RequiredError}
14958
15493
  */
14959
- getProducts: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, collections?: string, category?: string, brand?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
14960
15495
  /**
14961
15496
  *
14962
15497
  * @param {string} search
@@ -15034,7 +15569,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
15034
15569
  * @param {string} [search]
15035
15570
  * @param {string} [startDate]
15036
15571
  * @param {string} [endDate]
15037
- * @param {string} [dateField]
15572
+ * @param {GetProductsDateFieldEnum} [dateField]
15038
15573
  * @param {OrderEnum} [order]
15039
15574
  * @param {string} [sort]
15040
15575
  * @param {string} [companyId]
@@ -15046,7 +15581,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
15046
15581
  * @param {*} [options] Override http request option.
15047
15582
  * @throws {RequiredError}
15048
15583
  */
15049
- getProducts(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, 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>>;
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>>;
15050
15585
  /**
15051
15586
  *
15052
15587
  * @param {string} search
@@ -15280,10 +15815,10 @@ export interface ProductApiGetProductsRequest {
15280
15815
  readonly endDate?: string;
15281
15816
  /**
15282
15817
  *
15283
- * @type {string}
15818
+ * @type {'createdAt' | 'updatedAt'}
15284
15819
  * @memberof ProductApiGetProducts
15285
15820
  */
15286
- readonly dateField?: string;
15821
+ readonly dateField?: GetProductsDateFieldEnum;
15287
15822
  /**
15288
15823
  *
15289
15824
  * @type {OrderEnum}
@@ -15457,6 +15992,14 @@ export declare class ProductApi extends BaseAPI {
15457
15992
  */
15458
15993
  updateProduct(requestParameters: ProductApiUpdateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IProductResponse, any>>;
15459
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];
15460
16003
  /**
15461
16004
  * SitemapApi - axios parameter creator
15462
16005
  * @export
@@ -16135,14 +16678,14 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
16135
16678
  * @param {string} [search]
16136
16679
  * @param {string} [startDate]
16137
16680
  * @param {string} [endDate]
16138
- * @param {string} [dateField]
16681
+ * @param {GetUsersDateFieldEnum} [dateField]
16139
16682
  * @param {OrderEnum} [order]
16140
16683
  * @param {string} [sort]
16141
16684
  * @param {UserStatusEnum} [status]
16142
16685
  * @param {*} [options] Override http request option.
16143
16686
  * @throws {RequiredError}
16144
16687
  */
16145
- getUsers: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: UserStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16688
+ getUsers: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetUsersDateFieldEnum, order?: OrderEnum, sort?: string, status?: UserStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16146
16689
  /**
16147
16690
  *
16148
16691
  * @param {*} [options] Override http request option.
@@ -16220,14 +16763,14 @@ export declare const UserApiFp: (configuration?: Configuration) => {
16220
16763
  * @param {string} [search]
16221
16764
  * @param {string} [startDate]
16222
16765
  * @param {string} [endDate]
16223
- * @param {string} [dateField]
16766
+ * @param {GetUsersDateFieldEnum} [dateField]
16224
16767
  * @param {OrderEnum} [order]
16225
16768
  * @param {string} [sort]
16226
16769
  * @param {UserStatusEnum} [status]
16227
16770
  * @param {*} [options] Override http request option.
16228
16771
  * @throws {RequiredError}
16229
16772
  */
16230
- getUsers(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: UserStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUsersResponse>>;
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>>;
16231
16774
  /**
16232
16775
  *
16233
16776
  * @param {*} [options] Override http request option.
@@ -16433,10 +16976,10 @@ export interface UserApiGetUsersRequest {
16433
16976
  readonly endDate?: string;
16434
16977
  /**
16435
16978
  *
16436
- * @type {string}
16979
+ * @type {'createdAt' | 'updatedAt'}
16437
16980
  * @memberof UserApiGetUsers
16438
16981
  */
16439
- readonly dateField?: string;
16982
+ readonly dateField?: GetUsersDateFieldEnum;
16440
16983
  /**
16441
16984
  *
16442
16985
  * @type {OrderEnum}
@@ -16587,3 +17130,11 @@ export declare class UserApi extends BaseAPI {
16587
17130
  */
16588
17131
  verifyUser(requestParameters: UserApiVerifyUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUserResponse, any>>;
16589
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];