ch-api-client-typescript2 2.8.9 → 2.8.12
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 +46 -57
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -117
- package/package.json +1 -1
- package/src/api.ts +60 -112
package/lib/api.d.ts
CHANGED
|
@@ -5546,6 +5546,12 @@ export interface HospitalItemModel {
|
|
|
5546
5546
|
* @memberof HospitalItemModel
|
|
5547
5547
|
*/
|
|
5548
5548
|
'timeZone'?: string | null;
|
|
5549
|
+
/**
|
|
5550
|
+
*
|
|
5551
|
+
* @type {string}
|
|
5552
|
+
* @memberof HospitalItemModel
|
|
5553
|
+
*/
|
|
5554
|
+
'websiteUrl'?: string | null;
|
|
5549
5555
|
/**
|
|
5550
5556
|
*
|
|
5551
5557
|
* @type {number}
|
|
@@ -5763,6 +5769,12 @@ export interface HospitalModel {
|
|
|
5763
5769
|
* @memberof HospitalModel
|
|
5764
5770
|
*/
|
|
5765
5771
|
'timeZone'?: string | null;
|
|
5772
|
+
/**
|
|
5773
|
+
*
|
|
5774
|
+
* @type {string}
|
|
5775
|
+
* @memberof HospitalModel
|
|
5776
|
+
*/
|
|
5777
|
+
'websiteUrl'?: string | null;
|
|
5766
5778
|
/**
|
|
5767
5779
|
*
|
|
5768
5780
|
* @type {number}
|
|
@@ -5926,6 +5938,12 @@ export interface HospitalServiceItemModel {
|
|
|
5926
5938
|
* @memberof HospitalServiceItemModel
|
|
5927
5939
|
*/
|
|
5928
5940
|
'hospitalName'?: string | null;
|
|
5941
|
+
/**
|
|
5942
|
+
*
|
|
5943
|
+
* @type {string}
|
|
5944
|
+
* @memberof HospitalServiceItemModel
|
|
5945
|
+
*/
|
|
5946
|
+
'hospitalSlug'?: string | null;
|
|
5929
5947
|
/**
|
|
5930
5948
|
*
|
|
5931
5949
|
* @type {string}
|
|
@@ -6083,6 +6101,12 @@ export interface HospitalServiceModel {
|
|
|
6083
6101
|
* @memberof HospitalServiceModel
|
|
6084
6102
|
*/
|
|
6085
6103
|
'hospitalName'?: string | null;
|
|
6104
|
+
/**
|
|
6105
|
+
*
|
|
6106
|
+
* @type {string}
|
|
6107
|
+
* @memberof HospitalServiceModel
|
|
6108
|
+
*/
|
|
6109
|
+
'hospitalSlug'?: string | null;
|
|
6086
6110
|
/**
|
|
6087
6111
|
*
|
|
6088
6112
|
* @type {string}
|
|
@@ -6588,6 +6612,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6588
6612
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6589
6613
|
*/
|
|
6590
6614
|
'id'?: string;
|
|
6615
|
+
/**
|
|
6616
|
+
*
|
|
6617
|
+
* @type {string}
|
|
6618
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6619
|
+
*/
|
|
6620
|
+
'title'?: string | null;
|
|
6591
6621
|
/**
|
|
6592
6622
|
*
|
|
6593
6623
|
* @type {string}
|
|
@@ -13572,6 +13602,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13572
13602
|
* @param {string} [specialtyId]
|
|
13573
13603
|
* @param {string} [specialtyName]
|
|
13574
13604
|
* @param {string} [specialtyTypeId]
|
|
13605
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13575
13606
|
* @param {string} [title]
|
|
13576
13607
|
* @param {MarketingType} [marketingType]
|
|
13577
13608
|
* @param {string} [languageCode]
|
|
@@ -13584,7 +13615,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13584
13615
|
* @param {*} [options] Override http request option.
|
|
13585
13616
|
* @throws {RequiredError}
|
|
13586
13617
|
*/
|
|
13587
|
-
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>;
|
|
13618
|
+
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>;
|
|
13588
13619
|
/**
|
|
13589
13620
|
*
|
|
13590
13621
|
* @summary Get all HospitalSpecialties.
|
|
@@ -13594,6 +13625,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13594
13625
|
* @param {string} [specialtyId]
|
|
13595
13626
|
* @param {string} [specialtyName]
|
|
13596
13627
|
* @param {string} [specialtyTypeId]
|
|
13628
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13597
13629
|
* @param {string} [title]
|
|
13598
13630
|
* @param {MarketingType} [marketingType]
|
|
13599
13631
|
* @param {string} [languageCode]
|
|
@@ -13606,7 +13638,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13606
13638
|
* @param {*} [options] Override http request option.
|
|
13607
13639
|
* @throws {RequiredError}
|
|
13608
13640
|
*/
|
|
13609
|
-
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>;
|
|
13641
|
+
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>;
|
|
13610
13642
|
/**
|
|
13611
13643
|
*
|
|
13612
13644
|
* @summary Get HospitalSpecialty.
|
|
@@ -13683,18 +13715,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13683
13715
|
* @throws {RequiredError}
|
|
13684
13716
|
*/
|
|
13685
13717
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13686
|
-
/**
|
|
13687
|
-
*
|
|
13688
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
13689
|
-
* @param {string} hospitalId
|
|
13690
|
-
* @param {string} specialtySlug
|
|
13691
|
-
* @param {string} [languageCode]
|
|
13692
|
-
* @param {boolean} [returnDefaultValue]
|
|
13693
|
-
* @param {boolean} [includeServices]
|
|
13694
|
-
* @param {*} [options] Override http request option.
|
|
13695
|
-
* @throws {RequiredError}
|
|
13696
|
-
*/
|
|
13697
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet: (hospitalId: string, specialtySlug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13698
13718
|
/**
|
|
13699
13719
|
*
|
|
13700
13720
|
* @summary Get all Hospitals.
|
|
@@ -13892,6 +13912,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13892
13912
|
* @param {string} [specialtyId]
|
|
13893
13913
|
* @param {string} [specialtyName]
|
|
13894
13914
|
* @param {string} [specialtyTypeId]
|
|
13915
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13895
13916
|
* @param {string} [title]
|
|
13896
13917
|
* @param {MarketingType} [marketingType]
|
|
13897
13918
|
* @param {string} [languageCode]
|
|
@@ -13904,7 +13925,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13904
13925
|
* @param {*} [options] Override http request option.
|
|
13905
13926
|
* @throws {RequiredError}
|
|
13906
13927
|
*/
|
|
13907
|
-
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>>;
|
|
13928
|
+
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>>;
|
|
13908
13929
|
/**
|
|
13909
13930
|
*
|
|
13910
13931
|
* @summary Get all HospitalSpecialties.
|
|
@@ -13914,6 +13935,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13914
13935
|
* @param {string} [specialtyId]
|
|
13915
13936
|
* @param {string} [specialtyName]
|
|
13916
13937
|
* @param {string} [specialtyTypeId]
|
|
13938
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13917
13939
|
* @param {string} [title]
|
|
13918
13940
|
* @param {MarketingType} [marketingType]
|
|
13919
13941
|
* @param {string} [languageCode]
|
|
@@ -13926,7 +13948,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13926
13948
|
* @param {*} [options] Override http request option.
|
|
13927
13949
|
* @throws {RequiredError}
|
|
13928
13950
|
*/
|
|
13929
|
-
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>>;
|
|
13951
|
+
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>>;
|
|
13930
13952
|
/**
|
|
13931
13953
|
*
|
|
13932
13954
|
* @summary Get HospitalSpecialty.
|
|
@@ -14003,18 +14025,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14003
14025
|
* @throws {RequiredError}
|
|
14004
14026
|
*/
|
|
14005
14027
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
14006
|
-
/**
|
|
14007
|
-
*
|
|
14008
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
14009
|
-
* @param {string} hospitalId
|
|
14010
|
-
* @param {string} specialtySlug
|
|
14011
|
-
* @param {string} [languageCode]
|
|
14012
|
-
* @param {boolean} [returnDefaultValue]
|
|
14013
|
-
* @param {boolean} [includeServices]
|
|
14014
|
-
* @param {*} [options] Override http request option.
|
|
14015
|
-
* @throws {RequiredError}
|
|
14016
|
-
*/
|
|
14017
|
-
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>>;
|
|
14018
14028
|
/**
|
|
14019
14029
|
*
|
|
14020
14030
|
* @summary Get all Hospitals.
|
|
@@ -14212,6 +14222,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14212
14222
|
* @param {string} [specialtyId]
|
|
14213
14223
|
* @param {string} [specialtyName]
|
|
14214
14224
|
* @param {string} [specialtyTypeId]
|
|
14225
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14215
14226
|
* @param {string} [title]
|
|
14216
14227
|
* @param {MarketingType} [marketingType]
|
|
14217
14228
|
* @param {string} [languageCode]
|
|
@@ -14224,7 +14235,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14224
14235
|
* @param {*} [options] Override http request option.
|
|
14225
14236
|
* @throws {RequiredError}
|
|
14226
14237
|
*/
|
|
14227
|
-
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>;
|
|
14238
|
+
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>;
|
|
14228
14239
|
/**
|
|
14229
14240
|
*
|
|
14230
14241
|
* @summary Get all HospitalSpecialties.
|
|
@@ -14234,6 +14245,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14234
14245
|
* @param {string} [specialtyId]
|
|
14235
14246
|
* @param {string} [specialtyName]
|
|
14236
14247
|
* @param {string} [specialtyTypeId]
|
|
14248
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14237
14249
|
* @param {string} [title]
|
|
14238
14250
|
* @param {MarketingType} [marketingType]
|
|
14239
14251
|
* @param {string} [languageCode]
|
|
@@ -14246,7 +14258,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14246
14258
|
* @param {*} [options] Override http request option.
|
|
14247
14259
|
* @throws {RequiredError}
|
|
14248
14260
|
*/
|
|
14249
|
-
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>;
|
|
14261
|
+
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>;
|
|
14250
14262
|
/**
|
|
14251
14263
|
*
|
|
14252
14264
|
* @summary Get HospitalSpecialty.
|
|
@@ -14323,18 +14335,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14323
14335
|
* @throws {RequiredError}
|
|
14324
14336
|
*/
|
|
14325
14337
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
14326
|
-
/**
|
|
14327
|
-
*
|
|
14328
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
14329
|
-
* @param {string} hospitalId
|
|
14330
|
-
* @param {string} specialtySlug
|
|
14331
|
-
* @param {string} [languageCode]
|
|
14332
|
-
* @param {boolean} [returnDefaultValue]
|
|
14333
|
-
* @param {boolean} [includeServices]
|
|
14334
|
-
* @param {*} [options] Override http request option.
|
|
14335
|
-
* @throws {RequiredError}
|
|
14336
|
-
*/
|
|
14337
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
14338
14338
|
/**
|
|
14339
14339
|
*
|
|
14340
14340
|
* @summary Get all Hospitals.
|
|
@@ -14546,6 +14546,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14546
14546
|
* @param {string} [specialtyId]
|
|
14547
14547
|
* @param {string} [specialtyName]
|
|
14548
14548
|
* @param {string} [specialtyTypeId]
|
|
14549
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14549
14550
|
* @param {string} [title]
|
|
14550
14551
|
* @param {MarketingType} [marketingType]
|
|
14551
14552
|
* @param {string} [languageCode]
|
|
@@ -14559,7 +14560,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14559
14560
|
* @throws {RequiredError}
|
|
14560
14561
|
* @memberof HospitalsApi
|
|
14561
14562
|
*/
|
|
14562
|
-
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>>;
|
|
14563
|
+
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>>;
|
|
14563
14564
|
/**
|
|
14564
14565
|
*
|
|
14565
14566
|
* @summary Get all HospitalSpecialties.
|
|
@@ -14569,6 +14570,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14569
14570
|
* @param {string} [specialtyId]
|
|
14570
14571
|
* @param {string} [specialtyName]
|
|
14571
14572
|
* @param {string} [specialtyTypeId]
|
|
14573
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14572
14574
|
* @param {string} [title]
|
|
14573
14575
|
* @param {MarketingType} [marketingType]
|
|
14574
14576
|
* @param {string} [languageCode]
|
|
@@ -14582,7 +14584,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14582
14584
|
* @throws {RequiredError}
|
|
14583
14585
|
* @memberof HospitalsApi
|
|
14584
14586
|
*/
|
|
14585
|
-
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>>;
|
|
14587
|
+
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>>;
|
|
14586
14588
|
/**
|
|
14587
14589
|
*
|
|
14588
14590
|
* @summary Get HospitalSpecialty.
|
|
@@ -14664,19 +14666,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14664
14666
|
* @memberof HospitalsApi
|
|
14665
14667
|
*/
|
|
14666
14668
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
14667
|
-
/**
|
|
14668
|
-
*
|
|
14669
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
14670
|
-
* @param {string} hospitalId
|
|
14671
|
-
* @param {string} specialtySlug
|
|
14672
|
-
* @param {string} [languageCode]
|
|
14673
|
-
* @param {boolean} [returnDefaultValue]
|
|
14674
|
-
* @param {boolean} [includeServices]
|
|
14675
|
-
* @param {*} [options] Override http request option.
|
|
14676
|
-
* @throws {RequiredError}
|
|
14677
|
-
* @memberof HospitalsApi
|
|
14678
|
-
*/
|
|
14679
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
14680
14669
|
/**
|
|
14681
14670
|
*
|
|
14682
14671
|
* @summary Get all Hospitals.
|