ch-api-client-typescript2 4.7.0 → 4.7.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 +16 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -14
- package/package.json +1 -1
- package/src/api.ts +30 -14
package/lib/api.d.ts
CHANGED
|
@@ -15665,6 +15665,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
15665
15665
|
* @param {string} [specialtyTypeId]
|
|
15666
15666
|
* @param {string} [specialtyId]
|
|
15667
15667
|
* @param {string} [exceptHospitalId]
|
|
15668
|
+
* @param {number} [mediaCount]
|
|
15668
15669
|
* @param {boolean} [showHidden]
|
|
15669
15670
|
* @param {string} [languageCode]
|
|
15670
15671
|
* @param {Array<string>} [ids]
|
|
@@ -15676,7 +15677,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
15676
15677
|
* @param {*} [options] Override http request option.
|
|
15677
15678
|
* @throws {RequiredError}
|
|
15678
15679
|
*/
|
|
15679
|
-
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>;
|
|
15680
|
+
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, mediaCount?: number | 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>;
|
|
15680
15681
|
/**
|
|
15681
15682
|
*
|
|
15682
15683
|
* @summary Get HospitalAccreditation.
|
|
@@ -16052,6 +16053,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
16052
16053
|
* @param {string} [specialtyTypeId]
|
|
16053
16054
|
* @param {string} [specialtyId]
|
|
16054
16055
|
* @param {string} [exceptHospitalId]
|
|
16056
|
+
* @param {number} [mediaCount]
|
|
16055
16057
|
* @param {boolean} [showHidden]
|
|
16056
16058
|
* @param {string} [languageCode]
|
|
16057
16059
|
* @param {Array<string>} [ids]
|
|
@@ -16063,7 +16065,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
16063
16065
|
* @param {*} [options] Override http request option.
|
|
16064
16066
|
* @throws {RequiredError}
|
|
16065
16067
|
*/
|
|
16066
|
-
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>;
|
|
16068
|
+
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, mediaCount?: number | 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>;
|
|
16067
16069
|
/**
|
|
16068
16070
|
*
|
|
16069
16071
|
* @param {string} slug
|
|
@@ -16090,6 +16092,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
16090
16092
|
* @param {string} [specialtyTypeId]
|
|
16091
16093
|
* @param {string} [specialtyId]
|
|
16092
16094
|
* @param {string} [exceptHospitalId]
|
|
16095
|
+
* @param {number} [mediaCount]
|
|
16093
16096
|
* @param {boolean} [showHidden]
|
|
16094
16097
|
* @param {string} [languageCode]
|
|
16095
16098
|
* @param {Array<string>} [ids]
|
|
@@ -16101,7 +16104,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
16101
16104
|
* @param {*} [options] Override http request option.
|
|
16102
16105
|
* @throws {RequiredError}
|
|
16103
16106
|
*/
|
|
16104
|
-
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>>;
|
|
16107
|
+
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, mediaCount?: number | 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>>;
|
|
16105
16108
|
/**
|
|
16106
16109
|
*
|
|
16107
16110
|
* @summary Get HospitalAccreditation.
|
|
@@ -16477,6 +16480,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
16477
16480
|
* @param {string} [specialtyTypeId]
|
|
16478
16481
|
* @param {string} [specialtyId]
|
|
16479
16482
|
* @param {string} [exceptHospitalId]
|
|
16483
|
+
* @param {number} [mediaCount]
|
|
16480
16484
|
* @param {boolean} [showHidden]
|
|
16481
16485
|
* @param {string} [languageCode]
|
|
16482
16486
|
* @param {Array<string>} [ids]
|
|
@@ -16488,7 +16492,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
16488
16492
|
* @param {*} [options] Override http request option.
|
|
16489
16493
|
* @throws {RequiredError}
|
|
16490
16494
|
*/
|
|
16491
|
-
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>>;
|
|
16495
|
+
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, mediaCount?: number | 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>>;
|
|
16492
16496
|
/**
|
|
16493
16497
|
*
|
|
16494
16498
|
* @param {string} slug
|
|
@@ -16515,6 +16519,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
16515
16519
|
* @param {string} [specialtyTypeId]
|
|
16516
16520
|
* @param {string} [specialtyId]
|
|
16517
16521
|
* @param {string} [exceptHospitalId]
|
|
16522
|
+
* @param {number} [mediaCount]
|
|
16518
16523
|
* @param {boolean} [showHidden]
|
|
16519
16524
|
* @param {string} [languageCode]
|
|
16520
16525
|
* @param {Array<string>} [ids]
|
|
@@ -16526,7 +16531,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
16526
16531
|
* @param {*} [options] Override http request option.
|
|
16527
16532
|
* @throws {RequiredError}
|
|
16528
16533
|
*/
|
|
16529
|
-
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>;
|
|
16534
|
+
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, mediaCount?: number | 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>;
|
|
16530
16535
|
/**
|
|
16531
16536
|
*
|
|
16532
16537
|
* @summary Get HospitalAccreditation.
|
|
@@ -16902,6 +16907,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
16902
16907
|
* @param {string} [specialtyTypeId]
|
|
16903
16908
|
* @param {string} [specialtyId]
|
|
16904
16909
|
* @param {string} [exceptHospitalId]
|
|
16910
|
+
* @param {number} [mediaCount]
|
|
16905
16911
|
* @param {boolean} [showHidden]
|
|
16906
16912
|
* @param {string} [languageCode]
|
|
16907
16913
|
* @param {Array<string>} [ids]
|
|
@@ -16913,7 +16919,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
16913
16919
|
* @param {*} [options] Override http request option.
|
|
16914
16920
|
* @throws {RequiredError}
|
|
16915
16921
|
*/
|
|
16916
|
-
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>;
|
|
16922
|
+
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, mediaCount?: number | 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>;
|
|
16917
16923
|
/**
|
|
16918
16924
|
*
|
|
16919
16925
|
* @param {string} slug
|
|
@@ -16942,6 +16948,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
16942
16948
|
* @param {string} [specialtyTypeId]
|
|
16943
16949
|
* @param {string} [specialtyId]
|
|
16944
16950
|
* @param {string} [exceptHospitalId]
|
|
16951
|
+
* @param {number} [mediaCount]
|
|
16945
16952
|
* @param {boolean} [showHidden]
|
|
16946
16953
|
* @param {string} [languageCode]
|
|
16947
16954
|
* @param {Array<string>} [ids]
|
|
@@ -16954,7 +16961,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
16954
16961
|
* @throws {RequiredError}
|
|
16955
16962
|
* @memberof HospitalsApi
|
|
16956
16963
|
*/
|
|
16957
|
-
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>>;
|
|
16964
|
+
apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, 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>>;
|
|
16958
16965
|
/**
|
|
16959
16966
|
*
|
|
16960
16967
|
* @summary Get HospitalAccreditation.
|
|
@@ -17359,6 +17366,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
17359
17366
|
* @param {string} [specialtyTypeId]
|
|
17360
17367
|
* @param {string} [specialtyId]
|
|
17361
17368
|
* @param {string} [exceptHospitalId]
|
|
17369
|
+
* @param {number} [mediaCount]
|
|
17362
17370
|
* @param {boolean} [showHidden]
|
|
17363
17371
|
* @param {string} [languageCode]
|
|
17364
17372
|
* @param {Array<string>} [ids]
|
|
@@ -17371,7 +17379,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
17371
17379
|
* @throws {RequiredError}
|
|
17372
17380
|
* @memberof HospitalsApi
|
|
17373
17381
|
*/
|
|
17374
|
-
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>>;
|
|
17382
|
+
apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, 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>>;
|
|
17375
17383
|
/**
|
|
17376
17384
|
*
|
|
17377
17385
|
* @param {string} slug
|