ch-api-client-typescript2 3.1.3 → 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 +98 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +208 -0
- package/package.json +1 -1
- package/src/api.ts +197 -0
package/lib/api.d.ts
CHANGED
|
@@ -14657,6 +14657,30 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14657
14657
|
* @throws {RequiredError}
|
|
14658
14658
|
*/
|
|
14659
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>;
|
|
14660
14684
|
/**
|
|
14661
14685
|
*
|
|
14662
14686
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15015,6 +15039,30 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15015
15039
|
* @throws {RequiredError}
|
|
15016
15040
|
*/
|
|
15017
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>>;
|
|
15018
15066
|
/**
|
|
15019
15067
|
*
|
|
15020
15068
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15373,6 +15421,30 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15373
15421
|
* @throws {RequiredError}
|
|
15374
15422
|
*/
|
|
15375
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>;
|
|
15376
15448
|
/**
|
|
15377
15449
|
*
|
|
15378
15450
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15748,6 +15820,32 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15748
15820
|
* @memberof HospitalsApi
|
|
15749
15821
|
*/
|
|
15750
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>>;
|
|
15751
15849
|
/**
|
|
15752
15850
|
*
|
|
15753
15851
|
* @summary Get all HospitalSpecialties.
|