ch-api-client-typescript2 3.3.0 → 3.3.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 +8 -571
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +17 -1062
- package/package.json +1 -1
- package/src/api.ts +14 -1119
package/lib/api.d.ts
CHANGED
|
@@ -1006,16 +1006,6 @@ export interface AuditableEntity {
|
|
|
1006
1006
|
*/
|
|
1007
1007
|
'isDeleted'?: boolean;
|
|
1008
1008
|
}
|
|
1009
|
-
/**
|
|
1010
|
-
*
|
|
1011
|
-
* @export
|
|
1012
|
-
* @enum {string}
|
|
1013
|
-
*/
|
|
1014
|
-
export declare enum AutocompleteMode {
|
|
1015
|
-
OneTerm = "OneTerm",
|
|
1016
|
-
TwoTerms = "TwoTerms",
|
|
1017
|
-
OneTermWithContext = "OneTermWithContext"
|
|
1018
|
-
}
|
|
1019
1009
|
/**
|
|
1020
1010
|
*
|
|
1021
1011
|
* @export
|
|
@@ -1047,69 +1037,6 @@ export interface AwardModel {
|
|
|
1047
1037
|
*/
|
|
1048
1038
|
'date'?: Date;
|
|
1049
1039
|
}
|
|
1050
|
-
/**
|
|
1051
|
-
*
|
|
1052
|
-
* @export
|
|
1053
|
-
* @interface AzureSearchModel
|
|
1054
|
-
*/
|
|
1055
|
-
export interface AzureSearchModel {
|
|
1056
|
-
/**
|
|
1057
|
-
*
|
|
1058
|
-
* @type {number}
|
|
1059
|
-
* @memberof AzureSearchModel
|
|
1060
|
-
*/
|
|
1061
|
-
'hospitals'?: number;
|
|
1062
|
-
/**
|
|
1063
|
-
*
|
|
1064
|
-
* @type {number}
|
|
1065
|
-
* @memberof AzureSearchModel
|
|
1066
|
-
*/
|
|
1067
|
-
'doctors'?: number;
|
|
1068
|
-
/**
|
|
1069
|
-
*
|
|
1070
|
-
* @type {number}
|
|
1071
|
-
* @memberof AzureSearchModel
|
|
1072
|
-
*/
|
|
1073
|
-
'deals'?: number;
|
|
1074
|
-
/**
|
|
1075
|
-
*
|
|
1076
|
-
* @type {number}
|
|
1077
|
-
* @memberof AzureSearchModel
|
|
1078
|
-
*/
|
|
1079
|
-
'specialties'?: number;
|
|
1080
|
-
/**
|
|
1081
|
-
*
|
|
1082
|
-
* @type {number}
|
|
1083
|
-
* @memberof AzureSearchModel
|
|
1084
|
-
*/
|
|
1085
|
-
'specialtyTypes'?: number;
|
|
1086
|
-
}
|
|
1087
|
-
/**
|
|
1088
|
-
*
|
|
1089
|
-
* @export
|
|
1090
|
-
* @interface AzureSearchServiceAutocompleteModel
|
|
1091
|
-
*/
|
|
1092
|
-
export interface AzureSearchServiceAutocompleteModel {
|
|
1093
|
-
/**
|
|
1094
|
-
*
|
|
1095
|
-
* @type {Array<string>}
|
|
1096
|
-
* @memberof AzureSearchServiceAutocompleteModel
|
|
1097
|
-
*/
|
|
1098
|
-
'values'?: Array<string> | null;
|
|
1099
|
-
}
|
|
1100
|
-
/**
|
|
1101
|
-
*
|
|
1102
|
-
* @export
|
|
1103
|
-
* @interface AzureSearchServiceSuggestModel
|
|
1104
|
-
*/
|
|
1105
|
-
export interface AzureSearchServiceSuggestModel {
|
|
1106
|
-
/**
|
|
1107
|
-
*
|
|
1108
|
-
* @type {Array<string>}
|
|
1109
|
-
* @memberof AzureSearchServiceSuggestModel
|
|
1110
|
-
*/
|
|
1111
|
-
'values'?: Array<string> | null;
|
|
1112
|
-
}
|
|
1113
1040
|
/**
|
|
1114
1041
|
*
|
|
1115
1042
|
* @export
|
|
@@ -14561,7 +14488,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14561
14488
|
* @param {MarketingType} [marketingType]
|
|
14562
14489
|
* @param {string} [specialtyTypeId]
|
|
14563
14490
|
* @param {string} [specialtyId]
|
|
14564
|
-
* @param {string} [serviceId]
|
|
14565
14491
|
* @param {string} [exceptHospitalId]
|
|
14566
14492
|
* @param {boolean} [showHidden]
|
|
14567
14493
|
* @param {string} [languageCode]
|
|
@@ -14574,7 +14500,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14574
14500
|
* @param {*} [options] Override http request option.
|
|
14575
14501
|
* @throws {RequiredError}
|
|
14576
14502
|
*/
|
|
14577
|
-
apiV2HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
14503
|
+
apiV2HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14578
14504
|
/**
|
|
14579
14505
|
*
|
|
14580
14506
|
* @summary Get HospitalAccreditation.
|
|
@@ -14913,7 +14839,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14913
14839
|
* @param {MarketingType} [marketingType]
|
|
14914
14840
|
* @param {string} [specialtyTypeId]
|
|
14915
14841
|
* @param {string} [specialtyId]
|
|
14916
|
-
* @param {string} [serviceId]
|
|
14917
14842
|
* @param {string} [exceptHospitalId]
|
|
14918
14843
|
* @param {boolean} [showHidden]
|
|
14919
14844
|
* @param {string} [languageCode]
|
|
@@ -14926,7 +14851,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14926
14851
|
* @param {*} [options] Override http request option.
|
|
14927
14852
|
* @throws {RequiredError}
|
|
14928
14853
|
*/
|
|
14929
|
-
apiV2HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
14854
|
+
apiV2HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14930
14855
|
/**
|
|
14931
14856
|
*
|
|
14932
14857
|
* @param {string} slug
|
|
@@ -14952,7 +14877,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14952
14877
|
* @param {MarketingType} [marketingType]
|
|
14953
14878
|
* @param {string} [specialtyTypeId]
|
|
14954
14879
|
* @param {string} [specialtyId]
|
|
14955
|
-
* @param {string} [serviceId]
|
|
14956
14880
|
* @param {string} [exceptHospitalId]
|
|
14957
14881
|
* @param {boolean} [showHidden]
|
|
14958
14882
|
* @param {string} [languageCode]
|
|
@@ -14965,7 +14889,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14965
14889
|
* @param {*} [options] Override http request option.
|
|
14966
14890
|
* @throws {RequiredError}
|
|
14967
14891
|
*/
|
|
14968
|
-
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
14892
|
+
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
14969
14893
|
/**
|
|
14970
14894
|
*
|
|
14971
14895
|
* @summary Get HospitalAccreditation.
|
|
@@ -15304,7 +15228,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15304
15228
|
* @param {MarketingType} [marketingType]
|
|
15305
15229
|
* @param {string} [specialtyTypeId]
|
|
15306
15230
|
* @param {string} [specialtyId]
|
|
15307
|
-
* @param {string} [serviceId]
|
|
15308
15231
|
* @param {string} [exceptHospitalId]
|
|
15309
15232
|
* @param {boolean} [showHidden]
|
|
15310
15233
|
* @param {string} [languageCode]
|
|
@@ -15317,7 +15240,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15317
15240
|
* @param {*} [options] Override http request option.
|
|
15318
15241
|
* @throws {RequiredError}
|
|
15319
15242
|
*/
|
|
15320
|
-
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
15243
|
+
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
15321
15244
|
/**
|
|
15322
15245
|
*
|
|
15323
15246
|
* @param {string} slug
|
|
@@ -15343,7 +15266,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15343
15266
|
* @param {MarketingType} [marketingType]
|
|
15344
15267
|
* @param {string} [specialtyTypeId]
|
|
15345
15268
|
* @param {string} [specialtyId]
|
|
15346
|
-
* @param {string} [serviceId]
|
|
15347
15269
|
* @param {string} [exceptHospitalId]
|
|
15348
15270
|
* @param {boolean} [showHidden]
|
|
15349
15271
|
* @param {string} [languageCode]
|
|
@@ -15356,7 +15278,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15356
15278
|
* @param {*} [options] Override http request option.
|
|
15357
15279
|
* @throws {RequiredError}
|
|
15358
15280
|
*/
|
|
15359
|
-
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
15281
|
+
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
15360
15282
|
/**
|
|
15361
15283
|
*
|
|
15362
15284
|
* @summary Get HospitalAccreditation.
|
|
@@ -15695,7 +15617,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15695
15617
|
* @param {MarketingType} [marketingType]
|
|
15696
15618
|
* @param {string} [specialtyTypeId]
|
|
15697
15619
|
* @param {string} [specialtyId]
|
|
15698
|
-
* @param {string} [serviceId]
|
|
15699
15620
|
* @param {string} [exceptHospitalId]
|
|
15700
15621
|
* @param {boolean} [showHidden]
|
|
15701
15622
|
* @param {string} [languageCode]
|
|
@@ -15708,7 +15629,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15708
15629
|
* @param {*} [options] Override http request option.
|
|
15709
15630
|
* @throws {RequiredError}
|
|
15710
15631
|
*/
|
|
15711
|
-
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
15632
|
+
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
15712
15633
|
/**
|
|
15713
15634
|
*
|
|
15714
15635
|
* @param {string} slug
|
|
@@ -15736,7 +15657,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15736
15657
|
* @param {MarketingType} [marketingType]
|
|
15737
15658
|
* @param {string} [specialtyTypeId]
|
|
15738
15659
|
* @param {string} [specialtyId]
|
|
15739
|
-
* @param {string} [serviceId]
|
|
15740
15660
|
* @param {string} [exceptHospitalId]
|
|
15741
15661
|
* @param {boolean} [showHidden]
|
|
15742
15662
|
* @param {string} [languageCode]
|
|
@@ -15750,7 +15670,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15750
15670
|
* @throws {RequiredError}
|
|
15751
15671
|
* @memberof HospitalsApi
|
|
15752
15672
|
*/
|
|
15753
|
-
apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
15673
|
+
apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel, any>>;
|
|
15754
15674
|
/**
|
|
15755
15675
|
*
|
|
15756
15676
|
* @summary Get HospitalAccreditation.
|
|
@@ -16114,7 +16034,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
16114
16034
|
* @param {MarketingType} [marketingType]
|
|
16115
16035
|
* @param {string} [specialtyTypeId]
|
|
16116
16036
|
* @param {string} [specialtyId]
|
|
16117
|
-
* @param {string} [serviceId]
|
|
16118
16037
|
* @param {string} [exceptHospitalId]
|
|
16119
16038
|
* @param {boolean} [showHidden]
|
|
16120
16039
|
* @param {string} [languageCode]
|
|
@@ -16128,7 +16047,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
16128
16047
|
* @throws {RequiredError}
|
|
16129
16048
|
* @memberof HospitalsApi
|
|
16130
16049
|
*/
|
|
16131
|
-
apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
16050
|
+
apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel, any>>;
|
|
16132
16051
|
/**
|
|
16133
16052
|
*
|
|
16134
16053
|
* @param {string} slug
|
|
@@ -17123,488 +17042,6 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
17123
17042
|
*/
|
|
17124
17043
|
apiV2ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
|
|
17125
17044
|
}
|
|
17126
|
-
/**
|
|
17127
|
-
* SearchApi - axios parameter creator
|
|
17128
|
-
* @export
|
|
17129
|
-
*/
|
|
17130
|
-
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
17131
|
-
/**
|
|
17132
|
-
*
|
|
17133
|
-
* @param {string} keyword
|
|
17134
|
-
* @param {AutocompleteMode} [mode]
|
|
17135
|
-
* @param {boolean} [fuzzy]
|
|
17136
|
-
* @param {boolean} [highlights]
|
|
17137
|
-
* @param {number} [size]
|
|
17138
|
-
* @param {number} [minimumCoverage]
|
|
17139
|
-
* @param {*} [options] Override http request option.
|
|
17140
|
-
* @throws {RequiredError}
|
|
17141
|
-
*/
|
|
17142
|
-
apiV2SearchAutocompleteGet: (keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17143
|
-
/**
|
|
17144
|
-
*
|
|
17145
|
-
* @param {string} [searchTerm]
|
|
17146
|
-
* @param {boolean} [countOnly]
|
|
17147
|
-
* @param {string} [countryId]
|
|
17148
|
-
* @param {string} [hospitalId]
|
|
17149
|
-
* @param {MarketingType} [marketingType]
|
|
17150
|
-
* @param {string} [languageCode]
|
|
17151
|
-
* @param {number} [page]
|
|
17152
|
-
* @param {number} [limit]
|
|
17153
|
-
* @param {Date} [lastRetrieved]
|
|
17154
|
-
* @param {*} [options] Override http request option.
|
|
17155
|
-
* @throws {RequiredError}
|
|
17156
|
-
*/
|
|
17157
|
-
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>;
|
|
17158
|
-
/**
|
|
17159
|
-
*
|
|
17160
|
-
* @param {string} [searchTerm]
|
|
17161
|
-
* @param {boolean} [countOnly]
|
|
17162
|
-
* @param {string} [countryId]
|
|
17163
|
-
* @param {string} [hospitalId]
|
|
17164
|
-
* @param {MarketingType} [marketingType]
|
|
17165
|
-
* @param {string} [languageCode]
|
|
17166
|
-
* @param {number} [page]
|
|
17167
|
-
* @param {number} [limit]
|
|
17168
|
-
* @param {Date} [lastRetrieved]
|
|
17169
|
-
* @param {*} [options] Override http request option.
|
|
17170
|
-
* @throws {RequiredError}
|
|
17171
|
-
*/
|
|
17172
|
-
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>;
|
|
17173
|
-
/**
|
|
17174
|
-
*
|
|
17175
|
-
* @param {string} [searchTerm]
|
|
17176
|
-
* @param {boolean} [countOnly]
|
|
17177
|
-
* @param {string} [countryId]
|
|
17178
|
-
* @param {string} [hospitalId]
|
|
17179
|
-
* @param {MarketingType} [marketingType]
|
|
17180
|
-
* @param {string} [languageCode]
|
|
17181
|
-
* @param {number} [page]
|
|
17182
|
-
* @param {number} [limit]
|
|
17183
|
-
* @param {Date} [lastRetrieved]
|
|
17184
|
-
* @param {*} [options] Override http request option.
|
|
17185
|
-
* @throws {RequiredError}
|
|
17186
|
-
*/
|
|
17187
|
-
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>;
|
|
17188
|
-
/**
|
|
17189
|
-
*
|
|
17190
|
-
* @param {string} [searchTerm]
|
|
17191
|
-
* @param {boolean} [countOnly]
|
|
17192
|
-
* @param {string} [countryId]
|
|
17193
|
-
* @param {string} [hospitalId]
|
|
17194
|
-
* @param {MarketingType} [marketingType]
|
|
17195
|
-
* @param {string} [languageCode]
|
|
17196
|
-
* @param {number} [page]
|
|
17197
|
-
* @param {number} [limit]
|
|
17198
|
-
* @param {Date} [lastRetrieved]
|
|
17199
|
-
* @param {*} [options] Override http request option.
|
|
17200
|
-
* @throws {RequiredError}
|
|
17201
|
-
*/
|
|
17202
|
-
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>;
|
|
17203
|
-
/**
|
|
17204
|
-
*
|
|
17205
|
-
* @param {string} [searchTerm]
|
|
17206
|
-
* @param {boolean} [countOnly]
|
|
17207
|
-
* @param {string} [countryId]
|
|
17208
|
-
* @param {string} [hospitalId]
|
|
17209
|
-
* @param {MarketingType} [marketingType]
|
|
17210
|
-
* @param {string} [languageCode]
|
|
17211
|
-
* @param {number} [page]
|
|
17212
|
-
* @param {number} [limit]
|
|
17213
|
-
* @param {Date} [lastRetrieved]
|
|
17214
|
-
* @param {*} [options] Override http request option.
|
|
17215
|
-
* @throws {RequiredError}
|
|
17216
|
-
*/
|
|
17217
|
-
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>;
|
|
17218
|
-
/**
|
|
17219
|
-
*
|
|
17220
|
-
* @param {string} [searchTerm]
|
|
17221
|
-
* @param {boolean} [countOnly]
|
|
17222
|
-
* @param {string} [countryId]
|
|
17223
|
-
* @param {string} [hospitalId]
|
|
17224
|
-
* @param {MarketingType} [marketingType]
|
|
17225
|
-
* @param {string} [languageCode]
|
|
17226
|
-
* @param {number} [page]
|
|
17227
|
-
* @param {number} [limit]
|
|
17228
|
-
* @param {Date} [lastRetrieved]
|
|
17229
|
-
* @param {*} [options] Override http request option.
|
|
17230
|
-
* @throws {RequiredError}
|
|
17231
|
-
*/
|
|
17232
|
-
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>;
|
|
17233
|
-
/**
|
|
17234
|
-
*
|
|
17235
|
-
* @param {string} keyword
|
|
17236
|
-
* @param {boolean} [fuzzy]
|
|
17237
|
-
* @param {boolean} [highlights]
|
|
17238
|
-
* @param {number} [size]
|
|
17239
|
-
* @param {*} [options] Override http request option.
|
|
17240
|
-
* @throws {RequiredError}
|
|
17241
|
-
*/
|
|
17242
|
-
apiV2SearchSuggestGet: (keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17243
|
-
};
|
|
17244
|
-
/**
|
|
17245
|
-
* SearchApi - functional programming interface
|
|
17246
|
-
* @export
|
|
17247
|
-
*/
|
|
17248
|
-
export declare const SearchApiFp: (configuration?: Configuration | undefined) => {
|
|
17249
|
-
/**
|
|
17250
|
-
*
|
|
17251
|
-
* @param {string} keyword
|
|
17252
|
-
* @param {AutocompleteMode} [mode]
|
|
17253
|
-
* @param {boolean} [fuzzy]
|
|
17254
|
-
* @param {boolean} [highlights]
|
|
17255
|
-
* @param {number} [size]
|
|
17256
|
-
* @param {number} [minimumCoverage]
|
|
17257
|
-
* @param {*} [options] Override http request option.
|
|
17258
|
-
* @throws {RequiredError}
|
|
17259
|
-
*/
|
|
17260
|
-
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceAutocompleteModel>>;
|
|
17261
|
-
/**
|
|
17262
|
-
*
|
|
17263
|
-
* @param {string} [searchTerm]
|
|
17264
|
-
* @param {boolean} [countOnly]
|
|
17265
|
-
* @param {string} [countryId]
|
|
17266
|
-
* @param {string} [hospitalId]
|
|
17267
|
-
* @param {MarketingType} [marketingType]
|
|
17268
|
-
* @param {string} [languageCode]
|
|
17269
|
-
* @param {number} [page]
|
|
17270
|
-
* @param {number} [limit]
|
|
17271
|
-
* @param {Date} [lastRetrieved]
|
|
17272
|
-
* @param {*} [options] Override http request option.
|
|
17273
|
-
* @throws {RequiredError}
|
|
17274
|
-
*/
|
|
17275
|
-
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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
17276
|
-
/**
|
|
17277
|
-
*
|
|
17278
|
-
* @param {string} [searchTerm]
|
|
17279
|
-
* @param {boolean} [countOnly]
|
|
17280
|
-
* @param {string} [countryId]
|
|
17281
|
-
* @param {string} [hospitalId]
|
|
17282
|
-
* @param {MarketingType} [marketingType]
|
|
17283
|
-
* @param {string} [languageCode]
|
|
17284
|
-
* @param {number} [page]
|
|
17285
|
-
* @param {number} [limit]
|
|
17286
|
-
* @param {Date} [lastRetrieved]
|
|
17287
|
-
* @param {*} [options] Override http request option.
|
|
17288
|
-
* @throws {RequiredError}
|
|
17289
|
-
*/
|
|
17290
|
-
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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
17291
|
-
/**
|
|
17292
|
-
*
|
|
17293
|
-
* @param {string} [searchTerm]
|
|
17294
|
-
* @param {boolean} [countOnly]
|
|
17295
|
-
* @param {string} [countryId]
|
|
17296
|
-
* @param {string} [hospitalId]
|
|
17297
|
-
* @param {MarketingType} [marketingType]
|
|
17298
|
-
* @param {string} [languageCode]
|
|
17299
|
-
* @param {number} [page]
|
|
17300
|
-
* @param {number} [limit]
|
|
17301
|
-
* @param {Date} [lastRetrieved]
|
|
17302
|
-
* @param {*} [options] Override http request option.
|
|
17303
|
-
* @throws {RequiredError}
|
|
17304
|
-
*/
|
|
17305
|
-
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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchModel>>;
|
|
17306
|
-
/**
|
|
17307
|
-
*
|
|
17308
|
-
* @param {string} [searchTerm]
|
|
17309
|
-
* @param {boolean} [countOnly]
|
|
17310
|
-
* @param {string} [countryId]
|
|
17311
|
-
* @param {string} [hospitalId]
|
|
17312
|
-
* @param {MarketingType} [marketingType]
|
|
17313
|
-
* @param {string} [languageCode]
|
|
17314
|
-
* @param {number} [page]
|
|
17315
|
-
* @param {number} [limit]
|
|
17316
|
-
* @param {Date} [lastRetrieved]
|
|
17317
|
-
* @param {*} [options] Override http request option.
|
|
17318
|
-
* @throws {RequiredError}
|
|
17319
|
-
*/
|
|
17320
|
-
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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
17321
|
-
/**
|
|
17322
|
-
*
|
|
17323
|
-
* @param {string} [searchTerm]
|
|
17324
|
-
* @param {boolean} [countOnly]
|
|
17325
|
-
* @param {string} [countryId]
|
|
17326
|
-
* @param {string} [hospitalId]
|
|
17327
|
-
* @param {MarketingType} [marketingType]
|
|
17328
|
-
* @param {string} [languageCode]
|
|
17329
|
-
* @param {number} [page]
|
|
17330
|
-
* @param {number} [limit]
|
|
17331
|
-
* @param {Date} [lastRetrieved]
|
|
17332
|
-
* @param {*} [options] Override http request option.
|
|
17333
|
-
* @throws {RequiredError}
|
|
17334
|
-
*/
|
|
17335
|
-
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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
17336
|
-
/**
|
|
17337
|
-
*
|
|
17338
|
-
* @param {string} [searchTerm]
|
|
17339
|
-
* @param {boolean} [countOnly]
|
|
17340
|
-
* @param {string} [countryId]
|
|
17341
|
-
* @param {string} [hospitalId]
|
|
17342
|
-
* @param {MarketingType} [marketingType]
|
|
17343
|
-
* @param {string} [languageCode]
|
|
17344
|
-
* @param {number} [page]
|
|
17345
|
-
* @param {number} [limit]
|
|
17346
|
-
* @param {Date} [lastRetrieved]
|
|
17347
|
-
* @param {*} [options] Override http request option.
|
|
17348
|
-
* @throws {RequiredError}
|
|
17349
|
-
*/
|
|
17350
|
-
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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
|
|
17351
|
-
/**
|
|
17352
|
-
*
|
|
17353
|
-
* @param {string} keyword
|
|
17354
|
-
* @param {boolean} [fuzzy]
|
|
17355
|
-
* @param {boolean} [highlights]
|
|
17356
|
-
* @param {number} [size]
|
|
17357
|
-
* @param {*} [options] Override http request option.
|
|
17358
|
-
* @throws {RequiredError}
|
|
17359
|
-
*/
|
|
17360
|
-
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceSuggestModel>>;
|
|
17361
|
-
};
|
|
17362
|
-
/**
|
|
17363
|
-
* SearchApi - factory interface
|
|
17364
|
-
* @export
|
|
17365
|
-
*/
|
|
17366
|
-
export declare const SearchApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
17367
|
-
/**
|
|
17368
|
-
*
|
|
17369
|
-
* @param {string} keyword
|
|
17370
|
-
* @param {AutocompleteMode} [mode]
|
|
17371
|
-
* @param {boolean} [fuzzy]
|
|
17372
|
-
* @param {boolean} [highlights]
|
|
17373
|
-
* @param {number} [size]
|
|
17374
|
-
* @param {number} [minimumCoverage]
|
|
17375
|
-
* @param {*} [options] Override http request option.
|
|
17376
|
-
* @throws {RequiredError}
|
|
17377
|
-
*/
|
|
17378
|
-
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: any): AxiosPromise<AzureSearchServiceAutocompleteModel>;
|
|
17379
|
-
/**
|
|
17380
|
-
*
|
|
17381
|
-
* @param {string} [searchTerm]
|
|
17382
|
-
* @param {boolean} [countOnly]
|
|
17383
|
-
* @param {string} [countryId]
|
|
17384
|
-
* @param {string} [hospitalId]
|
|
17385
|
-
* @param {MarketingType} [marketingType]
|
|
17386
|
-
* @param {string} [languageCode]
|
|
17387
|
-
* @param {number} [page]
|
|
17388
|
-
* @param {number} [limit]
|
|
17389
|
-
* @param {Date} [lastRetrieved]
|
|
17390
|
-
* @param {*} [options] Override http request option.
|
|
17391
|
-
* @throws {RequiredError}
|
|
17392
|
-
*/
|
|
17393
|
-
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>;
|
|
17394
|
-
/**
|
|
17395
|
-
*
|
|
17396
|
-
* @param {string} [searchTerm]
|
|
17397
|
-
* @param {boolean} [countOnly]
|
|
17398
|
-
* @param {string} [countryId]
|
|
17399
|
-
* @param {string} [hospitalId]
|
|
17400
|
-
* @param {MarketingType} [marketingType]
|
|
17401
|
-
* @param {string} [languageCode]
|
|
17402
|
-
* @param {number} [page]
|
|
17403
|
-
* @param {number} [limit]
|
|
17404
|
-
* @param {Date} [lastRetrieved]
|
|
17405
|
-
* @param {*} [options] Override http request option.
|
|
17406
|
-
* @throws {RequiredError}
|
|
17407
|
-
*/
|
|
17408
|
-
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>;
|
|
17409
|
-
/**
|
|
17410
|
-
*
|
|
17411
|
-
* @param {string} [searchTerm]
|
|
17412
|
-
* @param {boolean} [countOnly]
|
|
17413
|
-
* @param {string} [countryId]
|
|
17414
|
-
* @param {string} [hospitalId]
|
|
17415
|
-
* @param {MarketingType} [marketingType]
|
|
17416
|
-
* @param {string} [languageCode]
|
|
17417
|
-
* @param {number} [page]
|
|
17418
|
-
* @param {number} [limit]
|
|
17419
|
-
* @param {Date} [lastRetrieved]
|
|
17420
|
-
* @param {*} [options] Override http request option.
|
|
17421
|
-
* @throws {RequiredError}
|
|
17422
|
-
*/
|
|
17423
|
-
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>;
|
|
17424
|
-
/**
|
|
17425
|
-
*
|
|
17426
|
-
* @param {string} [searchTerm]
|
|
17427
|
-
* @param {boolean} [countOnly]
|
|
17428
|
-
* @param {string} [countryId]
|
|
17429
|
-
* @param {string} [hospitalId]
|
|
17430
|
-
* @param {MarketingType} [marketingType]
|
|
17431
|
-
* @param {string} [languageCode]
|
|
17432
|
-
* @param {number} [page]
|
|
17433
|
-
* @param {number} [limit]
|
|
17434
|
-
* @param {Date} [lastRetrieved]
|
|
17435
|
-
* @param {*} [options] Override http request option.
|
|
17436
|
-
* @throws {RequiredError}
|
|
17437
|
-
*/
|
|
17438
|
-
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>;
|
|
17439
|
-
/**
|
|
17440
|
-
*
|
|
17441
|
-
* @param {string} [searchTerm]
|
|
17442
|
-
* @param {boolean} [countOnly]
|
|
17443
|
-
* @param {string} [countryId]
|
|
17444
|
-
* @param {string} [hospitalId]
|
|
17445
|
-
* @param {MarketingType} [marketingType]
|
|
17446
|
-
* @param {string} [languageCode]
|
|
17447
|
-
* @param {number} [page]
|
|
17448
|
-
* @param {number} [limit]
|
|
17449
|
-
* @param {Date} [lastRetrieved]
|
|
17450
|
-
* @param {*} [options] Override http request option.
|
|
17451
|
-
* @throws {RequiredError}
|
|
17452
|
-
*/
|
|
17453
|
-
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>;
|
|
17454
|
-
/**
|
|
17455
|
-
*
|
|
17456
|
-
* @param {string} [searchTerm]
|
|
17457
|
-
* @param {boolean} [countOnly]
|
|
17458
|
-
* @param {string} [countryId]
|
|
17459
|
-
* @param {string} [hospitalId]
|
|
17460
|
-
* @param {MarketingType} [marketingType]
|
|
17461
|
-
* @param {string} [languageCode]
|
|
17462
|
-
* @param {number} [page]
|
|
17463
|
-
* @param {number} [limit]
|
|
17464
|
-
* @param {Date} [lastRetrieved]
|
|
17465
|
-
* @param {*} [options] Override http request option.
|
|
17466
|
-
* @throws {RequiredError}
|
|
17467
|
-
*/
|
|
17468
|
-
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>;
|
|
17469
|
-
/**
|
|
17470
|
-
*
|
|
17471
|
-
* @param {string} keyword
|
|
17472
|
-
* @param {boolean} [fuzzy]
|
|
17473
|
-
* @param {boolean} [highlights]
|
|
17474
|
-
* @param {number} [size]
|
|
17475
|
-
* @param {*} [options] Override http request option.
|
|
17476
|
-
* @throws {RequiredError}
|
|
17477
|
-
*/
|
|
17478
|
-
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: any): AxiosPromise<AzureSearchServiceSuggestModel>;
|
|
17479
|
-
};
|
|
17480
|
-
/**
|
|
17481
|
-
* SearchApi - object-oriented interface
|
|
17482
|
-
* @export
|
|
17483
|
-
* @class SearchApi
|
|
17484
|
-
* @extends {BaseAPI}
|
|
17485
|
-
*/
|
|
17486
|
-
export declare class SearchApi extends BaseAPI {
|
|
17487
|
-
/**
|
|
17488
|
-
*
|
|
17489
|
-
* @param {string} keyword
|
|
17490
|
-
* @param {AutocompleteMode} [mode]
|
|
17491
|
-
* @param {boolean} [fuzzy]
|
|
17492
|
-
* @param {boolean} [highlights]
|
|
17493
|
-
* @param {number} [size]
|
|
17494
|
-
* @param {number} [minimumCoverage]
|
|
17495
|
-
* @param {*} [options] Override http request option.
|
|
17496
|
-
* @throws {RequiredError}
|
|
17497
|
-
* @memberof SearchApi
|
|
17498
|
-
*/
|
|
17499
|
-
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode, fuzzy?: boolean, highlights?: boolean, size?: number, minimumCoverage?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceAutocompleteModel, any>>;
|
|
17500
|
-
/**
|
|
17501
|
-
*
|
|
17502
|
-
* @param {string} [searchTerm]
|
|
17503
|
-
* @param {boolean} [countOnly]
|
|
17504
|
-
* @param {string} [countryId]
|
|
17505
|
-
* @param {string} [hospitalId]
|
|
17506
|
-
* @param {MarketingType} [marketingType]
|
|
17507
|
-
* @param {string} [languageCode]
|
|
17508
|
-
* @param {number} [page]
|
|
17509
|
-
* @param {number} [limit]
|
|
17510
|
-
* @param {Date} [lastRetrieved]
|
|
17511
|
-
* @param {*} [options] Override http request option.
|
|
17512
|
-
* @throws {RequiredError}
|
|
17513
|
-
* @memberof SearchApi
|
|
17514
|
-
*/
|
|
17515
|
-
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, any>>;
|
|
17516
|
-
/**
|
|
17517
|
-
*
|
|
17518
|
-
* @param {string} [searchTerm]
|
|
17519
|
-
* @param {boolean} [countOnly]
|
|
17520
|
-
* @param {string} [countryId]
|
|
17521
|
-
* @param {string} [hospitalId]
|
|
17522
|
-
* @param {MarketingType} [marketingType]
|
|
17523
|
-
* @param {string} [languageCode]
|
|
17524
|
-
* @param {number} [page]
|
|
17525
|
-
* @param {number} [limit]
|
|
17526
|
-
* @param {Date} [lastRetrieved]
|
|
17527
|
-
* @param {*} [options] Override http request option.
|
|
17528
|
-
* @throws {RequiredError}
|
|
17529
|
-
* @memberof SearchApi
|
|
17530
|
-
*/
|
|
17531
|
-
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, any>>;
|
|
17532
|
-
/**
|
|
17533
|
-
*
|
|
17534
|
-
* @param {string} [searchTerm]
|
|
17535
|
-
* @param {boolean} [countOnly]
|
|
17536
|
-
* @param {string} [countryId]
|
|
17537
|
-
* @param {string} [hospitalId]
|
|
17538
|
-
* @param {MarketingType} [marketingType]
|
|
17539
|
-
* @param {string} [languageCode]
|
|
17540
|
-
* @param {number} [page]
|
|
17541
|
-
* @param {number} [limit]
|
|
17542
|
-
* @param {Date} [lastRetrieved]
|
|
17543
|
-
* @param {*} [options] Override http request option.
|
|
17544
|
-
* @throws {RequiredError}
|
|
17545
|
-
* @memberof SearchApi
|
|
17546
|
-
*/
|
|
17547
|
-
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, any>>;
|
|
17548
|
-
/**
|
|
17549
|
-
*
|
|
17550
|
-
* @param {string} [searchTerm]
|
|
17551
|
-
* @param {boolean} [countOnly]
|
|
17552
|
-
* @param {string} [countryId]
|
|
17553
|
-
* @param {string} [hospitalId]
|
|
17554
|
-
* @param {MarketingType} [marketingType]
|
|
17555
|
-
* @param {string} [languageCode]
|
|
17556
|
-
* @param {number} [page]
|
|
17557
|
-
* @param {number} [limit]
|
|
17558
|
-
* @param {Date} [lastRetrieved]
|
|
17559
|
-
* @param {*} [options] Override http request option.
|
|
17560
|
-
* @throws {RequiredError}
|
|
17561
|
-
* @memberof SearchApi
|
|
17562
|
-
*/
|
|
17563
|
-
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, any>>;
|
|
17564
|
-
/**
|
|
17565
|
-
*
|
|
17566
|
-
* @param {string} [searchTerm]
|
|
17567
|
-
* @param {boolean} [countOnly]
|
|
17568
|
-
* @param {string} [countryId]
|
|
17569
|
-
* @param {string} [hospitalId]
|
|
17570
|
-
* @param {MarketingType} [marketingType]
|
|
17571
|
-
* @param {string} [languageCode]
|
|
17572
|
-
* @param {number} [page]
|
|
17573
|
-
* @param {number} [limit]
|
|
17574
|
-
* @param {Date} [lastRetrieved]
|
|
17575
|
-
* @param {*} [options] Override http request option.
|
|
17576
|
-
* @throws {RequiredError}
|
|
17577
|
-
* @memberof SearchApi
|
|
17578
|
-
*/
|
|
17579
|
-
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, any>>;
|
|
17580
|
-
/**
|
|
17581
|
-
*
|
|
17582
|
-
* @param {string} [searchTerm]
|
|
17583
|
-
* @param {boolean} [countOnly]
|
|
17584
|
-
* @param {string} [countryId]
|
|
17585
|
-
* @param {string} [hospitalId]
|
|
17586
|
-
* @param {MarketingType} [marketingType]
|
|
17587
|
-
* @param {string} [languageCode]
|
|
17588
|
-
* @param {number} [page]
|
|
17589
|
-
* @param {number} [limit]
|
|
17590
|
-
* @param {Date} [lastRetrieved]
|
|
17591
|
-
* @param {*} [options] Override http request option.
|
|
17592
|
-
* @throws {RequiredError}
|
|
17593
|
-
* @memberof SearchApi
|
|
17594
|
-
*/
|
|
17595
|
-
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, any>>;
|
|
17596
|
-
/**
|
|
17597
|
-
*
|
|
17598
|
-
* @param {string} keyword
|
|
17599
|
-
* @param {boolean} [fuzzy]
|
|
17600
|
-
* @param {boolean} [highlights]
|
|
17601
|
-
* @param {number} [size]
|
|
17602
|
-
* @param {*} [options] Override http request option.
|
|
17603
|
-
* @throws {RequiredError}
|
|
17604
|
-
* @memberof SearchApi
|
|
17605
|
-
*/
|
|
17606
|
-
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean, highlights?: boolean, size?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceSuggestModel, any>>;
|
|
17607
|
-
}
|
|
17608
17045
|
/**
|
|
17609
17046
|
* ServiceReviewsApi - axios parameter creator
|
|
17610
17047
|
* @export
|