ch-api-client-typescript2 2.6.9 → 2.7.2
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 +1477 -31
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +2048 -8
- package/package.json +1 -1
- package/src/api.ts +2478 -33
package/lib/api.d.ts
CHANGED
|
@@ -740,6 +740,16 @@ export interface AuditableEntity {
|
|
|
740
740
|
*/
|
|
741
741
|
'isDeleted'?: boolean;
|
|
742
742
|
}
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @export
|
|
746
|
+
* @enum {string}
|
|
747
|
+
*/
|
|
748
|
+
export declare enum AutocompleteMode {
|
|
749
|
+
OneTerm = "OneTerm",
|
|
750
|
+
TwoTerms = "TwoTerms",
|
|
751
|
+
OneTermWithContext = "OneTermWithContext"
|
|
752
|
+
}
|
|
743
753
|
/**
|
|
744
754
|
*
|
|
745
755
|
* @export
|
|
@@ -771,6 +781,69 @@ export interface AwardModel {
|
|
|
771
781
|
*/
|
|
772
782
|
'date'?: Date;
|
|
773
783
|
}
|
|
784
|
+
/**
|
|
785
|
+
*
|
|
786
|
+
* @export
|
|
787
|
+
* @interface AzureSearchModel
|
|
788
|
+
*/
|
|
789
|
+
export interface AzureSearchModel {
|
|
790
|
+
/**
|
|
791
|
+
*
|
|
792
|
+
* @type {number}
|
|
793
|
+
* @memberof AzureSearchModel
|
|
794
|
+
*/
|
|
795
|
+
'hospitals'?: number;
|
|
796
|
+
/**
|
|
797
|
+
*
|
|
798
|
+
* @type {number}
|
|
799
|
+
* @memberof AzureSearchModel
|
|
800
|
+
*/
|
|
801
|
+
'doctors'?: number;
|
|
802
|
+
/**
|
|
803
|
+
*
|
|
804
|
+
* @type {number}
|
|
805
|
+
* @memberof AzureSearchModel
|
|
806
|
+
*/
|
|
807
|
+
'deals'?: number;
|
|
808
|
+
/**
|
|
809
|
+
*
|
|
810
|
+
* @type {number}
|
|
811
|
+
* @memberof AzureSearchModel
|
|
812
|
+
*/
|
|
813
|
+
'specialties'?: number;
|
|
814
|
+
/**
|
|
815
|
+
*
|
|
816
|
+
* @type {number}
|
|
817
|
+
* @memberof AzureSearchModel
|
|
818
|
+
*/
|
|
819
|
+
'specialtyTypes'?: number;
|
|
820
|
+
}
|
|
821
|
+
/**
|
|
822
|
+
*
|
|
823
|
+
* @export
|
|
824
|
+
* @interface AzureSearchServiceAutocompleteModel
|
|
825
|
+
*/
|
|
826
|
+
export interface AzureSearchServiceAutocompleteModel {
|
|
827
|
+
/**
|
|
828
|
+
*
|
|
829
|
+
* @type {Array<string>}
|
|
830
|
+
* @memberof AzureSearchServiceAutocompleteModel
|
|
831
|
+
*/
|
|
832
|
+
'values'?: Array<string> | null;
|
|
833
|
+
}
|
|
834
|
+
/**
|
|
835
|
+
*
|
|
836
|
+
* @export
|
|
837
|
+
* @interface AzureSearchServiceSuggestModel
|
|
838
|
+
*/
|
|
839
|
+
export interface AzureSearchServiceSuggestModel {
|
|
840
|
+
/**
|
|
841
|
+
*
|
|
842
|
+
* @type {Array<string>}
|
|
843
|
+
* @memberof AzureSearchServiceSuggestModel
|
|
844
|
+
*/
|
|
845
|
+
'values'?: Array<string> | null;
|
|
846
|
+
}
|
|
774
847
|
/**
|
|
775
848
|
*
|
|
776
849
|
* @export
|
|
@@ -2673,6 +2746,43 @@ export interface CreateConsultationCommand {
|
|
|
2673
2746
|
*/
|
|
2674
2747
|
'timeZone'?: string | null;
|
|
2675
2748
|
}
|
|
2749
|
+
/**
|
|
2750
|
+
*
|
|
2751
|
+
* @export
|
|
2752
|
+
* @interface CreateMediaCommand
|
|
2753
|
+
*/
|
|
2754
|
+
export interface CreateMediaCommand {
|
|
2755
|
+
/**
|
|
2756
|
+
*
|
|
2757
|
+
* @type {MediaType}
|
|
2758
|
+
* @memberof CreateMediaCommand
|
|
2759
|
+
*/
|
|
2760
|
+
'mediaType'?: MediaType;
|
|
2761
|
+
/**
|
|
2762
|
+
*
|
|
2763
|
+
* @type {string}
|
|
2764
|
+
* @memberof CreateMediaCommand
|
|
2765
|
+
*/
|
|
2766
|
+
'url'?: string | null;
|
|
2767
|
+
/**
|
|
2768
|
+
*
|
|
2769
|
+
* @type {string}
|
|
2770
|
+
* @memberof CreateMediaCommand
|
|
2771
|
+
*/
|
|
2772
|
+
'thumbnailUrl'?: string | null;
|
|
2773
|
+
/**
|
|
2774
|
+
*
|
|
2775
|
+
* @type {string}
|
|
2776
|
+
* @memberof CreateMediaCommand
|
|
2777
|
+
*/
|
|
2778
|
+
'description'?: string | null;
|
|
2779
|
+
/**
|
|
2780
|
+
*
|
|
2781
|
+
* @type {number}
|
|
2782
|
+
* @memberof CreateMediaCommand
|
|
2783
|
+
*/
|
|
2784
|
+
'order'?: number;
|
|
2785
|
+
}
|
|
2676
2786
|
/**
|
|
2677
2787
|
*
|
|
2678
2788
|
* @export
|
|
@@ -2740,6 +2850,49 @@ export interface CreatePatientCommand {
|
|
|
2740
2850
|
*/
|
|
2741
2851
|
'timeZone'?: string | null;
|
|
2742
2852
|
}
|
|
2853
|
+
/**
|
|
2854
|
+
*
|
|
2855
|
+
* @export
|
|
2856
|
+
* @interface CreateServiceReviewCommand
|
|
2857
|
+
*/
|
|
2858
|
+
export interface CreateServiceReviewCommand {
|
|
2859
|
+
/**
|
|
2860
|
+
*
|
|
2861
|
+
* @type {string}
|
|
2862
|
+
* @memberof CreateServiceReviewCommand
|
|
2863
|
+
*/
|
|
2864
|
+
'serviceId'?: string;
|
|
2865
|
+
/**
|
|
2866
|
+
*
|
|
2867
|
+
* @type {string}
|
|
2868
|
+
* @memberof CreateServiceReviewCommand
|
|
2869
|
+
*/
|
|
2870
|
+
'patientId'?: string;
|
|
2871
|
+
/**
|
|
2872
|
+
*
|
|
2873
|
+
* @type {string}
|
|
2874
|
+
* @memberof CreateServiceReviewCommand
|
|
2875
|
+
*/
|
|
2876
|
+
'body'?: string | null;
|
|
2877
|
+
/**
|
|
2878
|
+
*
|
|
2879
|
+
* @type {boolean}
|
|
2880
|
+
* @memberof CreateServiceReviewCommand
|
|
2881
|
+
*/
|
|
2882
|
+
'recommended'?: boolean;
|
|
2883
|
+
/**
|
|
2884
|
+
*
|
|
2885
|
+
* @type {number}
|
|
2886
|
+
* @memberof CreateServiceReviewCommand
|
|
2887
|
+
*/
|
|
2888
|
+
'rate'?: number;
|
|
2889
|
+
/**
|
|
2890
|
+
*
|
|
2891
|
+
* @type {ReviewType}
|
|
2892
|
+
* @memberof CreateServiceReviewCommand
|
|
2893
|
+
*/
|
|
2894
|
+
'reviewType'?: ReviewType;
|
|
2895
|
+
}
|
|
2743
2896
|
/**
|
|
2744
2897
|
*
|
|
2745
2898
|
* @export
|
|
@@ -3556,6 +3709,12 @@ export interface DoctorItemModel {
|
|
|
3556
3709
|
* @memberof DoctorItemModel
|
|
3557
3710
|
*/
|
|
3558
3711
|
'id'?: string;
|
|
3712
|
+
/**
|
|
3713
|
+
*
|
|
3714
|
+
* @type {string}
|
|
3715
|
+
* @memberof DoctorItemModel
|
|
3716
|
+
*/
|
|
3717
|
+
'userType'?: string | null;
|
|
3559
3718
|
/**
|
|
3560
3719
|
*
|
|
3561
3720
|
* @type {string}
|
|
@@ -3634,12 +3793,6 @@ export interface DoctorItemModel {
|
|
|
3634
3793
|
* @memberof DoctorItemModel
|
|
3635
3794
|
*/
|
|
3636
3795
|
'auditableEntity'?: AuditableEntity;
|
|
3637
|
-
/**
|
|
3638
|
-
*
|
|
3639
|
-
* @type {string}
|
|
3640
|
-
* @memberof DoctorItemModel
|
|
3641
|
-
*/
|
|
3642
|
-
'userType'?: string | null;
|
|
3643
3796
|
/**
|
|
3644
3797
|
*
|
|
3645
3798
|
* @type {Array<UserLanguageModel>}
|
|
@@ -3694,6 +3847,30 @@ export interface DoctorItemModel {
|
|
|
3694
3847
|
* @memberof DoctorItemModel
|
|
3695
3848
|
*/
|
|
3696
3849
|
'consultationFee'?: number | null;
|
|
3850
|
+
/**
|
|
3851
|
+
*
|
|
3852
|
+
* @type {number}
|
|
3853
|
+
* @memberof DoctorItemModel
|
|
3854
|
+
*/
|
|
3855
|
+
'doctorSpecialtiesCount'?: number;
|
|
3856
|
+
/**
|
|
3857
|
+
*
|
|
3858
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
3859
|
+
* @memberof DoctorItemModel
|
|
3860
|
+
*/
|
|
3861
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
3862
|
+
/**
|
|
3863
|
+
*
|
|
3864
|
+
* @type {number}
|
|
3865
|
+
* @memberof DoctorItemModel
|
|
3866
|
+
*/
|
|
3867
|
+
'doctorAffiliationsCount'?: number;
|
|
3868
|
+
/**
|
|
3869
|
+
*
|
|
3870
|
+
* @type {Array<HospitalAffiliationModel>}
|
|
3871
|
+
* @memberof DoctorItemModel
|
|
3872
|
+
*/
|
|
3873
|
+
'doctorAffiliations'?: Array<HospitalAffiliationModel> | null;
|
|
3697
3874
|
/**
|
|
3698
3875
|
*
|
|
3699
3876
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -3719,6 +3896,12 @@ export interface DoctorModel {
|
|
|
3719
3896
|
* @memberof DoctorModel
|
|
3720
3897
|
*/
|
|
3721
3898
|
'id'?: string;
|
|
3899
|
+
/**
|
|
3900
|
+
*
|
|
3901
|
+
* @type {string}
|
|
3902
|
+
* @memberof DoctorModel
|
|
3903
|
+
*/
|
|
3904
|
+
'userType'?: string | null;
|
|
3722
3905
|
/**
|
|
3723
3906
|
*
|
|
3724
3907
|
* @type {string}
|
|
@@ -3797,12 +3980,6 @@ export interface DoctorModel {
|
|
|
3797
3980
|
* @memberof DoctorModel
|
|
3798
3981
|
*/
|
|
3799
3982
|
'auditableEntity'?: AuditableEntity;
|
|
3800
|
-
/**
|
|
3801
|
-
*
|
|
3802
|
-
* @type {string}
|
|
3803
|
-
* @memberof DoctorModel
|
|
3804
|
-
*/
|
|
3805
|
-
'userType'?: string | null;
|
|
3806
3983
|
/**
|
|
3807
3984
|
*
|
|
3808
3985
|
* @type {Array<UserLanguageModel>}
|
|
@@ -3857,6 +4034,30 @@ export interface DoctorModel {
|
|
|
3857
4034
|
* @memberof DoctorModel
|
|
3858
4035
|
*/
|
|
3859
4036
|
'consultationFee'?: number | null;
|
|
4037
|
+
/**
|
|
4038
|
+
*
|
|
4039
|
+
* @type {number}
|
|
4040
|
+
* @memberof DoctorModel
|
|
4041
|
+
*/
|
|
4042
|
+
'doctorSpecialtiesCount'?: number;
|
|
4043
|
+
/**
|
|
4044
|
+
*
|
|
4045
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4046
|
+
* @memberof DoctorModel
|
|
4047
|
+
*/
|
|
4048
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4049
|
+
/**
|
|
4050
|
+
*
|
|
4051
|
+
* @type {number}
|
|
4052
|
+
* @memberof DoctorModel
|
|
4053
|
+
*/
|
|
4054
|
+
'doctorAffiliationsCount'?: number;
|
|
4055
|
+
/**
|
|
4056
|
+
*
|
|
4057
|
+
* @type {Array<HospitalAffiliationModel>}
|
|
4058
|
+
* @memberof DoctorModel
|
|
4059
|
+
*/
|
|
4060
|
+
'doctorAffiliations'?: Array<HospitalAffiliationModel> | null;
|
|
3860
4061
|
/**
|
|
3861
4062
|
*
|
|
3862
4063
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4012,6 +4213,49 @@ export interface DoctorSpecialtiesModel {
|
|
|
4012
4213
|
*/
|
|
4013
4214
|
'metaData'?: PagedListMetaData;
|
|
4014
4215
|
}
|
|
4216
|
+
/**
|
|
4217
|
+
*
|
|
4218
|
+
* @export
|
|
4219
|
+
* @interface DoctorSpecialtyItemModel
|
|
4220
|
+
*/
|
|
4221
|
+
export interface DoctorSpecialtyItemModel {
|
|
4222
|
+
/**
|
|
4223
|
+
*
|
|
4224
|
+
* @type {string}
|
|
4225
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4226
|
+
*/
|
|
4227
|
+
'specialtyId'?: string;
|
|
4228
|
+
/**
|
|
4229
|
+
*
|
|
4230
|
+
* @type {string}
|
|
4231
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4232
|
+
*/
|
|
4233
|
+
'specialtyName'?: string | null;
|
|
4234
|
+
/**
|
|
4235
|
+
*
|
|
4236
|
+
* @type {string}
|
|
4237
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4238
|
+
*/
|
|
4239
|
+
'specialtySlug'?: string | null;
|
|
4240
|
+
/**
|
|
4241
|
+
*
|
|
4242
|
+
* @type {string}
|
|
4243
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4244
|
+
*/
|
|
4245
|
+
'specialtyTypeId'?: string;
|
|
4246
|
+
/**
|
|
4247
|
+
*
|
|
4248
|
+
* @type {string}
|
|
4249
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4250
|
+
*/
|
|
4251
|
+
'specialtyTypeName'?: string | null;
|
|
4252
|
+
/**
|
|
4253
|
+
*
|
|
4254
|
+
* @type {number}
|
|
4255
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4256
|
+
*/
|
|
4257
|
+
'order'?: number;
|
|
4258
|
+
}
|
|
4015
4259
|
/**
|
|
4016
4260
|
*
|
|
4017
4261
|
* @export
|
|
@@ -4516,6 +4760,55 @@ export interface HospitalAccreditationsModel {
|
|
|
4516
4760
|
*/
|
|
4517
4761
|
'metaData'?: PagedListMetaData;
|
|
4518
4762
|
}
|
|
4763
|
+
/**
|
|
4764
|
+
*
|
|
4765
|
+
* @export
|
|
4766
|
+
* @interface HospitalAffiliationModel
|
|
4767
|
+
*/
|
|
4768
|
+
export interface HospitalAffiliationModel {
|
|
4769
|
+
/**
|
|
4770
|
+
*
|
|
4771
|
+
* @type {string}
|
|
4772
|
+
* @memberof HospitalAffiliationModel
|
|
4773
|
+
*/
|
|
4774
|
+
'hospitalId'?: string;
|
|
4775
|
+
/**
|
|
4776
|
+
*
|
|
4777
|
+
* @type {string}
|
|
4778
|
+
* @memberof HospitalAffiliationModel
|
|
4779
|
+
*/
|
|
4780
|
+
'hospitalName'?: string | null;
|
|
4781
|
+
/**
|
|
4782
|
+
*
|
|
4783
|
+
* @type {string}
|
|
4784
|
+
* @memberof HospitalAffiliationModel
|
|
4785
|
+
*/
|
|
4786
|
+
'hospitalSlug'?: string | null;
|
|
4787
|
+
/**
|
|
4788
|
+
*
|
|
4789
|
+
* @type {string}
|
|
4790
|
+
* @memberof HospitalAffiliationModel
|
|
4791
|
+
*/
|
|
4792
|
+
'countryId'?: string;
|
|
4793
|
+
/**
|
|
4794
|
+
*
|
|
4795
|
+
* @type {string}
|
|
4796
|
+
* @memberof HospitalAffiliationModel
|
|
4797
|
+
*/
|
|
4798
|
+
'countryName'?: string | null;
|
|
4799
|
+
/**
|
|
4800
|
+
*
|
|
4801
|
+
* @type {string}
|
|
4802
|
+
* @memberof HospitalAffiliationModel
|
|
4803
|
+
*/
|
|
4804
|
+
'stateName'?: string | null;
|
|
4805
|
+
/**
|
|
4806
|
+
*
|
|
4807
|
+
* @type {string}
|
|
4808
|
+
* @memberof HospitalAffiliationModel
|
|
4809
|
+
*/
|
|
4810
|
+
'cityName'?: string | null;
|
|
4811
|
+
}
|
|
4519
4812
|
/**
|
|
4520
4813
|
*
|
|
4521
4814
|
* @export
|
|
@@ -6239,6 +6532,12 @@ export interface NotificationModel {
|
|
|
6239
6532
|
* @memberof NotificationModel
|
|
6240
6533
|
*/
|
|
6241
6534
|
'isChecked'?: boolean;
|
|
6535
|
+
/**
|
|
6536
|
+
*
|
|
6537
|
+
* @type {boolean}
|
|
6538
|
+
* @memberof NotificationModel
|
|
6539
|
+
*/
|
|
6540
|
+
'isDeleted'?: boolean;
|
|
6242
6541
|
}
|
|
6243
6542
|
/**
|
|
6244
6543
|
*
|
|
@@ -6349,19 +6648,25 @@ export interface PatientModel {
|
|
|
6349
6648
|
* @type {string}
|
|
6350
6649
|
* @memberof PatientModel
|
|
6351
6650
|
*/
|
|
6352
|
-
'
|
|
6651
|
+
'userType'?: string | null;
|
|
6353
6652
|
/**
|
|
6354
6653
|
*
|
|
6355
6654
|
* @type {string}
|
|
6356
6655
|
* @memberof PatientModel
|
|
6357
6656
|
*/
|
|
6358
|
-
'
|
|
6657
|
+
'userName'?: string | null;
|
|
6359
6658
|
/**
|
|
6360
6659
|
*
|
|
6361
6660
|
* @type {string}
|
|
6362
6661
|
* @memberof PatientModel
|
|
6363
6662
|
*/
|
|
6364
|
-
'
|
|
6663
|
+
'firstName'?: string | null;
|
|
6664
|
+
/**
|
|
6665
|
+
*
|
|
6666
|
+
* @type {string}
|
|
6667
|
+
* @memberof PatientModel
|
|
6668
|
+
*/
|
|
6669
|
+
'lastName'?: string | null;
|
|
6365
6670
|
/**
|
|
6366
6671
|
*
|
|
6367
6672
|
* @type {string}
|
|
@@ -6422,12 +6727,6 @@ export interface PatientModel {
|
|
|
6422
6727
|
* @memberof PatientModel
|
|
6423
6728
|
*/
|
|
6424
6729
|
'auditableEntity'?: AuditableEntity;
|
|
6425
|
-
/**
|
|
6426
|
-
*
|
|
6427
|
-
* @type {string}
|
|
6428
|
-
* @memberof PatientModel
|
|
6429
|
-
*/
|
|
6430
|
-
'userType'?: string | null;
|
|
6431
6730
|
/**
|
|
6432
6731
|
*
|
|
6433
6732
|
* @type {Array<UserLanguageModel>}
|
|
@@ -6786,6 +7085,16 @@ export declare enum RejectReason {
|
|
|
6786
7085
|
ScheduleNotAvailable = "ScheduleNotAvailable",
|
|
6787
7086
|
OtherReason = "OtherReason"
|
|
6788
7087
|
}
|
|
7088
|
+
/**
|
|
7089
|
+
*
|
|
7090
|
+
* @export
|
|
7091
|
+
* @enum {string}
|
|
7092
|
+
*/
|
|
7093
|
+
export declare enum ReviewType {
|
|
7094
|
+
Photo = "Photo",
|
|
7095
|
+
SurgeryReview = "SurgeryReview",
|
|
7096
|
+
RealStory = "RealStory"
|
|
7097
|
+
}
|
|
6789
7098
|
/**
|
|
6790
7099
|
*
|
|
6791
7100
|
* @export
|
|
@@ -6891,6 +7200,159 @@ export interface ServiceCategoryModel {
|
|
|
6891
7200
|
*/
|
|
6892
7201
|
'serviceCount'?: number;
|
|
6893
7202
|
}
|
|
7203
|
+
/**
|
|
7204
|
+
*
|
|
7205
|
+
* @export
|
|
7206
|
+
* @interface ServiceReviewItemModel
|
|
7207
|
+
*/
|
|
7208
|
+
export interface ServiceReviewItemModel {
|
|
7209
|
+
/**
|
|
7210
|
+
*
|
|
7211
|
+
* @type {string}
|
|
7212
|
+
* @memberof ServiceReviewItemModel
|
|
7213
|
+
*/
|
|
7214
|
+
'id'?: string;
|
|
7215
|
+
/**
|
|
7216
|
+
*
|
|
7217
|
+
* @type {string}
|
|
7218
|
+
* @memberof ServiceReviewItemModel
|
|
7219
|
+
*/
|
|
7220
|
+
'serviceId'?: string;
|
|
7221
|
+
/**
|
|
7222
|
+
*
|
|
7223
|
+
* @type {string}
|
|
7224
|
+
* @memberof ServiceReviewItemModel
|
|
7225
|
+
*/
|
|
7226
|
+
'serviceName'?: string | null;
|
|
7227
|
+
/**
|
|
7228
|
+
*
|
|
7229
|
+
* @type {string}
|
|
7230
|
+
* @memberof ServiceReviewItemModel
|
|
7231
|
+
*/
|
|
7232
|
+
'patientId'?: string | null;
|
|
7233
|
+
/**
|
|
7234
|
+
*
|
|
7235
|
+
* @type {string}
|
|
7236
|
+
* @memberof ServiceReviewItemModel
|
|
7237
|
+
*/
|
|
7238
|
+
'patientName'?: string | null;
|
|
7239
|
+
/**
|
|
7240
|
+
*
|
|
7241
|
+
* @type {string}
|
|
7242
|
+
* @memberof ServiceReviewItemModel
|
|
7243
|
+
*/
|
|
7244
|
+
'body'?: string | null;
|
|
7245
|
+
/**
|
|
7246
|
+
*
|
|
7247
|
+
* @type {boolean}
|
|
7248
|
+
* @memberof ServiceReviewItemModel
|
|
7249
|
+
*/
|
|
7250
|
+
'recommended'?: boolean;
|
|
7251
|
+
/**
|
|
7252
|
+
*
|
|
7253
|
+
* @type {number}
|
|
7254
|
+
* @memberof ServiceReviewItemModel
|
|
7255
|
+
*/
|
|
7256
|
+
'rate'?: number;
|
|
7257
|
+
/**
|
|
7258
|
+
*
|
|
7259
|
+
* @type {ReviewType}
|
|
7260
|
+
* @memberof ServiceReviewItemModel
|
|
7261
|
+
*/
|
|
7262
|
+
'reviewType'?: ReviewType;
|
|
7263
|
+
/**
|
|
7264
|
+
*
|
|
7265
|
+
* @type {Array<MediaModel>}
|
|
7266
|
+
* @memberof ServiceReviewItemModel
|
|
7267
|
+
*/
|
|
7268
|
+
'medias'?: Array<MediaModel> | null;
|
|
7269
|
+
}
|
|
7270
|
+
/**
|
|
7271
|
+
*
|
|
7272
|
+
* @export
|
|
7273
|
+
* @interface ServiceReviewModel
|
|
7274
|
+
*/
|
|
7275
|
+
export interface ServiceReviewModel {
|
|
7276
|
+
/**
|
|
7277
|
+
*
|
|
7278
|
+
* @type {string}
|
|
7279
|
+
* @memberof ServiceReviewModel
|
|
7280
|
+
*/
|
|
7281
|
+
'id'?: string;
|
|
7282
|
+
/**
|
|
7283
|
+
*
|
|
7284
|
+
* @type {string}
|
|
7285
|
+
* @memberof ServiceReviewModel
|
|
7286
|
+
*/
|
|
7287
|
+
'serviceId'?: string;
|
|
7288
|
+
/**
|
|
7289
|
+
*
|
|
7290
|
+
* @type {string}
|
|
7291
|
+
* @memberof ServiceReviewModel
|
|
7292
|
+
*/
|
|
7293
|
+
'serviceName'?: string | null;
|
|
7294
|
+
/**
|
|
7295
|
+
*
|
|
7296
|
+
* @type {string}
|
|
7297
|
+
* @memberof ServiceReviewModel
|
|
7298
|
+
*/
|
|
7299
|
+
'patientId'?: string | null;
|
|
7300
|
+
/**
|
|
7301
|
+
*
|
|
7302
|
+
* @type {string}
|
|
7303
|
+
* @memberof ServiceReviewModel
|
|
7304
|
+
*/
|
|
7305
|
+
'patientName'?: string | null;
|
|
7306
|
+
/**
|
|
7307
|
+
*
|
|
7308
|
+
* @type {string}
|
|
7309
|
+
* @memberof ServiceReviewModel
|
|
7310
|
+
*/
|
|
7311
|
+
'body'?: string | null;
|
|
7312
|
+
/**
|
|
7313
|
+
*
|
|
7314
|
+
* @type {boolean}
|
|
7315
|
+
* @memberof ServiceReviewModel
|
|
7316
|
+
*/
|
|
7317
|
+
'recommended'?: boolean;
|
|
7318
|
+
/**
|
|
7319
|
+
*
|
|
7320
|
+
* @type {number}
|
|
7321
|
+
* @memberof ServiceReviewModel
|
|
7322
|
+
*/
|
|
7323
|
+
'rate'?: number;
|
|
7324
|
+
/**
|
|
7325
|
+
*
|
|
7326
|
+
* @type {ReviewType}
|
|
7327
|
+
* @memberof ServiceReviewModel
|
|
7328
|
+
*/
|
|
7329
|
+
'reviewType'?: ReviewType;
|
|
7330
|
+
/**
|
|
7331
|
+
*
|
|
7332
|
+
* @type {Array<MediaModel>}
|
|
7333
|
+
* @memberof ServiceReviewModel
|
|
7334
|
+
*/
|
|
7335
|
+
'medias'?: Array<MediaModel> | null;
|
|
7336
|
+
}
|
|
7337
|
+
/**
|
|
7338
|
+
*
|
|
7339
|
+
* @export
|
|
7340
|
+
* @interface ServiceReviewsModel
|
|
7341
|
+
*/
|
|
7342
|
+
export interface ServiceReviewsModel {
|
|
7343
|
+
/**
|
|
7344
|
+
*
|
|
7345
|
+
* @type {Array<ServiceReviewItemModel>}
|
|
7346
|
+
* @memberof ServiceReviewsModel
|
|
7347
|
+
*/
|
|
7348
|
+
'items'?: Array<ServiceReviewItemModel> | null;
|
|
7349
|
+
/**
|
|
7350
|
+
*
|
|
7351
|
+
* @type {PagedListMetaData}
|
|
7352
|
+
* @memberof ServiceReviewsModel
|
|
7353
|
+
*/
|
|
7354
|
+
'metaData'?: PagedListMetaData;
|
|
7355
|
+
}
|
|
6894
7356
|
/**
|
|
6895
7357
|
*
|
|
6896
7358
|
* @export
|
|
@@ -7662,6 +8124,43 @@ export interface UpdateConsultationCommand {
|
|
|
7662
8124
|
*/
|
|
7663
8125
|
'timeZone'?: string | null;
|
|
7664
8126
|
}
|
|
8127
|
+
/**
|
|
8128
|
+
*
|
|
8129
|
+
* @export
|
|
8130
|
+
* @interface UpdateMediaCommand
|
|
8131
|
+
*/
|
|
8132
|
+
export interface UpdateMediaCommand {
|
|
8133
|
+
/**
|
|
8134
|
+
*
|
|
8135
|
+
* @type {MediaType}
|
|
8136
|
+
* @memberof UpdateMediaCommand
|
|
8137
|
+
*/
|
|
8138
|
+
'mediaType'?: MediaType;
|
|
8139
|
+
/**
|
|
8140
|
+
*
|
|
8141
|
+
* @type {string}
|
|
8142
|
+
* @memberof UpdateMediaCommand
|
|
8143
|
+
*/
|
|
8144
|
+
'url'?: string | null;
|
|
8145
|
+
/**
|
|
8146
|
+
*
|
|
8147
|
+
* @type {string}
|
|
8148
|
+
* @memberof UpdateMediaCommand
|
|
8149
|
+
*/
|
|
8150
|
+
'thumbnailUrl'?: string | null;
|
|
8151
|
+
/**
|
|
8152
|
+
*
|
|
8153
|
+
* @type {string}
|
|
8154
|
+
* @memberof UpdateMediaCommand
|
|
8155
|
+
*/
|
|
8156
|
+
'description'?: string | null;
|
|
8157
|
+
/**
|
|
8158
|
+
*
|
|
8159
|
+
* @type {number}
|
|
8160
|
+
* @memberof UpdateMediaCommand
|
|
8161
|
+
*/
|
|
8162
|
+
'order'?: number;
|
|
8163
|
+
}
|
|
7665
8164
|
/**
|
|
7666
8165
|
*
|
|
7667
8166
|
* @export
|
|
@@ -7790,6 +8289,31 @@ export interface UpdateProfileCommand {
|
|
|
7790
8289
|
*/
|
|
7791
8290
|
'locations'?: Array<UserLocationModel> | null;
|
|
7792
8291
|
}
|
|
8292
|
+
/**
|
|
8293
|
+
*
|
|
8294
|
+
* @export
|
|
8295
|
+
* @interface UpdateServiceReviewCommand
|
|
8296
|
+
*/
|
|
8297
|
+
export interface UpdateServiceReviewCommand {
|
|
8298
|
+
/**
|
|
8299
|
+
*
|
|
8300
|
+
* @type {string}
|
|
8301
|
+
* @memberof UpdateServiceReviewCommand
|
|
8302
|
+
*/
|
|
8303
|
+
'body'?: string | null;
|
|
8304
|
+
/**
|
|
8305
|
+
*
|
|
8306
|
+
* @type {boolean}
|
|
8307
|
+
* @memberof UpdateServiceReviewCommand
|
|
8308
|
+
*/
|
|
8309
|
+
'recommended'?: boolean | null;
|
|
8310
|
+
/**
|
|
8311
|
+
*
|
|
8312
|
+
* @type {number}
|
|
8313
|
+
* @memberof UpdateServiceReviewCommand
|
|
8314
|
+
*/
|
|
8315
|
+
'rate'?: number | null;
|
|
8316
|
+
}
|
|
7793
8317
|
/**
|
|
7794
8318
|
*
|
|
7795
8319
|
* @export
|
|
@@ -7891,6 +8415,12 @@ export interface UserModel {
|
|
|
7891
8415
|
* @memberof UserModel
|
|
7892
8416
|
*/
|
|
7893
8417
|
'id'?: string;
|
|
8418
|
+
/**
|
|
8419
|
+
*
|
|
8420
|
+
* @type {string}
|
|
8421
|
+
* @memberof UserModel
|
|
8422
|
+
*/
|
|
8423
|
+
'userType'?: string | null;
|
|
7894
8424
|
/**
|
|
7895
8425
|
*
|
|
7896
8426
|
* @type {string}
|
|
@@ -7969,12 +8499,6 @@ export interface UserModel {
|
|
|
7969
8499
|
* @memberof UserModel
|
|
7970
8500
|
*/
|
|
7971
8501
|
'auditableEntity'?: AuditableEntity;
|
|
7972
|
-
/**
|
|
7973
|
-
*
|
|
7974
|
-
* @type {string}
|
|
7975
|
-
* @memberof UserModel
|
|
7976
|
-
*/
|
|
7977
|
-
'userType'?: string | null;
|
|
7978
8502
|
/**
|
|
7979
8503
|
*
|
|
7980
8504
|
* @type {Array<UserLanguageModel>}
|
|
@@ -10879,6 +11403,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10879
11403
|
* @param {string} [hospitalId]
|
|
10880
11404
|
* @param {string} [languageCode]
|
|
10881
11405
|
* @param {boolean} [returnDefaultValue]
|
|
11406
|
+
* @param {Array<string>} [ids]
|
|
10882
11407
|
* @param {string} [id]
|
|
10883
11408
|
* @param {string} [fullname]
|
|
10884
11409
|
* @param {string} [email]
|
|
@@ -10892,7 +11417,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10892
11417
|
* @param {*} [options] Override http request option.
|
|
10893
11418
|
* @throws {RequiredError}
|
|
10894
11419
|
*/
|
|
10895
|
-
apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11420
|
+
apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10896
11421
|
/**
|
|
10897
11422
|
*
|
|
10898
11423
|
* @param {string} slug
|
|
@@ -11062,6 +11587,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
11062
11587
|
* @param {string} [hospitalId]
|
|
11063
11588
|
* @param {string} [languageCode]
|
|
11064
11589
|
* @param {boolean} [returnDefaultValue]
|
|
11590
|
+
* @param {Array<string>} [ids]
|
|
11065
11591
|
* @param {string} [id]
|
|
11066
11592
|
* @param {string} [fullname]
|
|
11067
11593
|
* @param {string} [email]
|
|
@@ -11075,7 +11601,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
11075
11601
|
* @param {*} [options] Override http request option.
|
|
11076
11602
|
* @throws {RequiredError}
|
|
11077
11603
|
*/
|
|
11078
|
-
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
11604
|
+
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
11079
11605
|
/**
|
|
11080
11606
|
*
|
|
11081
11607
|
* @param {string} slug
|
|
@@ -11245,6 +11771,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
11245
11771
|
* @param {string} [hospitalId]
|
|
11246
11772
|
* @param {string} [languageCode]
|
|
11247
11773
|
* @param {boolean} [returnDefaultValue]
|
|
11774
|
+
* @param {Array<string>} [ids]
|
|
11248
11775
|
* @param {string} [id]
|
|
11249
11776
|
* @param {string} [fullname]
|
|
11250
11777
|
* @param {string} [email]
|
|
@@ -11258,7 +11785,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
11258
11785
|
* @param {*} [options] Override http request option.
|
|
11259
11786
|
* @throws {RequiredError}
|
|
11260
11787
|
*/
|
|
11261
|
-
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
11788
|
+
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
11262
11789
|
/**
|
|
11263
11790
|
*
|
|
11264
11791
|
* @param {string} slug
|
|
@@ -11443,6 +11970,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
11443
11970
|
* @param {string} [hospitalId]
|
|
11444
11971
|
* @param {string} [languageCode]
|
|
11445
11972
|
* @param {boolean} [returnDefaultValue]
|
|
11973
|
+
* @param {Array<string>} [ids]
|
|
11446
11974
|
* @param {string} [id]
|
|
11447
11975
|
* @param {string} [fullname]
|
|
11448
11976
|
* @param {string} [email]
|
|
@@ -11457,7 +11985,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
11457
11985
|
* @throws {RequiredError}
|
|
11458
11986
|
* @memberof DoctorsApi
|
|
11459
11987
|
*/
|
|
11460
|
-
apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
11988
|
+
apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
11461
11989
|
/**
|
|
11462
11990
|
*
|
|
11463
11991
|
* @param {string} slug
|
|
@@ -14059,6 +14587,924 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
14059
14587
|
*/
|
|
14060
14588
|
apiV2ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
14061
14589
|
}
|
|
14590
|
+
/**
|
|
14591
|
+
* SearchApi - axios parameter creator
|
|
14592
|
+
* @export
|
|
14593
|
+
*/
|
|
14594
|
+
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
14595
|
+
/**
|
|
14596
|
+
*
|
|
14597
|
+
* @param {string} keyword
|
|
14598
|
+
* @param {AutocompleteMode} [mode]
|
|
14599
|
+
* @param {boolean} [fuzzy]
|
|
14600
|
+
* @param {boolean} [highlights]
|
|
14601
|
+
* @param {number} [size]
|
|
14602
|
+
* @param {number} [minimumCoverage]
|
|
14603
|
+
* @param {*} [options] Override http request option.
|
|
14604
|
+
* @throws {RequiredError}
|
|
14605
|
+
*/
|
|
14606
|
+
apiV2SearchAutocompleteGet: (keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14607
|
+
/**
|
|
14608
|
+
*
|
|
14609
|
+
* @param {string} [searchTerm]
|
|
14610
|
+
* @param {boolean} [countOnly]
|
|
14611
|
+
* @param {string} [countryId]
|
|
14612
|
+
* @param {string} [hospitalId]
|
|
14613
|
+
* @param {MarketingType} [marketingType]
|
|
14614
|
+
* @param {string} [languageCode]
|
|
14615
|
+
* @param {number} [page]
|
|
14616
|
+
* @param {number} [limit]
|
|
14617
|
+
* @param {Date} [lastRetrieved]
|
|
14618
|
+
* @param {*} [options] Override http request option.
|
|
14619
|
+
* @throws {RequiredError}
|
|
14620
|
+
*/
|
|
14621
|
+
apiV2SearchDealsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14622
|
+
/**
|
|
14623
|
+
*
|
|
14624
|
+
* @param {string} [searchTerm]
|
|
14625
|
+
* @param {boolean} [countOnly]
|
|
14626
|
+
* @param {string} [countryId]
|
|
14627
|
+
* @param {string} [hospitalId]
|
|
14628
|
+
* @param {MarketingType} [marketingType]
|
|
14629
|
+
* @param {string} [languageCode]
|
|
14630
|
+
* @param {number} [page]
|
|
14631
|
+
* @param {number} [limit]
|
|
14632
|
+
* @param {Date} [lastRetrieved]
|
|
14633
|
+
* @param {*} [options] Override http request option.
|
|
14634
|
+
* @throws {RequiredError}
|
|
14635
|
+
*/
|
|
14636
|
+
apiV2SearchDoctorsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14637
|
+
/**
|
|
14638
|
+
*
|
|
14639
|
+
* @param {string} [searchTerm]
|
|
14640
|
+
* @param {boolean} [countOnly]
|
|
14641
|
+
* @param {string} [countryId]
|
|
14642
|
+
* @param {string} [hospitalId]
|
|
14643
|
+
* @param {MarketingType} [marketingType]
|
|
14644
|
+
* @param {string} [languageCode]
|
|
14645
|
+
* @param {number} [page]
|
|
14646
|
+
* @param {number} [limit]
|
|
14647
|
+
* @param {Date} [lastRetrieved]
|
|
14648
|
+
* @param {*} [options] Override http request option.
|
|
14649
|
+
* @throws {RequiredError}
|
|
14650
|
+
*/
|
|
14651
|
+
apiV2SearchGetcountGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14652
|
+
/**
|
|
14653
|
+
*
|
|
14654
|
+
* @param {string} [searchTerm]
|
|
14655
|
+
* @param {boolean} [countOnly]
|
|
14656
|
+
* @param {string} [countryId]
|
|
14657
|
+
* @param {string} [hospitalId]
|
|
14658
|
+
* @param {MarketingType} [marketingType]
|
|
14659
|
+
* @param {string} [languageCode]
|
|
14660
|
+
* @param {number} [page]
|
|
14661
|
+
* @param {number} [limit]
|
|
14662
|
+
* @param {Date} [lastRetrieved]
|
|
14663
|
+
* @param {*} [options] Override http request option.
|
|
14664
|
+
* @throws {RequiredError}
|
|
14665
|
+
*/
|
|
14666
|
+
apiV2SearchHospitalsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14667
|
+
/**
|
|
14668
|
+
*
|
|
14669
|
+
* @param {string} [searchTerm]
|
|
14670
|
+
* @param {boolean} [countOnly]
|
|
14671
|
+
* @param {string} [countryId]
|
|
14672
|
+
* @param {string} [hospitalId]
|
|
14673
|
+
* @param {MarketingType} [marketingType]
|
|
14674
|
+
* @param {string} [languageCode]
|
|
14675
|
+
* @param {number} [page]
|
|
14676
|
+
* @param {number} [limit]
|
|
14677
|
+
* @param {Date} [lastRetrieved]
|
|
14678
|
+
* @param {*} [options] Override http request option.
|
|
14679
|
+
* @throws {RequiredError}
|
|
14680
|
+
*/
|
|
14681
|
+
apiV2SearchSpecialtiesGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14682
|
+
/**
|
|
14683
|
+
*
|
|
14684
|
+
* @param {string} [searchTerm]
|
|
14685
|
+
* @param {boolean} [countOnly]
|
|
14686
|
+
* @param {string} [countryId]
|
|
14687
|
+
* @param {string} [hospitalId]
|
|
14688
|
+
* @param {MarketingType} [marketingType]
|
|
14689
|
+
* @param {string} [languageCode]
|
|
14690
|
+
* @param {number} [page]
|
|
14691
|
+
* @param {number} [limit]
|
|
14692
|
+
* @param {Date} [lastRetrieved]
|
|
14693
|
+
* @param {*} [options] Override http request option.
|
|
14694
|
+
* @throws {RequiredError}
|
|
14695
|
+
*/
|
|
14696
|
+
apiV2SearchSpecialtytypesGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14697
|
+
/**
|
|
14698
|
+
*
|
|
14699
|
+
* @param {string} keyword
|
|
14700
|
+
* @param {boolean} [fuzzy]
|
|
14701
|
+
* @param {boolean} [highlights]
|
|
14702
|
+
* @param {number} [size]
|
|
14703
|
+
* @param {*} [options] Override http request option.
|
|
14704
|
+
* @throws {RequiredError}
|
|
14705
|
+
*/
|
|
14706
|
+
apiV2SearchSuggestGet: (keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14707
|
+
};
|
|
14708
|
+
/**
|
|
14709
|
+
* SearchApi - functional programming interface
|
|
14710
|
+
* @export
|
|
14711
|
+
*/
|
|
14712
|
+
export declare const SearchApiFp: (configuration?: Configuration | undefined) => {
|
|
14713
|
+
/**
|
|
14714
|
+
*
|
|
14715
|
+
* @param {string} keyword
|
|
14716
|
+
* @param {AutocompleteMode} [mode]
|
|
14717
|
+
* @param {boolean} [fuzzy]
|
|
14718
|
+
* @param {boolean} [highlights]
|
|
14719
|
+
* @param {number} [size]
|
|
14720
|
+
* @param {number} [minimumCoverage]
|
|
14721
|
+
* @param {*} [options] Override http request option.
|
|
14722
|
+
* @throws {RequiredError}
|
|
14723
|
+
*/
|
|
14724
|
+
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceAutocompleteModel>>;
|
|
14725
|
+
/**
|
|
14726
|
+
*
|
|
14727
|
+
* @param {string} [searchTerm]
|
|
14728
|
+
* @param {boolean} [countOnly]
|
|
14729
|
+
* @param {string} [countryId]
|
|
14730
|
+
* @param {string} [hospitalId]
|
|
14731
|
+
* @param {MarketingType} [marketingType]
|
|
14732
|
+
* @param {string} [languageCode]
|
|
14733
|
+
* @param {number} [page]
|
|
14734
|
+
* @param {number} [limit]
|
|
14735
|
+
* @param {Date} [lastRetrieved]
|
|
14736
|
+
* @param {*} [options] Override http request option.
|
|
14737
|
+
* @throws {RequiredError}
|
|
14738
|
+
*/
|
|
14739
|
+
apiV2SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
14740
|
+
/**
|
|
14741
|
+
*
|
|
14742
|
+
* @param {string} [searchTerm]
|
|
14743
|
+
* @param {boolean} [countOnly]
|
|
14744
|
+
* @param {string} [countryId]
|
|
14745
|
+
* @param {string} [hospitalId]
|
|
14746
|
+
* @param {MarketingType} [marketingType]
|
|
14747
|
+
* @param {string} [languageCode]
|
|
14748
|
+
* @param {number} [page]
|
|
14749
|
+
* @param {number} [limit]
|
|
14750
|
+
* @param {Date} [lastRetrieved]
|
|
14751
|
+
* @param {*} [options] Override http request option.
|
|
14752
|
+
* @throws {RequiredError}
|
|
14753
|
+
*/
|
|
14754
|
+
apiV2SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
14755
|
+
/**
|
|
14756
|
+
*
|
|
14757
|
+
* @param {string} [searchTerm]
|
|
14758
|
+
* @param {boolean} [countOnly]
|
|
14759
|
+
* @param {string} [countryId]
|
|
14760
|
+
* @param {string} [hospitalId]
|
|
14761
|
+
* @param {MarketingType} [marketingType]
|
|
14762
|
+
* @param {string} [languageCode]
|
|
14763
|
+
* @param {number} [page]
|
|
14764
|
+
* @param {number} [limit]
|
|
14765
|
+
* @param {Date} [lastRetrieved]
|
|
14766
|
+
* @param {*} [options] Override http request option.
|
|
14767
|
+
* @throws {RequiredError}
|
|
14768
|
+
*/
|
|
14769
|
+
apiV2SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchModel>>;
|
|
14770
|
+
/**
|
|
14771
|
+
*
|
|
14772
|
+
* @param {string} [searchTerm]
|
|
14773
|
+
* @param {boolean} [countOnly]
|
|
14774
|
+
* @param {string} [countryId]
|
|
14775
|
+
* @param {string} [hospitalId]
|
|
14776
|
+
* @param {MarketingType} [marketingType]
|
|
14777
|
+
* @param {string} [languageCode]
|
|
14778
|
+
* @param {number} [page]
|
|
14779
|
+
* @param {number} [limit]
|
|
14780
|
+
* @param {Date} [lastRetrieved]
|
|
14781
|
+
* @param {*} [options] Override http request option.
|
|
14782
|
+
* @throws {RequiredError}
|
|
14783
|
+
*/
|
|
14784
|
+
apiV2SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
14785
|
+
/**
|
|
14786
|
+
*
|
|
14787
|
+
* @param {string} [searchTerm]
|
|
14788
|
+
* @param {boolean} [countOnly]
|
|
14789
|
+
* @param {string} [countryId]
|
|
14790
|
+
* @param {string} [hospitalId]
|
|
14791
|
+
* @param {MarketingType} [marketingType]
|
|
14792
|
+
* @param {string} [languageCode]
|
|
14793
|
+
* @param {number} [page]
|
|
14794
|
+
* @param {number} [limit]
|
|
14795
|
+
* @param {Date} [lastRetrieved]
|
|
14796
|
+
* @param {*} [options] Override http request option.
|
|
14797
|
+
* @throws {RequiredError}
|
|
14798
|
+
*/
|
|
14799
|
+
apiV2SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
14800
|
+
/**
|
|
14801
|
+
*
|
|
14802
|
+
* @param {string} [searchTerm]
|
|
14803
|
+
* @param {boolean} [countOnly]
|
|
14804
|
+
* @param {string} [countryId]
|
|
14805
|
+
* @param {string} [hospitalId]
|
|
14806
|
+
* @param {MarketingType} [marketingType]
|
|
14807
|
+
* @param {string} [languageCode]
|
|
14808
|
+
* @param {number} [page]
|
|
14809
|
+
* @param {number} [limit]
|
|
14810
|
+
* @param {Date} [lastRetrieved]
|
|
14811
|
+
* @param {*} [options] Override http request option.
|
|
14812
|
+
* @throws {RequiredError}
|
|
14813
|
+
*/
|
|
14814
|
+
apiV2SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
|
|
14815
|
+
/**
|
|
14816
|
+
*
|
|
14817
|
+
* @param {string} keyword
|
|
14818
|
+
* @param {boolean} [fuzzy]
|
|
14819
|
+
* @param {boolean} [highlights]
|
|
14820
|
+
* @param {number} [size]
|
|
14821
|
+
* @param {*} [options] Override http request option.
|
|
14822
|
+
* @throws {RequiredError}
|
|
14823
|
+
*/
|
|
14824
|
+
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceSuggestModel>>;
|
|
14825
|
+
};
|
|
14826
|
+
/**
|
|
14827
|
+
* SearchApi - factory interface
|
|
14828
|
+
* @export
|
|
14829
|
+
*/
|
|
14830
|
+
export declare const SearchApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
14831
|
+
/**
|
|
14832
|
+
*
|
|
14833
|
+
* @param {string} keyword
|
|
14834
|
+
* @param {AutocompleteMode} [mode]
|
|
14835
|
+
* @param {boolean} [fuzzy]
|
|
14836
|
+
* @param {boolean} [highlights]
|
|
14837
|
+
* @param {number} [size]
|
|
14838
|
+
* @param {number} [minimumCoverage]
|
|
14839
|
+
* @param {*} [options] Override http request option.
|
|
14840
|
+
* @throws {RequiredError}
|
|
14841
|
+
*/
|
|
14842
|
+
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: any): AxiosPromise<AzureSearchServiceAutocompleteModel>;
|
|
14843
|
+
/**
|
|
14844
|
+
*
|
|
14845
|
+
* @param {string} [searchTerm]
|
|
14846
|
+
* @param {boolean} [countOnly]
|
|
14847
|
+
* @param {string} [countryId]
|
|
14848
|
+
* @param {string} [hospitalId]
|
|
14849
|
+
* @param {MarketingType} [marketingType]
|
|
14850
|
+
* @param {string} [languageCode]
|
|
14851
|
+
* @param {number} [page]
|
|
14852
|
+
* @param {number} [limit]
|
|
14853
|
+
* @param {Date} [lastRetrieved]
|
|
14854
|
+
* @param {*} [options] Override http request option.
|
|
14855
|
+
* @throws {RequiredError}
|
|
14856
|
+
*/
|
|
14857
|
+
apiV2SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
14858
|
+
/**
|
|
14859
|
+
*
|
|
14860
|
+
* @param {string} [searchTerm]
|
|
14861
|
+
* @param {boolean} [countOnly]
|
|
14862
|
+
* @param {string} [countryId]
|
|
14863
|
+
* @param {string} [hospitalId]
|
|
14864
|
+
* @param {MarketingType} [marketingType]
|
|
14865
|
+
* @param {string} [languageCode]
|
|
14866
|
+
* @param {number} [page]
|
|
14867
|
+
* @param {number} [limit]
|
|
14868
|
+
* @param {Date} [lastRetrieved]
|
|
14869
|
+
* @param {*} [options] Override http request option.
|
|
14870
|
+
* @throws {RequiredError}
|
|
14871
|
+
*/
|
|
14872
|
+
apiV2SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
14873
|
+
/**
|
|
14874
|
+
*
|
|
14875
|
+
* @param {string} [searchTerm]
|
|
14876
|
+
* @param {boolean} [countOnly]
|
|
14877
|
+
* @param {string} [countryId]
|
|
14878
|
+
* @param {string} [hospitalId]
|
|
14879
|
+
* @param {MarketingType} [marketingType]
|
|
14880
|
+
* @param {string} [languageCode]
|
|
14881
|
+
* @param {number} [page]
|
|
14882
|
+
* @param {number} [limit]
|
|
14883
|
+
* @param {Date} [lastRetrieved]
|
|
14884
|
+
* @param {*} [options] Override http request option.
|
|
14885
|
+
* @throws {RequiredError}
|
|
14886
|
+
*/
|
|
14887
|
+
apiV2SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AzureSearchModel>;
|
|
14888
|
+
/**
|
|
14889
|
+
*
|
|
14890
|
+
* @param {string} [searchTerm]
|
|
14891
|
+
* @param {boolean} [countOnly]
|
|
14892
|
+
* @param {string} [countryId]
|
|
14893
|
+
* @param {string} [hospitalId]
|
|
14894
|
+
* @param {MarketingType} [marketingType]
|
|
14895
|
+
* @param {string} [languageCode]
|
|
14896
|
+
* @param {number} [page]
|
|
14897
|
+
* @param {number} [limit]
|
|
14898
|
+
* @param {Date} [lastRetrieved]
|
|
14899
|
+
* @param {*} [options] Override http request option.
|
|
14900
|
+
* @throws {RequiredError}
|
|
14901
|
+
*/
|
|
14902
|
+
apiV2SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
14903
|
+
/**
|
|
14904
|
+
*
|
|
14905
|
+
* @param {string} [searchTerm]
|
|
14906
|
+
* @param {boolean} [countOnly]
|
|
14907
|
+
* @param {string} [countryId]
|
|
14908
|
+
* @param {string} [hospitalId]
|
|
14909
|
+
* @param {MarketingType} [marketingType]
|
|
14910
|
+
* @param {string} [languageCode]
|
|
14911
|
+
* @param {number} [page]
|
|
14912
|
+
* @param {number} [limit]
|
|
14913
|
+
* @param {Date} [lastRetrieved]
|
|
14914
|
+
* @param {*} [options] Override http request option.
|
|
14915
|
+
* @throws {RequiredError}
|
|
14916
|
+
*/
|
|
14917
|
+
apiV2SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
|
|
14918
|
+
/**
|
|
14919
|
+
*
|
|
14920
|
+
* @param {string} [searchTerm]
|
|
14921
|
+
* @param {boolean} [countOnly]
|
|
14922
|
+
* @param {string} [countryId]
|
|
14923
|
+
* @param {string} [hospitalId]
|
|
14924
|
+
* @param {MarketingType} [marketingType]
|
|
14925
|
+
* @param {string} [languageCode]
|
|
14926
|
+
* @param {number} [page]
|
|
14927
|
+
* @param {number} [limit]
|
|
14928
|
+
* @param {Date} [lastRetrieved]
|
|
14929
|
+
* @param {*} [options] Override http request option.
|
|
14930
|
+
* @throws {RequiredError}
|
|
14931
|
+
*/
|
|
14932
|
+
apiV2SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesModel>;
|
|
14933
|
+
/**
|
|
14934
|
+
*
|
|
14935
|
+
* @param {string} keyword
|
|
14936
|
+
* @param {boolean} [fuzzy]
|
|
14937
|
+
* @param {boolean} [highlights]
|
|
14938
|
+
* @param {number} [size]
|
|
14939
|
+
* @param {*} [options] Override http request option.
|
|
14940
|
+
* @throws {RequiredError}
|
|
14941
|
+
*/
|
|
14942
|
+
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: any): AxiosPromise<AzureSearchServiceSuggestModel>;
|
|
14943
|
+
};
|
|
14944
|
+
/**
|
|
14945
|
+
* SearchApi - object-oriented interface
|
|
14946
|
+
* @export
|
|
14947
|
+
* @class SearchApi
|
|
14948
|
+
* @extends {BaseAPI}
|
|
14949
|
+
*/
|
|
14950
|
+
export declare class SearchApi extends BaseAPI {
|
|
14951
|
+
/**
|
|
14952
|
+
*
|
|
14953
|
+
* @param {string} keyword
|
|
14954
|
+
* @param {AutocompleteMode} [mode]
|
|
14955
|
+
* @param {boolean} [fuzzy]
|
|
14956
|
+
* @param {boolean} [highlights]
|
|
14957
|
+
* @param {number} [size]
|
|
14958
|
+
* @param {number} [minimumCoverage]
|
|
14959
|
+
* @param {*} [options] Override http request option.
|
|
14960
|
+
* @throws {RequiredError}
|
|
14961
|
+
* @memberof SearchApi
|
|
14962
|
+
*/
|
|
14963
|
+
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode, fuzzy?: boolean, highlights?: boolean, size?: number, minimumCoverage?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceAutocompleteModel>>;
|
|
14964
|
+
/**
|
|
14965
|
+
*
|
|
14966
|
+
* @param {string} [searchTerm]
|
|
14967
|
+
* @param {boolean} [countOnly]
|
|
14968
|
+
* @param {string} [countryId]
|
|
14969
|
+
* @param {string} [hospitalId]
|
|
14970
|
+
* @param {MarketingType} [marketingType]
|
|
14971
|
+
* @param {string} [languageCode]
|
|
14972
|
+
* @param {number} [page]
|
|
14973
|
+
* @param {number} [limit]
|
|
14974
|
+
* @param {Date} [lastRetrieved]
|
|
14975
|
+
* @param {*} [options] Override http request option.
|
|
14976
|
+
* @throws {RequiredError}
|
|
14977
|
+
* @memberof SearchApi
|
|
14978
|
+
*/
|
|
14979
|
+
apiV2SearchDealsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
14980
|
+
/**
|
|
14981
|
+
*
|
|
14982
|
+
* @param {string} [searchTerm]
|
|
14983
|
+
* @param {boolean} [countOnly]
|
|
14984
|
+
* @param {string} [countryId]
|
|
14985
|
+
* @param {string} [hospitalId]
|
|
14986
|
+
* @param {MarketingType} [marketingType]
|
|
14987
|
+
* @param {string} [languageCode]
|
|
14988
|
+
* @param {number} [page]
|
|
14989
|
+
* @param {number} [limit]
|
|
14990
|
+
* @param {Date} [lastRetrieved]
|
|
14991
|
+
* @param {*} [options] Override http request option.
|
|
14992
|
+
* @throws {RequiredError}
|
|
14993
|
+
* @memberof SearchApi
|
|
14994
|
+
*/
|
|
14995
|
+
apiV2SearchDoctorsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
14996
|
+
/**
|
|
14997
|
+
*
|
|
14998
|
+
* @param {string} [searchTerm]
|
|
14999
|
+
* @param {boolean} [countOnly]
|
|
15000
|
+
* @param {string} [countryId]
|
|
15001
|
+
* @param {string} [hospitalId]
|
|
15002
|
+
* @param {MarketingType} [marketingType]
|
|
15003
|
+
* @param {string} [languageCode]
|
|
15004
|
+
* @param {number} [page]
|
|
15005
|
+
* @param {number} [limit]
|
|
15006
|
+
* @param {Date} [lastRetrieved]
|
|
15007
|
+
* @param {*} [options] Override http request option.
|
|
15008
|
+
* @throws {RequiredError}
|
|
15009
|
+
* @memberof SearchApi
|
|
15010
|
+
*/
|
|
15011
|
+
apiV2SearchGetcountGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchModel>>;
|
|
15012
|
+
/**
|
|
15013
|
+
*
|
|
15014
|
+
* @param {string} [searchTerm]
|
|
15015
|
+
* @param {boolean} [countOnly]
|
|
15016
|
+
* @param {string} [countryId]
|
|
15017
|
+
* @param {string} [hospitalId]
|
|
15018
|
+
* @param {MarketingType} [marketingType]
|
|
15019
|
+
* @param {string} [languageCode]
|
|
15020
|
+
* @param {number} [page]
|
|
15021
|
+
* @param {number} [limit]
|
|
15022
|
+
* @param {Date} [lastRetrieved]
|
|
15023
|
+
* @param {*} [options] Override http request option.
|
|
15024
|
+
* @throws {RequiredError}
|
|
15025
|
+
* @memberof SearchApi
|
|
15026
|
+
*/
|
|
15027
|
+
apiV2SearchHospitalsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
15028
|
+
/**
|
|
15029
|
+
*
|
|
15030
|
+
* @param {string} [searchTerm]
|
|
15031
|
+
* @param {boolean} [countOnly]
|
|
15032
|
+
* @param {string} [countryId]
|
|
15033
|
+
* @param {string} [hospitalId]
|
|
15034
|
+
* @param {MarketingType} [marketingType]
|
|
15035
|
+
* @param {string} [languageCode]
|
|
15036
|
+
* @param {number} [page]
|
|
15037
|
+
* @param {number} [limit]
|
|
15038
|
+
* @param {Date} [lastRetrieved]
|
|
15039
|
+
* @param {*} [options] Override http request option.
|
|
15040
|
+
* @throws {RequiredError}
|
|
15041
|
+
* @memberof SearchApi
|
|
15042
|
+
*/
|
|
15043
|
+
apiV2SearchSpecialtiesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
|
|
15044
|
+
/**
|
|
15045
|
+
*
|
|
15046
|
+
* @param {string} [searchTerm]
|
|
15047
|
+
* @param {boolean} [countOnly]
|
|
15048
|
+
* @param {string} [countryId]
|
|
15049
|
+
* @param {string} [hospitalId]
|
|
15050
|
+
* @param {MarketingType} [marketingType]
|
|
15051
|
+
* @param {string} [languageCode]
|
|
15052
|
+
* @param {number} [page]
|
|
15053
|
+
* @param {number} [limit]
|
|
15054
|
+
* @param {Date} [lastRetrieved]
|
|
15055
|
+
* @param {*} [options] Override http request option.
|
|
15056
|
+
* @throws {RequiredError}
|
|
15057
|
+
* @memberof SearchApi
|
|
15058
|
+
*/
|
|
15059
|
+
apiV2SearchSpecialtytypesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel>>;
|
|
15060
|
+
/**
|
|
15061
|
+
*
|
|
15062
|
+
* @param {string} keyword
|
|
15063
|
+
* @param {boolean} [fuzzy]
|
|
15064
|
+
* @param {boolean} [highlights]
|
|
15065
|
+
* @param {number} [size]
|
|
15066
|
+
* @param {*} [options] Override http request option.
|
|
15067
|
+
* @throws {RequiredError}
|
|
15068
|
+
* @memberof SearchApi
|
|
15069
|
+
*/
|
|
15070
|
+
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean, highlights?: boolean, size?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceSuggestModel>>;
|
|
15071
|
+
}
|
|
15072
|
+
/**
|
|
15073
|
+
* ServiceReviewsApi - axios parameter creator
|
|
15074
|
+
* @export
|
|
15075
|
+
*/
|
|
15076
|
+
export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
15077
|
+
/**
|
|
15078
|
+
*
|
|
15079
|
+
* @summary Get all ServiceReviews.
|
|
15080
|
+
* @param {string} [hospitalId]
|
|
15081
|
+
* @param {string} [serviceId]
|
|
15082
|
+
* @param {string} [serviceName]
|
|
15083
|
+
* @param {string} [patientId]
|
|
15084
|
+
* @param {string} [patientName]
|
|
15085
|
+
* @param {boolean} [recommended]
|
|
15086
|
+
* @param {number} [rate]
|
|
15087
|
+
* @param {ReviewType} [reviewType]
|
|
15088
|
+
* @param {number} [page]
|
|
15089
|
+
* @param {number} [limit]
|
|
15090
|
+
* @param {Date} [lastRetrieved]
|
|
15091
|
+
* @param {*} [options] Override http request option.
|
|
15092
|
+
* @throws {RequiredError}
|
|
15093
|
+
*/
|
|
15094
|
+
apiV2ServicereviewsGet: (hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15095
|
+
/**
|
|
15096
|
+
*
|
|
15097
|
+
* @summary Create a ServiceReview.
|
|
15098
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
15099
|
+
* @param {*} [options] Override http request option.
|
|
15100
|
+
* @throws {RequiredError}
|
|
15101
|
+
*/
|
|
15102
|
+
apiV2ServicereviewsPost: (createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15103
|
+
/**
|
|
15104
|
+
*
|
|
15105
|
+
* @summary Delete ServiceReview.
|
|
15106
|
+
* @param {string} serviceReviewId
|
|
15107
|
+
* @param {*} [options] Override http request option.
|
|
15108
|
+
* @throws {RequiredError}
|
|
15109
|
+
*/
|
|
15110
|
+
apiV2ServicereviewsServiceReviewIdDelete: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15111
|
+
/**
|
|
15112
|
+
*
|
|
15113
|
+
* @param {string} serviceReviewId
|
|
15114
|
+
* @param {*} [options] Override http request option.
|
|
15115
|
+
* @throws {RequiredError}
|
|
15116
|
+
*/
|
|
15117
|
+
apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15118
|
+
/**
|
|
15119
|
+
*
|
|
15120
|
+
* @summary Get all ServiceReviewMedias.
|
|
15121
|
+
* @param {string} serviceReviewId
|
|
15122
|
+
* @param {string} [id]
|
|
15123
|
+
* @param {MediaType} [mediaType]
|
|
15124
|
+
* @param {number} [page]
|
|
15125
|
+
* @param {number} [limit]
|
|
15126
|
+
* @param {Date} [lastRetrieved]
|
|
15127
|
+
* @param {*} [options] Override http request option.
|
|
15128
|
+
* @throws {RequiredError}
|
|
15129
|
+
*/
|
|
15130
|
+
apiV2ServicereviewsServiceReviewIdMediasGet: (serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15131
|
+
/**
|
|
15132
|
+
*
|
|
15133
|
+
* @summary Delete ServiceReviewMedia
|
|
15134
|
+
* @param {string} serviceReviewId
|
|
15135
|
+
* @param {string} mediaId
|
|
15136
|
+
* @param {*} [options] Override http request option.
|
|
15137
|
+
* @throws {RequiredError}
|
|
15138
|
+
*/
|
|
15139
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15140
|
+
/**
|
|
15141
|
+
*
|
|
15142
|
+
* @summary Get ServiceReviewMedia.
|
|
15143
|
+
* @param {string} serviceReviewId
|
|
15144
|
+
* @param {string} mediaId
|
|
15145
|
+
* @param {*} [options] Override http request option.
|
|
15146
|
+
* @throws {RequiredError}
|
|
15147
|
+
*/
|
|
15148
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15149
|
+
/**
|
|
15150
|
+
*
|
|
15151
|
+
* @summary Update ServiceReviewMedia.
|
|
15152
|
+
* @param {string} serviceReviewId
|
|
15153
|
+
* @param {string} mediaId
|
|
15154
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15155
|
+
* @param {*} [options] Override http request option.
|
|
15156
|
+
* @throws {RequiredError}
|
|
15157
|
+
*/
|
|
15158
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut: (serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15159
|
+
/**
|
|
15160
|
+
*
|
|
15161
|
+
* @summary Create ServiceReviewMedia.
|
|
15162
|
+
* @param {string} serviceReviewId
|
|
15163
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15164
|
+
* @param {*} [options] Override http request option.
|
|
15165
|
+
* @throws {RequiredError}
|
|
15166
|
+
*/
|
|
15167
|
+
apiV2ServicereviewsServiceReviewIdMediasPost: (serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15168
|
+
/**
|
|
15169
|
+
*
|
|
15170
|
+
* @summary Update ServiceReview.
|
|
15171
|
+
* @param {string} serviceReviewId
|
|
15172
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
15173
|
+
* @param {*} [options] Override http request option.
|
|
15174
|
+
* @throws {RequiredError}
|
|
15175
|
+
*/
|
|
15176
|
+
apiV2ServicereviewsServiceReviewIdPut: (serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15177
|
+
};
|
|
15178
|
+
/**
|
|
15179
|
+
* ServiceReviewsApi - functional programming interface
|
|
15180
|
+
* @export
|
|
15181
|
+
*/
|
|
15182
|
+
export declare const ServiceReviewsApiFp: (configuration?: Configuration | undefined) => {
|
|
15183
|
+
/**
|
|
15184
|
+
*
|
|
15185
|
+
* @summary Get all ServiceReviews.
|
|
15186
|
+
* @param {string} [hospitalId]
|
|
15187
|
+
* @param {string} [serviceId]
|
|
15188
|
+
* @param {string} [serviceName]
|
|
15189
|
+
* @param {string} [patientId]
|
|
15190
|
+
* @param {string} [patientName]
|
|
15191
|
+
* @param {boolean} [recommended]
|
|
15192
|
+
* @param {number} [rate]
|
|
15193
|
+
* @param {ReviewType} [reviewType]
|
|
15194
|
+
* @param {number} [page]
|
|
15195
|
+
* @param {number} [limit]
|
|
15196
|
+
* @param {Date} [lastRetrieved]
|
|
15197
|
+
* @param {*} [options] Override http request option.
|
|
15198
|
+
* @throws {RequiredError}
|
|
15199
|
+
*/
|
|
15200
|
+
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
15201
|
+
/**
|
|
15202
|
+
*
|
|
15203
|
+
* @summary Create a ServiceReview.
|
|
15204
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
15205
|
+
* @param {*} [options] Override http request option.
|
|
15206
|
+
* @throws {RequiredError}
|
|
15207
|
+
*/
|
|
15208
|
+
apiV2ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
15209
|
+
/**
|
|
15210
|
+
*
|
|
15211
|
+
* @summary Delete ServiceReview.
|
|
15212
|
+
* @param {string} serviceReviewId
|
|
15213
|
+
* @param {*} [options] Override http request option.
|
|
15214
|
+
* @throws {RequiredError}
|
|
15215
|
+
*/
|
|
15216
|
+
apiV2ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15217
|
+
/**
|
|
15218
|
+
*
|
|
15219
|
+
* @param {string} serviceReviewId
|
|
15220
|
+
* @param {*} [options] Override http request option.
|
|
15221
|
+
* @throws {RequiredError}
|
|
15222
|
+
*/
|
|
15223
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
15224
|
+
/**
|
|
15225
|
+
*
|
|
15226
|
+
* @summary Get all ServiceReviewMedias.
|
|
15227
|
+
* @param {string} serviceReviewId
|
|
15228
|
+
* @param {string} [id]
|
|
15229
|
+
* @param {MediaType} [mediaType]
|
|
15230
|
+
* @param {number} [page]
|
|
15231
|
+
* @param {number} [limit]
|
|
15232
|
+
* @param {Date} [lastRetrieved]
|
|
15233
|
+
* @param {*} [options] Override http request option.
|
|
15234
|
+
* @throws {RequiredError}
|
|
15235
|
+
*/
|
|
15236
|
+
apiV2ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
15237
|
+
/**
|
|
15238
|
+
*
|
|
15239
|
+
* @summary Delete ServiceReviewMedia
|
|
15240
|
+
* @param {string} serviceReviewId
|
|
15241
|
+
* @param {string} mediaId
|
|
15242
|
+
* @param {*} [options] Override http request option.
|
|
15243
|
+
* @throws {RequiredError}
|
|
15244
|
+
*/
|
|
15245
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15246
|
+
/**
|
|
15247
|
+
*
|
|
15248
|
+
* @summary Get ServiceReviewMedia.
|
|
15249
|
+
* @param {string} serviceReviewId
|
|
15250
|
+
* @param {string} mediaId
|
|
15251
|
+
* @param {*} [options] Override http request option.
|
|
15252
|
+
* @throws {RequiredError}
|
|
15253
|
+
*/
|
|
15254
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15255
|
+
/**
|
|
15256
|
+
*
|
|
15257
|
+
* @summary Update ServiceReviewMedia.
|
|
15258
|
+
* @param {string} serviceReviewId
|
|
15259
|
+
* @param {string} mediaId
|
|
15260
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15261
|
+
* @param {*} [options] Override http request option.
|
|
15262
|
+
* @throws {RequiredError}
|
|
15263
|
+
*/
|
|
15264
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15265
|
+
/**
|
|
15266
|
+
*
|
|
15267
|
+
* @summary Create ServiceReviewMedia.
|
|
15268
|
+
* @param {string} serviceReviewId
|
|
15269
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15270
|
+
* @param {*} [options] Override http request option.
|
|
15271
|
+
* @throws {RequiredError}
|
|
15272
|
+
*/
|
|
15273
|
+
apiV2ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15274
|
+
/**
|
|
15275
|
+
*
|
|
15276
|
+
* @summary Update ServiceReview.
|
|
15277
|
+
* @param {string} serviceReviewId
|
|
15278
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
15279
|
+
* @param {*} [options] Override http request option.
|
|
15280
|
+
* @throws {RequiredError}
|
|
15281
|
+
*/
|
|
15282
|
+
apiV2ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
15283
|
+
};
|
|
15284
|
+
/**
|
|
15285
|
+
* ServiceReviewsApi - factory interface
|
|
15286
|
+
* @export
|
|
15287
|
+
*/
|
|
15288
|
+
export declare const ServiceReviewsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
15289
|
+
/**
|
|
15290
|
+
*
|
|
15291
|
+
* @summary Get all ServiceReviews.
|
|
15292
|
+
* @param {string} [hospitalId]
|
|
15293
|
+
* @param {string} [serviceId]
|
|
15294
|
+
* @param {string} [serviceName]
|
|
15295
|
+
* @param {string} [patientId]
|
|
15296
|
+
* @param {string} [patientName]
|
|
15297
|
+
* @param {boolean} [recommended]
|
|
15298
|
+
* @param {number} [rate]
|
|
15299
|
+
* @param {ReviewType} [reviewType]
|
|
15300
|
+
* @param {number} [page]
|
|
15301
|
+
* @param {number} [limit]
|
|
15302
|
+
* @param {Date} [lastRetrieved]
|
|
15303
|
+
* @param {*} [options] Override http request option.
|
|
15304
|
+
* @throws {RequiredError}
|
|
15305
|
+
*/
|
|
15306
|
+
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
15307
|
+
/**
|
|
15308
|
+
*
|
|
15309
|
+
* @summary Create a ServiceReview.
|
|
15310
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
15311
|
+
* @param {*} [options] Override http request option.
|
|
15312
|
+
* @throws {RequiredError}
|
|
15313
|
+
*/
|
|
15314
|
+
apiV2ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
15315
|
+
/**
|
|
15316
|
+
*
|
|
15317
|
+
* @summary Delete ServiceReview.
|
|
15318
|
+
* @param {string} serviceReviewId
|
|
15319
|
+
* @param {*} [options] Override http request option.
|
|
15320
|
+
* @throws {RequiredError}
|
|
15321
|
+
*/
|
|
15322
|
+
apiV2ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: any): AxiosPromise<boolean>;
|
|
15323
|
+
/**
|
|
15324
|
+
*
|
|
15325
|
+
* @param {string} serviceReviewId
|
|
15326
|
+
* @param {*} [options] Override http request option.
|
|
15327
|
+
* @throws {RequiredError}
|
|
15328
|
+
*/
|
|
15329
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
15330
|
+
/**
|
|
15331
|
+
*
|
|
15332
|
+
* @summary Get all ServiceReviewMedias.
|
|
15333
|
+
* @param {string} serviceReviewId
|
|
15334
|
+
* @param {string} [id]
|
|
15335
|
+
* @param {MediaType} [mediaType]
|
|
15336
|
+
* @param {number} [page]
|
|
15337
|
+
* @param {number} [limit]
|
|
15338
|
+
* @param {Date} [lastRetrieved]
|
|
15339
|
+
* @param {*} [options] Override http request option.
|
|
15340
|
+
* @throws {RequiredError}
|
|
15341
|
+
*/
|
|
15342
|
+
apiV2ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
15343
|
+
/**
|
|
15344
|
+
*
|
|
15345
|
+
* @summary Delete ServiceReviewMedia
|
|
15346
|
+
* @param {string} serviceReviewId
|
|
15347
|
+
* @param {string} mediaId
|
|
15348
|
+
* @param {*} [options] Override http request option.
|
|
15349
|
+
* @throws {RequiredError}
|
|
15350
|
+
*/
|
|
15351
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
15352
|
+
/**
|
|
15353
|
+
*
|
|
15354
|
+
* @summary Get ServiceReviewMedia.
|
|
15355
|
+
* @param {string} serviceReviewId
|
|
15356
|
+
* @param {string} mediaId
|
|
15357
|
+
* @param {*} [options] Override http request option.
|
|
15358
|
+
* @throws {RequiredError}
|
|
15359
|
+
*/
|
|
15360
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
15361
|
+
/**
|
|
15362
|
+
*
|
|
15363
|
+
* @summary Update ServiceReviewMedia.
|
|
15364
|
+
* @param {string} serviceReviewId
|
|
15365
|
+
* @param {string} mediaId
|
|
15366
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15367
|
+
* @param {*} [options] Override http request option.
|
|
15368
|
+
* @throws {RequiredError}
|
|
15369
|
+
*/
|
|
15370
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
15371
|
+
/**
|
|
15372
|
+
*
|
|
15373
|
+
* @summary Create ServiceReviewMedia.
|
|
15374
|
+
* @param {string} serviceReviewId
|
|
15375
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15376
|
+
* @param {*} [options] Override http request option.
|
|
15377
|
+
* @throws {RequiredError}
|
|
15378
|
+
*/
|
|
15379
|
+
apiV2ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
15380
|
+
/**
|
|
15381
|
+
*
|
|
15382
|
+
* @summary Update ServiceReview.
|
|
15383
|
+
* @param {string} serviceReviewId
|
|
15384
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
15385
|
+
* @param {*} [options] Override http request option.
|
|
15386
|
+
* @throws {RequiredError}
|
|
15387
|
+
*/
|
|
15388
|
+
apiV2ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
15389
|
+
};
|
|
15390
|
+
/**
|
|
15391
|
+
* ServiceReviewsApi - object-oriented interface
|
|
15392
|
+
* @export
|
|
15393
|
+
* @class ServiceReviewsApi
|
|
15394
|
+
* @extends {BaseAPI}
|
|
15395
|
+
*/
|
|
15396
|
+
export declare class ServiceReviewsApi extends BaseAPI {
|
|
15397
|
+
/**
|
|
15398
|
+
*
|
|
15399
|
+
* @summary Get all ServiceReviews.
|
|
15400
|
+
* @param {string} [hospitalId]
|
|
15401
|
+
* @param {string} [serviceId]
|
|
15402
|
+
* @param {string} [serviceName]
|
|
15403
|
+
* @param {string} [patientId]
|
|
15404
|
+
* @param {string} [patientName]
|
|
15405
|
+
* @param {boolean} [recommended]
|
|
15406
|
+
* @param {number} [rate]
|
|
15407
|
+
* @param {ReviewType} [reviewType]
|
|
15408
|
+
* @param {number} [page]
|
|
15409
|
+
* @param {number} [limit]
|
|
15410
|
+
* @param {Date} [lastRetrieved]
|
|
15411
|
+
* @param {*} [options] Override http request option.
|
|
15412
|
+
* @throws {RequiredError}
|
|
15413
|
+
* @memberof ServiceReviewsApi
|
|
15414
|
+
*/
|
|
15415
|
+
apiV2ServicereviewsGet(hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
15416
|
+
/**
|
|
15417
|
+
*
|
|
15418
|
+
* @summary Create a ServiceReview.
|
|
15419
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
15420
|
+
* @param {*} [options] Override http request option.
|
|
15421
|
+
* @throws {RequiredError}
|
|
15422
|
+
* @memberof ServiceReviewsApi
|
|
15423
|
+
*/
|
|
15424
|
+
apiV2ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
15425
|
+
/**
|
|
15426
|
+
*
|
|
15427
|
+
* @summary Delete ServiceReview.
|
|
15428
|
+
* @param {string} serviceReviewId
|
|
15429
|
+
* @param {*} [options] Override http request option.
|
|
15430
|
+
* @throws {RequiredError}
|
|
15431
|
+
* @memberof ServiceReviewsApi
|
|
15432
|
+
*/
|
|
15433
|
+
apiV2ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15434
|
+
/**
|
|
15435
|
+
*
|
|
15436
|
+
* @param {string} serviceReviewId
|
|
15437
|
+
* @param {*} [options] Override http request option.
|
|
15438
|
+
* @throws {RequiredError}
|
|
15439
|
+
* @memberof ServiceReviewsApi
|
|
15440
|
+
*/
|
|
15441
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
15442
|
+
/**
|
|
15443
|
+
*
|
|
15444
|
+
* @summary Get all ServiceReviewMedias.
|
|
15445
|
+
* @param {string} serviceReviewId
|
|
15446
|
+
* @param {string} [id]
|
|
15447
|
+
* @param {MediaType} [mediaType]
|
|
15448
|
+
* @param {number} [page]
|
|
15449
|
+
* @param {number} [limit]
|
|
15450
|
+
* @param {Date} [lastRetrieved]
|
|
15451
|
+
* @param {*} [options] Override http request option.
|
|
15452
|
+
* @throws {RequiredError}
|
|
15453
|
+
* @memberof ServiceReviewsApi
|
|
15454
|
+
*/
|
|
15455
|
+
apiV2ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
15456
|
+
/**
|
|
15457
|
+
*
|
|
15458
|
+
* @summary Delete ServiceReviewMedia
|
|
15459
|
+
* @param {string} serviceReviewId
|
|
15460
|
+
* @param {string} mediaId
|
|
15461
|
+
* @param {*} [options] Override http request option.
|
|
15462
|
+
* @throws {RequiredError}
|
|
15463
|
+
* @memberof ServiceReviewsApi
|
|
15464
|
+
*/
|
|
15465
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15466
|
+
/**
|
|
15467
|
+
*
|
|
15468
|
+
* @summary Get ServiceReviewMedia.
|
|
15469
|
+
* @param {string} serviceReviewId
|
|
15470
|
+
* @param {string} mediaId
|
|
15471
|
+
* @param {*} [options] Override http request option.
|
|
15472
|
+
* @throws {RequiredError}
|
|
15473
|
+
* @memberof ServiceReviewsApi
|
|
15474
|
+
*/
|
|
15475
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
15476
|
+
/**
|
|
15477
|
+
*
|
|
15478
|
+
* @summary Update ServiceReviewMedia.
|
|
15479
|
+
* @param {string} serviceReviewId
|
|
15480
|
+
* @param {string} mediaId
|
|
15481
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15482
|
+
* @param {*} [options] Override http request option.
|
|
15483
|
+
* @throws {RequiredError}
|
|
15484
|
+
* @memberof ServiceReviewsApi
|
|
15485
|
+
*/
|
|
15486
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
15487
|
+
/**
|
|
15488
|
+
*
|
|
15489
|
+
* @summary Create ServiceReviewMedia.
|
|
15490
|
+
* @param {string} serviceReviewId
|
|
15491
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15492
|
+
* @param {*} [options] Override http request option.
|
|
15493
|
+
* @throws {RequiredError}
|
|
15494
|
+
* @memberof ServiceReviewsApi
|
|
15495
|
+
*/
|
|
15496
|
+
apiV2ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
15497
|
+
/**
|
|
15498
|
+
*
|
|
15499
|
+
* @summary Update ServiceReview.
|
|
15500
|
+
* @param {string} serviceReviewId
|
|
15501
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
15502
|
+
* @param {*} [options] Override http request option.
|
|
15503
|
+
* @throws {RequiredError}
|
|
15504
|
+
* @memberof ServiceReviewsApi
|
|
15505
|
+
*/
|
|
15506
|
+
apiV2ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
15507
|
+
}
|
|
14062
15508
|
/**
|
|
14063
15509
|
* ServicesApi - axios parameter creator
|
|
14064
15510
|
* @export
|