ch-api-client-typescript2 3.1.1 → 3.1.2
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 -24
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +22 -36
- package/package.json +1 -1
- package/src/api.ts +22 -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.
|
|
@@ -14761,7 +14760,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14761
14760
|
*
|
|
14762
14761
|
* @summary Get all HospitalWorkingDays.
|
|
14763
14762
|
* @param {string} hospitalId
|
|
14764
|
-
* @param {string} [hospitalId2]
|
|
14765
14763
|
* @param {string} [id]
|
|
14766
14764
|
* @param {string} [dayOfWeek]
|
|
14767
14765
|
* @param {Date} [timeFrom]
|
|
@@ -14773,7 +14771,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14773
14771
|
* @param {*} [options] Override http request option.
|
|
14774
14772
|
* @throws {RequiredError}
|
|
14775
14773
|
*/
|
|
14776
|
-
apiV2HospitalsHospitalIdWorkingdaysGet: (hospitalId: string,
|
|
14774
|
+
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
14775
|
/**
|
|
14778
14776
|
*
|
|
14779
14777
|
* @summary Get HospitalWorkingDay.
|
|
@@ -14953,7 +14951,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14953
14951
|
*
|
|
14954
14952
|
* @summary Get all HospitalHandles.
|
|
14955
14953
|
* @param {string} hospitalId
|
|
14956
|
-
* @param {string} [hospitalId2]
|
|
14957
14954
|
* @param {string} [id]
|
|
14958
14955
|
* @param {SnsType} [snsType]
|
|
14959
14956
|
* @param {string} [handle]
|
|
@@ -14963,7 +14960,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14963
14960
|
* @param {*} [options] Override http request option.
|
|
14964
14961
|
* @throws {RequiredError}
|
|
14965
14962
|
*/
|
|
14966
|
-
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
14963
|
+
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
14964
|
/**
|
|
14968
14965
|
*
|
|
14969
14966
|
* @summary Get HospitalHandle.
|
|
@@ -15121,7 +15118,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15121
15118
|
*
|
|
15122
15119
|
* @summary Get all HospitalWorkingDays.
|
|
15123
15120
|
* @param {string} hospitalId
|
|
15124
|
-
* @param {string} [hospitalId2]
|
|
15125
15121
|
* @param {string} [id]
|
|
15126
15122
|
* @param {string} [dayOfWeek]
|
|
15127
15123
|
* @param {Date} [timeFrom]
|
|
@@ -15133,7 +15129,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15133
15129
|
* @param {*} [options] Override http request option.
|
|
15134
15130
|
* @throws {RequiredError}
|
|
15135
15131
|
*/
|
|
15136
|
-
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
15132
|
+
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
15133
|
/**
|
|
15138
15134
|
*
|
|
15139
15135
|
* @summary Get HospitalWorkingDay.
|
|
@@ -15313,7 +15309,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15313
15309
|
*
|
|
15314
15310
|
* @summary Get all HospitalHandles.
|
|
15315
15311
|
* @param {string} hospitalId
|
|
15316
|
-
* @param {string} [hospitalId2]
|
|
15317
15312
|
* @param {string} [id]
|
|
15318
15313
|
* @param {SnsType} [snsType]
|
|
15319
15314
|
* @param {string} [handle]
|
|
@@ -15323,7 +15318,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15323
15318
|
* @param {*} [options] Override http request option.
|
|
15324
15319
|
* @throws {RequiredError}
|
|
15325
15320
|
*/
|
|
15326
|
-
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
15321
|
+
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
15322
|
/**
|
|
15328
15323
|
*
|
|
15329
15324
|
* @summary Get HospitalHandle.
|
|
@@ -15481,7 +15476,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15481
15476
|
*
|
|
15482
15477
|
* @summary Get all HospitalWorkingDays.
|
|
15483
15478
|
* @param {string} hospitalId
|
|
15484
|
-
* @param {string} [hospitalId2]
|
|
15485
15479
|
* @param {string} [id]
|
|
15486
15480
|
* @param {string} [dayOfWeek]
|
|
15487
15481
|
* @param {Date} [timeFrom]
|
|
@@ -15493,7 +15487,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15493
15487
|
* @param {*} [options] Override http request option.
|
|
15494
15488
|
* @throws {RequiredError}
|
|
15495
15489
|
*/
|
|
15496
|
-
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
15490
|
+
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
15491
|
/**
|
|
15498
15492
|
*
|
|
15499
15493
|
* @summary Get HospitalWorkingDay.
|
|
@@ -15685,7 +15679,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15685
15679
|
*
|
|
15686
15680
|
* @summary Get all HospitalHandles.
|
|
15687
15681
|
* @param {string} hospitalId
|
|
15688
|
-
* @param {string} [hospitalId2]
|
|
15689
15682
|
* @param {string} [id]
|
|
15690
15683
|
* @param {SnsType} [snsType]
|
|
15691
15684
|
* @param {string} [handle]
|
|
@@ -15696,7 +15689,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15696
15689
|
* @throws {RequiredError}
|
|
15697
15690
|
* @memberof HospitalsApi
|
|
15698
15691
|
*/
|
|
15699
|
-
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
15692
|
+
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel, any>>;
|
|
15700
15693
|
/**
|
|
15701
15694
|
*
|
|
15702
15695
|
* @summary Get HospitalHandle.
|
|
@@ -15864,7 +15857,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15864
15857
|
*
|
|
15865
15858
|
* @summary Get all HospitalWorkingDays.
|
|
15866
15859
|
* @param {string} hospitalId
|
|
15867
|
-
* @param {string} [hospitalId2]
|
|
15868
15860
|
* @param {string} [id]
|
|
15869
15861
|
* @param {string} [dayOfWeek]
|
|
15870
15862
|
* @param {Date} [timeFrom]
|
|
@@ -15877,7 +15869,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15877
15869
|
* @throws {RequiredError}
|
|
15878
15870
|
* @memberof HospitalsApi
|
|
15879
15871
|
*/
|
|
15880
|
-
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
15872
|
+
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
15873
|
/**
|
|
15882
15874
|
*
|
|
15883
15875
|
* @summary Get HospitalWorkingDay.
|