ch-api-client-typescript2 2.8.10 → 2.8.11
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 +16 -57
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -117
- package/package.json +1 -1
- package/src/api.ts +30 -112
package/lib/api.d.ts
CHANGED
|
@@ -13590,6 +13590,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13590
13590
|
* @param {string} [specialtyId]
|
|
13591
13591
|
* @param {string} [specialtyName]
|
|
13592
13592
|
* @param {string} [specialtyTypeId]
|
|
13593
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13593
13594
|
* @param {string} [title]
|
|
13594
13595
|
* @param {MarketingType} [marketingType]
|
|
13595
13596
|
* @param {string} [languageCode]
|
|
@@ -13602,7 +13603,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13602
13603
|
* @param {*} [options] Override http request option.
|
|
13603
13604
|
* @throws {RequiredError}
|
|
13604
13605
|
*/
|
|
13605
|
-
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13606
|
+
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13606
13607
|
/**
|
|
13607
13608
|
*
|
|
13608
13609
|
* @summary Get all HospitalSpecialties.
|
|
@@ -13612,6 +13613,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13612
13613
|
* @param {string} [specialtyId]
|
|
13613
13614
|
* @param {string} [specialtyName]
|
|
13614
13615
|
* @param {string} [specialtyTypeId]
|
|
13616
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13615
13617
|
* @param {string} [title]
|
|
13616
13618
|
* @param {MarketingType} [marketingType]
|
|
13617
13619
|
* @param {string} [languageCode]
|
|
@@ -13624,7 +13626,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13624
13626
|
* @param {*} [options] Override http request option.
|
|
13625
13627
|
* @throws {RequiredError}
|
|
13626
13628
|
*/
|
|
13627
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13629
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13628
13630
|
/**
|
|
13629
13631
|
*
|
|
13630
13632
|
* @summary Get HospitalSpecialty.
|
|
@@ -13701,18 +13703,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13701
13703
|
* @throws {RequiredError}
|
|
13702
13704
|
*/
|
|
13703
13705
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13704
|
-
/**
|
|
13705
|
-
*
|
|
13706
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
13707
|
-
* @param {string} hospitalId
|
|
13708
|
-
* @param {string} specialtySlug
|
|
13709
|
-
* @param {string} [languageCode]
|
|
13710
|
-
* @param {boolean} [returnDefaultValue]
|
|
13711
|
-
* @param {boolean} [includeServices]
|
|
13712
|
-
* @param {*} [options] Override http request option.
|
|
13713
|
-
* @throws {RequiredError}
|
|
13714
|
-
*/
|
|
13715
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet: (hospitalId: string, specialtySlug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13716
13706
|
/**
|
|
13717
13707
|
*
|
|
13718
13708
|
* @summary Get all Hospitals.
|
|
@@ -13910,6 +13900,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13910
13900
|
* @param {string} [specialtyId]
|
|
13911
13901
|
* @param {string} [specialtyName]
|
|
13912
13902
|
* @param {string} [specialtyTypeId]
|
|
13903
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13913
13904
|
* @param {string} [title]
|
|
13914
13905
|
* @param {MarketingType} [marketingType]
|
|
13915
13906
|
* @param {string} [languageCode]
|
|
@@ -13922,7 +13913,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13922
13913
|
* @param {*} [options] Override http request option.
|
|
13923
13914
|
* @throws {RequiredError}
|
|
13924
13915
|
*/
|
|
13925
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
13916
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
13926
13917
|
/**
|
|
13927
13918
|
*
|
|
13928
13919
|
* @summary Get all HospitalSpecialties.
|
|
@@ -13932,6 +13923,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13932
13923
|
* @param {string} [specialtyId]
|
|
13933
13924
|
* @param {string} [specialtyName]
|
|
13934
13925
|
* @param {string} [specialtyTypeId]
|
|
13926
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13935
13927
|
* @param {string} [title]
|
|
13936
13928
|
* @param {MarketingType} [marketingType]
|
|
13937
13929
|
* @param {string} [languageCode]
|
|
@@ -13944,7 +13936,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13944
13936
|
* @param {*} [options] Override http request option.
|
|
13945
13937
|
* @throws {RequiredError}
|
|
13946
13938
|
*/
|
|
13947
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
|
|
13939
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
|
|
13948
13940
|
/**
|
|
13949
13941
|
*
|
|
13950
13942
|
* @summary Get HospitalSpecialty.
|
|
@@ -14021,18 +14013,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14021
14013
|
* @throws {RequiredError}
|
|
14022
14014
|
*/
|
|
14023
14015
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
14024
|
-
/**
|
|
14025
|
-
*
|
|
14026
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
14027
|
-
* @param {string} hospitalId
|
|
14028
|
-
* @param {string} specialtySlug
|
|
14029
|
-
* @param {string} [languageCode]
|
|
14030
|
-
* @param {boolean} [returnDefaultValue]
|
|
14031
|
-
* @param {boolean} [includeServices]
|
|
14032
|
-
* @param {*} [options] Override http request option.
|
|
14033
|
-
* @throws {RequiredError}
|
|
14034
|
-
*/
|
|
14035
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
14036
14016
|
/**
|
|
14037
14017
|
*
|
|
14038
14018
|
* @summary Get all Hospitals.
|
|
@@ -14230,6 +14210,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14230
14210
|
* @param {string} [specialtyId]
|
|
14231
14211
|
* @param {string} [specialtyName]
|
|
14232
14212
|
* @param {string} [specialtyTypeId]
|
|
14213
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14233
14214
|
* @param {string} [title]
|
|
14234
14215
|
* @param {MarketingType} [marketingType]
|
|
14235
14216
|
* @param {string} [languageCode]
|
|
@@ -14242,7 +14223,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14242
14223
|
* @param {*} [options] Override http request option.
|
|
14243
14224
|
* @throws {RequiredError}
|
|
14244
14225
|
*/
|
|
14245
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
14226
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
14246
14227
|
/**
|
|
14247
14228
|
*
|
|
14248
14229
|
* @summary Get all HospitalSpecialties.
|
|
@@ -14252,6 +14233,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14252
14233
|
* @param {string} [specialtyId]
|
|
14253
14234
|
* @param {string} [specialtyName]
|
|
14254
14235
|
* @param {string} [specialtyTypeId]
|
|
14236
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14255
14237
|
* @param {string} [title]
|
|
14256
14238
|
* @param {MarketingType} [marketingType]
|
|
14257
14239
|
* @param {string} [languageCode]
|
|
@@ -14264,7 +14246,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14264
14246
|
* @param {*} [options] Override http request option.
|
|
14265
14247
|
* @throws {RequiredError}
|
|
14266
14248
|
*/
|
|
14267
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
|
|
14249
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
|
|
14268
14250
|
/**
|
|
14269
14251
|
*
|
|
14270
14252
|
* @summary Get HospitalSpecialty.
|
|
@@ -14341,18 +14323,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14341
14323
|
* @throws {RequiredError}
|
|
14342
14324
|
*/
|
|
14343
14325
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
14344
|
-
/**
|
|
14345
|
-
*
|
|
14346
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
14347
|
-
* @param {string} hospitalId
|
|
14348
|
-
* @param {string} specialtySlug
|
|
14349
|
-
* @param {string} [languageCode]
|
|
14350
|
-
* @param {boolean} [returnDefaultValue]
|
|
14351
|
-
* @param {boolean} [includeServices]
|
|
14352
|
-
* @param {*} [options] Override http request option.
|
|
14353
|
-
* @throws {RequiredError}
|
|
14354
|
-
*/
|
|
14355
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
14356
14326
|
/**
|
|
14357
14327
|
*
|
|
14358
14328
|
* @summary Get all Hospitals.
|
|
@@ -14564,6 +14534,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14564
14534
|
* @param {string} [specialtyId]
|
|
14565
14535
|
* @param {string} [specialtyName]
|
|
14566
14536
|
* @param {string} [specialtyTypeId]
|
|
14537
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14567
14538
|
* @param {string} [title]
|
|
14568
14539
|
* @param {MarketingType} [marketingType]
|
|
14569
14540
|
* @param {string} [languageCode]
|
|
@@ -14577,7 +14548,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14577
14548
|
* @throws {RequiredError}
|
|
14578
14549
|
* @memberof HospitalsApi
|
|
14579
14550
|
*/
|
|
14580
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
|
|
14551
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
|
|
14581
14552
|
/**
|
|
14582
14553
|
*
|
|
14583
14554
|
* @summary Get all HospitalSpecialties.
|
|
@@ -14587,6 +14558,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14587
14558
|
* @param {string} [specialtyId]
|
|
14588
14559
|
* @param {string} [specialtyName]
|
|
14589
14560
|
* @param {string} [specialtyTypeId]
|
|
14561
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14590
14562
|
* @param {string} [title]
|
|
14591
14563
|
* @param {MarketingType} [marketingType]
|
|
14592
14564
|
* @param {string} [languageCode]
|
|
@@ -14600,7 +14572,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14600
14572
|
* @throws {RequiredError}
|
|
14601
14573
|
* @memberof HospitalsApi
|
|
14602
14574
|
*/
|
|
14603
|
-
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
|
|
14575
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
|
|
14604
14576
|
/**
|
|
14605
14577
|
*
|
|
14606
14578
|
* @summary Get HospitalSpecialty.
|
|
@@ -14682,19 +14654,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14682
14654
|
* @memberof HospitalsApi
|
|
14683
14655
|
*/
|
|
14684
14656
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
14685
|
-
/**
|
|
14686
|
-
*
|
|
14687
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
14688
|
-
* @param {string} hospitalId
|
|
14689
|
-
* @param {string} specialtySlug
|
|
14690
|
-
* @param {string} [languageCode]
|
|
14691
|
-
* @param {boolean} [returnDefaultValue]
|
|
14692
|
-
* @param {boolean} [includeServices]
|
|
14693
|
-
* @param {*} [options] Override http request option.
|
|
14694
|
-
* @throws {RequiredError}
|
|
14695
|
-
* @memberof HospitalsApi
|
|
14696
|
-
*/
|
|
14697
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
14698
14657
|
/**
|
|
14699
14658
|
*
|
|
14700
14659
|
* @summary Get all Hospitals.
|