@infisale-client/api 1.2.21 → 1.2.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api/api.d.ts 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
@@ -1887,11 +1902,11 @@ export interface ICompany {
1887
1902
  'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>;
1888
1903
  /**
1889
1904
  *
1890
- * @type {{ [key: string]: RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean; }}
1905
+ * @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
1891
1906
  * @memberof ICompany
1892
1907
  */
1893
1908
  'roles': {
1894
- [key: string]: RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean;
1909
+ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
1895
1910
  };
1896
1911
  /**
1897
1912
  *
@@ -2041,6 +2056,12 @@ export interface ICompany {
2041
2056
  * @memberof ICompany
2042
2057
  */
2043
2058
  'senderName'?: string;
2059
+ /**
2060
+ *
2061
+ * @type {Array<ICompanyPatchRequestPaymentGatewaysInner>}
2062
+ * @memberof ICompany
2063
+ */
2064
+ 'paymentGateways': Array<ICompanyPatchRequestPaymentGatewaysInner>;
2044
2065
  /**
2045
2066
  *
2046
2067
  * @type {CompanyStatusEnum}
@@ -2256,11 +2277,11 @@ export interface ICompanyAdminResponse {
2256
2277
  'users': Array<ICompanyAdminResponseUsersInner>;
2257
2278
  /**
2258
2279
  *
2259
- * @type {{ [key: string]: RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean; }}
2280
+ * @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
2260
2281
  * @memberof ICompanyAdminResponse
2261
2282
  */
2262
2283
  'roles': {
2263
- [key: string]: RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean;
2284
+ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
2264
2285
  };
2265
2286
  /**
2266
2287
  *
@@ -2379,7 +2400,7 @@ export interface ICompanyCollectionQueryParams {
2379
2400
  * @type {string}
2380
2401
  * @memberof ICompanyCollectionQueryParams
2381
2402
  */
2382
- 'dateField'?: 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
@@ -2647,11 +2673,11 @@ export interface ICompanyPatchRequest {
2647
2673
  'email'?: string;
2648
2674
  /**
2649
2675
  *
2650
- * @type {{ [key: string]: object; }}
2676
+ * @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
2651
2677
  * @memberof ICompanyPatchRequest
2652
2678
  */
2653
2679
  'roles'?: {
2654
- [key: string]: object;
2680
+ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
2655
2681
  };
2656
2682
  /**
2657
2683
  *
@@ -2695,6 +2721,12 @@ export interface ICompanyPatchRequest {
2695
2721
  * @memberof ICompanyPatchRequest
2696
2722
  */
2697
2723
  'dkim'?: string;
2724
+ /**
2725
+ *
2726
+ * @type {Array<ICompanyPatchRequestPaymentGatewaysInner>}
2727
+ * @memberof ICompanyPatchRequest
2728
+ */
2729
+ 'paymentGateways'?: Array<ICompanyPatchRequestPaymentGatewaysInner>;
2698
2730
  /**
2699
2731
  *
2700
2732
  * @type {CompanyTypeEnum}
@@ -2782,6 +2814,62 @@ export interface ICompanyPatchRequest {
2782
2814
  */
2783
2815
  'currencies'?: RecordCurrencyEnumCurrency;
2784
2816
  }
2817
+ /**
2818
+ *
2819
+ * @export
2820
+ * @interface ICompanyPatchRequestPaymentGatewaysInner
2821
+ */
2822
+ export interface ICompanyPatchRequestPaymentGatewaysInner {
2823
+ /**
2824
+ *
2825
+ * @type {boolean}
2826
+ * @memberof ICompanyPatchRequestPaymentGatewaysInner
2827
+ */
2828
+ 'active': boolean;
2829
+ /**
2830
+ *
2831
+ * @type {boolean}
2832
+ * @memberof ICompanyPatchRequestPaymentGatewaysInner
2833
+ */
2834
+ 'testMode': boolean;
2835
+ /**
2836
+ *
2837
+ * @type {string}
2838
+ * @memberof ICompanyPatchRequestPaymentGatewaysInner
2839
+ */
2840
+ 'secretKey': string;
2841
+ /**
2842
+ *
2843
+ * @type {string}
2844
+ * @memberof ICompanyPatchRequestPaymentGatewaysInner
2845
+ */
2846
+ 'apiKey': string;
2847
+ /**
2848
+ *
2849
+ * @type {PaymentGatewayEnum}
2850
+ * @memberof ICompanyPatchRequestPaymentGatewaysInner
2851
+ */
2852
+ 'type': PaymentGatewayEnum;
2853
+ /**
2854
+ *
2855
+ * @type {string}
2856
+ * @memberof ICompanyPatchRequestPaymentGatewaysInner
2857
+ */
2858
+ '_id': string;
2859
+ }
2860
+ /**
2861
+ *
2862
+ * @export
2863
+ * @interface ICompanyPaymentGatewaysResponse
2864
+ */
2865
+ export interface ICompanyPaymentGatewaysResponse {
2866
+ /**
2867
+ *
2868
+ * @type {Array<ICompanyPatchRequestPaymentGatewaysInner>}
2869
+ * @memberof ICompanyPaymentGatewaysResponse
2870
+ */
2871
+ 'data': Array<ICompanyPatchRequestPaymentGatewaysInner>;
2872
+ }
2785
2873
  /**
2786
2874
  *
2787
2875
  * @export
@@ -3509,6 +3597,62 @@ export interface ICompanyUpdateNavigationRequest {
3509
3597
  [key: string]: ICompanyResponseNavigationsValue;
3510
3598
  };
3511
3599
  }
3600
+ /**
3601
+ *
3602
+ * @export
3603
+ * @interface ICompanyUpdatePaymentGatewaysRequest
3604
+ */
3605
+ export interface ICompanyUpdatePaymentGatewaysRequest {
3606
+ /**
3607
+ *
3608
+ * @type {Array<ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner>}
3609
+ * @memberof ICompanyUpdatePaymentGatewaysRequest
3610
+ */
3611
+ 'paymentGateways': Array<ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner>;
3612
+ }
3613
+ /**
3614
+ *
3615
+ * @export
3616
+ * @interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
3617
+ */
3618
+ export interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner {
3619
+ /**
3620
+ *
3621
+ * @type {boolean}
3622
+ * @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
3623
+ */
3624
+ 'active': boolean;
3625
+ /**
3626
+ *
3627
+ * @type {boolean}
3628
+ * @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
3629
+ */
3630
+ 'testMode': boolean;
3631
+ /**
3632
+ *
3633
+ * @type {string}
3634
+ * @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
3635
+ */
3636
+ 'secretKey': string;
3637
+ /**
3638
+ *
3639
+ * @type {string}
3640
+ * @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
3641
+ */
3642
+ 'apiKey': string;
3643
+ /**
3644
+ *
3645
+ * @type {PaymentGatewayEnum}
3646
+ * @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
3647
+ */
3648
+ 'type': PaymentGatewayEnum;
3649
+ /**
3650
+ *
3651
+ * @type {string}
3652
+ * @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
3653
+ */
3654
+ '_id'?: string;
3655
+ }
3512
3656
  /**
3513
3657
  *
3514
3658
  * @export
@@ -3569,7 +3713,7 @@ export interface ICompanyUsersCollectionQueryParams {
3569
3713
  * @type {string}
3570
3714
  * @memberof ICompanyUsersCollectionQueryParams
3571
3715
  */
3572
- 'dateField'?: 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,24 @@ export interface IOrderCollectionQueryParams {
4922
5157
  */
4923
5158
  'status'?: OrderStatusEnum;
4924
5159
  }
5160
+ export declare const IOrderCollectionQueryParamsDateFieldEnum: {
5161
+ readonly CREATED_AT: "createdAt";
5162
+ readonly UPDATED_AT: "updatedAt";
5163
+ };
5164
+ export type IOrderCollectionQueryParamsDateFieldEnum = typeof IOrderCollectionQueryParamsDateFieldEnum[keyof typeof IOrderCollectionQueryParamsDateFieldEnum];
5165
+ /**
5166
+ *
5167
+ * @export
5168
+ * @interface IOrderCreateResponse
5169
+ */
5170
+ export interface IOrderCreateResponse {
5171
+ /**
5172
+ *
5173
+ * @type {string}
5174
+ * @memberof IOrderCreateResponse
5175
+ */
5176
+ 'redirectUrl'?: string;
5177
+ }
4925
5178
  /**
4926
5179
  *
4927
5180
  * @export
@@ -4997,58 +5250,70 @@ export interface IOrderPostRequest {
4997
5250
  export interface IOrderResponse {
4998
5251
  /**
4999
5252
  *
5000
- * @type {string}
5253
+ * @type {number}
5001
5254
  * @memberof IOrderResponse
5002
5255
  */
5003
- '_id': string;
5256
+ 'number': number;
5004
5257
  /**
5005
5258
  *
5006
- * @type {number}
5259
+ * @type {string}
5007
5260
  * @memberof IOrderResponse
5008
5261
  */
5009
- '__v': number;
5262
+ 'email'?: string;
5010
5263
  /**
5011
5264
  *
5012
5265
  * @type {string}
5013
5266
  * @memberof IOrderResponse
5014
5267
  */
5015
- 'createdAt': string;
5268
+ 'company': string;
5016
5269
  /**
5017
5270
  *
5018
- * @type {string}
5271
+ * @type {OrderStatusEnum}
5019
5272
  * @memberof IOrderResponse
5020
5273
  */
5021
- 'updatedAt': string;
5274
+ 'status': OrderStatusEnum;
5022
5275
  /**
5023
5276
  *
5024
5277
  * @type {string}
5025
5278
  * @memberof IOrderResponse
5026
5279
  */
5027
- 'company': string;
5280
+ '_id': string;
5281
+ /**
5282
+ *
5283
+ * @type {number}
5284
+ * @memberof IOrderResponse
5285
+ */
5286
+ '__v': number;
5028
5287
  /**
5029
5288
  *
5030
5289
  * @type {string}
5031
5290
  * @memberof IOrderResponse
5032
5291
  */
5033
- 'user'?: string;
5292
+ 'createdAt': string;
5034
5293
  /**
5035
5294
  *
5036
5295
  * @type {string}
5037
5296
  * @memberof IOrderResponse
5038
5297
  */
5039
- 'email'?: string;
5298
+ 'updatedAt': string;
5040
5299
  /**
5041
5300
  *
5042
- * @type {number}
5301
+ * @type {CurrencyEnum}
5043
5302
  * @memberof IOrderResponse
5044
5303
  */
5045
- 'number': number;
5304
+ 'currency': CurrencyEnum;
5046
5305
  /**
5047
5306
  *
5048
- * @type {Array<IOrderResponseProductsInner>}
5307
+ * @type {string}
5049
5308
  * @memberof IOrderResponse
5050
5309
  */
5051
- 'products': Array<IOrderResponseProductsInner>;
5310
+ 'user'?: string;
5311
+ /**
5312
+ *
5313
+ * @type {Array<PickIOrderExcludeKeyofIOrderHtmlProductsInner>}
5314
+ * @memberof IOrderResponse
5315
+ */
5316
+ 'products': Array<PickIOrderExcludeKeyofIOrderHtmlProductsInner>;
5052
5317
  /**
5053
5318
  *
5054
5319
  * @type {IAddress}
@@ -5067,6 +5332,12 @@ export interface IOrderResponse {
5067
5332
  * @memberof IOrderResponse
5068
5333
  */
5069
5334
  'paymentMethod': PaymentMethodEnum;
5335
+ /**
5336
+ *
5337
+ * @type {PaymentGatewayEnum}
5338
+ * @memberof IOrderResponse
5339
+ */
5340
+ 'paymentGateway': PaymentGatewayEnum;
5070
5341
  /**
5071
5342
  *
5072
5343
  * @type {string}
@@ -5115,85 +5386,6 @@ export interface IOrderResponse {
5115
5386
  * @memberof IOrderResponse
5116
5387
  */
5117
5388
  'note'?: string;
5118
- /**
5119
- *
5120
- * @type {CurrencyEnum}
5121
- * @memberof IOrderResponse
5122
- */
5123
- 'currency': CurrencyEnum;
5124
- /**
5125
- *
5126
- * @type {OrderStatusEnum}
5127
- * @memberof IOrderResponse
5128
- */
5129
- 'status': OrderStatusEnum;
5130
- }
5131
- /**
5132
- *
5133
- * @export
5134
- * @interface IOrderResponseProductsInner
5135
- */
5136
- export interface IOrderResponseProductsInner {
5137
- /**
5138
- *
5139
- * @type {number}
5140
- * @memberof IOrderResponseProductsInner
5141
- */
5142
- 'price': number;
5143
- /**
5144
- *
5145
- * @type {number}
5146
- * @memberof IOrderResponseProductsInner
5147
- */
5148
- 'amount': number;
5149
- /**
5150
- *
5151
- * @type {string}
5152
- * @memberof IOrderResponseProductsInner
5153
- */
5154
- 'subVariantId'?: string;
5155
- /**
5156
- *
5157
- * @type {string}
5158
- * @memberof IOrderResponseProductsInner
5159
- */
5160
- 'mainVariantId'?: string;
5161
- /**
5162
- *
5163
- * @type {PartialRecordLanguageEnumString}
5164
- * @memberof IOrderResponseProductsInner
5165
- */
5166
- 'subVariantTitle': PartialRecordLanguageEnumString;
5167
- /**
5168
- *
5169
- * @type {PartialRecordLanguageEnumString}
5170
- * @memberof IOrderResponseProductsInner
5171
- */
5172
- 'mainVariantTitle': PartialRecordLanguageEnumString;
5173
- /**
5174
- *
5175
- * @type {PartialRecordLanguageEnumString}
5176
- * @memberof IOrderResponseProductsInner
5177
- */
5178
- 'productSlug': PartialRecordLanguageEnumString;
5179
- /**
5180
- *
5181
- * @type {string}
5182
- * @memberof IOrderResponseProductsInner
5183
- */
5184
- 'productThumbnail'?: string;
5185
- /**
5186
- *
5187
- * @type {PartialRecordLanguageEnumString}
5188
- * @memberof IOrderResponseProductsInner
5189
- */
5190
- 'productTitle': PartialRecordLanguageEnumString;
5191
- /**
5192
- *
5193
- * @type {string}
5194
- * @memberof IOrderResponseProductsInner
5195
- */
5196
- 'productId': string;
5197
5389
  }
5198
5390
  /**
5199
5391
  *
@@ -5273,7 +5465,7 @@ export interface IPageCollectionQueryParams {
5273
5465
  * @type {string}
5274
5466
  * @memberof IPageCollectionQueryParams
5275
5467
  */
5276
- 'dateField'?: string;
5468
+ 'dateField'?: IPageCollectionQueryParamsDateFieldEnum;
5277
5469
  /**
5278
5470
  *
5279
5471
  * @type {OrderEnum}
@@ -5311,6 +5503,11 @@ export interface IPageCollectionQueryParams {
5311
5503
  */
5312
5504
  'status'?: ContentStatusEnum;
5313
5505
  }
5506
+ export declare const IPageCollectionQueryParamsDateFieldEnum: {
5507
+ readonly CREATED_AT: "createdAt";
5508
+ readonly UPDATED_AT: "updatedAt";
5509
+ };
5510
+ export type IPageCollectionQueryParamsDateFieldEnum = typeof IPageCollectionQueryParamsDateFieldEnum[keyof typeof IPageCollectionQueryParamsDateFieldEnum];
5314
5511
  /**
5315
5512
  *
5316
5513
  * @export
@@ -5555,7 +5752,7 @@ export interface IPlanCollectionQueryParams {
5555
5752
  * @type {string}
5556
5753
  * @memberof IPlanCollectionQueryParams
5557
5754
  */
5558
- 'dateField'?: string;
5755
+ 'dateField'?: IPlanCollectionQueryParamsDateFieldEnum;
5559
5756
  /**
5560
5757
  *
5561
5758
  * @type {OrderEnum}
@@ -5581,6 +5778,11 @@ export interface IPlanCollectionQueryParams {
5581
5778
  */
5582
5779
  'type'?: PlanTypeEnum;
5583
5780
  }
5781
+ export declare const IPlanCollectionQueryParamsDateFieldEnum: {
5782
+ readonly CREATED_AT: "createdAt";
5783
+ readonly UPDATED_AT: "updatedAt";
5784
+ };
5785
+ export type IPlanCollectionQueryParamsDateFieldEnum = typeof IPlanCollectionQueryParamsDateFieldEnum[keyof typeof IPlanCollectionQueryParamsDateFieldEnum];
5584
5786
  /**
5585
5787
  *
5586
5788
  * @export
@@ -5862,7 +6064,7 @@ export interface IProductCollectionQueryParams {
5862
6064
  * @type {string}
5863
6065
  * @memberof IProductCollectionQueryParams
5864
6066
  */
5865
- 'dateField'?: string;
6067
+ 'dateField'?: IProductCollectionQueryParamsDateFieldEnum;
5866
6068
  /**
5867
6069
  *
5868
6070
  * @type {OrderEnum}
@@ -5912,6 +6114,11 @@ export interface IProductCollectionQueryParams {
5912
6114
  */
5913
6115
  'status'?: ContentStatusEnum;
5914
6116
  }
6117
+ export declare const IProductCollectionQueryParamsDateFieldEnum: {
6118
+ readonly CREATED_AT: "createdAt";
6119
+ readonly UPDATED_AT: "updatedAt";
6120
+ };
6121
+ export type IProductCollectionQueryParamsDateFieldEnum = typeof IProductCollectionQueryParamsDateFieldEnum[keyof typeof IProductCollectionQueryParamsDateFieldEnum];
5915
6122
  /**
5916
6123
  *
5917
6124
  * @export
@@ -7278,7 +7485,7 @@ export interface IUserCollectionQueryParams {
7278
7485
  * @type {string}
7279
7486
  * @memberof IUserCollectionQueryParams
7280
7487
  */
7281
- 'dateField'?: string;
7488
+ 'dateField'?: IUserCollectionQueryParamsDateFieldEnum;
7282
7489
  /**
7283
7490
  *
7284
7491
  * @type {OrderEnum}
@@ -7298,6 +7505,11 @@ export interface IUserCollectionQueryParams {
7298
7505
  */
7299
7506
  'status'?: UserStatusEnum;
7300
7507
  }
7508
+ export declare const IUserCollectionQueryParamsDateFieldEnum: {
7509
+ readonly CREATED_AT: "createdAt";
7510
+ readonly UPDATED_AT: "updatedAt";
7511
+ };
7512
+ export type IUserCollectionQueryParamsDateFieldEnum = typeof IUserCollectionQueryParamsDateFieldEnum[keyof typeof IUserCollectionQueryParamsDateFieldEnum];
7301
7513
  /**
7302
7514
  *
7303
7515
  * @export
@@ -7725,6 +7937,16 @@ export interface PartialRecordLanguageEnumString {
7725
7937
  */
7726
7938
  'de'?: string;
7727
7939
  }
7940
+ /**
7941
+ *
7942
+ * @export
7943
+ * @enum {string}
7944
+ */
7945
+ export declare const PaymentGatewayEnum: {
7946
+ readonly IYZICO: "iyzico";
7947
+ readonly PAYTR: "paytr";
7948
+ };
7949
+ export type PaymentGatewayEnum = typeof PaymentGatewayEnum[keyof typeof PaymentGatewayEnum];
7728
7950
  /**
7729
7951
  *
7730
7952
  * @export
@@ -8262,11 +8484,11 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles {
8262
8484
  'name': string;
8263
8485
  /**
8264
8486
  *
8265
- * @type {{ [key: string]: object; }}
8487
+ * @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
8266
8488
  * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
8267
8489
  */
8268
8490
  'roles': {
8269
- [key: string]: object;
8491
+ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
8270
8492
  };
8271
8493
  /**
8272
8494
  *
@@ -8299,6 +8521,68 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles {
8299
8521
  */
8300
8522
  'domains': Array<string>;
8301
8523
  }
8524
+ /**
8525
+ *
8526
+ * @export
8527
+ * @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
8528
+ */
8529
+ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue {
8530
+ /**
8531
+ *
8532
+ * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
8533
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
8534
+ */
8535
+ 'order': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
8536
+ /**
8537
+ *
8538
+ * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
8539
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
8540
+ */
8541
+ 'config': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
8542
+ /**
8543
+ *
8544
+ * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
8545
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
8546
+ */
8547
+ 'navigation': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
8548
+ /**
8549
+ *
8550
+ * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
8551
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
8552
+ */
8553
+ 'company': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
8554
+ /**
8555
+ *
8556
+ * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
8557
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
8558
+ */
8559
+ 'page': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
8560
+ /**
8561
+ *
8562
+ * @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
8563
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
8564
+ */
8565
+ 'product': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
8566
+ }
8567
+ /**
8568
+ *
8569
+ * @export
8570
+ * @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder
8571
+ */
8572
+ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder {
8573
+ /**
8574
+ *
8575
+ * @type {boolean}
8576
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder
8577
+ */
8578
+ 'd': boolean;
8579
+ /**
8580
+ *
8581
+ * @type {boolean}
8582
+ * @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder
8583
+ */
8584
+ 'm': boolean;
8585
+ }
8302
8586
  /**
8303
8587
  *
8304
8588
  * @export
@@ -8332,22 +8616,234 @@ export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUse
8332
8616
  export interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp {
8333
8617
  /**
8334
8618
  *
8335
- * @type {string}
8336
- * @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
8619
+ * @type {string}
8620
+ * @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
8621
+ */
8622
+ 'name'?: string;
8623
+ /**
8624
+ *
8625
+ * @type {string}
8626
+ * @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
8627
+ */
8628
+ 'email': string;
8629
+ /**
8630
+ *
8631
+ * @type {string}
8632
+ * @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
8633
+ */
8634
+ 'message': string;
8635
+ }
8636
+ /**
8637
+ * From T, pick a set of properties whose keys are in the union K
8638
+ * @export
8639
+ * @interface PickIOrderExcludeKeyofIOrderHtml
8640
+ */
8641
+ export interface PickIOrderExcludeKeyofIOrderHtml {
8642
+ /**
8643
+ *
8644
+ * @type {number}
8645
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8646
+ */
8647
+ 'number': number;
8648
+ /**
8649
+ *
8650
+ * @type {string}
8651
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8652
+ */
8653
+ 'email'?: string;
8654
+ /**
8655
+ *
8656
+ * @type {string}
8657
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8658
+ */
8659
+ 'company': string;
8660
+ /**
8661
+ *
8662
+ * @type {OrderStatusEnum}
8663
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8664
+ */
8665
+ 'status': OrderStatusEnum;
8666
+ /**
8667
+ *
8668
+ * @type {string}
8669
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8670
+ */
8671
+ '_id': string;
8672
+ /**
8673
+ *
8674
+ * @type {number}
8675
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8676
+ */
8677
+ '__v': number;
8678
+ /**
8679
+ *
8680
+ * @type {string}
8681
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8682
+ */
8683
+ 'createdAt': string;
8684
+ /**
8685
+ *
8686
+ * @type {string}
8687
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8688
+ */
8689
+ 'updatedAt': string;
8690
+ /**
8691
+ *
8692
+ * @type {CurrencyEnum}
8693
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8694
+ */
8695
+ 'currency': CurrencyEnum;
8696
+ /**
8697
+ *
8698
+ * @type {string}
8699
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8700
+ */
8701
+ 'user'?: string;
8702
+ /**
8703
+ *
8704
+ * @type {Array<PickIOrderExcludeKeyofIOrderHtmlProductsInner>}
8705
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8706
+ */
8707
+ 'products': Array<PickIOrderExcludeKeyofIOrderHtmlProductsInner>;
8708
+ /**
8709
+ *
8710
+ * @type {IAddress}
8711
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8712
+ */
8713
+ 'shippingAddress': IAddress;
8714
+ /**
8715
+ *
8716
+ * @type {IAddress}
8717
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8718
+ */
8719
+ 'billingAddress'?: IAddress;
8720
+ /**
8721
+ *
8722
+ * @type {PaymentMethodEnum}
8723
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8724
+ */
8725
+ 'paymentMethod': PaymentMethodEnum;
8726
+ /**
8727
+ *
8728
+ * @type {PaymentGatewayEnum}
8729
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8730
+ */
8731
+ 'paymentGateway': PaymentGatewayEnum;
8732
+ /**
8733
+ *
8734
+ * @type {string}
8735
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8736
+ */
8737
+ 'paymentId': string;
8738
+ /**
8739
+ *
8740
+ * @type {number}
8741
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8742
+ */
8743
+ 'subtotal': number;
8744
+ /**
8745
+ *
8746
+ * @type {number}
8747
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8748
+ */
8749
+ 'discount': number;
8750
+ /**
8751
+ *
8752
+ * @type {number}
8753
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8754
+ */
8755
+ 'tax': number;
8756
+ /**
8757
+ *
8758
+ * @type {number}
8759
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8760
+ */
8761
+ 'shipping': number;
8762
+ /**
8763
+ *
8764
+ * @type {boolean}
8765
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8766
+ */
8767
+ 'freeShipping': boolean;
8768
+ /**
8769
+ *
8770
+ * @type {number}
8771
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8772
+ */
8773
+ 'total': number;
8774
+ /**
8775
+ *
8776
+ * @type {string}
8777
+ * @memberof PickIOrderExcludeKeyofIOrderHtml
8778
+ */
8779
+ 'note'?: string;
8780
+ }
8781
+ /**
8782
+ *
8783
+ * @export
8784
+ * @interface PickIOrderExcludeKeyofIOrderHtmlProductsInner
8785
+ */
8786
+ export interface PickIOrderExcludeKeyofIOrderHtmlProductsInner {
8787
+ /**
8788
+ *
8789
+ * @type {number}
8790
+ * @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
8791
+ */
8792
+ 'price': number;
8793
+ /**
8794
+ *
8795
+ * @type {number}
8796
+ * @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
8797
+ */
8798
+ 'amount': number;
8799
+ /**
8800
+ *
8801
+ * @type {string}
8802
+ * @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
8803
+ */
8804
+ 'subVariantId'?: string;
8805
+ /**
8806
+ *
8807
+ * @type {string}
8808
+ * @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
8809
+ */
8810
+ 'mainVariantId'?: string;
8811
+ /**
8812
+ *
8813
+ * @type {PartialRecordLanguageEnumString}
8814
+ * @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
8815
+ */
8816
+ 'subVariantTitle': PartialRecordLanguageEnumString;
8817
+ /**
8818
+ *
8819
+ * @type {PartialRecordLanguageEnumString}
8820
+ * @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
8821
+ */
8822
+ 'mainVariantTitle': PartialRecordLanguageEnumString;
8823
+ /**
8824
+ *
8825
+ * @type {PartialRecordLanguageEnumString}
8826
+ * @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
8337
8827
  */
8338
- 'name'?: string;
8828
+ 'productSlug': PartialRecordLanguageEnumString;
8339
8829
  /**
8340
8830
  *
8341
8831
  * @type {string}
8342
- * @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
8832
+ * @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
8343
8833
  */
8344
- 'email': string;
8834
+ 'productThumbnail'?: string;
8835
+ /**
8836
+ *
8837
+ * @type {PartialRecordLanguageEnumString}
8838
+ * @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
8839
+ */
8840
+ 'productTitle': PartialRecordLanguageEnumString;
8345
8841
  /**
8346
8842
  *
8347
8843
  * @type {string}
8348
- * @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
8844
+ * @memberof PickIOrderExcludeKeyofIOrderHtmlProductsInner
8349
8845
  */
8350
- 'message': string;
8846
+ 'productId': string;
8351
8847
  }
8352
8848
  /**
8353
8849
  * From T, pick a set of properties whose keys are in the union K
@@ -9076,68 +9572,6 @@ export interface RecordCurrencyEnumNumber {
9076
9572
  */
9077
9573
  'jpy': number;
9078
9574
  }
9079
- /**
9080
- * Construct a type with a set of properties K of type T
9081
- * @export
9082
- * @interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
9083
- */
9084
- export interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean {
9085
- /**
9086
- *
9087
- * @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
9088
- * @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
9089
- */
9090
- 'company': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
9091
- /**
9092
- *
9093
- * @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
9094
- * @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
9095
- */
9096
- 'config': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
9097
- /**
9098
- *
9099
- * @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
9100
- * @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
9101
- */
9102
- 'product': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
9103
- /**
9104
- *
9105
- * @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
9106
- * @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
9107
- */
9108
- 'page': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
9109
- /**
9110
- *
9111
- * @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
9112
- * @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
9113
- */
9114
- 'navigation': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
9115
- /**
9116
- *
9117
- * @type {RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany}
9118
- * @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBoolean
9119
- */
9120
- 'order': RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany;
9121
- }
9122
- /**
9123
- *
9124
- * @export
9125
- * @interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany
9126
- */
9127
- export interface RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany {
9128
- /**
9129
- *
9130
- * @type {boolean}
9131
- * @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany
9132
- */
9133
- 'd': boolean;
9134
- /**
9135
- *
9136
- * @type {boolean}
9137
- * @memberof RecordProductOrPageOrCompanyOrNavigationOrConfigOrOrderMBooleanDBooleanCompany
9138
- */
9139
- 'm': boolean;
9140
- }
9141
9575
  /**
9142
9576
  *
9143
9577
  * @export
@@ -10114,7 +10548,7 @@ export declare const BrandApiAxiosParamCreator: (configuration?: Configuration)
10114
10548
  * @param {string} [search]
10115
10549
  * @param {string} [startDate]
10116
10550
  * @param {string} [endDate]
10117
- * @param {string} [dateField]
10551
+ * @param {GetBrandsDateFieldEnum} [dateField]
10118
10552
  * @param {OrderEnum} [order]
10119
10553
  * @param {string} [sort]
10120
10554
  * @param {string} [companyId]
@@ -10123,7 +10557,7 @@ export declare const BrandApiAxiosParamCreator: (configuration?: Configuration)
10123
10557
  * @param {*} [options] Override http request option.
10124
10558
  * @throws {RequiredError}
10125
10559
  */
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>;
10560
+ 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
10561
  /**
10128
10562
  *
10129
10563
  * @param {string} id
@@ -10173,7 +10607,7 @@ export declare const BrandApiFp: (configuration?: Configuration) => {
10173
10607
  * @param {string} [search]
10174
10608
  * @param {string} [startDate]
10175
10609
  * @param {string} [endDate]
10176
- * @param {string} [dateField]
10610
+ * @param {GetBrandsDateFieldEnum} [dateField]
10177
10611
  * @param {OrderEnum} [order]
10178
10612
  * @param {string} [sort]
10179
10613
  * @param {string} [companyId]
@@ -10182,7 +10616,7 @@ export declare const BrandApiFp: (configuration?: Configuration) => {
10182
10616
  * @param {*} [options] Override http request option.
10183
10617
  * @throws {RequiredError}
10184
10618
  */
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>>;
10619
+ 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
10620
  /**
10187
10621
  *
10188
10622
  * @param {string} id
@@ -10330,10 +10764,10 @@ export interface BrandApiGetBrandsRequest {
10330
10764
  readonly endDate?: string;
10331
10765
  /**
10332
10766
  *
10333
- * @type {string}
10767
+ * @type {'createdAt' | 'updatedAt'}
10334
10768
  * @memberof BrandApiGetBrands
10335
10769
  */
10336
- readonly dateField?: string;
10770
+ readonly dateField?: GetBrandsDateFieldEnum;
10337
10771
  /**
10338
10772
  *
10339
10773
  * @type {OrderEnum}
@@ -10440,6 +10874,14 @@ export declare class BrandApi extends BaseAPI {
10440
10874
  */
10441
10875
  updateBrand(requestParameters: BrandApiUpdateBrandRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IBrandResponse, any>>;
10442
10876
  }
10877
+ /**
10878
+ * @export
10879
+ */
10880
+ export declare const GetBrandsDateFieldEnum: {
10881
+ readonly CREATED_AT: "createdAt";
10882
+ readonly UPDATED_AT: "updatedAt";
10883
+ };
10884
+ export type GetBrandsDateFieldEnum = typeof GetBrandsDateFieldEnum[keyof typeof GetBrandsDateFieldEnum];
10443
10885
  /**
10444
10886
  * CategoryApi - axios parameter creator
10445
10887
  * @export
@@ -10473,7 +10915,7 @@ export declare const CategoryApiAxiosParamCreator: (configuration?: Configuratio
10473
10915
  * @param {string} [search]
10474
10916
  * @param {string} [startDate]
10475
10917
  * @param {string} [endDate]
10476
- * @param {string} [dateField]
10918
+ * @param {GetCategoriesDateFieldEnum} [dateField]
10477
10919
  * @param {OrderEnum} [order]
10478
10920
  * @param {string} [sort]
10479
10921
  * @param {string} [companyId]
@@ -10482,7 +10924,7 @@ export declare const CategoryApiAxiosParamCreator: (configuration?: Configuratio
10482
10924
  * @param {*} [options] Override http request option.
10483
10925
  * @throws {RequiredError}
10484
10926
  */
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>;
10927
+ 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
10928
  /**
10487
10929
  *
10488
10930
  * @param {string} companyId
@@ -10539,7 +10981,7 @@ export declare const CategoryApiFp: (configuration?: Configuration) => {
10539
10981
  * @param {string} [search]
10540
10982
  * @param {string} [startDate]
10541
10983
  * @param {string} [endDate]
10542
- * @param {string} [dateField]
10984
+ * @param {GetCategoriesDateFieldEnum} [dateField]
10543
10985
  * @param {OrderEnum} [order]
10544
10986
  * @param {string} [sort]
10545
10987
  * @param {string} [companyId]
@@ -10548,7 +10990,7 @@ export declare const CategoryApiFp: (configuration?: Configuration) => {
10548
10990
  * @param {*} [options] Override http request option.
10549
10991
  * @throws {RequiredError}
10550
10992
  */
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>>;
10993
+ 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
10994
  /**
10553
10995
  *
10554
10996
  * @param {string} companyId
@@ -10704,10 +11146,10 @@ export interface CategoryApiGetCategoriesRequest {
10704
11146
  readonly endDate?: string;
10705
11147
  /**
10706
11148
  *
10707
- * @type {string}
11149
+ * @type {'createdAt' | 'updatedAt'}
10708
11150
  * @memberof CategoryApiGetCategories
10709
11151
  */
10710
- readonly dateField?: string;
11152
+ readonly dateField?: GetCategoriesDateFieldEnum;
10711
11153
  /**
10712
11154
  *
10713
11155
  * @type {OrderEnum}
@@ -10848,6 +11290,14 @@ export declare class CategoryApi extends BaseAPI {
10848
11290
  */
10849
11291
  updateCategory(requestParameters: CategoryApiUpdateCategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICategoryResponse, any>>;
10850
11292
  }
11293
+ /**
11294
+ * @export
11295
+ */
11296
+ export declare const GetCategoriesDateFieldEnum: {
11297
+ readonly CREATED_AT: "createdAt";
11298
+ readonly UPDATED_AT: "updatedAt";
11299
+ };
11300
+ export type GetCategoriesDateFieldEnum = typeof GetCategoriesDateFieldEnum[keyof typeof GetCategoriesDateFieldEnum];
10851
11301
  /**
10852
11302
  * CollectionApi - axios parameter creator
10853
11303
  * @export
@@ -10899,14 +11349,14 @@ export declare const CollectionApiAxiosParamCreator: (configuration?: Configurat
10899
11349
  * @param {string} [search]
10900
11350
  * @param {string} [startDate]
10901
11351
  * @param {string} [endDate]
10902
- * @param {string} [dateField]
11352
+ * @param {GetCollectionsDateFieldEnum} [dateField]
10903
11353
  * @param {OrderEnum} [order]
10904
11354
  * @param {string} [sort]
10905
11355
  * @param {ContentStatusEnum} [status]
10906
11356
  * @param {*} [options] Override http request option.
10907
11357
  * @throws {RequiredError}
10908
11358
  */
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>;
11359
+ 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
11360
  /**
10911
11361
  *
10912
11362
  * @param {string} companyId
@@ -10975,14 +11425,14 @@ export declare const CollectionApiFp: (configuration?: Configuration) => {
10975
11425
  * @param {string} [search]
10976
11426
  * @param {string} [startDate]
10977
11427
  * @param {string} [endDate]
10978
- * @param {string} [dateField]
11428
+ * @param {GetCollectionsDateFieldEnum} [dateField]
10979
11429
  * @param {OrderEnum} [order]
10980
11430
  * @param {string} [sort]
10981
11431
  * @param {ContentStatusEnum} [status]
10982
11432
  * @param {*} [options] Override http request option.
10983
11433
  * @throws {RequiredError}
10984
11434
  */
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>>;
11435
+ 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
11436
  /**
10987
11437
  *
10988
11438
  * @param {string} companyId
@@ -11189,10 +11639,10 @@ export interface CollectionApiGetCollectionsRequest {
11189
11639
  readonly endDate?: string;
11190
11640
  /**
11191
11641
  *
11192
- * @type {string}
11642
+ * @type {'createdAt' | 'updatedAt'}
11193
11643
  * @memberof CollectionApiGetCollections
11194
11644
  */
11195
- readonly dateField?: string;
11645
+ readonly dateField?: GetCollectionsDateFieldEnum;
11196
11646
  /**
11197
11647
  *
11198
11648
  * @type {OrderEnum}
@@ -11322,6 +11772,14 @@ export declare class CollectionApi extends BaseAPI {
11322
11772
  */
11323
11773
  updateCollection(requestParameters: CollectionApiUpdateCollectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICollectionResponse, any>>;
11324
11774
  }
11775
+ /**
11776
+ * @export
11777
+ */
11778
+ export declare const GetCollectionsDateFieldEnum: {
11779
+ readonly CREATED_AT: "createdAt";
11780
+ readonly UPDATED_AT: "updatedAt";
11781
+ };
11782
+ export type GetCollectionsDateFieldEnum = typeof GetCollectionsDateFieldEnum[keyof typeof GetCollectionsDateFieldEnum];
11325
11783
  /**
11326
11784
  * CompanyApi - axios parameter creator
11327
11785
  * @export
@@ -11387,7 +11845,7 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
11387
11845
  * @param {string} [search]
11388
11846
  * @param {string} [startDate]
11389
11847
  * @param {string} [endDate]
11390
- * @param {string} [dateField]
11848
+ * @param {GetCompaniesDateFieldEnum} [dateField]
11391
11849
  * @param {OrderEnum} [order]
11392
11850
  * @param {string} [sort]
11393
11851
  * @param {string} [owner]
@@ -11397,7 +11855,7 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
11397
11855
  * @param {*} [options] Override http request option.
11398
11856
  * @throws {RequiredError}
11399
11857
  */
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>;
11858
+ 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
11859
  /**
11402
11860
  *
11403
11861
  * @param {string} domain
@@ -11420,14 +11878,21 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
11420
11878
  * @param {string} [search]
11421
11879
  * @param {string} [startDate]
11422
11880
  * @param {string} [endDate]
11423
- * @param {string} [dateField]
11881
+ * @param {GetCompanyCustomersDateFieldEnum} [dateField]
11424
11882
  * @param {OrderEnum} [order]
11425
11883
  * @param {string} [sort]
11426
11884
  * @param {CompanyUserStatusEnum} [status]
11427
11885
  * @param {*} [options] Override http request option.
11428
11886
  * @throws {RequiredError}
11429
11887
  */
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>;
11888
+ 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>;
11889
+ /**
11890
+ *
11891
+ * @param {string} id
11892
+ * @param {*} [options] Override http request option.
11893
+ * @throws {RequiredError}
11894
+ */
11895
+ getCompanyPaymentGateways: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11431
11896
  /**
11432
11897
  *
11433
11898
  * @param {string} id
@@ -11483,6 +11948,14 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
11483
11948
  * @throws {RequiredError}
11484
11949
  */
11485
11950
  updateCompanyNavigations: (id: string, iCompanyUpdateNavigationRequest: ICompanyUpdateNavigationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11951
+ /**
11952
+ *
11953
+ * @param {string} id
11954
+ * @param {ICompanyUpdatePaymentGatewaysRequest} iCompanyUpdatePaymentGatewaysRequest
11955
+ * @param {*} [options] Override http request option.
11956
+ * @throws {RequiredError}
11957
+ */
11958
+ updateCompanyPaymentGateways: (id: string, iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11486
11959
  /**
11487
11960
  *
11488
11961
  * @param {string} id
@@ -11566,7 +12039,7 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
11566
12039
  * @param {string} [search]
11567
12040
  * @param {string} [startDate]
11568
12041
  * @param {string} [endDate]
11569
- * @param {string} [dateField]
12042
+ * @param {GetCompaniesDateFieldEnum} [dateField]
11570
12043
  * @param {OrderEnum} [order]
11571
12044
  * @param {string} [sort]
11572
12045
  * @param {string} [owner]
@@ -11576,7 +12049,7 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
11576
12049
  * @param {*} [options] Override http request option.
11577
12050
  * @throws {RequiredError}
11578
12051
  */
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>>;
12052
+ 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
12053
  /**
11581
12054
  *
11582
12055
  * @param {string} domain
@@ -11599,14 +12072,21 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
11599
12072
  * @param {string} [search]
11600
12073
  * @param {string} [startDate]
11601
12074
  * @param {string} [endDate]
11602
- * @param {string} [dateField]
12075
+ * @param {GetCompanyCustomersDateFieldEnum} [dateField]
11603
12076
  * @param {OrderEnum} [order]
11604
12077
  * @param {string} [sort]
11605
12078
  * @param {CompanyUserStatusEnum} [status]
11606
12079
  * @param {*} [options] Override http request option.
11607
12080
  * @throws {RequiredError}
11608
12081
  */
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>>;
12082
+ 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>>;
12083
+ /**
12084
+ *
12085
+ * @param {string} id
12086
+ * @param {*} [options] Override http request option.
12087
+ * @throws {RequiredError}
12088
+ */
12089
+ getCompanyPaymentGateways(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyPaymentGatewaysResponse>>;
11610
12090
  /**
11611
12091
  *
11612
12092
  * @param {string} id
@@ -11662,6 +12142,14 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
11662
12142
  * @throws {RequiredError}
11663
12143
  */
11664
12144
  updateCompanyNavigations(id: string, iCompanyUpdateNavigationRequest: ICompanyUpdateNavigationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyResponse>>;
12145
+ /**
12146
+ *
12147
+ * @param {string} id
12148
+ * @param {ICompanyUpdatePaymentGatewaysRequest} iCompanyUpdatePaymentGatewaysRequest
12149
+ * @param {*} [options] Override http request option.
12150
+ * @throws {RequiredError}
12151
+ */
12152
+ updateCompanyPaymentGateways(id: string, iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
11665
12153
  /**
11666
12154
  *
11667
12155
  * @param {string} id
@@ -11762,6 +12250,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
11762
12250
  * @throws {RequiredError}
11763
12251
  */
11764
12252
  getCompanyCustomers(requestParameters: CompanyApiGetCompanyCustomersRequest, options?: RawAxiosRequestConfig): AxiosPromise<IUsersResponse>;
12253
+ /**
12254
+ *
12255
+ * @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
12256
+ * @param {*} [options] Override http request option.
12257
+ * @throws {RequiredError}
12258
+ */
12259
+ getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyPaymentGatewaysResponse>;
11765
12260
  /**
11766
12261
  *
11767
12262
  * @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
@@ -11811,6 +12306,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
11811
12306
  * @throws {RequiredError}
11812
12307
  */
11813
12308
  updateCompanyNavigations(requestParameters: CompanyApiUpdateCompanyNavigationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyResponse>;
12309
+ /**
12310
+ *
12311
+ * @param {CompanyApiUpdateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
12312
+ * @param {*} [options] Override http request option.
12313
+ * @throws {RequiredError}
12314
+ */
12315
+ updateCompanyPaymentGateways(requestParameters: CompanyApiUpdateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
11814
12316
  /**
11815
12317
  *
11816
12318
  * @param {CompanyApiUpdatePrimaryDomainRequest} requestParameters Request parameters.
@@ -11979,10 +12481,10 @@ export interface CompanyApiGetCompaniesRequest {
11979
12481
  readonly endDate?: string;
11980
12482
  /**
11981
12483
  *
11982
- * @type {string}
12484
+ * @type {'createdAt' | 'updatedAt'}
11983
12485
  * @memberof CompanyApiGetCompanies
11984
12486
  */
11985
- readonly dateField?: string;
12487
+ readonly dateField?: GetCompaniesDateFieldEnum;
11986
12488
  /**
11987
12489
  *
11988
12490
  * @type {OrderEnum}
@@ -12090,10 +12592,10 @@ export interface CompanyApiGetCompanyCustomersRequest {
12090
12592
  readonly endDate?: string;
12091
12593
  /**
12092
12594
  *
12093
- * @type {string}
12595
+ * @type {'createdAt' | 'updatedAt'}
12094
12596
  * @memberof CompanyApiGetCompanyCustomers
12095
12597
  */
12096
- readonly dateField?: string;
12598
+ readonly dateField?: GetCompanyCustomersDateFieldEnum;
12097
12599
  /**
12098
12600
  *
12099
12601
  * @type {OrderEnum}
@@ -12113,6 +12615,19 @@ export interface CompanyApiGetCompanyCustomersRequest {
12113
12615
  */
12114
12616
  readonly status?: CompanyUserStatusEnum;
12115
12617
  }
12618
+ /**
12619
+ * Request parameters for getCompanyPaymentGateways operation in CompanyApi.
12620
+ * @export
12621
+ * @interface CompanyApiGetCompanyPaymentGatewaysRequest
12622
+ */
12623
+ export interface CompanyApiGetCompanyPaymentGatewaysRequest {
12624
+ /**
12625
+ *
12626
+ * @type {string}
12627
+ * @memberof CompanyApiGetCompanyPaymentGateways
12628
+ */
12629
+ readonly id: string;
12630
+ }
12116
12631
  /**
12117
12632
  * Request parameters for getCompanyUsers operation in CompanyApi.
12118
12633
  * @export
@@ -12240,6 +12755,25 @@ export interface CompanyApiUpdateCompanyNavigationsRequest {
12240
12755
  */
12241
12756
  readonly iCompanyUpdateNavigationRequest: ICompanyUpdateNavigationRequest;
12242
12757
  }
12758
+ /**
12759
+ * Request parameters for updateCompanyPaymentGateways operation in CompanyApi.
12760
+ * @export
12761
+ * @interface CompanyApiUpdateCompanyPaymentGatewaysRequest
12762
+ */
12763
+ export interface CompanyApiUpdateCompanyPaymentGatewaysRequest {
12764
+ /**
12765
+ *
12766
+ * @type {string}
12767
+ * @memberof CompanyApiUpdateCompanyPaymentGateways
12768
+ */
12769
+ readonly id: string;
12770
+ /**
12771
+ *
12772
+ * @type {ICompanyUpdatePaymentGatewaysRequest}
12773
+ * @memberof CompanyApiUpdateCompanyPaymentGateways
12774
+ */
12775
+ readonly iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest;
12776
+ }
12243
12777
  /**
12244
12778
  * Request parameters for updatePrimaryDomain operation in CompanyApi.
12245
12779
  * @export
@@ -12379,6 +12913,14 @@ export declare class CompanyApi extends BaseAPI {
12379
12913
  * @memberof CompanyApi
12380
12914
  */
12381
12915
  getCompanyCustomers(requestParameters: CompanyApiGetCompanyCustomersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUsersResponse, any>>;
12916
+ /**
12917
+ *
12918
+ * @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
12919
+ * @param {*} [options] Override http request option.
12920
+ * @throws {RequiredError}
12921
+ * @memberof CompanyApi
12922
+ */
12923
+ getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyPaymentGatewaysResponse, any>>;
12382
12924
  /**
12383
12925
  *
12384
12926
  * @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
@@ -12435,6 +12977,14 @@ export declare class CompanyApi extends BaseAPI {
12435
12977
  * @memberof CompanyApi
12436
12978
  */
12437
12979
  updateCompanyNavigations(requestParameters: CompanyApiUpdateCompanyNavigationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyResponse, any>>;
12980
+ /**
12981
+ *
12982
+ * @param {CompanyApiUpdateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
12983
+ * @param {*} [options] Override http request option.
12984
+ * @throws {RequiredError}
12985
+ * @memberof CompanyApi
12986
+ */
12987
+ updateCompanyPaymentGateways(requestParameters: CompanyApiUpdateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
12438
12988
  /**
12439
12989
  *
12440
12990
  * @param {CompanyApiUpdatePrimaryDomainRequest} requestParameters Request parameters.
@@ -12452,6 +13002,22 @@ export declare class CompanyApi extends BaseAPI {
12452
13002
  */
12453
13003
  updateUserInCompany(requestParameters: CompanyApiUpdateUserInCompanyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyResponse, any>>;
12454
13004
  }
13005
+ /**
13006
+ * @export
13007
+ */
13008
+ export declare const GetCompaniesDateFieldEnum: {
13009
+ readonly CREATED_AT: "createdAt";
13010
+ readonly UPDATED_AT: "updatedAt";
13011
+ };
13012
+ export type GetCompaniesDateFieldEnum = typeof GetCompaniesDateFieldEnum[keyof typeof GetCompaniesDateFieldEnum];
13013
+ /**
13014
+ * @export
13015
+ */
13016
+ export declare const GetCompanyCustomersDateFieldEnum: {
13017
+ readonly CREATED_AT: "createdAt";
13018
+ readonly UPDATED_AT: "updatedAt";
13019
+ };
13020
+ export type GetCompanyCustomersDateFieldEnum = typeof GetCompanyCustomersDateFieldEnum[keyof typeof GetCompanyCustomersDateFieldEnum];
12455
13021
  /**
12456
13022
  * ContactFormApi - axios parameter creator
12457
13023
  * @export
@@ -12486,13 +13052,13 @@ export declare const ContactFormApiAxiosParamCreator: (configuration?: Configura
12486
13052
  * @param {string} [search]
12487
13053
  * @param {string} [startDate]
12488
13054
  * @param {string} [endDate]
12489
- * @param {string} [dateField]
13055
+ * @param {GetContactFormsDateFieldEnum} [dateField]
12490
13056
  * @param {OrderEnum} [order]
12491
13057
  * @param {string} [sort]
12492
13058
  * @param {*} [options] Override http request option.
12493
13059
  * @throws {RequiredError}
12494
13060
  */
12495
- getContactForms: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13061
+ getContactForms: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetContactFormsDateFieldEnum, order?: OrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12496
13062
  };
12497
13063
  /**
12498
13064
  * ContactFormApi - functional programming interface
@@ -12528,13 +13094,13 @@ export declare const ContactFormApiFp: (configuration?: Configuration) => {
12528
13094
  * @param {string} [search]
12529
13095
  * @param {string} [startDate]
12530
13096
  * @param {string} [endDate]
12531
- * @param {string} [dateField]
13097
+ * @param {GetContactFormsDateFieldEnum} [dateField]
12532
13098
  * @param {OrderEnum} [order]
12533
13099
  * @param {string} [sort]
12534
13100
  * @param {*} [options] Override http request option.
12535
13101
  * @throws {RequiredError}
12536
13102
  */
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>>;
13103
+ 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
13104
  };
12539
13105
  /**
12540
13106
  * ContactFormApi - factory interface
@@ -12653,10 +13219,10 @@ export interface ContactFormApiGetContactFormsRequest {
12653
13219
  readonly endDate?: string;
12654
13220
  /**
12655
13221
  *
12656
- * @type {string}
13222
+ * @type {'createdAt' | 'updatedAt'}
12657
13223
  * @memberof ContactFormApiGetContactForms
12658
13224
  */
12659
- readonly dateField?: string;
13225
+ readonly dateField?: GetContactFormsDateFieldEnum;
12660
13226
  /**
12661
13227
  *
12662
13228
  * @type {OrderEnum}
@@ -12710,6 +13276,14 @@ export declare class ContactFormApi extends BaseAPI {
12710
13276
  */
12711
13277
  getContactForms(requestParameters: ContactFormApiGetContactFormsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IContactFormsResponse, any>>;
12712
13278
  }
13279
+ /**
13280
+ * @export
13281
+ */
13282
+ export declare const GetContactFormsDateFieldEnum: {
13283
+ readonly CREATED_AT: "createdAt";
13284
+ readonly UPDATED_AT: "updatedAt";
13285
+ };
13286
+ export type GetContactFormsDateFieldEnum = typeof GetContactFormsDateFieldEnum[keyof typeof GetContactFormsDateFieldEnum];
12713
13287
  /**
12714
13288
  * FileApi - axios parameter creator
12715
13289
  * @export
@@ -12737,7 +13311,7 @@ export declare const FileApiAxiosParamCreator: (configuration?: Configuration) =
12737
13311
  * @param {string} [search]
12738
13312
  * @param {string} [startDate]
12739
13313
  * @param {string} [endDate]
12740
- * @param {string} [dateField]
13314
+ * @param {GetFilesDateFieldEnum} [dateField]
12741
13315
  * @param {OrderEnum} [order]
12742
13316
  * @param {string} [sort]
12743
13317
  * @param {Array<FileKeywordEnum>} [keywords]
@@ -12746,7 +13320,7 @@ export declare const FileApiAxiosParamCreator: (configuration?: Configuration) =
12746
13320
  * @param {*} [options] Override http request option.
12747
13321
  * @throws {RequiredError}
12748
13322
  */
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>;
13323
+ 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
13324
  /**
12751
13325
  *
12752
13326
  * @param {string} id
@@ -12792,7 +13366,7 @@ export declare const FileApiFp: (configuration?: Configuration) => {
12792
13366
  * @param {string} [search]
12793
13367
  * @param {string} [startDate]
12794
13368
  * @param {string} [endDate]
12795
- * @param {string} [dateField]
13369
+ * @param {GetFilesDateFieldEnum} [dateField]
12796
13370
  * @param {OrderEnum} [order]
12797
13371
  * @param {string} [sort]
12798
13372
  * @param {Array<FileKeywordEnum>} [keywords]
@@ -12801,7 +13375,7 @@ export declare const FileApiFp: (configuration?: Configuration) => {
12801
13375
  * @param {*} [options] Override http request option.
12802
13376
  * @throws {RequiredError}
12803
13377
  */
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>>;
13378
+ 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
13379
  /**
12806
13380
  *
12807
13381
  * @param {string} id
@@ -12931,10 +13505,10 @@ export interface FileApiGetFilesRequest {
12931
13505
  readonly endDate?: string;
12932
13506
  /**
12933
13507
  *
12934
- * @type {string}
13508
+ * @type {'createdAt' | 'updatedAt'}
12935
13509
  * @memberof FileApiGetFiles
12936
13510
  */
12937
- readonly dateField?: string;
13511
+ readonly dateField?: GetFilesDateFieldEnum;
12938
13512
  /**
12939
13513
  *
12940
13514
  * @type {OrderEnum}
@@ -13058,6 +13632,14 @@ export declare class FileApi extends BaseAPI {
13058
13632
  */
13059
13633
  uploadFile(requestParameters: FileApiUploadFileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IImage, any>>;
13060
13634
  }
13635
+ /**
13636
+ * @export
13637
+ */
13638
+ export declare const GetFilesDateFieldEnum: {
13639
+ readonly CREATED_AT: "createdAt";
13640
+ readonly UPDATED_AT: "updatedAt";
13641
+ };
13642
+ export type GetFilesDateFieldEnum = typeof GetFilesDateFieldEnum[keyof typeof GetFilesDateFieldEnum];
13061
13643
  /**
13062
13644
  * NotificationApi - axios parameter creator
13063
13645
  * @export
@@ -13084,7 +13666,7 @@ export declare const NotificationApiAxiosParamCreator: (configuration?: Configur
13084
13666
  * @param {string} [search]
13085
13667
  * @param {string} [startDate]
13086
13668
  * @param {string} [endDate]
13087
- * @param {string} [dateField]
13669
+ * @param {GetNotificationsDateFieldEnum} [dateField]
13088
13670
  * @param {OrderEnum} [order]
13089
13671
  * @param {string} [sort]
13090
13672
  * @param {string} [user]
@@ -13093,7 +13675,7 @@ export declare const NotificationApiAxiosParamCreator: (configuration?: Configur
13093
13675
  * @param {*} [options] Override http request option.
13094
13676
  * @throws {RequiredError}
13095
13677
  */
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>;
13678
+ 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
13679
  /**
13098
13680
  *
13099
13681
  * @param {*} [options] Override http request option.
@@ -13134,7 +13716,7 @@ export declare const NotificationApiFp: (configuration?: Configuration) => {
13134
13716
  * @param {string} [search]
13135
13717
  * @param {string} [startDate]
13136
13718
  * @param {string} [endDate]
13137
- * @param {string} [dateField]
13719
+ * @param {GetNotificationsDateFieldEnum} [dateField]
13138
13720
  * @param {OrderEnum} [order]
13139
13721
  * @param {string} [sort]
13140
13722
  * @param {string} [user]
@@ -13143,7 +13725,7 @@ export declare const NotificationApiFp: (configuration?: Configuration) => {
13143
13725
  * @param {*} [options] Override http request option.
13144
13726
  * @throws {RequiredError}
13145
13727
  */
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>>;
13728
+ 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
13729
  /**
13148
13730
  *
13149
13731
  * @param {*} [options] Override http request option.
@@ -13262,10 +13844,10 @@ export interface NotificationApiGetNotificationsRequest {
13262
13844
  readonly endDate?: string;
13263
13845
  /**
13264
13846
  *
13265
- * @type {string}
13847
+ * @type {'createdAt' | 'updatedAt'}
13266
13848
  * @memberof NotificationApiGetNotifications
13267
13849
  */
13268
- readonly dateField?: string;
13850
+ readonly dateField?: GetNotificationsDateFieldEnum;
13269
13851
  /**
13270
13852
  *
13271
13853
  * @type {OrderEnum}
@@ -13357,6 +13939,14 @@ export declare class NotificationApi extends BaseAPI {
13357
13939
  */
13358
13940
  markNotificationAsRead(requestParameters: NotificationApiMarkNotificationAsReadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
13359
13941
  }
13942
+ /**
13943
+ * @export
13944
+ */
13945
+ export declare const GetNotificationsDateFieldEnum: {
13946
+ readonly CREATED_AT: "createdAt";
13947
+ readonly UPDATED_AT: "updatedAt";
13948
+ };
13949
+ export type GetNotificationsDateFieldEnum = typeof GetNotificationsDateFieldEnum[keyof typeof GetNotificationsDateFieldEnum];
13360
13950
  /**
13361
13951
  * OperationApi - axios parameter creator
13362
13952
  * @export
@@ -13390,7 +13980,7 @@ export declare const OperationApiAxiosParamCreator: (configuration?: Configurati
13390
13980
  * @param {string} [search]
13391
13981
  * @param {string} [startDate]
13392
13982
  * @param {string} [endDate]
13393
- * @param {string} [dateField]
13983
+ * @param {GetOperationsDateFieldEnum} [dateField]
13394
13984
  * @param {OrderEnum} [order]
13395
13985
  * @param {string} [sort]
13396
13986
  * @param {string} [user]
@@ -13399,7 +13989,7 @@ export declare const OperationApiAxiosParamCreator: (configuration?: Configurati
13399
13989
  * @param {*} [options] Override http request option.
13400
13990
  * @throws {RequiredError}
13401
13991
  */
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>;
13992
+ 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
13993
  /**
13404
13994
  *
13405
13995
  * @param {string} id
@@ -13449,7 +14039,7 @@ export declare const OperationApiFp: (configuration?: Configuration) => {
13449
14039
  * @param {string} [search]
13450
14040
  * @param {string} [startDate]
13451
14041
  * @param {string} [endDate]
13452
- * @param {string} [dateField]
14042
+ * @param {GetOperationsDateFieldEnum} [dateField]
13453
14043
  * @param {OrderEnum} [order]
13454
14044
  * @param {string} [sort]
13455
14045
  * @param {string} [user]
@@ -13458,7 +14048,7 @@ export declare const OperationApiFp: (configuration?: Configuration) => {
13458
14048
  * @param {*} [options] Override http request option.
13459
14049
  * @throws {RequiredError}
13460
14050
  */
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>>;
14051
+ 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
14052
  /**
13463
14053
  *
13464
14054
  * @param {string} id
@@ -13600,10 +14190,10 @@ export interface OperationApiGetOperationsRequest {
13600
14190
  readonly endDate?: string;
13601
14191
  /**
13602
14192
  *
13603
- * @type {string}
14193
+ * @type {'createdAt' | 'updatedAt'}
13604
14194
  * @memberof OperationApiGetOperations
13605
14195
  */
13606
- readonly dateField?: string;
14196
+ readonly dateField?: GetOperationsDateFieldEnum;
13607
14197
  /**
13608
14198
  *
13609
14199
  * @type {OrderEnum}
@@ -13723,6 +14313,14 @@ export declare class OperationApi extends BaseAPI {
13723
14313
  */
13724
14314
  updateOperation(requestParameters: OperationApiUpdateOperationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOperationResponse, any>>;
13725
14315
  }
14316
+ /**
14317
+ * @export
14318
+ */
14319
+ export declare const GetOperationsDateFieldEnum: {
14320
+ readonly CREATED_AT: "createdAt";
14321
+ readonly UPDATED_AT: "updatedAt";
14322
+ };
14323
+ export type GetOperationsDateFieldEnum = typeof GetOperationsDateFieldEnum[keyof typeof GetOperationsDateFieldEnum];
13726
14324
  /**
13727
14325
  * OrderApi - axios parameter creator
13728
14326
  * @export
@@ -13737,11 +14335,19 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
13737
14335
  createOrder: (iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13738
14336
  /**
13739
14337
  *
14338
+ * @param {number} [page]
14339
+ * @param {number} [itemsPerPage]
14340
+ * @param {string} [search]
14341
+ * @param {string} [startDate]
14342
+ * @param {string} [endDate]
14343
+ * @param {GetMyOrdersDateFieldEnum} [dateField]
14344
+ * @param {OrderEnum} [order]
14345
+ * @param {string} [sort]
13740
14346
  * @param {OrderStatusEnum} [status]
13741
14347
  * @param {*} [options] Override http request option.
13742
14348
  * @throws {RequiredError}
13743
14349
  */
13744
- getMyOrders: (status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14350
+ getMyOrders: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetMyOrdersDateFieldEnum, order?: OrderEnum, sort?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13745
14351
  /**
13746
14352
  *
13747
14353
  * @param {string} id
@@ -13757,7 +14363,7 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
13757
14363
  * @param {string} [search]
13758
14364
  * @param {string} [startDate]
13759
14365
  * @param {string} [endDate]
13760
- * @param {string} [dateField]
14366
+ * @param {GetOrdersDateFieldEnum} [dateField]
13761
14367
  * @param {OrderEnum} [order]
13762
14368
  * @param {string} [sort]
13763
14369
  * @param {string} [user]
@@ -13765,7 +14371,7 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
13765
14371
  * @param {*} [options] Override http request option.
13766
14372
  * @throws {RequiredError}
13767
14373
  */
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>;
14374
+ 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
14375
  };
13770
14376
  /**
13771
14377
  * OrderApi - functional programming interface
@@ -13778,14 +14384,22 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
13778
14384
  * @param {*} [options] Override http request option.
13779
14385
  * @throws {RequiredError}
13780
14386
  */
13781
- createOrder(iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrderResponse>>;
14387
+ createOrder(iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrderCreateResponse>>;
13782
14388
  /**
13783
14389
  *
14390
+ * @param {number} [page]
14391
+ * @param {number} [itemsPerPage]
14392
+ * @param {string} [search]
14393
+ * @param {string} [startDate]
14394
+ * @param {string} [endDate]
14395
+ * @param {GetMyOrdersDateFieldEnum} [dateField]
14396
+ * @param {OrderEnum} [order]
14397
+ * @param {string} [sort]
13784
14398
  * @param {OrderStatusEnum} [status]
13785
14399
  * @param {*} [options] Override http request option.
13786
14400
  * @throws {RequiredError}
13787
14401
  */
13788
- getMyOrders(status?: OrderStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrdersResponse>>;
14402
+ 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
14403
  /**
13790
14404
  *
13791
14405
  * @param {string} id
@@ -13801,7 +14415,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
13801
14415
  * @param {string} [search]
13802
14416
  * @param {string} [startDate]
13803
14417
  * @param {string} [endDate]
13804
- * @param {string} [dateField]
14418
+ * @param {GetOrdersDateFieldEnum} [dateField]
13805
14419
  * @param {OrderEnum} [order]
13806
14420
  * @param {string} [sort]
13807
14421
  * @param {string} [user]
@@ -13809,7 +14423,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
13809
14423
  * @param {*} [options] Override http request option.
13810
14424
  * @throws {RequiredError}
13811
14425
  */
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>>;
14426
+ 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
14427
  };
13814
14428
  /**
13815
14429
  * OrderApi - factory interface
@@ -13822,7 +14436,7 @@ export declare const OrderApiFactory: (configuration?: Configuration, basePath?:
13822
14436
  * @param {*} [options] Override http request option.
13823
14437
  * @throws {RequiredError}
13824
14438
  */
13825
- createOrder(requestParameters: OrderApiCreateOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<IOrderResponse>;
14439
+ createOrder(requestParameters: OrderApiCreateOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<IOrderCreateResponse>;
13826
14440
  /**
13827
14441
  *
13828
14442
  * @param {OrderApiGetMyOrdersRequest} requestParameters Request parameters.
@@ -13864,6 +14478,54 @@ export interface OrderApiCreateOrderRequest {
13864
14478
  * @interface OrderApiGetMyOrdersRequest
13865
14479
  */
13866
14480
  export interface OrderApiGetMyOrdersRequest {
14481
+ /**
14482
+ *
14483
+ * @type {number}
14484
+ * @memberof OrderApiGetMyOrders
14485
+ */
14486
+ readonly page?: number;
14487
+ /**
14488
+ *
14489
+ * @type {number}
14490
+ * @memberof OrderApiGetMyOrders
14491
+ */
14492
+ readonly itemsPerPage?: number;
14493
+ /**
14494
+ *
14495
+ * @type {string}
14496
+ * @memberof OrderApiGetMyOrders
14497
+ */
14498
+ readonly search?: string;
14499
+ /**
14500
+ *
14501
+ * @type {string}
14502
+ * @memberof OrderApiGetMyOrders
14503
+ */
14504
+ readonly startDate?: string;
14505
+ /**
14506
+ *
14507
+ * @type {string}
14508
+ * @memberof OrderApiGetMyOrders
14509
+ */
14510
+ readonly endDate?: string;
14511
+ /**
14512
+ *
14513
+ * @type {'createdAt' | 'updatedAt'}
14514
+ * @memberof OrderApiGetMyOrders
14515
+ */
14516
+ readonly dateField?: GetMyOrdersDateFieldEnum;
14517
+ /**
14518
+ *
14519
+ * @type {OrderEnum}
14520
+ * @memberof OrderApiGetMyOrders
14521
+ */
14522
+ readonly order?: OrderEnum;
14523
+ /**
14524
+ *
14525
+ * @type {string}
14526
+ * @memberof OrderApiGetMyOrders
14527
+ */
14528
+ readonly sort?: string;
13867
14529
  /**
13868
14530
  *
13869
14531
  * @type {OrderStatusEnum}
@@ -13928,10 +14590,10 @@ export interface OrderApiGetOrdersRequest {
13928
14590
  readonly endDate?: string;
13929
14591
  /**
13930
14592
  *
13931
- * @type {string}
14593
+ * @type {'createdAt' | 'updatedAt'}
13932
14594
  * @memberof OrderApiGetOrders
13933
14595
  */
13934
- readonly dateField?: string;
14596
+ readonly dateField?: GetOrdersDateFieldEnum;
13935
14597
  /**
13936
14598
  *
13937
14599
  * @type {OrderEnum}
@@ -13971,7 +14633,7 @@ export declare class OrderApi extends BaseAPI {
13971
14633
  * @throws {RequiredError}
13972
14634
  * @memberof OrderApi
13973
14635
  */
13974
- createOrder(requestParameters: OrderApiCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOrderResponse, any>>;
14636
+ createOrder(requestParameters: OrderApiCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOrderCreateResponse, any>>;
13975
14637
  /**
13976
14638
  *
13977
14639
  * @param {OrderApiGetMyOrdersRequest} requestParameters Request parameters.
@@ -13997,6 +14659,22 @@ export declare class OrderApi extends BaseAPI {
13997
14659
  */
13998
14660
  getOrders(requestParameters: OrderApiGetOrdersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOrdersResponse, any>>;
13999
14661
  }
14662
+ /**
14663
+ * @export
14664
+ */
14665
+ export declare const GetMyOrdersDateFieldEnum: {
14666
+ readonly CREATED_AT: "createdAt";
14667
+ readonly UPDATED_AT: "updatedAt";
14668
+ };
14669
+ export type GetMyOrdersDateFieldEnum = typeof GetMyOrdersDateFieldEnum[keyof typeof GetMyOrdersDateFieldEnum];
14670
+ /**
14671
+ * @export
14672
+ */
14673
+ export declare const GetOrdersDateFieldEnum: {
14674
+ readonly CREATED_AT: "createdAt";
14675
+ readonly UPDATED_AT: "updatedAt";
14676
+ };
14677
+ export type GetOrdersDateFieldEnum = typeof GetOrdersDateFieldEnum[keyof typeof GetOrdersDateFieldEnum];
14000
14678
  /**
14001
14679
  * PageApi - axios parameter creator
14002
14680
  * @export
@@ -14060,7 +14738,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
14060
14738
  * @param {string} [search]
14061
14739
  * @param {string} [startDate]
14062
14740
  * @param {string} [endDate]
14063
- * @param {string} [dateField]
14741
+ * @param {GetPagesDateFieldEnum} [dateField]
14064
14742
  * @param {OrderEnum} [order]
14065
14743
  * @param {string} [sort]
14066
14744
  * @param {string} [companyId]
@@ -14070,7 +14748,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
14070
14748
  * @param {*} [options] Override http request option.
14071
14749
  * @throws {RequiredError}
14072
14750
  */
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>;
14751
+ 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
14752
  /**
14075
14753
  *
14076
14754
  * @param {string} companyId
@@ -14150,7 +14828,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
14150
14828
  * @param {string} [search]
14151
14829
  * @param {string} [startDate]
14152
14830
  * @param {string} [endDate]
14153
- * @param {string} [dateField]
14831
+ * @param {GetPagesDateFieldEnum} [dateField]
14154
14832
  * @param {OrderEnum} [order]
14155
14833
  * @param {string} [sort]
14156
14834
  * @param {string} [companyId]
@@ -14160,7 +14838,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
14160
14838
  * @param {*} [options] Override http request option.
14161
14839
  * @throws {RequiredError}
14162
14840
  */
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>>;
14841
+ 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
14842
  /**
14165
14843
  *
14166
14844
  * @param {string} companyId
@@ -14416,10 +15094,10 @@ export interface PageApiGetPagesRequest {
14416
15094
  readonly endDate?: string;
14417
15095
  /**
14418
15096
  *
14419
- * @type {string}
15097
+ * @type {'createdAt' | 'updatedAt'}
14420
15098
  * @memberof PageApiGetPages
14421
15099
  */
14422
- readonly dateField?: string;
15100
+ readonly dateField?: GetPagesDateFieldEnum;
14423
15101
  /**
14424
15102
  *
14425
15103
  * @type {OrderEnum}
@@ -14569,6 +15247,14 @@ export declare class PageApi extends BaseAPI {
14569
15247
  */
14570
15248
  updatePage(requestParameters: PageApiUpdatePageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPageResponse, any>>;
14571
15249
  }
15250
+ /**
15251
+ * @export
15252
+ */
15253
+ export declare const GetPagesDateFieldEnum: {
15254
+ readonly CREATED_AT: "createdAt";
15255
+ readonly UPDATED_AT: "updatedAt";
15256
+ };
15257
+ export type GetPagesDateFieldEnum = typeof GetPagesDateFieldEnum[keyof typeof GetPagesDateFieldEnum];
14572
15258
  /**
14573
15259
  * PlanApi - axios parameter creator
14574
15260
  * @export
@@ -14602,7 +15288,7 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
14602
15288
  * @param {string} [search]
14603
15289
  * @param {string} [startDate]
14604
15290
  * @param {string} [endDate]
14605
- * @param {string} [dateField]
15291
+ * @param {GetPlansDateFieldEnum} [dateField]
14606
15292
  * @param {OrderEnum} [order]
14607
15293
  * @param {string} [sort]
14608
15294
  * @param {PlanStatusEnum} [status]
@@ -14610,7 +15296,7 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
14610
15296
  * @param {*} [options] Override http request option.
14611
15297
  * @throws {RequiredError}
14612
15298
  */
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>;
15299
+ 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
15300
  /**
14615
15301
  *
14616
15302
  * @param {string} id
@@ -14653,7 +15339,7 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
14653
15339
  * @param {string} [search]
14654
15340
  * @param {string} [startDate]
14655
15341
  * @param {string} [endDate]
14656
- * @param {string} [dateField]
15342
+ * @param {GetPlansDateFieldEnum} [dateField]
14657
15343
  * @param {OrderEnum} [order]
14658
15344
  * @param {string} [sort]
14659
15345
  * @param {PlanStatusEnum} [status]
@@ -14661,7 +15347,7 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
14661
15347
  * @param {*} [options] Override http request option.
14662
15348
  * @throws {RequiredError}
14663
15349
  */
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>>;
15350
+ 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
15351
  /**
14666
15352
  *
14667
15353
  * @param {string} id
@@ -14789,10 +15475,10 @@ export interface PlanApiGetPlansRequest {
14789
15475
  readonly endDate?: string;
14790
15476
  /**
14791
15477
  *
14792
- * @type {string}
15478
+ * @type {'createdAt' | 'updatedAt'}
14793
15479
  * @memberof PlanApiGetPlans
14794
15480
  */
14795
- readonly dateField?: string;
15481
+ readonly dateField?: GetPlansDateFieldEnum;
14796
15482
  /**
14797
15483
  *
14798
15484
  * @type {OrderEnum}
@@ -14885,6 +15571,14 @@ export declare class PlanApi extends BaseAPI {
14885
15571
  */
14886
15572
  updatePlan(requestParameters: PlanApiUpdatePlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPlanResponse, any>>;
14887
15573
  }
15574
+ /**
15575
+ * @export
15576
+ */
15577
+ export declare const GetPlansDateFieldEnum: {
15578
+ readonly CREATED_AT: "createdAt";
15579
+ readonly UPDATED_AT: "updatedAt";
15580
+ };
15581
+ export type GetPlansDateFieldEnum = typeof GetPlansDateFieldEnum[keyof typeof GetPlansDateFieldEnum];
14888
15582
  /**
14889
15583
  * ProductApi - axios parameter creator
14890
15584
  * @export
@@ -14944,7 +15638,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
14944
15638
  * @param {string} [search]
14945
15639
  * @param {string} [startDate]
14946
15640
  * @param {string} [endDate]
14947
- * @param {string} [dateField]
15641
+ * @param {GetProductsDateFieldEnum} [dateField]
14948
15642
  * @param {OrderEnum} [order]
14949
15643
  * @param {string} [sort]
14950
15644
  * @param {string} [companyId]
@@ -14956,7 +15650,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
14956
15650
  * @param {*} [options] Override http request option.
14957
15651
  * @throws {RequiredError}
14958
15652
  */
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>;
15653
+ 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
15654
  /**
14961
15655
  *
14962
15656
  * @param {string} search
@@ -15034,7 +15728,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
15034
15728
  * @param {string} [search]
15035
15729
  * @param {string} [startDate]
15036
15730
  * @param {string} [endDate]
15037
- * @param {string} [dateField]
15731
+ * @param {GetProductsDateFieldEnum} [dateField]
15038
15732
  * @param {OrderEnum} [order]
15039
15733
  * @param {string} [sort]
15040
15734
  * @param {string} [companyId]
@@ -15046,7 +15740,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
15046
15740
  * @param {*} [options] Override http request option.
15047
15741
  * @throws {RequiredError}
15048
15742
  */
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>>;
15743
+ 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
15744
  /**
15051
15745
  *
15052
15746
  * @param {string} search
@@ -15280,10 +15974,10 @@ export interface ProductApiGetProductsRequest {
15280
15974
  readonly endDate?: string;
15281
15975
  /**
15282
15976
  *
15283
- * @type {string}
15977
+ * @type {'createdAt' | 'updatedAt'}
15284
15978
  * @memberof ProductApiGetProducts
15285
15979
  */
15286
- readonly dateField?: string;
15980
+ readonly dateField?: GetProductsDateFieldEnum;
15287
15981
  /**
15288
15982
  *
15289
15983
  * @type {OrderEnum}
@@ -15457,6 +16151,14 @@ export declare class ProductApi extends BaseAPI {
15457
16151
  */
15458
16152
  updateProduct(requestParameters: ProductApiUpdateProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IProductResponse, any>>;
15459
16153
  }
16154
+ /**
16155
+ * @export
16156
+ */
16157
+ export declare const GetProductsDateFieldEnum: {
16158
+ readonly CREATED_AT: "createdAt";
16159
+ readonly UPDATED_AT: "updatedAt";
16160
+ };
16161
+ export type GetProductsDateFieldEnum = typeof GetProductsDateFieldEnum[keyof typeof GetProductsDateFieldEnum];
15460
16162
  /**
15461
16163
  * SitemapApi - axios parameter creator
15462
16164
  * @export
@@ -16135,14 +16837,14 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
16135
16837
  * @param {string} [search]
16136
16838
  * @param {string} [startDate]
16137
16839
  * @param {string} [endDate]
16138
- * @param {string} [dateField]
16840
+ * @param {GetUsersDateFieldEnum} [dateField]
16139
16841
  * @param {OrderEnum} [order]
16140
16842
  * @param {string} [sort]
16141
16843
  * @param {UserStatusEnum} [status]
16142
16844
  * @param {*} [options] Override http request option.
16143
16845
  * @throws {RequiredError}
16144
16846
  */
16145
- getUsers: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: string, order?: OrderEnum, sort?: string, status?: UserStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16847
+ getUsers: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetUsersDateFieldEnum, order?: OrderEnum, sort?: string, status?: UserStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16146
16848
  /**
16147
16849
  *
16148
16850
  * @param {*} [options] Override http request option.
@@ -16220,14 +16922,14 @@ export declare const UserApiFp: (configuration?: Configuration) => {
16220
16922
  * @param {string} [search]
16221
16923
  * @param {string} [startDate]
16222
16924
  * @param {string} [endDate]
16223
- * @param {string} [dateField]
16925
+ * @param {GetUsersDateFieldEnum} [dateField]
16224
16926
  * @param {OrderEnum} [order]
16225
16927
  * @param {string} [sort]
16226
16928
  * @param {UserStatusEnum} [status]
16227
16929
  * @param {*} [options] Override http request option.
16228
16930
  * @throws {RequiredError}
16229
16931
  */
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>>;
16932
+ 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
16933
  /**
16232
16934
  *
16233
16935
  * @param {*} [options] Override http request option.
@@ -16433,10 +17135,10 @@ export interface UserApiGetUsersRequest {
16433
17135
  readonly endDate?: string;
16434
17136
  /**
16435
17137
  *
16436
- * @type {string}
17138
+ * @type {'createdAt' | 'updatedAt'}
16437
17139
  * @memberof UserApiGetUsers
16438
17140
  */
16439
- readonly dateField?: string;
17141
+ readonly dateField?: GetUsersDateFieldEnum;
16440
17142
  /**
16441
17143
  *
16442
17144
  * @type {OrderEnum}
@@ -16587,3 +17289,11 @@ export declare class UserApi extends BaseAPI {
16587
17289
  */
16588
17290
  verifyUser(requestParameters: UserApiVerifyUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IUserResponse, any>>;
16589
17291
  }
17292
+ /**
17293
+ * @export
17294
+ */
17295
+ export declare const GetUsersDateFieldEnum: {
17296
+ readonly CREATED_AT: "createdAt";
17297
+ readonly UPDATED_AT: "updatedAt";
17298
+ };
17299
+ export type GetUsersDateFieldEnum = typeof GetUsersDateFieldEnum[keyof typeof GetUsersDateFieldEnum];