ch-admin-api-client-typescript 2.8.5 → 2.8.8
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/lib/api.d.ts +635 -5
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +545 -8
- package/package.json +1 -1
- package/src/api.ts +898 -7
package/lib/api.d.ts
CHANGED
|
@@ -3975,6 +3975,18 @@ export interface CreateHospitalServiceCommand {
|
|
|
3975
3975
|
* @memberof CreateHospitalServiceCommand
|
|
3976
3976
|
*/
|
|
3977
3977
|
'order'?: number;
|
|
3978
|
+
/**
|
|
3979
|
+
*
|
|
3980
|
+
* @type {string}
|
|
3981
|
+
* @memberof CreateHospitalServiceCommand
|
|
3982
|
+
*/
|
|
3983
|
+
'photo'?: string | null;
|
|
3984
|
+
/**
|
|
3985
|
+
*
|
|
3986
|
+
* @type {string}
|
|
3987
|
+
* @memberof CreateHospitalServiceCommand
|
|
3988
|
+
*/
|
|
3989
|
+
'photoThumbnail'?: string | null;
|
|
3978
3990
|
}
|
|
3979
3991
|
/**
|
|
3980
3992
|
*
|
|
@@ -4012,6 +4024,30 @@ export interface CreateHospitalSpecialtyCommand {
|
|
|
4012
4024
|
* @memberof CreateHospitalSpecialtyCommand
|
|
4013
4025
|
*/
|
|
4014
4026
|
'order'?: number;
|
|
4027
|
+
/**
|
|
4028
|
+
*
|
|
4029
|
+
* @type {string}
|
|
4030
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4031
|
+
*/
|
|
4032
|
+
'photo'?: string | null;
|
|
4033
|
+
/**
|
|
4034
|
+
*
|
|
4035
|
+
* @type {string}
|
|
4036
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4037
|
+
*/
|
|
4038
|
+
'photoThumbnail'?: string | null;
|
|
4039
|
+
/**
|
|
4040
|
+
*
|
|
4041
|
+
* @type {string}
|
|
4042
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4043
|
+
*/
|
|
4044
|
+
'background'?: string | null;
|
|
4045
|
+
/**
|
|
4046
|
+
*
|
|
4047
|
+
* @type {string}
|
|
4048
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4049
|
+
*/
|
|
4050
|
+
'backgroundThumbnail'?: string | null;
|
|
4015
4051
|
/**
|
|
4016
4052
|
*
|
|
4017
4053
|
* @type {Array<MediaModel>}
|
|
@@ -4482,6 +4518,85 @@ export interface CreateTemplateVersionCommand {
|
|
|
4482
4518
|
*/
|
|
4483
4519
|
'htmlContent'?: string | null;
|
|
4484
4520
|
}
|
|
4521
|
+
/**
|
|
4522
|
+
*
|
|
4523
|
+
* @export
|
|
4524
|
+
* @interface DashBoardModel
|
|
4525
|
+
*/
|
|
4526
|
+
export interface DashBoardModel {
|
|
4527
|
+
/**
|
|
4528
|
+
*
|
|
4529
|
+
* @type {number}
|
|
4530
|
+
* @memberof DashBoardModel
|
|
4531
|
+
*/
|
|
4532
|
+
'pendingApprovalConsultationsCount'?: number;
|
|
4533
|
+
/**
|
|
4534
|
+
*
|
|
4535
|
+
* @type {number}
|
|
4536
|
+
* @memberof DashBoardModel
|
|
4537
|
+
*/
|
|
4538
|
+
'finishedConsultationsCount'?: number;
|
|
4539
|
+
/**
|
|
4540
|
+
*
|
|
4541
|
+
* @type {number}
|
|
4542
|
+
* @memberof DashBoardModel
|
|
4543
|
+
*/
|
|
4544
|
+
'consultationsRevenue'?: number;
|
|
4545
|
+
/**
|
|
4546
|
+
*
|
|
4547
|
+
* @type {Array<any>}
|
|
4548
|
+
* @memberof DashBoardModel
|
|
4549
|
+
*/
|
|
4550
|
+
'monthlyConsultationList'?: Array<any> | null;
|
|
4551
|
+
/**
|
|
4552
|
+
*
|
|
4553
|
+
* @type {number}
|
|
4554
|
+
* @memberof DashBoardModel
|
|
4555
|
+
*/
|
|
4556
|
+
'pendingApprovalDealsCount'?: number;
|
|
4557
|
+
/**
|
|
4558
|
+
*
|
|
4559
|
+
* @type {number}
|
|
4560
|
+
* @memberof DashBoardModel
|
|
4561
|
+
*/
|
|
4562
|
+
'finishedDealsCount'?: number;
|
|
4563
|
+
/**
|
|
4564
|
+
*
|
|
4565
|
+
* @type {number}
|
|
4566
|
+
* @memberof DashBoardModel
|
|
4567
|
+
*/
|
|
4568
|
+
'dealsRevenue'?: number;
|
|
4569
|
+
/**
|
|
4570
|
+
*
|
|
4571
|
+
* @type {Array<any>}
|
|
4572
|
+
* @memberof DashBoardModel
|
|
4573
|
+
*/
|
|
4574
|
+
'monthlyBookingList'?: Array<any> | null;
|
|
4575
|
+
/**
|
|
4576
|
+
*
|
|
4577
|
+
* @type {number}
|
|
4578
|
+
* @memberof DashBoardModel
|
|
4579
|
+
*/
|
|
4580
|
+
'articleReleased'?: number;
|
|
4581
|
+
/**
|
|
4582
|
+
*
|
|
4583
|
+
* @type {number}
|
|
4584
|
+
* @memberof DashBoardModel
|
|
4585
|
+
*/
|
|
4586
|
+
'specialtiesUsed'?: number;
|
|
4587
|
+
/**
|
|
4588
|
+
*
|
|
4589
|
+
* @type {number}
|
|
4590
|
+
* @memberof DashBoardModel
|
|
4591
|
+
*/
|
|
4592
|
+
'doctorsReleased'?: number;
|
|
4593
|
+
/**
|
|
4594
|
+
*
|
|
4595
|
+
* @type {number}
|
|
4596
|
+
* @memberof DashBoardModel
|
|
4597
|
+
*/
|
|
4598
|
+
'totalHospitalsReleased'?: number;
|
|
4599
|
+
}
|
|
4485
4600
|
/**
|
|
4486
4601
|
*
|
|
4487
4602
|
* @export
|
|
@@ -4609,6 +4724,67 @@ export interface DealItemModel {
|
|
|
4609
4724
|
*/
|
|
4610
4725
|
'auditableEntity'?: AuditableEntity;
|
|
4611
4726
|
}
|
|
4727
|
+
/**
|
|
4728
|
+
*
|
|
4729
|
+
* @export
|
|
4730
|
+
* @interface DealItemSimpleModel
|
|
4731
|
+
*/
|
|
4732
|
+
export interface DealItemSimpleModel {
|
|
4733
|
+
/**
|
|
4734
|
+
*
|
|
4735
|
+
* @type {string}
|
|
4736
|
+
* @memberof DealItemSimpleModel
|
|
4737
|
+
*/
|
|
4738
|
+
'id'?: string;
|
|
4739
|
+
/**
|
|
4740
|
+
*
|
|
4741
|
+
* @type {string}
|
|
4742
|
+
* @memberof DealItemSimpleModel
|
|
4743
|
+
*/
|
|
4744
|
+
'name'?: string | null;
|
|
4745
|
+
/**
|
|
4746
|
+
*
|
|
4747
|
+
* @type {string}
|
|
4748
|
+
* @memberof DealItemSimpleModel
|
|
4749
|
+
*/
|
|
4750
|
+
'normalizedName'?: string | null;
|
|
4751
|
+
/**
|
|
4752
|
+
*
|
|
4753
|
+
* @type {string}
|
|
4754
|
+
* @memberof DealItemSimpleModel
|
|
4755
|
+
*/
|
|
4756
|
+
'slug'?: string | null;
|
|
4757
|
+
/**
|
|
4758
|
+
*
|
|
4759
|
+
* @type {string}
|
|
4760
|
+
* @memberof DealItemSimpleModel
|
|
4761
|
+
*/
|
|
4762
|
+
'hospitalId'?: string;
|
|
4763
|
+
/**
|
|
4764
|
+
*
|
|
4765
|
+
* @type {string}
|
|
4766
|
+
* @memberof DealItemSimpleModel
|
|
4767
|
+
*/
|
|
4768
|
+
'hospitalName'?: string | null;
|
|
4769
|
+
/**
|
|
4770
|
+
*
|
|
4771
|
+
* @type {Array<LocalizedUrlModel>}
|
|
4772
|
+
* @memberof DealItemSimpleModel
|
|
4773
|
+
*/
|
|
4774
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
4775
|
+
/**
|
|
4776
|
+
*
|
|
4777
|
+
* @type {boolean}
|
|
4778
|
+
* @memberof DealItemSimpleModel
|
|
4779
|
+
*/
|
|
4780
|
+
'confirmed'?: boolean;
|
|
4781
|
+
/**
|
|
4782
|
+
*
|
|
4783
|
+
* @type {AuditableEntity}
|
|
4784
|
+
* @memberof DealItemSimpleModel
|
|
4785
|
+
*/
|
|
4786
|
+
'auditableEntity'?: AuditableEntity;
|
|
4787
|
+
}
|
|
4612
4788
|
/**
|
|
4613
4789
|
*
|
|
4614
4790
|
* @export
|
|
@@ -5031,6 +5207,25 @@ export interface DealsModel {
|
|
|
5031
5207
|
*/
|
|
5032
5208
|
'metaData'?: PagedListMetaData;
|
|
5033
5209
|
}
|
|
5210
|
+
/**
|
|
5211
|
+
*
|
|
5212
|
+
* @export
|
|
5213
|
+
* @interface DealsSimpleModel
|
|
5214
|
+
*/
|
|
5215
|
+
export interface DealsSimpleModel {
|
|
5216
|
+
/**
|
|
5217
|
+
*
|
|
5218
|
+
* @type {Array<DealItemSimpleModel>}
|
|
5219
|
+
* @memberof DealsSimpleModel
|
|
5220
|
+
*/
|
|
5221
|
+
'items'?: Array<DealItemSimpleModel> | null;
|
|
5222
|
+
/**
|
|
5223
|
+
*
|
|
5224
|
+
* @type {PagedListMetaData}
|
|
5225
|
+
* @memberof DealsSimpleModel
|
|
5226
|
+
*/
|
|
5227
|
+
'metaData'?: PagedListMetaData;
|
|
5228
|
+
}
|
|
5034
5229
|
/**
|
|
5035
5230
|
*
|
|
5036
5231
|
* @export
|
|
@@ -5969,6 +6164,18 @@ export interface DoctorsSimpleModel {
|
|
|
5969
6164
|
*/
|
|
5970
6165
|
'metaData'?: PagedListMetaData;
|
|
5971
6166
|
}
|
|
6167
|
+
/**
|
|
6168
|
+
*
|
|
6169
|
+
* @export
|
|
6170
|
+
* @enum {string}
|
|
6171
|
+
*/
|
|
6172
|
+
export declare enum Duration {
|
|
6173
|
+
CurrentMonth = "Current_Month",
|
|
6174
|
+
Last3Month = "Last_3_Month",
|
|
6175
|
+
Last6Month = "Last_6_Month",
|
|
6176
|
+
Last9Month = "Last_9_Month",
|
|
6177
|
+
Last12Month = "Last_12_Month"
|
|
6178
|
+
}
|
|
5972
6179
|
/**
|
|
5973
6180
|
*
|
|
5974
6181
|
* @export
|
|
@@ -7205,6 +7412,18 @@ export interface HospitalServiceItemModel {
|
|
|
7205
7412
|
* @memberof HospitalServiceItemModel
|
|
7206
7413
|
*/
|
|
7207
7414
|
'confirmed'?: boolean;
|
|
7415
|
+
/**
|
|
7416
|
+
*
|
|
7417
|
+
* @type {string}
|
|
7418
|
+
* @memberof HospitalServiceItemModel
|
|
7419
|
+
*/
|
|
7420
|
+
'photo'?: string | null;
|
|
7421
|
+
/**
|
|
7422
|
+
*
|
|
7423
|
+
* @type {string}
|
|
7424
|
+
* @memberof HospitalServiceItemModel
|
|
7425
|
+
*/
|
|
7426
|
+
'photoThumbnail'?: string | null;
|
|
7208
7427
|
/**
|
|
7209
7428
|
*
|
|
7210
7429
|
* @type {AuditableEntity}
|
|
@@ -7344,6 +7563,18 @@ export interface HospitalServiceModel {
|
|
|
7344
7563
|
* @memberof HospitalServiceModel
|
|
7345
7564
|
*/
|
|
7346
7565
|
'confirmed'?: boolean;
|
|
7566
|
+
/**
|
|
7567
|
+
*
|
|
7568
|
+
* @type {string}
|
|
7569
|
+
* @memberof HospitalServiceModel
|
|
7570
|
+
*/
|
|
7571
|
+
'photo'?: string | null;
|
|
7572
|
+
/**
|
|
7573
|
+
*
|
|
7574
|
+
* @type {string}
|
|
7575
|
+
* @memberof HospitalServiceModel
|
|
7576
|
+
*/
|
|
7577
|
+
'photoThumbnail'?: string | null;
|
|
7347
7578
|
/**
|
|
7348
7579
|
*
|
|
7349
7580
|
* @type {AuditableEntity}
|
|
@@ -7420,6 +7651,25 @@ export interface HospitalSpecialtiesModel {
|
|
|
7420
7651
|
*/
|
|
7421
7652
|
'metaData'?: PagedListMetaData;
|
|
7422
7653
|
}
|
|
7654
|
+
/**
|
|
7655
|
+
*
|
|
7656
|
+
* @export
|
|
7657
|
+
* @interface HospitalSpecialtiesSimpleModel
|
|
7658
|
+
*/
|
|
7659
|
+
export interface HospitalSpecialtiesSimpleModel {
|
|
7660
|
+
/**
|
|
7661
|
+
*
|
|
7662
|
+
* @type {Array<HospitalSpecialtySimpleItemModel>}
|
|
7663
|
+
* @memberof HospitalSpecialtiesSimpleModel
|
|
7664
|
+
*/
|
|
7665
|
+
'items'?: Array<HospitalSpecialtySimpleItemModel> | null;
|
|
7666
|
+
/**
|
|
7667
|
+
*
|
|
7668
|
+
* @type {PagedListMetaData}
|
|
7669
|
+
* @memberof HospitalSpecialtiesSimpleModel
|
|
7670
|
+
*/
|
|
7671
|
+
'metaData'?: PagedListMetaData;
|
|
7672
|
+
}
|
|
7423
7673
|
/**
|
|
7424
7674
|
*
|
|
7425
7675
|
* @export
|
|
@@ -7534,6 +7784,30 @@ export interface HospitalSpecialtyItemModel {
|
|
|
7534
7784
|
* @memberof HospitalSpecialtyItemModel
|
|
7535
7785
|
*/
|
|
7536
7786
|
'confirmed'?: boolean;
|
|
7787
|
+
/**
|
|
7788
|
+
*
|
|
7789
|
+
* @type {string}
|
|
7790
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7791
|
+
*/
|
|
7792
|
+
'photo'?: string | null;
|
|
7793
|
+
/**
|
|
7794
|
+
*
|
|
7795
|
+
* @type {string}
|
|
7796
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7797
|
+
*/
|
|
7798
|
+
'photoThumbnail'?: string | null;
|
|
7799
|
+
/**
|
|
7800
|
+
*
|
|
7801
|
+
* @type {string}
|
|
7802
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7803
|
+
*/
|
|
7804
|
+
'background'?: string | null;
|
|
7805
|
+
/**
|
|
7806
|
+
*
|
|
7807
|
+
* @type {string}
|
|
7808
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7809
|
+
*/
|
|
7810
|
+
'backgroundThumbnail'?: string | null;
|
|
7537
7811
|
/**
|
|
7538
7812
|
*
|
|
7539
7813
|
* @type {Array<MediaModel>}
|
|
@@ -7661,6 +7935,30 @@ export interface HospitalSpecialtyModel {
|
|
|
7661
7935
|
* @memberof HospitalSpecialtyModel
|
|
7662
7936
|
*/
|
|
7663
7937
|
'confirmed'?: boolean;
|
|
7938
|
+
/**
|
|
7939
|
+
*
|
|
7940
|
+
* @type {string}
|
|
7941
|
+
* @memberof HospitalSpecialtyModel
|
|
7942
|
+
*/
|
|
7943
|
+
'photo'?: string | null;
|
|
7944
|
+
/**
|
|
7945
|
+
*
|
|
7946
|
+
* @type {string}
|
|
7947
|
+
* @memberof HospitalSpecialtyModel
|
|
7948
|
+
*/
|
|
7949
|
+
'photoThumbnail'?: string | null;
|
|
7950
|
+
/**
|
|
7951
|
+
*
|
|
7952
|
+
* @type {string}
|
|
7953
|
+
* @memberof HospitalSpecialtyModel
|
|
7954
|
+
*/
|
|
7955
|
+
'background'?: string | null;
|
|
7956
|
+
/**
|
|
7957
|
+
*
|
|
7958
|
+
* @type {string}
|
|
7959
|
+
* @memberof HospitalSpecialtyModel
|
|
7960
|
+
*/
|
|
7961
|
+
'backgroundThumbnail'?: string | null;
|
|
7664
7962
|
/**
|
|
7665
7963
|
*
|
|
7666
7964
|
* @type {Array<MediaModel>}
|
|
@@ -7678,7 +7976,50 @@ export interface HospitalSpecialtyModel {
|
|
|
7678
7976
|
* @type {string}
|
|
7679
7977
|
* @memberof HospitalSpecialtyModel
|
|
7680
7978
|
*/
|
|
7681
|
-
'languageCode'?: string | null;
|
|
7979
|
+
'languageCode'?: string | null;
|
|
7980
|
+
}
|
|
7981
|
+
/**
|
|
7982
|
+
*
|
|
7983
|
+
* @export
|
|
7984
|
+
* @interface HospitalSpecialtySimpleItemModel
|
|
7985
|
+
*/
|
|
7986
|
+
export interface HospitalSpecialtySimpleItemModel {
|
|
7987
|
+
/**
|
|
7988
|
+
*
|
|
7989
|
+
* @type {string}
|
|
7990
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
7991
|
+
*/
|
|
7992
|
+
'id'?: string;
|
|
7993
|
+
/**
|
|
7994
|
+
*
|
|
7995
|
+
* @type {string}
|
|
7996
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
7997
|
+
*/
|
|
7998
|
+
'specialtyName'?: string | null;
|
|
7999
|
+
/**
|
|
8000
|
+
*
|
|
8001
|
+
* @type {string}
|
|
8002
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
8003
|
+
*/
|
|
8004
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
8005
|
+
/**
|
|
8006
|
+
*
|
|
8007
|
+
* @type {string}
|
|
8008
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
8009
|
+
*/
|
|
8010
|
+
'description'?: string | null;
|
|
8011
|
+
/**
|
|
8012
|
+
*
|
|
8013
|
+
* @type {number}
|
|
8014
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
8015
|
+
*/
|
|
8016
|
+
'order'?: number;
|
|
8017
|
+
/**
|
|
8018
|
+
*
|
|
8019
|
+
* @type {boolean}
|
|
8020
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
8021
|
+
*/
|
|
8022
|
+
'confirmed'?: boolean;
|
|
7682
8023
|
}
|
|
7683
8024
|
/**
|
|
7684
8025
|
*
|
|
@@ -11428,6 +11769,18 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11428
11769
|
* @memberof UpdateHospitalServiceCommand
|
|
11429
11770
|
*/
|
|
11430
11771
|
'confirmed'?: boolean;
|
|
11772
|
+
/**
|
|
11773
|
+
*
|
|
11774
|
+
* @type {string}
|
|
11775
|
+
* @memberof UpdateHospitalServiceCommand
|
|
11776
|
+
*/
|
|
11777
|
+
'photo'?: string | null;
|
|
11778
|
+
/**
|
|
11779
|
+
*
|
|
11780
|
+
* @type {string}
|
|
11781
|
+
* @memberof UpdateHospitalServiceCommand
|
|
11782
|
+
*/
|
|
11783
|
+
'photoThumbnail'?: string | null;
|
|
11431
11784
|
}
|
|
11432
11785
|
/**
|
|
11433
11786
|
*
|
|
@@ -11477,6 +11830,30 @@ export interface UpdateHospitalSpecialtyCommand {
|
|
|
11477
11830
|
* @memberof UpdateHospitalSpecialtyCommand
|
|
11478
11831
|
*/
|
|
11479
11832
|
'confirmed'?: boolean;
|
|
11833
|
+
/**
|
|
11834
|
+
*
|
|
11835
|
+
* @type {string}
|
|
11836
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11837
|
+
*/
|
|
11838
|
+
'photo'?: string | null;
|
|
11839
|
+
/**
|
|
11840
|
+
*
|
|
11841
|
+
* @type {string}
|
|
11842
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11843
|
+
*/
|
|
11844
|
+
'photoThumbnail'?: string | null;
|
|
11845
|
+
/**
|
|
11846
|
+
*
|
|
11847
|
+
* @type {string}
|
|
11848
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11849
|
+
*/
|
|
11850
|
+
'background'?: string | null;
|
|
11851
|
+
/**
|
|
11852
|
+
*
|
|
11853
|
+
* @type {string}
|
|
11854
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11855
|
+
*/
|
|
11856
|
+
'backgroundThumbnail'?: string | null;
|
|
11480
11857
|
/**
|
|
11481
11858
|
*
|
|
11482
11859
|
* @type {Array<MediaModel>}
|
|
@@ -15958,6 +16335,65 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15958
16335
|
*/
|
|
15959
16336
|
apiV1CountriesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
15960
16337
|
}
|
|
16338
|
+
/**
|
|
16339
|
+
* DashBoardApi - axios parameter creator
|
|
16340
|
+
* @export
|
|
16341
|
+
*/
|
|
16342
|
+
export declare const DashBoardApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
16343
|
+
/**
|
|
16344
|
+
*
|
|
16345
|
+
* @summary Create a DashBoard.
|
|
16346
|
+
* @param {Duration} duration
|
|
16347
|
+
* @param {*} [options] Override http request option.
|
|
16348
|
+
* @throws {RequiredError}
|
|
16349
|
+
*/
|
|
16350
|
+
apiV1DashboardDurationGet: (duration: Duration, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16351
|
+
};
|
|
16352
|
+
/**
|
|
16353
|
+
* DashBoardApi - functional programming interface
|
|
16354
|
+
* @export
|
|
16355
|
+
*/
|
|
16356
|
+
export declare const DashBoardApiFp: (configuration?: Configuration | undefined) => {
|
|
16357
|
+
/**
|
|
16358
|
+
*
|
|
16359
|
+
* @summary Create a DashBoard.
|
|
16360
|
+
* @param {Duration} duration
|
|
16361
|
+
* @param {*} [options] Override http request option.
|
|
16362
|
+
* @throws {RequiredError}
|
|
16363
|
+
*/
|
|
16364
|
+
apiV1DashboardDurationGet(duration: Duration, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DashBoardModel>>;
|
|
16365
|
+
};
|
|
16366
|
+
/**
|
|
16367
|
+
* DashBoardApi - factory interface
|
|
16368
|
+
* @export
|
|
16369
|
+
*/
|
|
16370
|
+
export declare const DashBoardApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
16371
|
+
/**
|
|
16372
|
+
*
|
|
16373
|
+
* @summary Create a DashBoard.
|
|
16374
|
+
* @param {Duration} duration
|
|
16375
|
+
* @param {*} [options] Override http request option.
|
|
16376
|
+
* @throws {RequiredError}
|
|
16377
|
+
*/
|
|
16378
|
+
apiV1DashboardDurationGet(duration: Duration, options?: any): AxiosPromise<DashBoardModel>;
|
|
16379
|
+
};
|
|
16380
|
+
/**
|
|
16381
|
+
* DashBoardApi - object-oriented interface
|
|
16382
|
+
* @export
|
|
16383
|
+
* @class DashBoardApi
|
|
16384
|
+
* @extends {BaseAPI}
|
|
16385
|
+
*/
|
|
16386
|
+
export declare class DashBoardApi extends BaseAPI {
|
|
16387
|
+
/**
|
|
16388
|
+
*
|
|
16389
|
+
* @summary Create a DashBoard.
|
|
16390
|
+
* @param {Duration} duration
|
|
16391
|
+
* @param {*} [options] Override http request option.
|
|
16392
|
+
* @throws {RequiredError}
|
|
16393
|
+
* @memberof DashBoardApi
|
|
16394
|
+
*/
|
|
16395
|
+
apiV1DashboardDurationGet(duration: Duration, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DashBoardModel>>;
|
|
16396
|
+
}
|
|
15961
16397
|
/**
|
|
15962
16398
|
* DealsApi - axios parameter creator
|
|
15963
16399
|
* @export
|
|
@@ -16125,6 +16561,31 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
16125
16561
|
* @throws {RequiredError}
|
|
16126
16562
|
*/
|
|
16127
16563
|
apiV1DealsPost: (createDealCommand?: CreateDealCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16564
|
+
/**
|
|
16565
|
+
*
|
|
16566
|
+
* @summary Get all deals.
|
|
16567
|
+
* @param {string} [id]
|
|
16568
|
+
* @param {string} [name]
|
|
16569
|
+
* @param {MarketingType} [marketingType]
|
|
16570
|
+
* @param {string} [countryId]
|
|
16571
|
+
* @param {string} [hospitalId]
|
|
16572
|
+
* @param {string} [hospitalName]
|
|
16573
|
+
* @param {string} [specialtyId]
|
|
16574
|
+
* @param {string} [specialtyTypeId]
|
|
16575
|
+
* @param {string} [serviceId]
|
|
16576
|
+
* @param {string} [exceptHospitalId]
|
|
16577
|
+
* @param {string} [exceptDealId]
|
|
16578
|
+
* @param {Array<string>} [ids]
|
|
16579
|
+
* @param {string} [languageCode]
|
|
16580
|
+
* @param {boolean} [showHidden]
|
|
16581
|
+
* @param {boolean} [returnDefaultValue]
|
|
16582
|
+
* @param {number} [page]
|
|
16583
|
+
* @param {number} [limit]
|
|
16584
|
+
* @param {Date} [lastRetrieved]
|
|
16585
|
+
* @param {*} [options] Override http request option.
|
|
16586
|
+
* @throws {RequiredError}
|
|
16587
|
+
*/
|
|
16588
|
+
apiV1DealsSimpleGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16128
16589
|
/**
|
|
16129
16590
|
*
|
|
16130
16591
|
* @summary Get deal by slug.
|
|
@@ -16303,6 +16764,31 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
16303
16764
|
* @throws {RequiredError}
|
|
16304
16765
|
*/
|
|
16305
16766
|
apiV1DealsPost(createDealCommand?: CreateDealCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
16767
|
+
/**
|
|
16768
|
+
*
|
|
16769
|
+
* @summary Get all deals.
|
|
16770
|
+
* @param {string} [id]
|
|
16771
|
+
* @param {string} [name]
|
|
16772
|
+
* @param {MarketingType} [marketingType]
|
|
16773
|
+
* @param {string} [countryId]
|
|
16774
|
+
* @param {string} [hospitalId]
|
|
16775
|
+
* @param {string} [hospitalName]
|
|
16776
|
+
* @param {string} [specialtyId]
|
|
16777
|
+
* @param {string} [specialtyTypeId]
|
|
16778
|
+
* @param {string} [serviceId]
|
|
16779
|
+
* @param {string} [exceptHospitalId]
|
|
16780
|
+
* @param {string} [exceptDealId]
|
|
16781
|
+
* @param {Array<string>} [ids]
|
|
16782
|
+
* @param {string} [languageCode]
|
|
16783
|
+
* @param {boolean} [showHidden]
|
|
16784
|
+
* @param {boolean} [returnDefaultValue]
|
|
16785
|
+
* @param {number} [page]
|
|
16786
|
+
* @param {number} [limit]
|
|
16787
|
+
* @param {Date} [lastRetrieved]
|
|
16788
|
+
* @param {*} [options] Override http request option.
|
|
16789
|
+
* @throws {RequiredError}
|
|
16790
|
+
*/
|
|
16791
|
+
apiV1DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsSimpleModel>>;
|
|
16306
16792
|
/**
|
|
16307
16793
|
*
|
|
16308
16794
|
* @summary Get deal by slug.
|
|
@@ -16481,6 +16967,31 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
16481
16967
|
* @throws {RequiredError}
|
|
16482
16968
|
*/
|
|
16483
16969
|
apiV1DealsPost(createDealCommand?: CreateDealCommand | undefined, options?: any): AxiosPromise<DealModel>;
|
|
16970
|
+
/**
|
|
16971
|
+
*
|
|
16972
|
+
* @summary Get all deals.
|
|
16973
|
+
* @param {string} [id]
|
|
16974
|
+
* @param {string} [name]
|
|
16975
|
+
* @param {MarketingType} [marketingType]
|
|
16976
|
+
* @param {string} [countryId]
|
|
16977
|
+
* @param {string} [hospitalId]
|
|
16978
|
+
* @param {string} [hospitalName]
|
|
16979
|
+
* @param {string} [specialtyId]
|
|
16980
|
+
* @param {string} [specialtyTypeId]
|
|
16981
|
+
* @param {string} [serviceId]
|
|
16982
|
+
* @param {string} [exceptHospitalId]
|
|
16983
|
+
* @param {string} [exceptDealId]
|
|
16984
|
+
* @param {Array<string>} [ids]
|
|
16985
|
+
* @param {string} [languageCode]
|
|
16986
|
+
* @param {boolean} [showHidden]
|
|
16987
|
+
* @param {boolean} [returnDefaultValue]
|
|
16988
|
+
* @param {number} [page]
|
|
16989
|
+
* @param {number} [limit]
|
|
16990
|
+
* @param {Date} [lastRetrieved]
|
|
16991
|
+
* @param {*} [options] Override http request option.
|
|
16992
|
+
* @throws {RequiredError}
|
|
16993
|
+
*/
|
|
16994
|
+
apiV1DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsSimpleModel>;
|
|
16484
16995
|
/**
|
|
16485
16996
|
*
|
|
16486
16997
|
* @summary Get deal by slug.
|
|
@@ -16676,6 +17187,32 @@ export declare class DealsApi extends BaseAPI {
|
|
|
16676
17187
|
* @memberof DealsApi
|
|
16677
17188
|
*/
|
|
16678
17189
|
apiV1DealsPost(createDealCommand?: CreateDealCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
17190
|
+
/**
|
|
17191
|
+
*
|
|
17192
|
+
* @summary Get all deals.
|
|
17193
|
+
* @param {string} [id]
|
|
17194
|
+
* @param {string} [name]
|
|
17195
|
+
* @param {MarketingType} [marketingType]
|
|
17196
|
+
* @param {string} [countryId]
|
|
17197
|
+
* @param {string} [hospitalId]
|
|
17198
|
+
* @param {string} [hospitalName]
|
|
17199
|
+
* @param {string} [specialtyId]
|
|
17200
|
+
* @param {string} [specialtyTypeId]
|
|
17201
|
+
* @param {string} [serviceId]
|
|
17202
|
+
* @param {string} [exceptHospitalId]
|
|
17203
|
+
* @param {string} [exceptDealId]
|
|
17204
|
+
* @param {Array<string>} [ids]
|
|
17205
|
+
* @param {string} [languageCode]
|
|
17206
|
+
* @param {boolean} [showHidden]
|
|
17207
|
+
* @param {boolean} [returnDefaultValue]
|
|
17208
|
+
* @param {number} [page]
|
|
17209
|
+
* @param {number} [limit]
|
|
17210
|
+
* @param {Date} [lastRetrieved]
|
|
17211
|
+
* @param {*} [options] Override http request option.
|
|
17212
|
+
* @throws {RequiredError}
|
|
17213
|
+
* @memberof DealsApi
|
|
17214
|
+
*/
|
|
17215
|
+
apiV1DealsSimpleGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsSimpleModel>>;
|
|
16679
17216
|
/**
|
|
16680
17217
|
*
|
|
16681
17218
|
* @summary Get deal by slug.
|
|
@@ -19653,6 +20190,28 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19653
20190
|
* @throws {RequiredError}
|
|
19654
20191
|
*/
|
|
19655
20192
|
apiV1HospitalsHospitalIdSpecialtiesPost: (hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20193
|
+
/**
|
|
20194
|
+
*
|
|
20195
|
+
* @summary Get all HospitalSpecialties.
|
|
20196
|
+
* @param {string} hospitalId
|
|
20197
|
+
* @param {string} [hospitalName]
|
|
20198
|
+
* @param {string} [hospitalSlug]
|
|
20199
|
+
* @param {string} [specialtyId]
|
|
20200
|
+
* @param {string} [specialtyName]
|
|
20201
|
+
* @param {string} [specialtyTypeId]
|
|
20202
|
+
* @param {string} [title]
|
|
20203
|
+
* @param {MarketingType} [marketingType]
|
|
20204
|
+
* @param {string} [languageCode]
|
|
20205
|
+
* @param {boolean} [showHidden]
|
|
20206
|
+
* @param {boolean} [returnDefaultValue]
|
|
20207
|
+
* @param {boolean} [includeServices]
|
|
20208
|
+
* @param {number} [page]
|
|
20209
|
+
* @param {number} [limit]
|
|
20210
|
+
* @param {Date} [lastRetrieved]
|
|
20211
|
+
* @param {*} [options] Override http request option.
|
|
20212
|
+
* @throws {RequiredError}
|
|
20213
|
+
*/
|
|
20214
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19656
20215
|
/**
|
|
19657
20216
|
*
|
|
19658
20217
|
* @summary Delete HospitalSpecialty.
|
|
@@ -20189,6 +20748,28 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
20189
20748
|
* @throws {RequiredError}
|
|
20190
20749
|
*/
|
|
20191
20750
|
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
20751
|
+
/**
|
|
20752
|
+
*
|
|
20753
|
+
* @summary Get all HospitalSpecialties.
|
|
20754
|
+
* @param {string} hospitalId
|
|
20755
|
+
* @param {string} [hospitalName]
|
|
20756
|
+
* @param {string} [hospitalSlug]
|
|
20757
|
+
* @param {string} [specialtyId]
|
|
20758
|
+
* @param {string} [specialtyName]
|
|
20759
|
+
* @param {string} [specialtyTypeId]
|
|
20760
|
+
* @param {string} [title]
|
|
20761
|
+
* @param {MarketingType} [marketingType]
|
|
20762
|
+
* @param {string} [languageCode]
|
|
20763
|
+
* @param {boolean} [showHidden]
|
|
20764
|
+
* @param {boolean} [returnDefaultValue]
|
|
20765
|
+
* @param {boolean} [includeServices]
|
|
20766
|
+
* @param {number} [page]
|
|
20767
|
+
* @param {number} [limit]
|
|
20768
|
+
* @param {Date} [lastRetrieved]
|
|
20769
|
+
* @param {*} [options] Override http request option.
|
|
20770
|
+
* @throws {RequiredError}
|
|
20771
|
+
*/
|
|
20772
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
|
|
20192
20773
|
/**
|
|
20193
20774
|
*
|
|
20194
20775
|
* @summary Delete HospitalSpecialty.
|
|
@@ -20725,6 +21306,28 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20725
21306
|
* @throws {RequiredError}
|
|
20726
21307
|
*/
|
|
20727
21308
|
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
21309
|
+
/**
|
|
21310
|
+
*
|
|
21311
|
+
* @summary Get all HospitalSpecialties.
|
|
21312
|
+
* @param {string} hospitalId
|
|
21313
|
+
* @param {string} [hospitalName]
|
|
21314
|
+
* @param {string} [hospitalSlug]
|
|
21315
|
+
* @param {string} [specialtyId]
|
|
21316
|
+
* @param {string} [specialtyName]
|
|
21317
|
+
* @param {string} [specialtyTypeId]
|
|
21318
|
+
* @param {string} [title]
|
|
21319
|
+
* @param {MarketingType} [marketingType]
|
|
21320
|
+
* @param {string} [languageCode]
|
|
21321
|
+
* @param {boolean} [showHidden]
|
|
21322
|
+
* @param {boolean} [returnDefaultValue]
|
|
21323
|
+
* @param {boolean} [includeServices]
|
|
21324
|
+
* @param {number} [page]
|
|
21325
|
+
* @param {number} [limit]
|
|
21326
|
+
* @param {Date} [lastRetrieved]
|
|
21327
|
+
* @param {*} [options] Override http request option.
|
|
21328
|
+
* @throws {RequiredError}
|
|
21329
|
+
*/
|
|
21330
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
|
|
20728
21331
|
/**
|
|
20729
21332
|
*
|
|
20730
21333
|
* @summary Delete HospitalSpecialty.
|
|
@@ -21293,6 +21896,29 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
21293
21896
|
* @memberof HospitalsApi
|
|
21294
21897
|
*/
|
|
21295
21898
|
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
21899
|
+
/**
|
|
21900
|
+
*
|
|
21901
|
+
* @summary Get all HospitalSpecialties.
|
|
21902
|
+
* @param {string} hospitalId
|
|
21903
|
+
* @param {string} [hospitalName]
|
|
21904
|
+
* @param {string} [hospitalSlug]
|
|
21905
|
+
* @param {string} [specialtyId]
|
|
21906
|
+
* @param {string} [specialtyName]
|
|
21907
|
+
* @param {string} [specialtyTypeId]
|
|
21908
|
+
* @param {string} [title]
|
|
21909
|
+
* @param {MarketingType} [marketingType]
|
|
21910
|
+
* @param {string} [languageCode]
|
|
21911
|
+
* @param {boolean} [showHidden]
|
|
21912
|
+
* @param {boolean} [returnDefaultValue]
|
|
21913
|
+
* @param {boolean} [includeServices]
|
|
21914
|
+
* @param {number} [page]
|
|
21915
|
+
* @param {number} [limit]
|
|
21916
|
+
* @param {Date} [lastRetrieved]
|
|
21917
|
+
* @param {*} [options] Override http request option.
|
|
21918
|
+
* @throws {RequiredError}
|
|
21919
|
+
* @memberof HospitalsApi
|
|
21920
|
+
*/
|
|
21921
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel>>;
|
|
21296
21922
|
/**
|
|
21297
21923
|
*
|
|
21298
21924
|
* @summary Delete HospitalSpecialty.
|
|
@@ -21579,13 +22205,14 @@ export declare const LanguagesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21579
22205
|
* @param {string} [name]
|
|
21580
22206
|
* @param {string} [code]
|
|
21581
22207
|
* @param {string} [description]
|
|
22208
|
+
* @param {boolean} [showPublished]
|
|
21582
22209
|
* @param {number} [page]
|
|
21583
22210
|
* @param {number} [limit]
|
|
21584
22211
|
* @param {Date} [lastRetrieved]
|
|
21585
22212
|
* @param {*} [options] Override http request option.
|
|
21586
22213
|
* @throws {RequiredError}
|
|
21587
22214
|
*/
|
|
21588
|
-
apiV1LanguagesGet: (id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22215
|
+
apiV1LanguagesGet: (id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21589
22216
|
/**
|
|
21590
22217
|
*
|
|
21591
22218
|
* @param {string} languageId
|
|
@@ -21637,13 +22264,14 @@ export declare const LanguagesApiFp: (configuration?: Configuration | undefined)
|
|
|
21637
22264
|
* @param {string} [name]
|
|
21638
22265
|
* @param {string} [code]
|
|
21639
22266
|
* @param {string} [description]
|
|
22267
|
+
* @param {boolean} [showPublished]
|
|
21640
22268
|
* @param {number} [page]
|
|
21641
22269
|
* @param {number} [limit]
|
|
21642
22270
|
* @param {Date} [lastRetrieved]
|
|
21643
22271
|
* @param {*} [options] Override http request option.
|
|
21644
22272
|
* @throws {RequiredError}
|
|
21645
22273
|
*/
|
|
21646
|
-
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguagesModel>>;
|
|
22274
|
+
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguagesModel>>;
|
|
21647
22275
|
/**
|
|
21648
22276
|
*
|
|
21649
22277
|
* @param {string} languageId
|
|
@@ -21695,13 +22323,14 @@ export declare const LanguagesApiFactory: (configuration?: Configuration | undef
|
|
|
21695
22323
|
* @param {string} [name]
|
|
21696
22324
|
* @param {string} [code]
|
|
21697
22325
|
* @param {string} [description]
|
|
22326
|
+
* @param {boolean} [showPublished]
|
|
21698
22327
|
* @param {number} [page]
|
|
21699
22328
|
* @param {number} [limit]
|
|
21700
22329
|
* @param {Date} [lastRetrieved]
|
|
21701
22330
|
* @param {*} [options] Override http request option.
|
|
21702
22331
|
* @throws {RequiredError}
|
|
21703
22332
|
*/
|
|
21704
|
-
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<LanguagesModel>;
|
|
22333
|
+
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, showPublished?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<LanguagesModel>;
|
|
21705
22334
|
/**
|
|
21706
22335
|
*
|
|
21707
22336
|
* @param {string} languageId
|
|
@@ -21756,6 +22385,7 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
21756
22385
|
* @param {string} [name]
|
|
21757
22386
|
* @param {string} [code]
|
|
21758
22387
|
* @param {string} [description]
|
|
22388
|
+
* @param {boolean} [showPublished]
|
|
21759
22389
|
* @param {number} [page]
|
|
21760
22390
|
* @param {number} [limit]
|
|
21761
22391
|
* @param {Date} [lastRetrieved]
|
|
@@ -21763,7 +22393,7 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
21763
22393
|
* @throws {RequiredError}
|
|
21764
22394
|
* @memberof LanguagesApi
|
|
21765
22395
|
*/
|
|
21766
|
-
apiV1LanguagesGet(id?: string, name?: string, code?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
|
|
22396
|
+
apiV1LanguagesGet(id?: string, name?: string, code?: string, description?: string, showPublished?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
|
|
21767
22397
|
/**
|
|
21768
22398
|
*
|
|
21769
22399
|
* @param {string} languageId
|