@infisale-client/api-client 1.2.22 → 1.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/api.d.ts +419 -40
- package/dist/api/api.js +163 -15
- package/dist/api/api.mjs +160 -13
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -919,7 +919,7 @@ export interface IBrandCollectionQueryParams {
|
|
|
919
919
|
* @type {string}
|
|
920
920
|
* @memberof IBrandCollectionQueryParams
|
|
921
921
|
*/
|
|
922
|
-
'dateField'?:
|
|
922
|
+
'dateField'?: IBrandCollectionQueryParamsDateFieldEnum;
|
|
923
923
|
/**
|
|
924
924
|
*
|
|
925
925
|
* @type {OrderEnum}
|
|
@@ -951,6 +951,11 @@ export interface IBrandCollectionQueryParams {
|
|
|
951
951
|
*/
|
|
952
952
|
'status'?: ContentStatusEnum;
|
|
953
953
|
}
|
|
954
|
+
export declare const IBrandCollectionQueryParamsDateFieldEnum: {
|
|
955
|
+
readonly CREATED_AT: "createdAt";
|
|
956
|
+
readonly UPDATED_AT: "updatedAt";
|
|
957
|
+
};
|
|
958
|
+
export type IBrandCollectionQueryParamsDateFieldEnum = typeof IBrandCollectionQueryParamsDateFieldEnum[keyof typeof IBrandCollectionQueryParamsDateFieldEnum];
|
|
954
959
|
/**
|
|
955
960
|
*
|
|
956
961
|
* @export
|
|
@@ -1211,7 +1216,7 @@ export interface ICategoryCollectionQueryParams {
|
|
|
1211
1216
|
* @type {string}
|
|
1212
1217
|
* @memberof ICategoryCollectionQueryParams
|
|
1213
1218
|
*/
|
|
1214
|
-
'dateField'?:
|
|
1219
|
+
'dateField'?: ICategoryCollectionQueryParamsDateFieldEnum;
|
|
1215
1220
|
/**
|
|
1216
1221
|
*
|
|
1217
1222
|
* @type {OrderEnum}
|
|
@@ -1243,6 +1248,11 @@ export interface ICategoryCollectionQueryParams {
|
|
|
1243
1248
|
*/
|
|
1244
1249
|
'status'?: ContentStatusEnum;
|
|
1245
1250
|
}
|
|
1251
|
+
export declare const ICategoryCollectionQueryParamsDateFieldEnum: {
|
|
1252
|
+
readonly CREATED_AT: "createdAt";
|
|
1253
|
+
readonly UPDATED_AT: "updatedAt";
|
|
1254
|
+
};
|
|
1255
|
+
export type ICategoryCollectionQueryParamsDateFieldEnum = typeof ICategoryCollectionQueryParamsDateFieldEnum[keyof typeof ICategoryCollectionQueryParamsDateFieldEnum];
|
|
1246
1256
|
/**
|
|
1247
1257
|
*
|
|
1248
1258
|
* @export
|
|
@@ -1578,7 +1588,7 @@ export interface ICollectionCollectionsQueryParams {
|
|
|
1578
1588
|
* @type {string}
|
|
1579
1589
|
* @memberof ICollectionCollectionsQueryParams
|
|
1580
1590
|
*/
|
|
1581
|
-
'dateField'?:
|
|
1591
|
+
'dateField'?: ICollectionCollectionsQueryParamsDateFieldEnum;
|
|
1582
1592
|
/**
|
|
1583
1593
|
*
|
|
1584
1594
|
* @type {OrderEnum}
|
|
@@ -1604,6 +1614,11 @@ export interface ICollectionCollectionsQueryParams {
|
|
|
1604
1614
|
*/
|
|
1605
1615
|
'status'?: ContentStatusEnum;
|
|
1606
1616
|
}
|
|
1617
|
+
export declare const ICollectionCollectionsQueryParamsDateFieldEnum: {
|
|
1618
|
+
readonly CREATED_AT: "createdAt";
|
|
1619
|
+
readonly UPDATED_AT: "updatedAt";
|
|
1620
|
+
};
|
|
1621
|
+
export type ICollectionCollectionsQueryParamsDateFieldEnum = typeof ICollectionCollectionsQueryParamsDateFieldEnum[keyof typeof ICollectionCollectionsQueryParamsDateFieldEnum];
|
|
1607
1622
|
/**
|
|
1608
1623
|
*
|
|
1609
1624
|
* @export
|
|
@@ -2041,6 +2056,12 @@ export interface ICompany {
|
|
|
2041
2056
|
* @memberof ICompany
|
|
2042
2057
|
*/
|
|
2043
2058
|
'senderName'?: string;
|
|
2059
|
+
/**
|
|
2060
|
+
*
|
|
2061
|
+
* @type {Array<ICompanyPatchRequestPaymentGatewaysInner>}
|
|
2062
|
+
* @memberof ICompany
|
|
2063
|
+
*/
|
|
2064
|
+
'paymentGateways': Array<ICompanyPatchRequestPaymentGatewaysInner>;
|
|
2044
2065
|
/**
|
|
2045
2066
|
*
|
|
2046
2067
|
* @type {CompanyStatusEnum}
|
|
@@ -2379,7 +2400,7 @@ export interface ICompanyCollectionQueryParams {
|
|
|
2379
2400
|
* @type {string}
|
|
2380
2401
|
* @memberof ICompanyCollectionQueryParams
|
|
2381
2402
|
*/
|
|
2382
|
-
'dateField'?:
|
|
2403
|
+
'dateField'?: ICompanyCollectionQueryParamsDateFieldEnum;
|
|
2383
2404
|
/**
|
|
2384
2405
|
*
|
|
2385
2406
|
* @type {OrderEnum}
|
|
@@ -2417,6 +2438,11 @@ export interface ICompanyCollectionQueryParams {
|
|
|
2417
2438
|
*/
|
|
2418
2439
|
'status'?: CompanyStatusEnum;
|
|
2419
2440
|
}
|
|
2441
|
+
export declare const ICompanyCollectionQueryParamsDateFieldEnum: {
|
|
2442
|
+
readonly CREATED_AT: "createdAt";
|
|
2443
|
+
readonly UPDATED_AT: "updatedAt";
|
|
2444
|
+
};
|
|
2445
|
+
export type ICompanyCollectionQueryParamsDateFieldEnum = typeof ICompanyCollectionQueryParamsDateFieldEnum[keyof typeof ICompanyCollectionQueryParamsDateFieldEnum];
|
|
2420
2446
|
/**
|
|
2421
2447
|
*
|
|
2422
2448
|
* @export
|
|
@@ -2695,6 +2721,12 @@ export interface ICompanyPatchRequest {
|
|
|
2695
2721
|
* @memberof ICompanyPatchRequest
|
|
2696
2722
|
*/
|
|
2697
2723
|
'dkim'?: string;
|
|
2724
|
+
/**
|
|
2725
|
+
*
|
|
2726
|
+
* @type {Array<ICompanyPatchRequestPaymentGatewaysInner>}
|
|
2727
|
+
* @memberof ICompanyPatchRequest
|
|
2728
|
+
*/
|
|
2729
|
+
'paymentGateways'?: Array<ICompanyPatchRequestPaymentGatewaysInner>;
|
|
2698
2730
|
/**
|
|
2699
2731
|
*
|
|
2700
2732
|
* @type {CompanyTypeEnum}
|
|
@@ -2782,6 +2814,62 @@ export interface ICompanyPatchRequest {
|
|
|
2782
2814
|
*/
|
|
2783
2815
|
'currencies'?: RecordCurrencyEnumCurrency;
|
|
2784
2816
|
}
|
|
2817
|
+
/**
|
|
2818
|
+
*
|
|
2819
|
+
* @export
|
|
2820
|
+
* @interface ICompanyPatchRequestPaymentGatewaysInner
|
|
2821
|
+
*/
|
|
2822
|
+
export interface ICompanyPatchRequestPaymentGatewaysInner {
|
|
2823
|
+
/**
|
|
2824
|
+
*
|
|
2825
|
+
* @type {boolean}
|
|
2826
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2827
|
+
*/
|
|
2828
|
+
'active': boolean;
|
|
2829
|
+
/**
|
|
2830
|
+
*
|
|
2831
|
+
* @type {boolean}
|
|
2832
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2833
|
+
*/
|
|
2834
|
+
'testMode': boolean;
|
|
2835
|
+
/**
|
|
2836
|
+
*
|
|
2837
|
+
* @type {string}
|
|
2838
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2839
|
+
*/
|
|
2840
|
+
'secretKey': string;
|
|
2841
|
+
/**
|
|
2842
|
+
*
|
|
2843
|
+
* @type {string}
|
|
2844
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2845
|
+
*/
|
|
2846
|
+
'apiKey': string;
|
|
2847
|
+
/**
|
|
2848
|
+
*
|
|
2849
|
+
* @type {PaymentGatewayEnum}
|
|
2850
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2851
|
+
*/
|
|
2852
|
+
'type': PaymentGatewayEnum;
|
|
2853
|
+
/**
|
|
2854
|
+
*
|
|
2855
|
+
* @type {string}
|
|
2856
|
+
* @memberof ICompanyPatchRequestPaymentGatewaysInner
|
|
2857
|
+
*/
|
|
2858
|
+
'_id': string;
|
|
2859
|
+
}
|
|
2860
|
+
/**
|
|
2861
|
+
*
|
|
2862
|
+
* @export
|
|
2863
|
+
* @interface ICompanyPaymentGatewaysResponse
|
|
2864
|
+
*/
|
|
2865
|
+
export interface ICompanyPaymentGatewaysResponse {
|
|
2866
|
+
/**
|
|
2867
|
+
*
|
|
2868
|
+
* @type {Array<ICompanyPatchRequestPaymentGatewaysInner>}
|
|
2869
|
+
* @memberof ICompanyPaymentGatewaysResponse
|
|
2870
|
+
*/
|
|
2871
|
+
'data': Array<ICompanyPatchRequestPaymentGatewaysInner>;
|
|
2872
|
+
}
|
|
2785
2873
|
/**
|
|
2786
2874
|
*
|
|
2787
2875
|
* @export
|
|
@@ -3509,6 +3597,62 @@ export interface ICompanyUpdateNavigationRequest {
|
|
|
3509
3597
|
[key: string]: ICompanyResponseNavigationsValue;
|
|
3510
3598
|
};
|
|
3511
3599
|
}
|
|
3600
|
+
/**
|
|
3601
|
+
*
|
|
3602
|
+
* @export
|
|
3603
|
+
* @interface ICompanyUpdatePaymentGatewaysRequest
|
|
3604
|
+
*/
|
|
3605
|
+
export interface ICompanyUpdatePaymentGatewaysRequest {
|
|
3606
|
+
/**
|
|
3607
|
+
*
|
|
3608
|
+
* @type {Array<ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner>}
|
|
3609
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3610
|
+
*/
|
|
3611
|
+
'paymentGateways': Array<ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner>;
|
|
3612
|
+
}
|
|
3613
|
+
/**
|
|
3614
|
+
*
|
|
3615
|
+
* @export
|
|
3616
|
+
* @interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3617
|
+
*/
|
|
3618
|
+
export interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner {
|
|
3619
|
+
/**
|
|
3620
|
+
*
|
|
3621
|
+
* @type {boolean}
|
|
3622
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3623
|
+
*/
|
|
3624
|
+
'active': boolean;
|
|
3625
|
+
/**
|
|
3626
|
+
*
|
|
3627
|
+
* @type {boolean}
|
|
3628
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3629
|
+
*/
|
|
3630
|
+
'testMode': boolean;
|
|
3631
|
+
/**
|
|
3632
|
+
*
|
|
3633
|
+
* @type {string}
|
|
3634
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3635
|
+
*/
|
|
3636
|
+
'secretKey': string;
|
|
3637
|
+
/**
|
|
3638
|
+
*
|
|
3639
|
+
* @type {string}
|
|
3640
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3641
|
+
*/
|
|
3642
|
+
'apiKey': string;
|
|
3643
|
+
/**
|
|
3644
|
+
*
|
|
3645
|
+
* @type {PaymentGatewayEnum}
|
|
3646
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3647
|
+
*/
|
|
3648
|
+
'type': PaymentGatewayEnum;
|
|
3649
|
+
/**
|
|
3650
|
+
*
|
|
3651
|
+
* @type {string}
|
|
3652
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3653
|
+
*/
|
|
3654
|
+
'_id'?: string;
|
|
3655
|
+
}
|
|
3512
3656
|
/**
|
|
3513
3657
|
*
|
|
3514
3658
|
* @export
|
|
@@ -3569,7 +3713,7 @@ export interface ICompanyUsersCollectionQueryParams {
|
|
|
3569
3713
|
* @type {string}
|
|
3570
3714
|
* @memberof ICompanyUsersCollectionQueryParams
|
|
3571
3715
|
*/
|
|
3572
|
-
'dateField'?:
|
|
3716
|
+
'dateField'?: ICompanyUsersCollectionQueryParamsDateFieldEnum;
|
|
3573
3717
|
/**
|
|
3574
3718
|
*
|
|
3575
3719
|
* @type {OrderEnum}
|
|
@@ -3589,6 +3733,11 @@ export interface ICompanyUsersCollectionQueryParams {
|
|
|
3589
3733
|
*/
|
|
3590
3734
|
'status'?: CompanyUserStatusEnum;
|
|
3591
3735
|
}
|
|
3736
|
+
export declare const ICompanyUsersCollectionQueryParamsDateFieldEnum: {
|
|
3737
|
+
readonly CREATED_AT: "createdAt";
|
|
3738
|
+
readonly UPDATED_AT: "updatedAt";
|
|
3739
|
+
};
|
|
3740
|
+
export type ICompanyUsersCollectionQueryParamsDateFieldEnum = typeof ICompanyUsersCollectionQueryParamsDateFieldEnum[keyof typeof ICompanyUsersCollectionQueryParamsDateFieldEnum];
|
|
3592
3741
|
/**
|
|
3593
3742
|
*
|
|
3594
3743
|
* @export
|
|
@@ -3643,7 +3792,7 @@ export interface IContactFormCollectionQueryParams {
|
|
|
3643
3792
|
* @type {string}
|
|
3644
3793
|
* @memberof IContactFormCollectionQueryParams
|
|
3645
3794
|
*/
|
|
3646
|
-
'dateField'?:
|
|
3795
|
+
'dateField'?: IContactFormCollectionQueryParamsDateFieldEnum;
|
|
3647
3796
|
/**
|
|
3648
3797
|
*
|
|
3649
3798
|
* @type {OrderEnum}
|
|
@@ -3663,6 +3812,11 @@ export interface IContactFormCollectionQueryParams {
|
|
|
3663
3812
|
*/
|
|
3664
3813
|
'companyId': string;
|
|
3665
3814
|
}
|
|
3815
|
+
export declare const IContactFormCollectionQueryParamsDateFieldEnum: {
|
|
3816
|
+
readonly CREATED_AT: "createdAt";
|
|
3817
|
+
readonly UPDATED_AT: "updatedAt";
|
|
3818
|
+
};
|
|
3819
|
+
export type IContactFormCollectionQueryParamsDateFieldEnum = typeof IContactFormCollectionQueryParamsDateFieldEnum[keyof typeof IContactFormCollectionQueryParamsDateFieldEnum];
|
|
3666
3820
|
/**
|
|
3667
3821
|
*
|
|
3668
3822
|
* @export
|
|
@@ -4037,7 +4191,7 @@ export interface IFileCollectionQueryParams {
|
|
|
4037
4191
|
* @type {string}
|
|
4038
4192
|
* @memberof IFileCollectionQueryParams
|
|
4039
4193
|
*/
|
|
4040
|
-
'dateField'?:
|
|
4194
|
+
'dateField'?: IFileCollectionQueryParamsDateFieldEnum;
|
|
4041
4195
|
/**
|
|
4042
4196
|
*
|
|
4043
4197
|
* @type {OrderEnum}
|
|
@@ -4075,6 +4229,11 @@ export interface IFileCollectionQueryParams {
|
|
|
4075
4229
|
*/
|
|
4076
4230
|
'status'?: FileStatusEnum;
|
|
4077
4231
|
}
|
|
4232
|
+
export declare const IFileCollectionQueryParamsDateFieldEnum: {
|
|
4233
|
+
readonly CREATED_AT: "createdAt";
|
|
4234
|
+
readonly UPDATED_AT: "updatedAt";
|
|
4235
|
+
};
|
|
4236
|
+
export type IFileCollectionQueryParamsDateFieldEnum = typeof IFileCollectionQueryParamsDateFieldEnum[keyof typeof IFileCollectionQueryParamsDateFieldEnum];
|
|
4078
4237
|
/**
|
|
4079
4238
|
*
|
|
4080
4239
|
* @export
|
|
@@ -4367,6 +4526,72 @@ export interface ILoginResponseExpiresIn {
|
|
|
4367
4526
|
*/
|
|
4368
4527
|
'accessToken': number;
|
|
4369
4528
|
}
|
|
4529
|
+
/**
|
|
4530
|
+
*
|
|
4531
|
+
* @export
|
|
4532
|
+
* @interface IMyOrderCollectionQueryParams
|
|
4533
|
+
*/
|
|
4534
|
+
export interface IMyOrderCollectionQueryParams {
|
|
4535
|
+
/**
|
|
4536
|
+
*
|
|
4537
|
+
* @type {number}
|
|
4538
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4539
|
+
*/
|
|
4540
|
+
'page'?: number;
|
|
4541
|
+
/**
|
|
4542
|
+
*
|
|
4543
|
+
* @type {number}
|
|
4544
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4545
|
+
*/
|
|
4546
|
+
'itemsPerPage'?: number;
|
|
4547
|
+
/**
|
|
4548
|
+
*
|
|
4549
|
+
* @type {string}
|
|
4550
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4551
|
+
*/
|
|
4552
|
+
'search'?: string;
|
|
4553
|
+
/**
|
|
4554
|
+
*
|
|
4555
|
+
* @type {string}
|
|
4556
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4557
|
+
*/
|
|
4558
|
+
'startDate'?: string;
|
|
4559
|
+
/**
|
|
4560
|
+
*
|
|
4561
|
+
* @type {string}
|
|
4562
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4563
|
+
*/
|
|
4564
|
+
'endDate'?: string;
|
|
4565
|
+
/**
|
|
4566
|
+
*
|
|
4567
|
+
* @type {string}
|
|
4568
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4569
|
+
*/
|
|
4570
|
+
'dateField'?: IMyOrderCollectionQueryParamsDateFieldEnum;
|
|
4571
|
+
/**
|
|
4572
|
+
*
|
|
4573
|
+
* @type {OrderEnum}
|
|
4574
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4575
|
+
*/
|
|
4576
|
+
'order'?: OrderEnum;
|
|
4577
|
+
/**
|
|
4578
|
+
*
|
|
4579
|
+
* @type {string}
|
|
4580
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4581
|
+
*/
|
|
4582
|
+
'sort'?: string;
|
|
4583
|
+
/**
|
|
4584
|
+
*
|
|
4585
|
+
* @type {OrderStatusEnum}
|
|
4586
|
+
* @memberof IMyOrderCollectionQueryParams
|
|
4587
|
+
*/
|
|
4588
|
+
'status'?: OrderStatusEnum;
|
|
4589
|
+
}
|
|
4590
|
+
export declare const IMyOrderCollectionQueryParamsDateFieldEnum: {
|
|
4591
|
+
readonly CREATED_AT: "createdAt";
|
|
4592
|
+
readonly UPDATED_AT: "updatedAt";
|
|
4593
|
+
};
|
|
4594
|
+
export type IMyOrderCollectionQueryParamsDateFieldEnum = typeof IMyOrderCollectionQueryParamsDateFieldEnum[keyof typeof IMyOrderCollectionQueryParamsDateFieldEnum];
|
|
4370
4595
|
/**
|
|
4371
4596
|
*
|
|
4372
4597
|
* @export
|
|
@@ -4408,7 +4633,7 @@ export interface INotificationCollectionQueryParams {
|
|
|
4408
4633
|
* @type {string}
|
|
4409
4634
|
* @memberof INotificationCollectionQueryParams
|
|
4410
4635
|
*/
|
|
4411
|
-
'dateField'?:
|
|
4636
|
+
'dateField'?: INotificationCollectionQueryParamsDateFieldEnum;
|
|
4412
4637
|
/**
|
|
4413
4638
|
*
|
|
4414
4639
|
* @type {OrderEnum}
|
|
@@ -4440,6 +4665,11 @@ export interface INotificationCollectionQueryParams {
|
|
|
4440
4665
|
*/
|
|
4441
4666
|
'status'?: NotificationStatusEnum;
|
|
4442
4667
|
}
|
|
4668
|
+
export declare const INotificationCollectionQueryParamsDateFieldEnum: {
|
|
4669
|
+
readonly CREATED_AT: "createdAt";
|
|
4670
|
+
readonly UPDATED_AT: "updatedAt";
|
|
4671
|
+
};
|
|
4672
|
+
export type INotificationCollectionQueryParamsDateFieldEnum = typeof INotificationCollectionQueryParamsDateFieldEnum[keyof typeof INotificationCollectionQueryParamsDateFieldEnum];
|
|
4443
4673
|
/**
|
|
4444
4674
|
*
|
|
4445
4675
|
* @export
|
|
@@ -4597,7 +4827,7 @@ export interface IOperationCollectionQueryParams {
|
|
|
4597
4827
|
* @type {string}
|
|
4598
4828
|
* @memberof IOperationCollectionQueryParams
|
|
4599
4829
|
*/
|
|
4600
|
-
'dateField'?:
|
|
4830
|
+
'dateField'?: IOperationCollectionQueryParamsDateFieldEnum;
|
|
4601
4831
|
/**
|
|
4602
4832
|
*
|
|
4603
4833
|
* @type {OrderEnum}
|
|
@@ -4629,6 +4859,11 @@ export interface IOperationCollectionQueryParams {
|
|
|
4629
4859
|
*/
|
|
4630
4860
|
'status'?: OperationStatusEnum;
|
|
4631
4861
|
}
|
|
4862
|
+
export declare const IOperationCollectionQueryParamsDateFieldEnum: {
|
|
4863
|
+
readonly CREATED_AT: "createdAt";
|
|
4864
|
+
readonly UPDATED_AT: "updatedAt";
|
|
4865
|
+
};
|
|
4866
|
+
export type IOperationCollectionQueryParamsDateFieldEnum = typeof IOperationCollectionQueryParamsDateFieldEnum[keyof typeof IOperationCollectionQueryParamsDateFieldEnum];
|
|
4632
4867
|
/**
|
|
4633
4868
|
*
|
|
4634
4869
|
* @export
|
|
@@ -4890,7 +5125,7 @@ export interface IOrderCollectionQueryParams {
|
|
|
4890
5125
|
* @type {string}
|
|
4891
5126
|
* @memberof IOrderCollectionQueryParams
|
|
4892
5127
|
*/
|
|
4893
|
-
'dateField'?:
|
|
5128
|
+
'dateField'?: IOrderCollectionQueryParamsDateFieldEnum;
|
|
4894
5129
|
/**
|
|
4895
5130
|
*
|
|
4896
5131
|
* @type {OrderEnum}
|
|
@@ -4922,6 +5157,11 @@ export interface IOrderCollectionQueryParams {
|
|
|
4922
5157
|
*/
|
|
4923
5158
|
'status'?: OrderStatusEnum;
|
|
4924
5159
|
}
|
|
5160
|
+
export declare const IOrderCollectionQueryParamsDateFieldEnum: {
|
|
5161
|
+
readonly CREATED_AT: "createdAt";
|
|
5162
|
+
readonly UPDATED_AT: "updatedAt";
|
|
5163
|
+
};
|
|
5164
|
+
export type IOrderCollectionQueryParamsDateFieldEnum = typeof IOrderCollectionQueryParamsDateFieldEnum[keyof typeof IOrderCollectionQueryParamsDateFieldEnum];
|
|
4925
5165
|
/**
|
|
4926
5166
|
*
|
|
4927
5167
|
* @export
|
|
@@ -5067,6 +5307,12 @@ export interface IOrderResponse {
|
|
|
5067
5307
|
* @memberof IOrderResponse
|
|
5068
5308
|
*/
|
|
5069
5309
|
'paymentMethod': PaymentMethodEnum;
|
|
5310
|
+
/**
|
|
5311
|
+
*
|
|
5312
|
+
* @type {PaymentGatewayEnum}
|
|
5313
|
+
* @memberof IOrderResponse
|
|
5314
|
+
*/
|
|
5315
|
+
'paymentGateway': PaymentGatewayEnum;
|
|
5070
5316
|
/**
|
|
5071
5317
|
*
|
|
5072
5318
|
* @type {string}
|
|
@@ -5273,7 +5519,7 @@ export interface IPageCollectionQueryParams {
|
|
|
5273
5519
|
* @type {string}
|
|
5274
5520
|
* @memberof IPageCollectionQueryParams
|
|
5275
5521
|
*/
|
|
5276
|
-
'dateField'?:
|
|
5522
|
+
'dateField'?: IPageCollectionQueryParamsDateFieldEnum;
|
|
5277
5523
|
/**
|
|
5278
5524
|
*
|
|
5279
5525
|
* @type {OrderEnum}
|
|
@@ -5311,6 +5557,11 @@ export interface IPageCollectionQueryParams {
|
|
|
5311
5557
|
*/
|
|
5312
5558
|
'status'?: ContentStatusEnum;
|
|
5313
5559
|
}
|
|
5560
|
+
export declare const IPageCollectionQueryParamsDateFieldEnum: {
|
|
5561
|
+
readonly CREATED_AT: "createdAt";
|
|
5562
|
+
readonly UPDATED_AT: "updatedAt";
|
|
5563
|
+
};
|
|
5564
|
+
export type IPageCollectionQueryParamsDateFieldEnum = typeof IPageCollectionQueryParamsDateFieldEnum[keyof typeof IPageCollectionQueryParamsDateFieldEnum];
|
|
5314
5565
|
/**
|
|
5315
5566
|
*
|
|
5316
5567
|
* @export
|
|
@@ -5555,7 +5806,7 @@ export interface IPlanCollectionQueryParams {
|
|
|
5555
5806
|
* @type {string}
|
|
5556
5807
|
* @memberof IPlanCollectionQueryParams
|
|
5557
5808
|
*/
|
|
5558
|
-
'dateField'?:
|
|
5809
|
+
'dateField'?: IPlanCollectionQueryParamsDateFieldEnum;
|
|
5559
5810
|
/**
|
|
5560
5811
|
*
|
|
5561
5812
|
* @type {OrderEnum}
|
|
@@ -5581,6 +5832,11 @@ export interface IPlanCollectionQueryParams {
|
|
|
5581
5832
|
*/
|
|
5582
5833
|
'type'?: PlanTypeEnum;
|
|
5583
5834
|
}
|
|
5835
|
+
export declare const IPlanCollectionQueryParamsDateFieldEnum: {
|
|
5836
|
+
readonly CREATED_AT: "createdAt";
|
|
5837
|
+
readonly UPDATED_AT: "updatedAt";
|
|
5838
|
+
};
|
|
5839
|
+
export type IPlanCollectionQueryParamsDateFieldEnum = typeof IPlanCollectionQueryParamsDateFieldEnum[keyof typeof IPlanCollectionQueryParamsDateFieldEnum];
|
|
5584
5840
|
/**
|
|
5585
5841
|
*
|
|
5586
5842
|
* @export
|
|
@@ -5862,7 +6118,7 @@ export interface IProductCollectionQueryParams {
|
|
|
5862
6118
|
* @type {string}
|
|
5863
6119
|
* @memberof IProductCollectionQueryParams
|
|
5864
6120
|
*/
|
|
5865
|
-
'dateField'?:
|
|
6121
|
+
'dateField'?: IProductCollectionQueryParamsDateFieldEnum;
|
|
5866
6122
|
/**
|
|
5867
6123
|
*
|
|
5868
6124
|
* @type {OrderEnum}
|
|
@@ -5912,6 +6168,11 @@ export interface IProductCollectionQueryParams {
|
|
|
5912
6168
|
*/
|
|
5913
6169
|
'status'?: ContentStatusEnum;
|
|
5914
6170
|
}
|
|
6171
|
+
export declare const IProductCollectionQueryParamsDateFieldEnum: {
|
|
6172
|
+
readonly CREATED_AT: "createdAt";
|
|
6173
|
+
readonly UPDATED_AT: "updatedAt";
|
|
6174
|
+
};
|
|
6175
|
+
export type IProductCollectionQueryParamsDateFieldEnum = typeof IProductCollectionQueryParamsDateFieldEnum[keyof typeof IProductCollectionQueryParamsDateFieldEnum];
|
|
5915
6176
|
/**
|
|
5916
6177
|
*
|
|
5917
6178
|
* @export
|
|
@@ -7278,7 +7539,7 @@ export interface IUserCollectionQueryParams {
|
|
|
7278
7539
|
* @type {string}
|
|
7279
7540
|
* @memberof IUserCollectionQueryParams
|
|
7280
7541
|
*/
|
|
7281
|
-
'dateField'?:
|
|
7542
|
+
'dateField'?: IUserCollectionQueryParamsDateFieldEnum;
|
|
7282
7543
|
/**
|
|
7283
7544
|
*
|
|
7284
7545
|
* @type {OrderEnum}
|
|
@@ -7298,6 +7559,11 @@ export interface IUserCollectionQueryParams {
|
|
|
7298
7559
|
*/
|
|
7299
7560
|
'status'?: UserStatusEnum;
|
|
7300
7561
|
}
|
|
7562
|
+
export declare const IUserCollectionQueryParamsDateFieldEnum: {
|
|
7563
|
+
readonly CREATED_AT: "createdAt";
|
|
7564
|
+
readonly UPDATED_AT: "updatedAt";
|
|
7565
|
+
};
|
|
7566
|
+
export type IUserCollectionQueryParamsDateFieldEnum = typeof IUserCollectionQueryParamsDateFieldEnum[keyof typeof IUserCollectionQueryParamsDateFieldEnum];
|
|
7301
7567
|
/**
|
|
7302
7568
|
*
|
|
7303
7569
|
* @export
|
|
@@ -7725,6 +7991,15 @@ export interface PartialRecordLanguageEnumString {
|
|
|
7725
7991
|
*/
|
|
7726
7992
|
'de'?: string;
|
|
7727
7993
|
}
|
|
7994
|
+
/**
|
|
7995
|
+
*
|
|
7996
|
+
* @export
|
|
7997
|
+
* @enum {string}
|
|
7998
|
+
*/
|
|
7999
|
+
export declare const PaymentGatewayEnum: {
|
|
8000
|
+
readonly IYZICO: "iyzico";
|
|
8001
|
+
};
|
|
8002
|
+
export type PaymentGatewayEnum = typeof PaymentGatewayEnum[keyof typeof PaymentGatewayEnum];
|
|
7728
8003
|
/**
|
|
7729
8004
|
*
|
|
7730
8005
|
* @export
|
|
@@ -10034,14 +10309,14 @@ export declare const CollectionApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10034
10309
|
* @param {string} [search]
|
|
10035
10310
|
* @param {string} [startDate]
|
|
10036
10311
|
* @param {string} [endDate]
|
|
10037
|
-
* @param {
|
|
10312
|
+
* @param {GetCollectionsDateFieldEnum} [dateField]
|
|
10038
10313
|
* @param {OrderEnum} [order]
|
|
10039
10314
|
* @param {string} [sort]
|
|
10040
10315
|
* @param {ContentStatusEnum} [status]
|
|
10041
10316
|
* @param {*} [options] Override http request option.
|
|
10042
10317
|
* @throws {RequiredError}
|
|
10043
10318
|
*/
|
|
10044
|
-
getCollections: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10319
|
+
getCollections: (companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetCollectionsDateFieldEnum, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10045
10320
|
};
|
|
10046
10321
|
/**
|
|
10047
10322
|
* CollectionApi - functional programming interface
|
|
@@ -10064,14 +10339,14 @@ export declare const CollectionApiFp: (configuration?: Configuration) => {
|
|
|
10064
10339
|
* @param {string} [search]
|
|
10065
10340
|
* @param {string} [startDate]
|
|
10066
10341
|
* @param {string} [endDate]
|
|
10067
|
-
* @param {
|
|
10342
|
+
* @param {GetCollectionsDateFieldEnum} [dateField]
|
|
10068
10343
|
* @param {OrderEnum} [order]
|
|
10069
10344
|
* @param {string} [sort]
|
|
10070
10345
|
* @param {ContentStatusEnum} [status]
|
|
10071
10346
|
* @param {*} [options] Override http request option.
|
|
10072
10347
|
* @throws {RequiredError}
|
|
10073
10348
|
*/
|
|
10074
|
-
getCollections(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10349
|
+
getCollections(companyId: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetCollectionsDateFieldEnum, order?: OrderEnum, sort?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICollectionsResponse>>;
|
|
10075
10350
|
};
|
|
10076
10351
|
/**
|
|
10077
10352
|
* CollectionApi - factory interface
|
|
@@ -10156,10 +10431,10 @@ export interface CollectionApiGetCollectionsRequest {
|
|
|
10156
10431
|
readonly endDate?: string;
|
|
10157
10432
|
/**
|
|
10158
10433
|
*
|
|
10159
|
-
* @type {
|
|
10434
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
10160
10435
|
* @memberof CollectionApiGetCollections
|
|
10161
10436
|
*/
|
|
10162
|
-
readonly dateField?:
|
|
10437
|
+
readonly dateField?: GetCollectionsDateFieldEnum;
|
|
10163
10438
|
/**
|
|
10164
10439
|
*
|
|
10165
10440
|
* @type {OrderEnum}
|
|
@@ -10203,6 +10478,14 @@ export declare class CollectionApi extends BaseAPI {
|
|
|
10203
10478
|
*/
|
|
10204
10479
|
getCollections(requestParameters: CollectionApiGetCollectionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICollectionsResponse, any>>;
|
|
10205
10480
|
}
|
|
10481
|
+
/**
|
|
10482
|
+
* @export
|
|
10483
|
+
*/
|
|
10484
|
+
export declare const GetCollectionsDateFieldEnum: {
|
|
10485
|
+
readonly CREATED_AT: "createdAt";
|
|
10486
|
+
readonly UPDATED_AT: "updatedAt";
|
|
10487
|
+
};
|
|
10488
|
+
export type GetCollectionsDateFieldEnum = typeof GetCollectionsDateFieldEnum[keyof typeof GetCollectionsDateFieldEnum];
|
|
10206
10489
|
/**
|
|
10207
10490
|
* CompanyApi - axios parameter creator
|
|
10208
10491
|
* @export
|
|
@@ -10353,11 +10636,19 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
10353
10636
|
createOrder: (iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10354
10637
|
/**
|
|
10355
10638
|
*
|
|
10639
|
+
* @param {number} [page]
|
|
10640
|
+
* @param {number} [itemsPerPage]
|
|
10641
|
+
* @param {string} [search]
|
|
10642
|
+
* @param {string} [startDate]
|
|
10643
|
+
* @param {string} [endDate]
|
|
10644
|
+
* @param {GetMyOrdersDateFieldEnum} [dateField]
|
|
10645
|
+
* @param {OrderEnum} [order]
|
|
10646
|
+
* @param {string} [sort]
|
|
10356
10647
|
* @param {OrderStatusEnum} [status]
|
|
10357
10648
|
* @param {*} [options] Override http request option.
|
|
10358
10649
|
* @throws {RequiredError}
|
|
10359
10650
|
*/
|
|
10360
|
-
getMyOrders: (status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10651
|
+
getMyOrders: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetMyOrdersDateFieldEnum, order?: OrderEnum, sort?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10361
10652
|
/**
|
|
10362
10653
|
*
|
|
10363
10654
|
* @param {string} id
|
|
@@ -10373,7 +10664,7 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
10373
10664
|
* @param {string} [search]
|
|
10374
10665
|
* @param {string} [startDate]
|
|
10375
10666
|
* @param {string} [endDate]
|
|
10376
|
-
* @param {
|
|
10667
|
+
* @param {GetOrdersDateFieldEnum} [dateField]
|
|
10377
10668
|
* @param {OrderEnum} [order]
|
|
10378
10669
|
* @param {string} [sort]
|
|
10379
10670
|
* @param {string} [user]
|
|
@@ -10381,7 +10672,7 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
10381
10672
|
* @param {*} [options] Override http request option.
|
|
10382
10673
|
* @throws {RequiredError}
|
|
10383
10674
|
*/
|
|
10384
|
-
getOrders: (company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10675
|
+
getOrders: (company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetOrdersDateFieldEnum, order?: OrderEnum, sort?: string, user?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10385
10676
|
};
|
|
10386
10677
|
/**
|
|
10387
10678
|
* OrderApi - functional programming interface
|
|
@@ -10397,11 +10688,19 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
10397
10688
|
createOrder(iOrderPostRequest: IOrderPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrderResponse>>;
|
|
10398
10689
|
/**
|
|
10399
10690
|
*
|
|
10691
|
+
* @param {number} [page]
|
|
10692
|
+
* @param {number} [itemsPerPage]
|
|
10693
|
+
* @param {string} [search]
|
|
10694
|
+
* @param {string} [startDate]
|
|
10695
|
+
* @param {string} [endDate]
|
|
10696
|
+
* @param {GetMyOrdersDateFieldEnum} [dateField]
|
|
10697
|
+
* @param {OrderEnum} [order]
|
|
10698
|
+
* @param {string} [sort]
|
|
10400
10699
|
* @param {OrderStatusEnum} [status]
|
|
10401
10700
|
* @param {*} [options] Override http request option.
|
|
10402
10701
|
* @throws {RequiredError}
|
|
10403
10702
|
*/
|
|
10404
|
-
getMyOrders(status?: OrderStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrdersResponse>>;
|
|
10703
|
+
getMyOrders(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetMyOrdersDateFieldEnum, order?: OrderEnum, sort?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrdersResponse>>;
|
|
10405
10704
|
/**
|
|
10406
10705
|
*
|
|
10407
10706
|
* @param {string} id
|
|
@@ -10417,7 +10716,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
10417
10716
|
* @param {string} [search]
|
|
10418
10717
|
* @param {string} [startDate]
|
|
10419
10718
|
* @param {string} [endDate]
|
|
10420
|
-
* @param {
|
|
10719
|
+
* @param {GetOrdersDateFieldEnum} [dateField]
|
|
10421
10720
|
* @param {OrderEnum} [order]
|
|
10422
10721
|
* @param {string} [sort]
|
|
10423
10722
|
* @param {string} [user]
|
|
@@ -10425,7 +10724,7 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
10425
10724
|
* @param {*} [options] Override http request option.
|
|
10426
10725
|
* @throws {RequiredError}
|
|
10427
10726
|
*/
|
|
10428
|
-
getOrders(company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
10727
|
+
getOrders(company: string, page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetOrdersDateFieldEnum, order?: OrderEnum, sort?: string, user?: string, status?: OrderStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOrdersResponse>>;
|
|
10429
10728
|
};
|
|
10430
10729
|
/**
|
|
10431
10730
|
* OrderApi - factory interface
|
|
@@ -10480,6 +10779,54 @@ export interface OrderApiCreateOrderRequest {
|
|
|
10480
10779
|
* @interface OrderApiGetMyOrdersRequest
|
|
10481
10780
|
*/
|
|
10482
10781
|
export interface OrderApiGetMyOrdersRequest {
|
|
10782
|
+
/**
|
|
10783
|
+
*
|
|
10784
|
+
* @type {number}
|
|
10785
|
+
* @memberof OrderApiGetMyOrders
|
|
10786
|
+
*/
|
|
10787
|
+
readonly page?: number;
|
|
10788
|
+
/**
|
|
10789
|
+
*
|
|
10790
|
+
* @type {number}
|
|
10791
|
+
* @memberof OrderApiGetMyOrders
|
|
10792
|
+
*/
|
|
10793
|
+
readonly itemsPerPage?: number;
|
|
10794
|
+
/**
|
|
10795
|
+
*
|
|
10796
|
+
* @type {string}
|
|
10797
|
+
* @memberof OrderApiGetMyOrders
|
|
10798
|
+
*/
|
|
10799
|
+
readonly search?: string;
|
|
10800
|
+
/**
|
|
10801
|
+
*
|
|
10802
|
+
* @type {string}
|
|
10803
|
+
* @memberof OrderApiGetMyOrders
|
|
10804
|
+
*/
|
|
10805
|
+
readonly startDate?: string;
|
|
10806
|
+
/**
|
|
10807
|
+
*
|
|
10808
|
+
* @type {string}
|
|
10809
|
+
* @memberof OrderApiGetMyOrders
|
|
10810
|
+
*/
|
|
10811
|
+
readonly endDate?: string;
|
|
10812
|
+
/**
|
|
10813
|
+
*
|
|
10814
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
10815
|
+
* @memberof OrderApiGetMyOrders
|
|
10816
|
+
*/
|
|
10817
|
+
readonly dateField?: GetMyOrdersDateFieldEnum;
|
|
10818
|
+
/**
|
|
10819
|
+
*
|
|
10820
|
+
* @type {OrderEnum}
|
|
10821
|
+
* @memberof OrderApiGetMyOrders
|
|
10822
|
+
*/
|
|
10823
|
+
readonly order?: OrderEnum;
|
|
10824
|
+
/**
|
|
10825
|
+
*
|
|
10826
|
+
* @type {string}
|
|
10827
|
+
* @memberof OrderApiGetMyOrders
|
|
10828
|
+
*/
|
|
10829
|
+
readonly sort?: string;
|
|
10483
10830
|
/**
|
|
10484
10831
|
*
|
|
10485
10832
|
* @type {OrderStatusEnum}
|
|
@@ -10544,10 +10891,10 @@ export interface OrderApiGetOrdersRequest {
|
|
|
10544
10891
|
readonly endDate?: string;
|
|
10545
10892
|
/**
|
|
10546
10893
|
*
|
|
10547
|
-
* @type {
|
|
10894
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
10548
10895
|
* @memberof OrderApiGetOrders
|
|
10549
10896
|
*/
|
|
10550
|
-
readonly dateField?:
|
|
10897
|
+
readonly dateField?: GetOrdersDateFieldEnum;
|
|
10551
10898
|
/**
|
|
10552
10899
|
*
|
|
10553
10900
|
* @type {OrderEnum}
|
|
@@ -10613,6 +10960,22 @@ export declare class OrderApi extends BaseAPI {
|
|
|
10613
10960
|
*/
|
|
10614
10961
|
getOrders(requestParameters: OrderApiGetOrdersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOrdersResponse, any>>;
|
|
10615
10962
|
}
|
|
10963
|
+
/**
|
|
10964
|
+
* @export
|
|
10965
|
+
*/
|
|
10966
|
+
export declare const GetMyOrdersDateFieldEnum: {
|
|
10967
|
+
readonly CREATED_AT: "createdAt";
|
|
10968
|
+
readonly UPDATED_AT: "updatedAt";
|
|
10969
|
+
};
|
|
10970
|
+
export type GetMyOrdersDateFieldEnum = typeof GetMyOrdersDateFieldEnum[keyof typeof GetMyOrdersDateFieldEnum];
|
|
10971
|
+
/**
|
|
10972
|
+
* @export
|
|
10973
|
+
*/
|
|
10974
|
+
export declare const GetOrdersDateFieldEnum: {
|
|
10975
|
+
readonly CREATED_AT: "createdAt";
|
|
10976
|
+
readonly UPDATED_AT: "updatedAt";
|
|
10977
|
+
};
|
|
10978
|
+
export type GetOrdersDateFieldEnum = typeof GetOrdersDateFieldEnum[keyof typeof GetOrdersDateFieldEnum];
|
|
10616
10979
|
/**
|
|
10617
10980
|
* PageApi - axios parameter creator
|
|
10618
10981
|
* @export
|
|
@@ -10644,7 +11007,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
10644
11007
|
* @param {string} [search]
|
|
10645
11008
|
* @param {string} [startDate]
|
|
10646
11009
|
* @param {string} [endDate]
|
|
10647
|
-
* @param {
|
|
11010
|
+
* @param {GetPagesDateFieldEnum} [dateField]
|
|
10648
11011
|
* @param {OrderEnum} [order]
|
|
10649
11012
|
* @param {string} [sort]
|
|
10650
11013
|
* @param {string} [companyId]
|
|
@@ -10654,7 +11017,7 @@ export declare const PageApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
10654
11017
|
* @param {*} [options] Override http request option.
|
|
10655
11018
|
* @throws {RequiredError}
|
|
10656
11019
|
*/
|
|
10657
|
-
getPages: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11020
|
+
getPages: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPagesDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10658
11021
|
};
|
|
10659
11022
|
/**
|
|
10660
11023
|
* PageApi - functional programming interface
|
|
@@ -10687,7 +11050,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
10687
11050
|
* @param {string} [search]
|
|
10688
11051
|
* @param {string} [startDate]
|
|
10689
11052
|
* @param {string} [endDate]
|
|
10690
|
-
* @param {
|
|
11053
|
+
* @param {GetPagesDateFieldEnum} [dateField]
|
|
10691
11054
|
* @param {OrderEnum} [order]
|
|
10692
11055
|
* @param {string} [sort]
|
|
10693
11056
|
* @param {string} [companyId]
|
|
@@ -10697,7 +11060,7 @@ export declare const PageApiFp: (configuration?: Configuration) => {
|
|
|
10697
11060
|
* @param {*} [options] Override http request option.
|
|
10698
11061
|
* @throws {RequiredError}
|
|
10699
11062
|
*/
|
|
10700
|
-
getPages(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11063
|
+
getPages(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPagesDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, type?: PageTypeEnum, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPagesResponse>>;
|
|
10701
11064
|
};
|
|
10702
11065
|
/**
|
|
10703
11066
|
* PageApi - factory interface
|
|
@@ -10820,10 +11183,10 @@ export interface PageApiGetPagesRequest {
|
|
|
10820
11183
|
readonly endDate?: string;
|
|
10821
11184
|
/**
|
|
10822
11185
|
*
|
|
10823
|
-
* @type {
|
|
11186
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
10824
11187
|
* @memberof PageApiGetPages
|
|
10825
11188
|
*/
|
|
10826
|
-
readonly dateField?:
|
|
11189
|
+
readonly dateField?: GetPagesDateFieldEnum;
|
|
10827
11190
|
/**
|
|
10828
11191
|
*
|
|
10829
11192
|
* @type {OrderEnum}
|
|
@@ -10893,6 +11256,14 @@ export declare class PageApi extends BaseAPI {
|
|
|
10893
11256
|
*/
|
|
10894
11257
|
getPages(requestParameters?: PageApiGetPagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPagesResponse, any>>;
|
|
10895
11258
|
}
|
|
11259
|
+
/**
|
|
11260
|
+
* @export
|
|
11261
|
+
*/
|
|
11262
|
+
export declare const GetPagesDateFieldEnum: {
|
|
11263
|
+
readonly CREATED_AT: "createdAt";
|
|
11264
|
+
readonly UPDATED_AT: "updatedAt";
|
|
11265
|
+
};
|
|
11266
|
+
export type GetPagesDateFieldEnum = typeof GetPagesDateFieldEnum[keyof typeof GetPagesDateFieldEnum];
|
|
10896
11267
|
/**
|
|
10897
11268
|
* ProductApi - axios parameter creator
|
|
10898
11269
|
* @export
|
|
@@ -10914,7 +11285,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10914
11285
|
* @param {string} [search]
|
|
10915
11286
|
* @param {string} [startDate]
|
|
10916
11287
|
* @param {string} [endDate]
|
|
10917
|
-
* @param {
|
|
11288
|
+
* @param {GetProductsDateFieldEnum} [dateField]
|
|
10918
11289
|
* @param {OrderEnum} [order]
|
|
10919
11290
|
* @param {string} [sort]
|
|
10920
11291
|
* @param {string} [companyId]
|
|
@@ -10926,7 +11297,7 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10926
11297
|
* @param {*} [options] Override http request option.
|
|
10927
11298
|
* @throws {RequiredError}
|
|
10928
11299
|
*/
|
|
10929
|
-
getProducts: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11300
|
+
getProducts: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, collections?: string, category?: string, brand?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10930
11301
|
/**
|
|
10931
11302
|
*
|
|
10932
11303
|
* @param {string} search
|
|
@@ -10958,7 +11329,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
10958
11329
|
* @param {string} [search]
|
|
10959
11330
|
* @param {string} [startDate]
|
|
10960
11331
|
* @param {string} [endDate]
|
|
10961
|
-
* @param {
|
|
11332
|
+
* @param {GetProductsDateFieldEnum} [dateField]
|
|
10962
11333
|
* @param {OrderEnum} [order]
|
|
10963
11334
|
* @param {string} [sort]
|
|
10964
11335
|
* @param {string} [companyId]
|
|
@@ -10970,7 +11341,7 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
|
|
|
10970
11341
|
* @param {*} [options] Override http request option.
|
|
10971
11342
|
* @throws {RequiredError}
|
|
10972
11343
|
*/
|
|
10973
|
-
getProducts(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?:
|
|
11344
|
+
getProducts(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetProductsDateFieldEnum, order?: OrderEnum, sort?: string, companyId?: string, domain?: string, collections?: string, category?: string, brand?: string, status?: ContentStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductsResponse>>;
|
|
10974
11345
|
/**
|
|
10975
11346
|
*
|
|
10976
11347
|
* @param {string} search
|
|
@@ -11071,10 +11442,10 @@ export interface ProductApiGetProductsRequest {
|
|
|
11071
11442
|
readonly endDate?: string;
|
|
11072
11443
|
/**
|
|
11073
11444
|
*
|
|
11074
|
-
* @type {
|
|
11445
|
+
* @type {'createdAt' | 'updatedAt'}
|
|
11075
11446
|
* @memberof ProductApiGetProducts
|
|
11076
11447
|
*/
|
|
11077
|
-
readonly dateField?:
|
|
11448
|
+
readonly dateField?: GetProductsDateFieldEnum;
|
|
11078
11449
|
/**
|
|
11079
11450
|
*
|
|
11080
11451
|
* @type {OrderEnum}
|
|
@@ -11181,6 +11552,14 @@ export declare class ProductApi extends BaseAPI {
|
|
|
11181
11552
|
*/
|
|
11182
11553
|
searchProducts(requestParameters: ProductApiSearchProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ISearchProductsResponse, any>>;
|
|
11183
11554
|
}
|
|
11555
|
+
/**
|
|
11556
|
+
* @export
|
|
11557
|
+
*/
|
|
11558
|
+
export declare const GetProductsDateFieldEnum: {
|
|
11559
|
+
readonly CREATED_AT: "createdAt";
|
|
11560
|
+
readonly UPDATED_AT: "updatedAt";
|
|
11561
|
+
};
|
|
11562
|
+
export type GetProductsDateFieldEnum = typeof GetProductsDateFieldEnum[keyof typeof GetProductsDateFieldEnum];
|
|
11184
11563
|
/**
|
|
11185
11564
|
* SitemapApi - axios parameter creator
|
|
11186
11565
|
* @export
|