ch-api-client-typescript2 3.1.1 → 3.1.4
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 +114 -24
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +230 -36
- package/package.json +1 -1
- package/src/api.ts +219 -38
package/lib/api.d.ts
CHANGED
|
@@ -12988,7 +12988,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12988
12988
|
apiV2DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12989
12989
|
/**
|
|
12990
12990
|
*
|
|
12991
|
-
* @summary Get all
|
|
12991
|
+
* @summary Get all DoctorLanguages.
|
|
12992
12992
|
* @param {string} doctorId
|
|
12993
12993
|
* @param {string} [language]
|
|
12994
12994
|
* @param {number} [page]
|
|
@@ -13000,7 +13000,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
13000
13000
|
apiV2DoctorsDoctorIdLanguagesGet: (doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13001
13001
|
/**
|
|
13002
13002
|
*
|
|
13003
|
-
* @summary Get
|
|
13003
|
+
* @summary Get DoctorLanguage.
|
|
13004
13004
|
* @param {string} doctorId
|
|
13005
13005
|
* @param {string} languageId
|
|
13006
13006
|
* @param {*} [options] Override http request option.
|
|
@@ -13218,7 +13218,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
13218
13218
|
apiV2DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
13219
13219
|
/**
|
|
13220
13220
|
*
|
|
13221
|
-
* @summary Get all
|
|
13221
|
+
* @summary Get all DoctorLanguages.
|
|
13222
13222
|
* @param {string} doctorId
|
|
13223
13223
|
* @param {string} [language]
|
|
13224
13224
|
* @param {number} [page]
|
|
@@ -13230,7 +13230,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
13230
13230
|
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguagesModel>>;
|
|
13231
13231
|
/**
|
|
13232
13232
|
*
|
|
13233
|
-
* @summary Get
|
|
13233
|
+
* @summary Get DoctorLanguage.
|
|
13234
13234
|
* @param {string} doctorId
|
|
13235
13235
|
* @param {string} languageId
|
|
13236
13236
|
* @param {*} [options] Override http request option.
|
|
@@ -13448,7 +13448,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
13448
13448
|
apiV2DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
13449
13449
|
/**
|
|
13450
13450
|
*
|
|
13451
|
-
* @summary Get all
|
|
13451
|
+
* @summary Get all DoctorLanguages.
|
|
13452
13452
|
* @param {string} doctorId
|
|
13453
13453
|
* @param {string} [language]
|
|
13454
13454
|
* @param {number} [page]
|
|
@@ -13460,7 +13460,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
13460
13460
|
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
13461
13461
|
/**
|
|
13462
13462
|
*
|
|
13463
|
-
* @summary Get
|
|
13463
|
+
* @summary Get DoctorLanguage.
|
|
13464
13464
|
* @param {string} doctorId
|
|
13465
13465
|
* @param {string} languageId
|
|
13466
13466
|
* @param {*} [options] Override http request option.
|
|
@@ -13687,7 +13687,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13687
13687
|
apiV2DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel, any>>;
|
|
13688
13688
|
/**
|
|
13689
13689
|
*
|
|
13690
|
-
* @summary Get all
|
|
13690
|
+
* @summary Get all DoctorLanguages.
|
|
13691
13691
|
* @param {string} doctorId
|
|
13692
13692
|
* @param {string} [language]
|
|
13693
13693
|
* @param {number} [page]
|
|
@@ -13700,7 +13700,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13700
13700
|
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel, any>>;
|
|
13701
13701
|
/**
|
|
13702
13702
|
*
|
|
13703
|
-
* @summary Get
|
|
13703
|
+
* @summary Get DoctorLanguage.
|
|
13704
13704
|
* @param {string} doctorId
|
|
13705
13705
|
* @param {string} languageId
|
|
13706
13706
|
* @param {*} [options] Override http request option.
|
|
@@ -14593,7 +14593,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14593
14593
|
*
|
|
14594
14594
|
* @summary Get all HospitalHandles.
|
|
14595
14595
|
* @param {string} hospitalId
|
|
14596
|
-
* @param {string} [hospitalId2]
|
|
14597
14596
|
* @param {string} [id]
|
|
14598
14597
|
* @param {SnsType} [snsType]
|
|
14599
14598
|
* @param {string} [handle]
|
|
@@ -14603,7 +14602,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14603
14602
|
* @param {*} [options] Override http request option.
|
|
14604
14603
|
* @throws {RequiredError}
|
|
14605
14604
|
*/
|
|
14606
|
-
apiV2HospitalsHospitalIdHandlesGet: (hospitalId: string,
|
|
14605
|
+
apiV2HospitalsHospitalIdHandlesGet: (hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14607
14606
|
/**
|
|
14608
14607
|
*
|
|
14609
14608
|
* @summary Get HospitalHandle.
|
|
@@ -14658,6 +14657,30 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14658
14657
|
* @throws {RequiredError}
|
|
14659
14658
|
*/
|
|
14660
14659
|
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>;
|
|
14660
|
+
/**
|
|
14661
|
+
*
|
|
14662
|
+
* @summary Get all HospitalServiceMedias.
|
|
14663
|
+
* @param {string} hospitalId
|
|
14664
|
+
* @param {string} hospitalSpecialtyId
|
|
14665
|
+
* @param {string} [id]
|
|
14666
|
+
* @param {MediaType} [mediaType]
|
|
14667
|
+
* @param {number} [page]
|
|
14668
|
+
* @param {number} [limit]
|
|
14669
|
+
* @param {Date} [lastRetrieved]
|
|
14670
|
+
* @param {*} [options] Override http request option.
|
|
14671
|
+
* @throws {RequiredError}
|
|
14672
|
+
*/
|
|
14673
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet: (hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14674
|
+
/**
|
|
14675
|
+
*
|
|
14676
|
+
* @summary Get HospitalServiceMedia.
|
|
14677
|
+
* @param {string} hospitalId
|
|
14678
|
+
* @param {string} hospitalSpecialtyId
|
|
14679
|
+
* @param {string} mediaId
|
|
14680
|
+
* @param {*} [options] Override http request option.
|
|
14681
|
+
* @throws {RequiredError}
|
|
14682
|
+
*/
|
|
14683
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14661
14684
|
/**
|
|
14662
14685
|
*
|
|
14663
14686
|
* @summary Get all HospitalSpecialties.
|
|
@@ -14761,7 +14784,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14761
14784
|
*
|
|
14762
14785
|
* @summary Get all HospitalWorkingDays.
|
|
14763
14786
|
* @param {string} hospitalId
|
|
14764
|
-
* @param {string} [hospitalId2]
|
|
14765
14787
|
* @param {string} [id]
|
|
14766
14788
|
* @param {string} [dayOfWeek]
|
|
14767
14789
|
* @param {Date} [timeFrom]
|
|
@@ -14773,7 +14795,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14773
14795
|
* @param {*} [options] Override http request option.
|
|
14774
14796
|
* @throws {RequiredError}
|
|
14775
14797
|
*/
|
|
14776
|
-
apiV2HospitalsHospitalIdWorkingdaysGet: (hospitalId: string,
|
|
14798
|
+
apiV2HospitalsHospitalIdWorkingdaysGet: (hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14777
14799
|
/**
|
|
14778
14800
|
*
|
|
14779
14801
|
* @summary Get HospitalWorkingDay.
|
|
@@ -14953,7 +14975,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14953
14975
|
*
|
|
14954
14976
|
* @summary Get all HospitalHandles.
|
|
14955
14977
|
* @param {string} hospitalId
|
|
14956
|
-
* @param {string} [hospitalId2]
|
|
14957
14978
|
* @param {string} [id]
|
|
14958
14979
|
* @param {SnsType} [snsType]
|
|
14959
14980
|
* @param {string} [handle]
|
|
@@ -14963,7 +14984,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14963
14984
|
* @param {*} [options] Override http request option.
|
|
14964
14985
|
* @throws {RequiredError}
|
|
14965
14986
|
*/
|
|
14966
|
-
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
14987
|
+
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSnsHandlesModel>>;
|
|
14967
14988
|
/**
|
|
14968
14989
|
*
|
|
14969
14990
|
* @summary Get HospitalHandle.
|
|
@@ -15018,6 +15039,30 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15018
15039
|
* @throws {RequiredError}
|
|
15019
15040
|
*/
|
|
15020
15041
|
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>>;
|
|
15042
|
+
/**
|
|
15043
|
+
*
|
|
15044
|
+
* @summary Get all HospitalServiceMedias.
|
|
15045
|
+
* @param {string} hospitalId
|
|
15046
|
+
* @param {string} hospitalSpecialtyId
|
|
15047
|
+
* @param {string} [id]
|
|
15048
|
+
* @param {MediaType} [mediaType]
|
|
15049
|
+
* @param {number} [page]
|
|
15050
|
+
* @param {number} [limit]
|
|
15051
|
+
* @param {Date} [lastRetrieved]
|
|
15052
|
+
* @param {*} [options] Override http request option.
|
|
15053
|
+
* @throws {RequiredError}
|
|
15054
|
+
*/
|
|
15055
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
15056
|
+
/**
|
|
15057
|
+
*
|
|
15058
|
+
* @summary Get HospitalServiceMedia.
|
|
15059
|
+
* @param {string} hospitalId
|
|
15060
|
+
* @param {string} hospitalSpecialtyId
|
|
15061
|
+
* @param {string} mediaId
|
|
15062
|
+
* @param {*} [options] Override http request option.
|
|
15063
|
+
* @throws {RequiredError}
|
|
15064
|
+
*/
|
|
15065
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15021
15066
|
/**
|
|
15022
15067
|
*
|
|
15023
15068
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15121,7 +15166,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15121
15166
|
*
|
|
15122
15167
|
* @summary Get all HospitalWorkingDays.
|
|
15123
15168
|
* @param {string} hospitalId
|
|
15124
|
-
* @param {string} [hospitalId2]
|
|
15125
15169
|
* @param {string} [id]
|
|
15126
15170
|
* @param {string} [dayOfWeek]
|
|
15127
15171
|
* @param {Date} [timeFrom]
|
|
@@ -15133,7 +15177,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15133
15177
|
* @param {*} [options] Override http request option.
|
|
15134
15178
|
* @throws {RequiredError}
|
|
15135
15179
|
*/
|
|
15136
|
-
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
15180
|
+
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
|
|
15137
15181
|
/**
|
|
15138
15182
|
*
|
|
15139
15183
|
* @summary Get HospitalWorkingDay.
|
|
@@ -15313,7 +15357,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15313
15357
|
*
|
|
15314
15358
|
* @summary Get all HospitalHandles.
|
|
15315
15359
|
* @param {string} hospitalId
|
|
15316
|
-
* @param {string} [hospitalId2]
|
|
15317
15360
|
* @param {string} [id]
|
|
15318
15361
|
* @param {SnsType} [snsType]
|
|
15319
15362
|
* @param {string} [handle]
|
|
@@ -15323,7 +15366,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15323
15366
|
* @param {*} [options] Override http request option.
|
|
15324
15367
|
* @throws {RequiredError}
|
|
15325
15368
|
*/
|
|
15326
|
-
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
15369
|
+
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
|
|
15327
15370
|
/**
|
|
15328
15371
|
*
|
|
15329
15372
|
* @summary Get HospitalHandle.
|
|
@@ -15378,6 +15421,30 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15378
15421
|
* @throws {RequiredError}
|
|
15379
15422
|
*/
|
|
15380
15423
|
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>;
|
|
15424
|
+
/**
|
|
15425
|
+
*
|
|
15426
|
+
* @summary Get all HospitalServiceMedias.
|
|
15427
|
+
* @param {string} hospitalId
|
|
15428
|
+
* @param {string} hospitalSpecialtyId
|
|
15429
|
+
* @param {string} [id]
|
|
15430
|
+
* @param {MediaType} [mediaType]
|
|
15431
|
+
* @param {number} [page]
|
|
15432
|
+
* @param {number} [limit]
|
|
15433
|
+
* @param {Date} [lastRetrieved]
|
|
15434
|
+
* @param {*} [options] Override http request option.
|
|
15435
|
+
* @throws {RequiredError}
|
|
15436
|
+
*/
|
|
15437
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
15438
|
+
/**
|
|
15439
|
+
*
|
|
15440
|
+
* @summary Get HospitalServiceMedia.
|
|
15441
|
+
* @param {string} hospitalId
|
|
15442
|
+
* @param {string} hospitalSpecialtyId
|
|
15443
|
+
* @param {string} mediaId
|
|
15444
|
+
* @param {*} [options] Override http request option.
|
|
15445
|
+
* @throws {RequiredError}
|
|
15446
|
+
*/
|
|
15447
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
15381
15448
|
/**
|
|
15382
15449
|
*
|
|
15383
15450
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15481,7 +15548,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15481
15548
|
*
|
|
15482
15549
|
* @summary Get all HospitalWorkingDays.
|
|
15483
15550
|
* @param {string} hospitalId
|
|
15484
|
-
* @param {string} [hospitalId2]
|
|
15485
15551
|
* @param {string} [id]
|
|
15486
15552
|
* @param {string} [dayOfWeek]
|
|
15487
15553
|
* @param {Date} [timeFrom]
|
|
@@ -15493,7 +15559,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15493
15559
|
* @param {*} [options] Override http request option.
|
|
15494
15560
|
* @throws {RequiredError}
|
|
15495
15561
|
*/
|
|
15496
|
-
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
15562
|
+
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<WorkingDaysModel>;
|
|
15497
15563
|
/**
|
|
15498
15564
|
*
|
|
15499
15565
|
* @summary Get HospitalWorkingDay.
|
|
@@ -15685,7 +15751,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15685
15751
|
*
|
|
15686
15752
|
* @summary Get all HospitalHandles.
|
|
15687
15753
|
* @param {string} hospitalId
|
|
15688
|
-
* @param {string} [hospitalId2]
|
|
15689
15754
|
* @param {string} [id]
|
|
15690
15755
|
* @param {SnsType} [snsType]
|
|
15691
15756
|
* @param {string} [handle]
|
|
@@ -15696,7 +15761,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15696
15761
|
* @throws {RequiredError}
|
|
15697
15762
|
* @memberof HospitalsApi
|
|
15698
15763
|
*/
|
|
15699
|
-
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
15764
|
+
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel, any>>;
|
|
15700
15765
|
/**
|
|
15701
15766
|
*
|
|
15702
15767
|
* @summary Get HospitalHandle.
|
|
@@ -15755,6 +15820,32 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15755
15820
|
* @memberof HospitalsApi
|
|
15756
15821
|
*/
|
|
15757
15822
|
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>>;
|
|
15823
|
+
/**
|
|
15824
|
+
*
|
|
15825
|
+
* @summary Get all HospitalServiceMedias.
|
|
15826
|
+
* @param {string} hospitalId
|
|
15827
|
+
* @param {string} hospitalSpecialtyId
|
|
15828
|
+
* @param {string} [id]
|
|
15829
|
+
* @param {MediaType} [mediaType]
|
|
15830
|
+
* @param {number} [page]
|
|
15831
|
+
* @param {number} [limit]
|
|
15832
|
+
* @param {Date} [lastRetrieved]
|
|
15833
|
+
* @param {*} [options] Override http request option.
|
|
15834
|
+
* @throws {RequiredError}
|
|
15835
|
+
* @memberof HospitalsApi
|
|
15836
|
+
*/
|
|
15837
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
15838
|
+
/**
|
|
15839
|
+
*
|
|
15840
|
+
* @summary Get HospitalServiceMedia.
|
|
15841
|
+
* @param {string} hospitalId
|
|
15842
|
+
* @param {string} hospitalSpecialtyId
|
|
15843
|
+
* @param {string} mediaId
|
|
15844
|
+
* @param {*} [options] Override http request option.
|
|
15845
|
+
* @throws {RequiredError}
|
|
15846
|
+
* @memberof HospitalsApi
|
|
15847
|
+
*/
|
|
15848
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
15758
15849
|
/**
|
|
15759
15850
|
*
|
|
15760
15851
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15864,7 +15955,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15864
15955
|
*
|
|
15865
15956
|
* @summary Get all HospitalWorkingDays.
|
|
15866
15957
|
* @param {string} hospitalId
|
|
15867
|
-
* @param {string} [hospitalId2]
|
|
15868
15958
|
* @param {string} [id]
|
|
15869
15959
|
* @param {string} [dayOfWeek]
|
|
15870
15960
|
* @param {Date} [timeFrom]
|
|
@@ -15877,7 +15967,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15877
15967
|
* @throws {RequiredError}
|
|
15878
15968
|
* @memberof HospitalsApi
|
|
15879
15969
|
*/
|
|
15880
|
-
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
15970
|
+
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel, any>>;
|
|
15881
15971
|
/**
|
|
15882
15972
|
*
|
|
15883
15973
|
* @summary Get HospitalWorkingDay.
|