ch-api-client-typescript2 2.6.8 → 2.7.1
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 +733 -28
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1043 -8
- package/package.json +1 -1
- package/src/api.ts +1274 -31
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
|
|
@@ -3556,6 +3629,12 @@ export interface DoctorItemModel {
|
|
|
3556
3629
|
* @memberof DoctorItemModel
|
|
3557
3630
|
*/
|
|
3558
3631
|
'id'?: string;
|
|
3632
|
+
/**
|
|
3633
|
+
*
|
|
3634
|
+
* @type {string}
|
|
3635
|
+
* @memberof DoctorItemModel
|
|
3636
|
+
*/
|
|
3637
|
+
'userType'?: string | null;
|
|
3559
3638
|
/**
|
|
3560
3639
|
*
|
|
3561
3640
|
* @type {string}
|
|
@@ -3634,12 +3713,6 @@ export interface DoctorItemModel {
|
|
|
3634
3713
|
* @memberof DoctorItemModel
|
|
3635
3714
|
*/
|
|
3636
3715
|
'auditableEntity'?: AuditableEntity;
|
|
3637
|
-
/**
|
|
3638
|
-
*
|
|
3639
|
-
* @type {string}
|
|
3640
|
-
* @memberof DoctorItemModel
|
|
3641
|
-
*/
|
|
3642
|
-
'userType'?: string | null;
|
|
3643
3716
|
/**
|
|
3644
3717
|
*
|
|
3645
3718
|
* @type {Array<UserLanguageModel>}
|
|
@@ -3694,6 +3767,30 @@ export interface DoctorItemModel {
|
|
|
3694
3767
|
* @memberof DoctorItemModel
|
|
3695
3768
|
*/
|
|
3696
3769
|
'consultationFee'?: number | null;
|
|
3770
|
+
/**
|
|
3771
|
+
*
|
|
3772
|
+
* @type {number}
|
|
3773
|
+
* @memberof DoctorItemModel
|
|
3774
|
+
*/
|
|
3775
|
+
'doctorSpecialtiesCount'?: number;
|
|
3776
|
+
/**
|
|
3777
|
+
*
|
|
3778
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
3779
|
+
* @memberof DoctorItemModel
|
|
3780
|
+
*/
|
|
3781
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
3782
|
+
/**
|
|
3783
|
+
*
|
|
3784
|
+
* @type {number}
|
|
3785
|
+
* @memberof DoctorItemModel
|
|
3786
|
+
*/
|
|
3787
|
+
'doctorAffiliationsCount'?: number;
|
|
3788
|
+
/**
|
|
3789
|
+
*
|
|
3790
|
+
* @type {Array<HospitalAffiliationModel>}
|
|
3791
|
+
* @memberof DoctorItemModel
|
|
3792
|
+
*/
|
|
3793
|
+
'doctorAffiliations'?: Array<HospitalAffiliationModel> | null;
|
|
3697
3794
|
/**
|
|
3698
3795
|
*
|
|
3699
3796
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -3719,6 +3816,12 @@ export interface DoctorModel {
|
|
|
3719
3816
|
* @memberof DoctorModel
|
|
3720
3817
|
*/
|
|
3721
3818
|
'id'?: string;
|
|
3819
|
+
/**
|
|
3820
|
+
*
|
|
3821
|
+
* @type {string}
|
|
3822
|
+
* @memberof DoctorModel
|
|
3823
|
+
*/
|
|
3824
|
+
'userType'?: string | null;
|
|
3722
3825
|
/**
|
|
3723
3826
|
*
|
|
3724
3827
|
* @type {string}
|
|
@@ -3797,12 +3900,6 @@ export interface DoctorModel {
|
|
|
3797
3900
|
* @memberof DoctorModel
|
|
3798
3901
|
*/
|
|
3799
3902
|
'auditableEntity'?: AuditableEntity;
|
|
3800
|
-
/**
|
|
3801
|
-
*
|
|
3802
|
-
* @type {string}
|
|
3803
|
-
* @memberof DoctorModel
|
|
3804
|
-
*/
|
|
3805
|
-
'userType'?: string | null;
|
|
3806
3903
|
/**
|
|
3807
3904
|
*
|
|
3808
3905
|
* @type {Array<UserLanguageModel>}
|
|
@@ -3857,6 +3954,30 @@ export interface DoctorModel {
|
|
|
3857
3954
|
* @memberof DoctorModel
|
|
3858
3955
|
*/
|
|
3859
3956
|
'consultationFee'?: number | null;
|
|
3957
|
+
/**
|
|
3958
|
+
*
|
|
3959
|
+
* @type {number}
|
|
3960
|
+
* @memberof DoctorModel
|
|
3961
|
+
*/
|
|
3962
|
+
'doctorSpecialtiesCount'?: number;
|
|
3963
|
+
/**
|
|
3964
|
+
*
|
|
3965
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
3966
|
+
* @memberof DoctorModel
|
|
3967
|
+
*/
|
|
3968
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
3969
|
+
/**
|
|
3970
|
+
*
|
|
3971
|
+
* @type {number}
|
|
3972
|
+
* @memberof DoctorModel
|
|
3973
|
+
*/
|
|
3974
|
+
'doctorAffiliationsCount'?: number;
|
|
3975
|
+
/**
|
|
3976
|
+
*
|
|
3977
|
+
* @type {Array<HospitalAffiliationModel>}
|
|
3978
|
+
* @memberof DoctorModel
|
|
3979
|
+
*/
|
|
3980
|
+
'doctorAffiliations'?: Array<HospitalAffiliationModel> | null;
|
|
3860
3981
|
/**
|
|
3861
3982
|
*
|
|
3862
3983
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4012,6 +4133,49 @@ export interface DoctorSpecialtiesModel {
|
|
|
4012
4133
|
*/
|
|
4013
4134
|
'metaData'?: PagedListMetaData;
|
|
4014
4135
|
}
|
|
4136
|
+
/**
|
|
4137
|
+
*
|
|
4138
|
+
* @export
|
|
4139
|
+
* @interface DoctorSpecialtyItemModel
|
|
4140
|
+
*/
|
|
4141
|
+
export interface DoctorSpecialtyItemModel {
|
|
4142
|
+
/**
|
|
4143
|
+
*
|
|
4144
|
+
* @type {string}
|
|
4145
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4146
|
+
*/
|
|
4147
|
+
'specialtyId'?: string;
|
|
4148
|
+
/**
|
|
4149
|
+
*
|
|
4150
|
+
* @type {string}
|
|
4151
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4152
|
+
*/
|
|
4153
|
+
'specialtyName'?: string | null;
|
|
4154
|
+
/**
|
|
4155
|
+
*
|
|
4156
|
+
* @type {string}
|
|
4157
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4158
|
+
*/
|
|
4159
|
+
'specialtySlug'?: string | null;
|
|
4160
|
+
/**
|
|
4161
|
+
*
|
|
4162
|
+
* @type {string}
|
|
4163
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4164
|
+
*/
|
|
4165
|
+
'specialtyTypeId'?: string;
|
|
4166
|
+
/**
|
|
4167
|
+
*
|
|
4168
|
+
* @type {string}
|
|
4169
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4170
|
+
*/
|
|
4171
|
+
'specialtyTypeName'?: string | null;
|
|
4172
|
+
/**
|
|
4173
|
+
*
|
|
4174
|
+
* @type {number}
|
|
4175
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4176
|
+
*/
|
|
4177
|
+
'order'?: number;
|
|
4178
|
+
}
|
|
4015
4179
|
/**
|
|
4016
4180
|
*
|
|
4017
4181
|
* @export
|
|
@@ -4516,6 +4680,55 @@ export interface HospitalAccreditationsModel {
|
|
|
4516
4680
|
*/
|
|
4517
4681
|
'metaData'?: PagedListMetaData;
|
|
4518
4682
|
}
|
|
4683
|
+
/**
|
|
4684
|
+
*
|
|
4685
|
+
* @export
|
|
4686
|
+
* @interface HospitalAffiliationModel
|
|
4687
|
+
*/
|
|
4688
|
+
export interface HospitalAffiliationModel {
|
|
4689
|
+
/**
|
|
4690
|
+
*
|
|
4691
|
+
* @type {string}
|
|
4692
|
+
* @memberof HospitalAffiliationModel
|
|
4693
|
+
*/
|
|
4694
|
+
'hospitalId'?: string;
|
|
4695
|
+
/**
|
|
4696
|
+
*
|
|
4697
|
+
* @type {string}
|
|
4698
|
+
* @memberof HospitalAffiliationModel
|
|
4699
|
+
*/
|
|
4700
|
+
'hospitalName'?: string | null;
|
|
4701
|
+
/**
|
|
4702
|
+
*
|
|
4703
|
+
* @type {string}
|
|
4704
|
+
* @memberof HospitalAffiliationModel
|
|
4705
|
+
*/
|
|
4706
|
+
'hospitalSlug'?: string | null;
|
|
4707
|
+
/**
|
|
4708
|
+
*
|
|
4709
|
+
* @type {string}
|
|
4710
|
+
* @memberof HospitalAffiliationModel
|
|
4711
|
+
*/
|
|
4712
|
+
'countryId'?: string;
|
|
4713
|
+
/**
|
|
4714
|
+
*
|
|
4715
|
+
* @type {string}
|
|
4716
|
+
* @memberof HospitalAffiliationModel
|
|
4717
|
+
*/
|
|
4718
|
+
'countryName'?: string | null;
|
|
4719
|
+
/**
|
|
4720
|
+
*
|
|
4721
|
+
* @type {string}
|
|
4722
|
+
* @memberof HospitalAffiliationModel
|
|
4723
|
+
*/
|
|
4724
|
+
'stateName'?: string | null;
|
|
4725
|
+
/**
|
|
4726
|
+
*
|
|
4727
|
+
* @type {string}
|
|
4728
|
+
* @memberof HospitalAffiliationModel
|
|
4729
|
+
*/
|
|
4730
|
+
'cityName'?: string | null;
|
|
4731
|
+
}
|
|
4519
4732
|
/**
|
|
4520
4733
|
*
|
|
4521
4734
|
* @export
|
|
@@ -6239,6 +6452,12 @@ export interface NotificationModel {
|
|
|
6239
6452
|
* @memberof NotificationModel
|
|
6240
6453
|
*/
|
|
6241
6454
|
'isChecked'?: boolean;
|
|
6455
|
+
/**
|
|
6456
|
+
*
|
|
6457
|
+
* @type {boolean}
|
|
6458
|
+
* @memberof NotificationModel
|
|
6459
|
+
*/
|
|
6460
|
+
'isDeleted'?: boolean;
|
|
6242
6461
|
}
|
|
6243
6462
|
/**
|
|
6244
6463
|
*
|
|
@@ -6344,6 +6563,12 @@ export interface PatientModel {
|
|
|
6344
6563
|
* @memberof PatientModel
|
|
6345
6564
|
*/
|
|
6346
6565
|
'id'?: string;
|
|
6566
|
+
/**
|
|
6567
|
+
*
|
|
6568
|
+
* @type {string}
|
|
6569
|
+
* @memberof PatientModel
|
|
6570
|
+
*/
|
|
6571
|
+
'userType'?: string | null;
|
|
6347
6572
|
/**
|
|
6348
6573
|
*
|
|
6349
6574
|
* @type {string}
|
|
@@ -6422,12 +6647,6 @@ export interface PatientModel {
|
|
|
6422
6647
|
* @memberof PatientModel
|
|
6423
6648
|
*/
|
|
6424
6649
|
'auditableEntity'?: AuditableEntity;
|
|
6425
|
-
/**
|
|
6426
|
-
*
|
|
6427
|
-
* @type {string}
|
|
6428
|
-
* @memberof PatientModel
|
|
6429
|
-
*/
|
|
6430
|
-
'userType'?: string | null;
|
|
6431
6650
|
/**
|
|
6432
6651
|
*
|
|
6433
6652
|
* @type {Array<UserLanguageModel>}
|
|
@@ -7891,6 +8110,12 @@ export interface UserModel {
|
|
|
7891
8110
|
* @memberof UserModel
|
|
7892
8111
|
*/
|
|
7893
8112
|
'id'?: string;
|
|
8113
|
+
/**
|
|
8114
|
+
*
|
|
8115
|
+
* @type {string}
|
|
8116
|
+
* @memberof UserModel
|
|
8117
|
+
*/
|
|
8118
|
+
'userType'?: string | null;
|
|
7894
8119
|
/**
|
|
7895
8120
|
*
|
|
7896
8121
|
* @type {string}
|
|
@@ -7969,12 +8194,6 @@ export interface UserModel {
|
|
|
7969
8194
|
* @memberof UserModel
|
|
7970
8195
|
*/
|
|
7971
8196
|
'auditableEntity'?: AuditableEntity;
|
|
7972
|
-
/**
|
|
7973
|
-
*
|
|
7974
|
-
* @type {string}
|
|
7975
|
-
* @memberof UserModel
|
|
7976
|
-
*/
|
|
7977
|
-
'userType'?: string | null;
|
|
7978
8197
|
/**
|
|
7979
8198
|
*
|
|
7980
8199
|
* @type {Array<UserLanguageModel>}
|
|
@@ -10879,6 +11098,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10879
11098
|
* @param {string} [hospitalId]
|
|
10880
11099
|
* @param {string} [languageCode]
|
|
10881
11100
|
* @param {boolean} [returnDefaultValue]
|
|
11101
|
+
* @param {Array<string>} [ids]
|
|
10882
11102
|
* @param {string} [id]
|
|
10883
11103
|
* @param {string} [fullname]
|
|
10884
11104
|
* @param {string} [email]
|
|
@@ -10892,7 +11112,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10892
11112
|
* @param {*} [options] Override http request option.
|
|
10893
11113
|
* @throws {RequiredError}
|
|
10894
11114
|
*/
|
|
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>;
|
|
11115
|
+
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
11116
|
/**
|
|
10897
11117
|
*
|
|
10898
11118
|
* @param {string} slug
|
|
@@ -11062,6 +11282,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
11062
11282
|
* @param {string} [hospitalId]
|
|
11063
11283
|
* @param {string} [languageCode]
|
|
11064
11284
|
* @param {boolean} [returnDefaultValue]
|
|
11285
|
+
* @param {Array<string>} [ids]
|
|
11065
11286
|
* @param {string} [id]
|
|
11066
11287
|
* @param {string} [fullname]
|
|
11067
11288
|
* @param {string} [email]
|
|
@@ -11075,7 +11296,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
11075
11296
|
* @param {*} [options] Override http request option.
|
|
11076
11297
|
* @throws {RequiredError}
|
|
11077
11298
|
*/
|
|
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>>;
|
|
11299
|
+
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
11300
|
/**
|
|
11080
11301
|
*
|
|
11081
11302
|
* @param {string} slug
|
|
@@ -11245,6 +11466,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
11245
11466
|
* @param {string} [hospitalId]
|
|
11246
11467
|
* @param {string} [languageCode]
|
|
11247
11468
|
* @param {boolean} [returnDefaultValue]
|
|
11469
|
+
* @param {Array<string>} [ids]
|
|
11248
11470
|
* @param {string} [id]
|
|
11249
11471
|
* @param {string} [fullname]
|
|
11250
11472
|
* @param {string} [email]
|
|
@@ -11258,7 +11480,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
11258
11480
|
* @param {*} [options] Override http request option.
|
|
11259
11481
|
* @throws {RequiredError}
|
|
11260
11482
|
*/
|
|
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>;
|
|
11483
|
+
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
11484
|
/**
|
|
11263
11485
|
*
|
|
11264
11486
|
* @param {string} slug
|
|
@@ -11443,6 +11665,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
11443
11665
|
* @param {string} [hospitalId]
|
|
11444
11666
|
* @param {string} [languageCode]
|
|
11445
11667
|
* @param {boolean} [returnDefaultValue]
|
|
11668
|
+
* @param {Array<string>} [ids]
|
|
11446
11669
|
* @param {string} [id]
|
|
11447
11670
|
* @param {string} [fullname]
|
|
11448
11671
|
* @param {string} [email]
|
|
@@ -11457,7 +11680,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
11457
11680
|
* @throws {RequiredError}
|
|
11458
11681
|
* @memberof DoctorsApi
|
|
11459
11682
|
*/
|
|
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>>;
|
|
11683
|
+
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
11684
|
/**
|
|
11462
11685
|
*
|
|
11463
11686
|
* @param {string} slug
|
|
@@ -14059,6 +14282,488 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
14059
14282
|
*/
|
|
14060
14283
|
apiV2ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
14061
14284
|
}
|
|
14285
|
+
/**
|
|
14286
|
+
* SearchApi - axios parameter creator
|
|
14287
|
+
* @export
|
|
14288
|
+
*/
|
|
14289
|
+
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
14290
|
+
/**
|
|
14291
|
+
*
|
|
14292
|
+
* @param {string} keyword
|
|
14293
|
+
* @param {AutocompleteMode} [mode]
|
|
14294
|
+
* @param {boolean} [fuzzy]
|
|
14295
|
+
* @param {boolean} [highlights]
|
|
14296
|
+
* @param {number} [size]
|
|
14297
|
+
* @param {number} [minimumCoverage]
|
|
14298
|
+
* @param {*} [options] Override http request option.
|
|
14299
|
+
* @throws {RequiredError}
|
|
14300
|
+
*/
|
|
14301
|
+
apiV2SearchAutocompleteGet: (keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14302
|
+
/**
|
|
14303
|
+
*
|
|
14304
|
+
* @param {string} [searchTerm]
|
|
14305
|
+
* @param {boolean} [countOnly]
|
|
14306
|
+
* @param {string} [countryId]
|
|
14307
|
+
* @param {string} [hospitalId]
|
|
14308
|
+
* @param {MarketingType} [marketingType]
|
|
14309
|
+
* @param {string} [languageCode]
|
|
14310
|
+
* @param {number} [page]
|
|
14311
|
+
* @param {number} [limit]
|
|
14312
|
+
* @param {Date} [lastRetrieved]
|
|
14313
|
+
* @param {*} [options] Override http request option.
|
|
14314
|
+
* @throws {RequiredError}
|
|
14315
|
+
*/
|
|
14316
|
+
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>;
|
|
14317
|
+
/**
|
|
14318
|
+
*
|
|
14319
|
+
* @param {string} [searchTerm]
|
|
14320
|
+
* @param {boolean} [countOnly]
|
|
14321
|
+
* @param {string} [countryId]
|
|
14322
|
+
* @param {string} [hospitalId]
|
|
14323
|
+
* @param {MarketingType} [marketingType]
|
|
14324
|
+
* @param {string} [languageCode]
|
|
14325
|
+
* @param {number} [page]
|
|
14326
|
+
* @param {number} [limit]
|
|
14327
|
+
* @param {Date} [lastRetrieved]
|
|
14328
|
+
* @param {*} [options] Override http request option.
|
|
14329
|
+
* @throws {RequiredError}
|
|
14330
|
+
*/
|
|
14331
|
+
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>;
|
|
14332
|
+
/**
|
|
14333
|
+
*
|
|
14334
|
+
* @param {string} [searchTerm]
|
|
14335
|
+
* @param {boolean} [countOnly]
|
|
14336
|
+
* @param {string} [countryId]
|
|
14337
|
+
* @param {string} [hospitalId]
|
|
14338
|
+
* @param {MarketingType} [marketingType]
|
|
14339
|
+
* @param {string} [languageCode]
|
|
14340
|
+
* @param {number} [page]
|
|
14341
|
+
* @param {number} [limit]
|
|
14342
|
+
* @param {Date} [lastRetrieved]
|
|
14343
|
+
* @param {*} [options] Override http request option.
|
|
14344
|
+
* @throws {RequiredError}
|
|
14345
|
+
*/
|
|
14346
|
+
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>;
|
|
14347
|
+
/**
|
|
14348
|
+
*
|
|
14349
|
+
* @param {string} [searchTerm]
|
|
14350
|
+
* @param {boolean} [countOnly]
|
|
14351
|
+
* @param {string} [countryId]
|
|
14352
|
+
* @param {string} [hospitalId]
|
|
14353
|
+
* @param {MarketingType} [marketingType]
|
|
14354
|
+
* @param {string} [languageCode]
|
|
14355
|
+
* @param {number} [page]
|
|
14356
|
+
* @param {number} [limit]
|
|
14357
|
+
* @param {Date} [lastRetrieved]
|
|
14358
|
+
* @param {*} [options] Override http request option.
|
|
14359
|
+
* @throws {RequiredError}
|
|
14360
|
+
*/
|
|
14361
|
+
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>;
|
|
14362
|
+
/**
|
|
14363
|
+
*
|
|
14364
|
+
* @param {string} [searchTerm]
|
|
14365
|
+
* @param {boolean} [countOnly]
|
|
14366
|
+
* @param {string} [countryId]
|
|
14367
|
+
* @param {string} [hospitalId]
|
|
14368
|
+
* @param {MarketingType} [marketingType]
|
|
14369
|
+
* @param {string} [languageCode]
|
|
14370
|
+
* @param {number} [page]
|
|
14371
|
+
* @param {number} [limit]
|
|
14372
|
+
* @param {Date} [lastRetrieved]
|
|
14373
|
+
* @param {*} [options] Override http request option.
|
|
14374
|
+
* @throws {RequiredError}
|
|
14375
|
+
*/
|
|
14376
|
+
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>;
|
|
14377
|
+
/**
|
|
14378
|
+
*
|
|
14379
|
+
* @param {string} [searchTerm]
|
|
14380
|
+
* @param {boolean} [countOnly]
|
|
14381
|
+
* @param {string} [countryId]
|
|
14382
|
+
* @param {string} [hospitalId]
|
|
14383
|
+
* @param {MarketingType} [marketingType]
|
|
14384
|
+
* @param {string} [languageCode]
|
|
14385
|
+
* @param {number} [page]
|
|
14386
|
+
* @param {number} [limit]
|
|
14387
|
+
* @param {Date} [lastRetrieved]
|
|
14388
|
+
* @param {*} [options] Override http request option.
|
|
14389
|
+
* @throws {RequiredError}
|
|
14390
|
+
*/
|
|
14391
|
+
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>;
|
|
14392
|
+
/**
|
|
14393
|
+
*
|
|
14394
|
+
* @param {string} keyword
|
|
14395
|
+
* @param {boolean} [fuzzy]
|
|
14396
|
+
* @param {boolean} [highlights]
|
|
14397
|
+
* @param {number} [size]
|
|
14398
|
+
* @param {*} [options] Override http request option.
|
|
14399
|
+
* @throws {RequiredError}
|
|
14400
|
+
*/
|
|
14401
|
+
apiV2SearchSuggestGet: (keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14402
|
+
};
|
|
14403
|
+
/**
|
|
14404
|
+
* SearchApi - functional programming interface
|
|
14405
|
+
* @export
|
|
14406
|
+
*/
|
|
14407
|
+
export declare const SearchApiFp: (configuration?: Configuration | undefined) => {
|
|
14408
|
+
/**
|
|
14409
|
+
*
|
|
14410
|
+
* @param {string} keyword
|
|
14411
|
+
* @param {AutocompleteMode} [mode]
|
|
14412
|
+
* @param {boolean} [fuzzy]
|
|
14413
|
+
* @param {boolean} [highlights]
|
|
14414
|
+
* @param {number} [size]
|
|
14415
|
+
* @param {number} [minimumCoverage]
|
|
14416
|
+
* @param {*} [options] Override http request option.
|
|
14417
|
+
* @throws {RequiredError}
|
|
14418
|
+
*/
|
|
14419
|
+
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>>;
|
|
14420
|
+
/**
|
|
14421
|
+
*
|
|
14422
|
+
* @param {string} [searchTerm]
|
|
14423
|
+
* @param {boolean} [countOnly]
|
|
14424
|
+
* @param {string} [countryId]
|
|
14425
|
+
* @param {string} [hospitalId]
|
|
14426
|
+
* @param {MarketingType} [marketingType]
|
|
14427
|
+
* @param {string} [languageCode]
|
|
14428
|
+
* @param {number} [page]
|
|
14429
|
+
* @param {number} [limit]
|
|
14430
|
+
* @param {Date} [lastRetrieved]
|
|
14431
|
+
* @param {*} [options] Override http request option.
|
|
14432
|
+
* @throws {RequiredError}
|
|
14433
|
+
*/
|
|
14434
|
+
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>>;
|
|
14435
|
+
/**
|
|
14436
|
+
*
|
|
14437
|
+
* @param {string} [searchTerm]
|
|
14438
|
+
* @param {boolean} [countOnly]
|
|
14439
|
+
* @param {string} [countryId]
|
|
14440
|
+
* @param {string} [hospitalId]
|
|
14441
|
+
* @param {MarketingType} [marketingType]
|
|
14442
|
+
* @param {string} [languageCode]
|
|
14443
|
+
* @param {number} [page]
|
|
14444
|
+
* @param {number} [limit]
|
|
14445
|
+
* @param {Date} [lastRetrieved]
|
|
14446
|
+
* @param {*} [options] Override http request option.
|
|
14447
|
+
* @throws {RequiredError}
|
|
14448
|
+
*/
|
|
14449
|
+
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>>;
|
|
14450
|
+
/**
|
|
14451
|
+
*
|
|
14452
|
+
* @param {string} [searchTerm]
|
|
14453
|
+
* @param {boolean} [countOnly]
|
|
14454
|
+
* @param {string} [countryId]
|
|
14455
|
+
* @param {string} [hospitalId]
|
|
14456
|
+
* @param {MarketingType} [marketingType]
|
|
14457
|
+
* @param {string} [languageCode]
|
|
14458
|
+
* @param {number} [page]
|
|
14459
|
+
* @param {number} [limit]
|
|
14460
|
+
* @param {Date} [lastRetrieved]
|
|
14461
|
+
* @param {*} [options] Override http request option.
|
|
14462
|
+
* @throws {RequiredError}
|
|
14463
|
+
*/
|
|
14464
|
+
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>>;
|
|
14465
|
+
/**
|
|
14466
|
+
*
|
|
14467
|
+
* @param {string} [searchTerm]
|
|
14468
|
+
* @param {boolean} [countOnly]
|
|
14469
|
+
* @param {string} [countryId]
|
|
14470
|
+
* @param {string} [hospitalId]
|
|
14471
|
+
* @param {MarketingType} [marketingType]
|
|
14472
|
+
* @param {string} [languageCode]
|
|
14473
|
+
* @param {number} [page]
|
|
14474
|
+
* @param {number} [limit]
|
|
14475
|
+
* @param {Date} [lastRetrieved]
|
|
14476
|
+
* @param {*} [options] Override http request option.
|
|
14477
|
+
* @throws {RequiredError}
|
|
14478
|
+
*/
|
|
14479
|
+
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>>;
|
|
14480
|
+
/**
|
|
14481
|
+
*
|
|
14482
|
+
* @param {string} [searchTerm]
|
|
14483
|
+
* @param {boolean} [countOnly]
|
|
14484
|
+
* @param {string} [countryId]
|
|
14485
|
+
* @param {string} [hospitalId]
|
|
14486
|
+
* @param {MarketingType} [marketingType]
|
|
14487
|
+
* @param {string} [languageCode]
|
|
14488
|
+
* @param {number} [page]
|
|
14489
|
+
* @param {number} [limit]
|
|
14490
|
+
* @param {Date} [lastRetrieved]
|
|
14491
|
+
* @param {*} [options] Override http request option.
|
|
14492
|
+
* @throws {RequiredError}
|
|
14493
|
+
*/
|
|
14494
|
+
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>>;
|
|
14495
|
+
/**
|
|
14496
|
+
*
|
|
14497
|
+
* @param {string} [searchTerm]
|
|
14498
|
+
* @param {boolean} [countOnly]
|
|
14499
|
+
* @param {string} [countryId]
|
|
14500
|
+
* @param {string} [hospitalId]
|
|
14501
|
+
* @param {MarketingType} [marketingType]
|
|
14502
|
+
* @param {string} [languageCode]
|
|
14503
|
+
* @param {number} [page]
|
|
14504
|
+
* @param {number} [limit]
|
|
14505
|
+
* @param {Date} [lastRetrieved]
|
|
14506
|
+
* @param {*} [options] Override http request option.
|
|
14507
|
+
* @throws {RequiredError}
|
|
14508
|
+
*/
|
|
14509
|
+
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>>;
|
|
14510
|
+
/**
|
|
14511
|
+
*
|
|
14512
|
+
* @param {string} keyword
|
|
14513
|
+
* @param {boolean} [fuzzy]
|
|
14514
|
+
* @param {boolean} [highlights]
|
|
14515
|
+
* @param {number} [size]
|
|
14516
|
+
* @param {*} [options] Override http request option.
|
|
14517
|
+
* @throws {RequiredError}
|
|
14518
|
+
*/
|
|
14519
|
+
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceSuggestModel>>;
|
|
14520
|
+
};
|
|
14521
|
+
/**
|
|
14522
|
+
* SearchApi - factory interface
|
|
14523
|
+
* @export
|
|
14524
|
+
*/
|
|
14525
|
+
export declare const SearchApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
14526
|
+
/**
|
|
14527
|
+
*
|
|
14528
|
+
* @param {string} keyword
|
|
14529
|
+
* @param {AutocompleteMode} [mode]
|
|
14530
|
+
* @param {boolean} [fuzzy]
|
|
14531
|
+
* @param {boolean} [highlights]
|
|
14532
|
+
* @param {number} [size]
|
|
14533
|
+
* @param {number} [minimumCoverage]
|
|
14534
|
+
* @param {*} [options] Override http request option.
|
|
14535
|
+
* @throws {RequiredError}
|
|
14536
|
+
*/
|
|
14537
|
+
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: any): AxiosPromise<AzureSearchServiceAutocompleteModel>;
|
|
14538
|
+
/**
|
|
14539
|
+
*
|
|
14540
|
+
* @param {string} [searchTerm]
|
|
14541
|
+
* @param {boolean} [countOnly]
|
|
14542
|
+
* @param {string} [countryId]
|
|
14543
|
+
* @param {string} [hospitalId]
|
|
14544
|
+
* @param {MarketingType} [marketingType]
|
|
14545
|
+
* @param {string} [languageCode]
|
|
14546
|
+
* @param {number} [page]
|
|
14547
|
+
* @param {number} [limit]
|
|
14548
|
+
* @param {Date} [lastRetrieved]
|
|
14549
|
+
* @param {*} [options] Override http request option.
|
|
14550
|
+
* @throws {RequiredError}
|
|
14551
|
+
*/
|
|
14552
|
+
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>;
|
|
14553
|
+
/**
|
|
14554
|
+
*
|
|
14555
|
+
* @param {string} [searchTerm]
|
|
14556
|
+
* @param {boolean} [countOnly]
|
|
14557
|
+
* @param {string} [countryId]
|
|
14558
|
+
* @param {string} [hospitalId]
|
|
14559
|
+
* @param {MarketingType} [marketingType]
|
|
14560
|
+
* @param {string} [languageCode]
|
|
14561
|
+
* @param {number} [page]
|
|
14562
|
+
* @param {number} [limit]
|
|
14563
|
+
* @param {Date} [lastRetrieved]
|
|
14564
|
+
* @param {*} [options] Override http request option.
|
|
14565
|
+
* @throws {RequiredError}
|
|
14566
|
+
*/
|
|
14567
|
+
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>;
|
|
14568
|
+
/**
|
|
14569
|
+
*
|
|
14570
|
+
* @param {string} [searchTerm]
|
|
14571
|
+
* @param {boolean} [countOnly]
|
|
14572
|
+
* @param {string} [countryId]
|
|
14573
|
+
* @param {string} [hospitalId]
|
|
14574
|
+
* @param {MarketingType} [marketingType]
|
|
14575
|
+
* @param {string} [languageCode]
|
|
14576
|
+
* @param {number} [page]
|
|
14577
|
+
* @param {number} [limit]
|
|
14578
|
+
* @param {Date} [lastRetrieved]
|
|
14579
|
+
* @param {*} [options] Override http request option.
|
|
14580
|
+
* @throws {RequiredError}
|
|
14581
|
+
*/
|
|
14582
|
+
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>;
|
|
14583
|
+
/**
|
|
14584
|
+
*
|
|
14585
|
+
* @param {string} [searchTerm]
|
|
14586
|
+
* @param {boolean} [countOnly]
|
|
14587
|
+
* @param {string} [countryId]
|
|
14588
|
+
* @param {string} [hospitalId]
|
|
14589
|
+
* @param {MarketingType} [marketingType]
|
|
14590
|
+
* @param {string} [languageCode]
|
|
14591
|
+
* @param {number} [page]
|
|
14592
|
+
* @param {number} [limit]
|
|
14593
|
+
* @param {Date} [lastRetrieved]
|
|
14594
|
+
* @param {*} [options] Override http request option.
|
|
14595
|
+
* @throws {RequiredError}
|
|
14596
|
+
*/
|
|
14597
|
+
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>;
|
|
14598
|
+
/**
|
|
14599
|
+
*
|
|
14600
|
+
* @param {string} [searchTerm]
|
|
14601
|
+
* @param {boolean} [countOnly]
|
|
14602
|
+
* @param {string} [countryId]
|
|
14603
|
+
* @param {string} [hospitalId]
|
|
14604
|
+
* @param {MarketingType} [marketingType]
|
|
14605
|
+
* @param {string} [languageCode]
|
|
14606
|
+
* @param {number} [page]
|
|
14607
|
+
* @param {number} [limit]
|
|
14608
|
+
* @param {Date} [lastRetrieved]
|
|
14609
|
+
* @param {*} [options] Override http request option.
|
|
14610
|
+
* @throws {RequiredError}
|
|
14611
|
+
*/
|
|
14612
|
+
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>;
|
|
14613
|
+
/**
|
|
14614
|
+
*
|
|
14615
|
+
* @param {string} [searchTerm]
|
|
14616
|
+
* @param {boolean} [countOnly]
|
|
14617
|
+
* @param {string} [countryId]
|
|
14618
|
+
* @param {string} [hospitalId]
|
|
14619
|
+
* @param {MarketingType} [marketingType]
|
|
14620
|
+
* @param {string} [languageCode]
|
|
14621
|
+
* @param {number} [page]
|
|
14622
|
+
* @param {number} [limit]
|
|
14623
|
+
* @param {Date} [lastRetrieved]
|
|
14624
|
+
* @param {*} [options] Override http request option.
|
|
14625
|
+
* @throws {RequiredError}
|
|
14626
|
+
*/
|
|
14627
|
+
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>;
|
|
14628
|
+
/**
|
|
14629
|
+
*
|
|
14630
|
+
* @param {string} keyword
|
|
14631
|
+
* @param {boolean} [fuzzy]
|
|
14632
|
+
* @param {boolean} [highlights]
|
|
14633
|
+
* @param {number} [size]
|
|
14634
|
+
* @param {*} [options] Override http request option.
|
|
14635
|
+
* @throws {RequiredError}
|
|
14636
|
+
*/
|
|
14637
|
+
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: any): AxiosPromise<AzureSearchServiceSuggestModel>;
|
|
14638
|
+
};
|
|
14639
|
+
/**
|
|
14640
|
+
* SearchApi - object-oriented interface
|
|
14641
|
+
* @export
|
|
14642
|
+
* @class SearchApi
|
|
14643
|
+
* @extends {BaseAPI}
|
|
14644
|
+
*/
|
|
14645
|
+
export declare class SearchApi extends BaseAPI {
|
|
14646
|
+
/**
|
|
14647
|
+
*
|
|
14648
|
+
* @param {string} keyword
|
|
14649
|
+
* @param {AutocompleteMode} [mode]
|
|
14650
|
+
* @param {boolean} [fuzzy]
|
|
14651
|
+
* @param {boolean} [highlights]
|
|
14652
|
+
* @param {number} [size]
|
|
14653
|
+
* @param {number} [minimumCoverage]
|
|
14654
|
+
* @param {*} [options] Override http request option.
|
|
14655
|
+
* @throws {RequiredError}
|
|
14656
|
+
* @memberof SearchApi
|
|
14657
|
+
*/
|
|
14658
|
+
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode, fuzzy?: boolean, highlights?: boolean, size?: number, minimumCoverage?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceAutocompleteModel>>;
|
|
14659
|
+
/**
|
|
14660
|
+
*
|
|
14661
|
+
* @param {string} [searchTerm]
|
|
14662
|
+
* @param {boolean} [countOnly]
|
|
14663
|
+
* @param {string} [countryId]
|
|
14664
|
+
* @param {string} [hospitalId]
|
|
14665
|
+
* @param {MarketingType} [marketingType]
|
|
14666
|
+
* @param {string} [languageCode]
|
|
14667
|
+
* @param {number} [page]
|
|
14668
|
+
* @param {number} [limit]
|
|
14669
|
+
* @param {Date} [lastRetrieved]
|
|
14670
|
+
* @param {*} [options] Override http request option.
|
|
14671
|
+
* @throws {RequiredError}
|
|
14672
|
+
* @memberof SearchApi
|
|
14673
|
+
*/
|
|
14674
|
+
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>>;
|
|
14675
|
+
/**
|
|
14676
|
+
*
|
|
14677
|
+
* @param {string} [searchTerm]
|
|
14678
|
+
* @param {boolean} [countOnly]
|
|
14679
|
+
* @param {string} [countryId]
|
|
14680
|
+
* @param {string} [hospitalId]
|
|
14681
|
+
* @param {MarketingType} [marketingType]
|
|
14682
|
+
* @param {string} [languageCode]
|
|
14683
|
+
* @param {number} [page]
|
|
14684
|
+
* @param {number} [limit]
|
|
14685
|
+
* @param {Date} [lastRetrieved]
|
|
14686
|
+
* @param {*} [options] Override http request option.
|
|
14687
|
+
* @throws {RequiredError}
|
|
14688
|
+
* @memberof SearchApi
|
|
14689
|
+
*/
|
|
14690
|
+
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>>;
|
|
14691
|
+
/**
|
|
14692
|
+
*
|
|
14693
|
+
* @param {string} [searchTerm]
|
|
14694
|
+
* @param {boolean} [countOnly]
|
|
14695
|
+
* @param {string} [countryId]
|
|
14696
|
+
* @param {string} [hospitalId]
|
|
14697
|
+
* @param {MarketingType} [marketingType]
|
|
14698
|
+
* @param {string} [languageCode]
|
|
14699
|
+
* @param {number} [page]
|
|
14700
|
+
* @param {number} [limit]
|
|
14701
|
+
* @param {Date} [lastRetrieved]
|
|
14702
|
+
* @param {*} [options] Override http request option.
|
|
14703
|
+
* @throws {RequiredError}
|
|
14704
|
+
* @memberof SearchApi
|
|
14705
|
+
*/
|
|
14706
|
+
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>>;
|
|
14707
|
+
/**
|
|
14708
|
+
*
|
|
14709
|
+
* @param {string} [searchTerm]
|
|
14710
|
+
* @param {boolean} [countOnly]
|
|
14711
|
+
* @param {string} [countryId]
|
|
14712
|
+
* @param {string} [hospitalId]
|
|
14713
|
+
* @param {MarketingType} [marketingType]
|
|
14714
|
+
* @param {string} [languageCode]
|
|
14715
|
+
* @param {number} [page]
|
|
14716
|
+
* @param {number} [limit]
|
|
14717
|
+
* @param {Date} [lastRetrieved]
|
|
14718
|
+
* @param {*} [options] Override http request option.
|
|
14719
|
+
* @throws {RequiredError}
|
|
14720
|
+
* @memberof SearchApi
|
|
14721
|
+
*/
|
|
14722
|
+
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>>;
|
|
14723
|
+
/**
|
|
14724
|
+
*
|
|
14725
|
+
* @param {string} [searchTerm]
|
|
14726
|
+
* @param {boolean} [countOnly]
|
|
14727
|
+
* @param {string} [countryId]
|
|
14728
|
+
* @param {string} [hospitalId]
|
|
14729
|
+
* @param {MarketingType} [marketingType]
|
|
14730
|
+
* @param {string} [languageCode]
|
|
14731
|
+
* @param {number} [page]
|
|
14732
|
+
* @param {number} [limit]
|
|
14733
|
+
* @param {Date} [lastRetrieved]
|
|
14734
|
+
* @param {*} [options] Override http request option.
|
|
14735
|
+
* @throws {RequiredError}
|
|
14736
|
+
* @memberof SearchApi
|
|
14737
|
+
*/
|
|
14738
|
+
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>>;
|
|
14739
|
+
/**
|
|
14740
|
+
*
|
|
14741
|
+
* @param {string} [searchTerm]
|
|
14742
|
+
* @param {boolean} [countOnly]
|
|
14743
|
+
* @param {string} [countryId]
|
|
14744
|
+
* @param {string} [hospitalId]
|
|
14745
|
+
* @param {MarketingType} [marketingType]
|
|
14746
|
+
* @param {string} [languageCode]
|
|
14747
|
+
* @param {number} [page]
|
|
14748
|
+
* @param {number} [limit]
|
|
14749
|
+
* @param {Date} [lastRetrieved]
|
|
14750
|
+
* @param {*} [options] Override http request option.
|
|
14751
|
+
* @throws {RequiredError}
|
|
14752
|
+
* @memberof SearchApi
|
|
14753
|
+
*/
|
|
14754
|
+
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>>;
|
|
14755
|
+
/**
|
|
14756
|
+
*
|
|
14757
|
+
* @param {string} keyword
|
|
14758
|
+
* @param {boolean} [fuzzy]
|
|
14759
|
+
* @param {boolean} [highlights]
|
|
14760
|
+
* @param {number} [size]
|
|
14761
|
+
* @param {*} [options] Override http request option.
|
|
14762
|
+
* @throws {RequiredError}
|
|
14763
|
+
* @memberof SearchApi
|
|
14764
|
+
*/
|
|
14765
|
+
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean, highlights?: boolean, size?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceSuggestModel>>;
|
|
14766
|
+
}
|
|
14062
14767
|
/**
|
|
14063
14768
|
* ServicesApi - axios parameter creator
|
|
14064
14769
|
* @export
|