ch-admin-api-client-typescript 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 +33 -41
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +34 -48
- package/package.json +1 -1
- package/src/api.ts +38 -54
package/lib/api.d.ts
CHANGED
|
@@ -7900,13 +7900,13 @@ export interface HospitalModel {
|
|
|
7900
7900
|
* @type {Array<WorkingDay>}
|
|
7901
7901
|
* @memberof HospitalModel
|
|
7902
7902
|
*/
|
|
7903
|
-
'
|
|
7903
|
+
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
7904
7904
|
/**
|
|
7905
7905
|
*
|
|
7906
7906
|
* @type {Array<SnsHandle>}
|
|
7907
7907
|
* @memberof HospitalModel
|
|
7908
7908
|
*/
|
|
7909
|
-
'
|
|
7909
|
+
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
7910
7910
|
}
|
|
7911
7911
|
/**
|
|
7912
7912
|
*
|
|
@@ -18974,7 +18974,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18974
18974
|
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18975
18975
|
/**
|
|
18976
18976
|
*
|
|
18977
|
-
* @summary Get all
|
|
18977
|
+
* @summary Get all DoctorLanguages.
|
|
18978
18978
|
* @param {string} doctorId
|
|
18979
18979
|
* @param {string} [language]
|
|
18980
18980
|
* @param {number} [page]
|
|
@@ -18986,7 +18986,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18986
18986
|
apiV1DoctorsDoctorIdLanguagesGet: (doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18987
18987
|
/**
|
|
18988
18988
|
*
|
|
18989
|
-
* @summary Delete
|
|
18989
|
+
* @summary Delete DoctorLanguage
|
|
18990
18990
|
* @param {string} doctorId
|
|
18991
18991
|
* @param {string} languageId
|
|
18992
18992
|
* @param {*} [options] Override http request option.
|
|
@@ -18995,7 +18995,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18995
18995
|
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18996
18996
|
/**
|
|
18997
18997
|
*
|
|
18998
|
-
* @summary Get
|
|
18998
|
+
* @summary Get DoctorLanguage.
|
|
18999
18999
|
* @param {string} doctorId
|
|
19000
19000
|
* @param {string} languageId
|
|
19001
19001
|
* @param {*} [options] Override http request option.
|
|
@@ -19004,7 +19004,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19004
19004
|
apiV1DoctorsDoctorIdLanguagesLanguageIdGet: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19005
19005
|
/**
|
|
19006
19006
|
*
|
|
19007
|
-
* @summary Update
|
|
19007
|
+
* @summary Update DoctorLanguage.
|
|
19008
19008
|
* @param {string} doctorId
|
|
19009
19009
|
* @param {string} languageId
|
|
19010
19010
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -19014,7 +19014,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
19014
19014
|
apiV1DoctorsDoctorIdLanguagesLanguageIdPut: (doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19015
19015
|
/**
|
|
19016
19016
|
*
|
|
19017
|
-
* @summary Create
|
|
19017
|
+
* @summary Create DoctorLanguage.
|
|
19018
19018
|
* @param {string} doctorId
|
|
19019
19019
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19020
19020
|
* @param {*} [options] Override http request option.
|
|
@@ -19414,7 +19414,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19414
19414
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
19415
19415
|
/**
|
|
19416
19416
|
*
|
|
19417
|
-
* @summary Get all
|
|
19417
|
+
* @summary Get all DoctorLanguages.
|
|
19418
19418
|
* @param {string} doctorId
|
|
19419
19419
|
* @param {string} [language]
|
|
19420
19420
|
* @param {number} [page]
|
|
@@ -19426,7 +19426,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19426
19426
|
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguagesModel>>;
|
|
19427
19427
|
/**
|
|
19428
19428
|
*
|
|
19429
|
-
* @summary Delete
|
|
19429
|
+
* @summary Delete DoctorLanguage
|
|
19430
19430
|
* @param {string} doctorId
|
|
19431
19431
|
* @param {string} languageId
|
|
19432
19432
|
* @param {*} [options] Override http request option.
|
|
@@ -19435,7 +19435,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19435
19435
|
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19436
19436
|
/**
|
|
19437
19437
|
*
|
|
19438
|
-
* @summary Get
|
|
19438
|
+
* @summary Get DoctorLanguage.
|
|
19439
19439
|
* @param {string} doctorId
|
|
19440
19440
|
* @param {string} languageId
|
|
19441
19441
|
* @param {*} [options] Override http request option.
|
|
@@ -19444,7 +19444,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19444
19444
|
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
19445
19445
|
/**
|
|
19446
19446
|
*
|
|
19447
|
-
* @summary Update
|
|
19447
|
+
* @summary Update DoctorLanguage.
|
|
19448
19448
|
* @param {string} doctorId
|
|
19449
19449
|
* @param {string} languageId
|
|
19450
19450
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -19454,7 +19454,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19454
19454
|
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
19455
19455
|
/**
|
|
19456
19456
|
*
|
|
19457
|
-
* @summary Create
|
|
19457
|
+
* @summary Create DoctorLanguage.
|
|
19458
19458
|
* @param {string} doctorId
|
|
19459
19459
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19460
19460
|
* @param {*} [options] Override http request option.
|
|
@@ -19854,7 +19854,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19854
19854
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
19855
19855
|
/**
|
|
19856
19856
|
*
|
|
19857
|
-
* @summary Get all
|
|
19857
|
+
* @summary Get all DoctorLanguages.
|
|
19858
19858
|
* @param {string} doctorId
|
|
19859
19859
|
* @param {string} [language]
|
|
19860
19860
|
* @param {number} [page]
|
|
@@ -19866,7 +19866,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19866
19866
|
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
19867
19867
|
/**
|
|
19868
19868
|
*
|
|
19869
|
-
* @summary Delete
|
|
19869
|
+
* @summary Delete DoctorLanguage
|
|
19870
19870
|
* @param {string} doctorId
|
|
19871
19871
|
* @param {string} languageId
|
|
19872
19872
|
* @param {*} [options] Override http request option.
|
|
@@ -19875,7 +19875,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19875
19875
|
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: any): AxiosPromise<boolean>;
|
|
19876
19876
|
/**
|
|
19877
19877
|
*
|
|
19878
|
-
* @summary Get
|
|
19878
|
+
* @summary Get DoctorLanguage.
|
|
19879
19879
|
* @param {string} doctorId
|
|
19880
19880
|
* @param {string} languageId
|
|
19881
19881
|
* @param {*} [options] Override http request option.
|
|
@@ -19884,7 +19884,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19884
19884
|
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
19885
19885
|
/**
|
|
19886
19886
|
*
|
|
19887
|
-
* @summary Update
|
|
19887
|
+
* @summary Update DoctorLanguage.
|
|
19888
19888
|
* @param {string} doctorId
|
|
19889
19889
|
* @param {string} languageId
|
|
19890
19890
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -19894,7 +19894,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19894
19894
|
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
19895
19895
|
/**
|
|
19896
19896
|
*
|
|
19897
|
-
* @summary Create
|
|
19897
|
+
* @summary Create DoctorLanguage.
|
|
19898
19898
|
* @param {string} doctorId
|
|
19899
19899
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19900
19900
|
* @param {*} [options] Override http request option.
|
|
@@ -20312,7 +20312,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20312
20312
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
20313
20313
|
/**
|
|
20314
20314
|
*
|
|
20315
|
-
* @summary Get all
|
|
20315
|
+
* @summary Get all DoctorLanguages.
|
|
20316
20316
|
* @param {string} doctorId
|
|
20317
20317
|
* @param {string} [language]
|
|
20318
20318
|
* @param {number} [page]
|
|
@@ -20325,7 +20325,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20325
20325
|
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel>>;
|
|
20326
20326
|
/**
|
|
20327
20327
|
*
|
|
20328
|
-
* @summary Delete
|
|
20328
|
+
* @summary Delete DoctorLanguage
|
|
20329
20329
|
* @param {string} doctorId
|
|
20330
20330
|
* @param {string} languageId
|
|
20331
20331
|
* @param {*} [options] Override http request option.
|
|
@@ -20335,7 +20335,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20335
20335
|
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20336
20336
|
/**
|
|
20337
20337
|
*
|
|
20338
|
-
* @summary Get
|
|
20338
|
+
* @summary Get DoctorLanguage.
|
|
20339
20339
|
* @param {string} doctorId
|
|
20340
20340
|
* @param {string} languageId
|
|
20341
20341
|
* @param {*} [options] Override http request option.
|
|
@@ -20345,7 +20345,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20345
20345
|
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20346
20346
|
/**
|
|
20347
20347
|
*
|
|
20348
|
-
* @summary Update
|
|
20348
|
+
* @summary Update DoctorLanguage.
|
|
20349
20349
|
* @param {string} doctorId
|
|
20350
20350
|
* @param {string} languageId
|
|
20351
20351
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -20356,7 +20356,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20356
20356
|
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20357
20357
|
/**
|
|
20358
20358
|
*
|
|
20359
|
-
* @summary Create
|
|
20359
|
+
* @summary Create DoctorLanguage.
|
|
20360
20360
|
* @param {string} doctorId
|
|
20361
20361
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
20362
20362
|
* @param {*} [options] Override http request option.
|
|
@@ -21887,7 +21887,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21887
21887
|
*
|
|
21888
21888
|
* @summary Get all HospitalHandles.
|
|
21889
21889
|
* @param {string} hospitalId
|
|
21890
|
-
* @param {string} [hospitalId2]
|
|
21891
21890
|
* @param {string} [id]
|
|
21892
21891
|
* @param {SnsType} [snsType]
|
|
21893
21892
|
* @param {string} [handle]
|
|
@@ -21897,7 +21896,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21897
21896
|
* @param {*} [options] Override http request option.
|
|
21898
21897
|
* @throws {RequiredError}
|
|
21899
21898
|
*/
|
|
21900
|
-
apiV1HospitalsHospitalIdHandlesGet: (hospitalId: string,
|
|
21899
|
+
apiV1HospitalsHospitalIdHandlesGet: (hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21901
21900
|
/**
|
|
21902
21901
|
*
|
|
21903
21902
|
* @summary Delete HospitalHandle.
|
|
@@ -22211,7 +22210,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22211
22210
|
*
|
|
22212
22211
|
* @summary Get all HospitalWorkingDays.
|
|
22213
22212
|
* @param {string} hospitalId
|
|
22214
|
-
* @param {string} [hospitalId2]
|
|
22215
22213
|
* @param {string} [id]
|
|
22216
22214
|
* @param {string} [dayOfWeek]
|
|
22217
22215
|
* @param {Date} [timeFrom]
|
|
@@ -22223,7 +22221,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22223
22221
|
* @param {*} [options] Override http request option.
|
|
22224
22222
|
* @throws {RequiredError}
|
|
22225
22223
|
*/
|
|
22226
|
-
apiV1HospitalsHospitalIdWorkingdaysGet: (hospitalId: string,
|
|
22224
|
+
apiV1HospitalsHospitalIdWorkingdaysGet: (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>;
|
|
22227
22225
|
/**
|
|
22228
22226
|
*
|
|
22229
22227
|
* @summary Create HospitalWorkingDay.
|
|
@@ -22555,7 +22553,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22555
22553
|
*
|
|
22556
22554
|
* @summary Get all HospitalHandles.
|
|
22557
22555
|
* @param {string} hospitalId
|
|
22558
|
-
* @param {string} [hospitalId2]
|
|
22559
22556
|
* @param {string} [id]
|
|
22560
22557
|
* @param {SnsType} [snsType]
|
|
22561
22558
|
* @param {string} [handle]
|
|
@@ -22565,7 +22562,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22565
22562
|
* @param {*} [options] Override http request option.
|
|
22566
22563
|
* @throws {RequiredError}
|
|
22567
22564
|
*/
|
|
22568
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
22565
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSnsHandlesModel>>;
|
|
22569
22566
|
/**
|
|
22570
22567
|
*
|
|
22571
22568
|
* @summary Delete HospitalHandle.
|
|
@@ -22879,7 +22876,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22879
22876
|
*
|
|
22880
22877
|
* @summary Get all HospitalWorkingDays.
|
|
22881
22878
|
* @param {string} hospitalId
|
|
22882
|
-
* @param {string} [hospitalId2]
|
|
22883
22879
|
* @param {string} [id]
|
|
22884
22880
|
* @param {string} [dayOfWeek]
|
|
22885
22881
|
* @param {Date} [timeFrom]
|
|
@@ -22891,7 +22887,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22891
22887
|
* @param {*} [options] Override http request option.
|
|
22892
22888
|
* @throws {RequiredError}
|
|
22893
22889
|
*/
|
|
22894
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
22890
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(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 | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
|
|
22895
22891
|
/**
|
|
22896
22892
|
*
|
|
22897
22893
|
* @summary Create HospitalWorkingDay.
|
|
@@ -22900,7 +22896,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22900
22896
|
* @param {*} [options] Override http request option.
|
|
22901
22897
|
* @throws {RequiredError}
|
|
22902
22898
|
*/
|
|
22903
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
22899
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
|
|
22904
22900
|
/**
|
|
22905
22901
|
*
|
|
22906
22902
|
* @summary Delete HospitalWorkingDay.
|
|
@@ -23223,7 +23219,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23223
23219
|
*
|
|
23224
23220
|
* @summary Get all HospitalHandles.
|
|
23225
23221
|
* @param {string} hospitalId
|
|
23226
|
-
* @param {string} [hospitalId2]
|
|
23227
23222
|
* @param {string} [id]
|
|
23228
23223
|
* @param {SnsType} [snsType]
|
|
23229
23224
|
* @param {string} [handle]
|
|
@@ -23233,7 +23228,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23233
23228
|
* @param {*} [options] Override http request option.
|
|
23234
23229
|
* @throws {RequiredError}
|
|
23235
23230
|
*/
|
|
23236
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
23231
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
|
|
23237
23232
|
/**
|
|
23238
23233
|
*
|
|
23239
23234
|
* @summary Delete HospitalHandle.
|
|
@@ -23547,7 +23542,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23547
23542
|
*
|
|
23548
23543
|
* @summary Get all HospitalWorkingDays.
|
|
23549
23544
|
* @param {string} hospitalId
|
|
23550
|
-
* @param {string} [hospitalId2]
|
|
23551
23545
|
* @param {string} [id]
|
|
23552
23546
|
* @param {string} [dayOfWeek]
|
|
23553
23547
|
* @param {Date} [timeFrom]
|
|
@@ -23559,7 +23553,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23559
23553
|
* @param {*} [options] Override http request option.
|
|
23560
23554
|
* @throws {RequiredError}
|
|
23561
23555
|
*/
|
|
23562
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
23556
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(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>;
|
|
23563
23557
|
/**
|
|
23564
23558
|
*
|
|
23565
23559
|
* @summary Create HospitalWorkingDay.
|
|
@@ -23568,7 +23562,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23568
23562
|
* @param {*} [options] Override http request option.
|
|
23569
23563
|
* @throws {RequiredError}
|
|
23570
23564
|
*/
|
|
23571
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<
|
|
23565
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<WorkingDayModel>;
|
|
23572
23566
|
/**
|
|
23573
23567
|
*
|
|
23574
23568
|
* @summary Delete HospitalWorkingDay.
|
|
@@ -23915,7 +23909,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23915
23909
|
*
|
|
23916
23910
|
* @summary Get all HospitalHandles.
|
|
23917
23911
|
* @param {string} hospitalId
|
|
23918
|
-
* @param {string} [hospitalId2]
|
|
23919
23912
|
* @param {string} [id]
|
|
23920
23913
|
* @param {SnsType} [snsType]
|
|
23921
23914
|
* @param {string} [handle]
|
|
@@ -23926,7 +23919,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23926
23919
|
* @throws {RequiredError}
|
|
23927
23920
|
* @memberof HospitalsApi
|
|
23928
23921
|
*/
|
|
23929
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
23922
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel>>;
|
|
23930
23923
|
/**
|
|
23931
23924
|
*
|
|
23932
23925
|
* @summary Delete HospitalHandle.
|
|
@@ -24266,7 +24259,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24266
24259
|
*
|
|
24267
24260
|
* @summary Get all HospitalWorkingDays.
|
|
24268
24261
|
* @param {string} hospitalId
|
|
24269
|
-
* @param {string} [hospitalId2]
|
|
24270
24262
|
* @param {string} [id]
|
|
24271
24263
|
* @param {string} [dayOfWeek]
|
|
24272
24264
|
* @param {Date} [timeFrom]
|
|
@@ -24279,7 +24271,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24279
24271
|
* @throws {RequiredError}
|
|
24280
24272
|
* @memberof HospitalsApi
|
|
24281
24273
|
*/
|
|
24282
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
24274
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(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>>;
|
|
24283
24275
|
/**
|
|
24284
24276
|
*
|
|
24285
24277
|
* @summary Create HospitalWorkingDay.
|
|
@@ -24289,7 +24281,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24289
24281
|
* @throws {RequiredError}
|
|
24290
24282
|
* @memberof HospitalsApi
|
|
24291
24283
|
*/
|
|
24292
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24284
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
|
|
24293
24285
|
/**
|
|
24294
24286
|
*
|
|
24295
24287
|
* @summary Delete HospitalWorkingDay.
|