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/src/api.ts
CHANGED
|
@@ -7923,13 +7923,13 @@ export interface HospitalModel {
|
|
|
7923
7923
|
* @type {Array<WorkingDay>}
|
|
7924
7924
|
* @memberof HospitalModel
|
|
7925
7925
|
*/
|
|
7926
|
-
'
|
|
7926
|
+
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
7927
7927
|
/**
|
|
7928
7928
|
*
|
|
7929
7929
|
* @type {Array<SnsHandle>}
|
|
7930
7930
|
* @memberof HospitalModel
|
|
7931
7931
|
*/
|
|
7932
|
-
'
|
|
7932
|
+
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
7933
7933
|
}
|
|
7934
7934
|
/**
|
|
7935
7935
|
*
|
|
@@ -25005,7 +25005,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
25005
25005
|
},
|
|
25006
25006
|
/**
|
|
25007
25007
|
*
|
|
25008
|
-
* @summary Get all
|
|
25008
|
+
* @summary Get all DoctorLanguages.
|
|
25009
25009
|
* @param {string} doctorId
|
|
25010
25010
|
* @param {string} [language]
|
|
25011
25011
|
* @param {number} [page]
|
|
@@ -25065,7 +25065,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
25065
25065
|
},
|
|
25066
25066
|
/**
|
|
25067
25067
|
*
|
|
25068
|
-
* @summary Delete
|
|
25068
|
+
* @summary Delete DoctorLanguage
|
|
25069
25069
|
* @param {string} doctorId
|
|
25070
25070
|
* @param {string} languageId
|
|
25071
25071
|
* @param {*} [options] Override http request option.
|
|
@@ -25107,7 +25107,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
25107
25107
|
},
|
|
25108
25108
|
/**
|
|
25109
25109
|
*
|
|
25110
|
-
* @summary Get
|
|
25110
|
+
* @summary Get DoctorLanguage.
|
|
25111
25111
|
* @param {string} doctorId
|
|
25112
25112
|
* @param {string} languageId
|
|
25113
25113
|
* @param {*} [options] Override http request option.
|
|
@@ -25149,7 +25149,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
25149
25149
|
},
|
|
25150
25150
|
/**
|
|
25151
25151
|
*
|
|
25152
|
-
* @summary Update
|
|
25152
|
+
* @summary Update DoctorLanguage.
|
|
25153
25153
|
* @param {string} doctorId
|
|
25154
25154
|
* @param {string} languageId
|
|
25155
25155
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -25195,7 +25195,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
25195
25195
|
},
|
|
25196
25196
|
/**
|
|
25197
25197
|
*
|
|
25198
|
-
* @summary Create
|
|
25198
|
+
* @summary Create DoctorLanguage.
|
|
25199
25199
|
* @param {string} doctorId
|
|
25200
25200
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
25201
25201
|
* @param {*} [options] Override http request option.
|
|
@@ -26544,7 +26544,7 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
26544
26544
|
},
|
|
26545
26545
|
/**
|
|
26546
26546
|
*
|
|
26547
|
-
* @summary Get all
|
|
26547
|
+
* @summary Get all DoctorLanguages.
|
|
26548
26548
|
* @param {string} doctorId
|
|
26549
26549
|
* @param {string} [language]
|
|
26550
26550
|
* @param {number} [page]
|
|
@@ -26559,7 +26559,7 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
26559
26559
|
},
|
|
26560
26560
|
/**
|
|
26561
26561
|
*
|
|
26562
|
-
* @summary Delete
|
|
26562
|
+
* @summary Delete DoctorLanguage
|
|
26563
26563
|
* @param {string} doctorId
|
|
26564
26564
|
* @param {string} languageId
|
|
26565
26565
|
* @param {*} [options] Override http request option.
|
|
@@ -26571,7 +26571,7 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
26571
26571
|
},
|
|
26572
26572
|
/**
|
|
26573
26573
|
*
|
|
26574
|
-
* @summary Get
|
|
26574
|
+
* @summary Get DoctorLanguage.
|
|
26575
26575
|
* @param {string} doctorId
|
|
26576
26576
|
* @param {string} languageId
|
|
26577
26577
|
* @param {*} [options] Override http request option.
|
|
@@ -26583,7 +26583,7 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
26583
26583
|
},
|
|
26584
26584
|
/**
|
|
26585
26585
|
*
|
|
26586
|
-
* @summary Update
|
|
26586
|
+
* @summary Update DoctorLanguage.
|
|
26587
26587
|
* @param {string} doctorId
|
|
26588
26588
|
* @param {string} languageId
|
|
26589
26589
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -26596,7 +26596,7 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
26596
26596
|
},
|
|
26597
26597
|
/**
|
|
26598
26598
|
*
|
|
26599
|
-
* @summary Create
|
|
26599
|
+
* @summary Create DoctorLanguage.
|
|
26600
26600
|
* @param {string} doctorId
|
|
26601
26601
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
26602
26602
|
* @param {*} [options] Override http request option.
|
|
@@ -27095,7 +27095,7 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
27095
27095
|
},
|
|
27096
27096
|
/**
|
|
27097
27097
|
*
|
|
27098
|
-
* @summary Get all
|
|
27098
|
+
* @summary Get all DoctorLanguages.
|
|
27099
27099
|
* @param {string} doctorId
|
|
27100
27100
|
* @param {string} [language]
|
|
27101
27101
|
* @param {number} [page]
|
|
@@ -27109,7 +27109,7 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
27109
27109
|
},
|
|
27110
27110
|
/**
|
|
27111
27111
|
*
|
|
27112
|
-
* @summary Delete
|
|
27112
|
+
* @summary Delete DoctorLanguage
|
|
27113
27113
|
* @param {string} doctorId
|
|
27114
27114
|
* @param {string} languageId
|
|
27115
27115
|
* @param {*} [options] Override http request option.
|
|
@@ -27120,7 +27120,7 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
27120
27120
|
},
|
|
27121
27121
|
/**
|
|
27122
27122
|
*
|
|
27123
|
-
* @summary Get
|
|
27123
|
+
* @summary Get DoctorLanguage.
|
|
27124
27124
|
* @param {string} doctorId
|
|
27125
27125
|
* @param {string} languageId
|
|
27126
27126
|
* @param {*} [options] Override http request option.
|
|
@@ -27131,7 +27131,7 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
27131
27131
|
},
|
|
27132
27132
|
/**
|
|
27133
27133
|
*
|
|
27134
|
-
* @summary Update
|
|
27134
|
+
* @summary Update DoctorLanguage.
|
|
27135
27135
|
* @param {string} doctorId
|
|
27136
27136
|
* @param {string} languageId
|
|
27137
27137
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -27143,7 +27143,7 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
27143
27143
|
},
|
|
27144
27144
|
/**
|
|
27145
27145
|
*
|
|
27146
|
-
* @summary Create
|
|
27146
|
+
* @summary Create DoctorLanguage.
|
|
27147
27147
|
* @param {string} doctorId
|
|
27148
27148
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
27149
27149
|
* @param {*} [options] Override http request option.
|
|
@@ -27653,7 +27653,7 @@ export class DoctorsApi extends BaseAPI {
|
|
|
27653
27653
|
|
|
27654
27654
|
/**
|
|
27655
27655
|
*
|
|
27656
|
-
* @summary Get all
|
|
27656
|
+
* @summary Get all DoctorLanguages.
|
|
27657
27657
|
* @param {string} doctorId
|
|
27658
27658
|
* @param {string} [language]
|
|
27659
27659
|
* @param {number} [page]
|
|
@@ -27669,7 +27669,7 @@ export class DoctorsApi extends BaseAPI {
|
|
|
27669
27669
|
|
|
27670
27670
|
/**
|
|
27671
27671
|
*
|
|
27672
|
-
* @summary Delete
|
|
27672
|
+
* @summary Delete DoctorLanguage
|
|
27673
27673
|
* @param {string} doctorId
|
|
27674
27674
|
* @param {string} languageId
|
|
27675
27675
|
* @param {*} [options] Override http request option.
|
|
@@ -27682,7 +27682,7 @@ export class DoctorsApi extends BaseAPI {
|
|
|
27682
27682
|
|
|
27683
27683
|
/**
|
|
27684
27684
|
*
|
|
27685
|
-
* @summary Get
|
|
27685
|
+
* @summary Get DoctorLanguage.
|
|
27686
27686
|
* @param {string} doctorId
|
|
27687
27687
|
* @param {string} languageId
|
|
27688
27688
|
* @param {*} [options] Override http request option.
|
|
@@ -27695,7 +27695,7 @@ export class DoctorsApi extends BaseAPI {
|
|
|
27695
27695
|
|
|
27696
27696
|
/**
|
|
27697
27697
|
*
|
|
27698
|
-
* @summary Update
|
|
27698
|
+
* @summary Update DoctorLanguage.
|
|
27699
27699
|
* @param {string} doctorId
|
|
27700
27700
|
* @param {string} languageId
|
|
27701
27701
|
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
@@ -27709,7 +27709,7 @@ export class DoctorsApi extends BaseAPI {
|
|
|
27709
27709
|
|
|
27710
27710
|
/**
|
|
27711
27711
|
*
|
|
27712
|
-
* @summary Create
|
|
27712
|
+
* @summary Create DoctorLanguage.
|
|
27713
27713
|
* @param {string} doctorId
|
|
27714
27714
|
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
27715
27715
|
* @param {*} [options] Override http request option.
|
|
@@ -31332,7 +31332,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
31332
31332
|
*
|
|
31333
31333
|
* @summary Get all HospitalHandles.
|
|
31334
31334
|
* @param {string} hospitalId
|
|
31335
|
-
* @param {string} [hospitalId2]
|
|
31336
31335
|
* @param {string} [id]
|
|
31337
31336
|
* @param {SnsType} [snsType]
|
|
31338
31337
|
* @param {string} [handle]
|
|
@@ -31342,7 +31341,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
31342
31341
|
* @param {*} [options] Override http request option.
|
|
31343
31342
|
* @throws {RequiredError}
|
|
31344
31343
|
*/
|
|
31345
|
-
apiV1HospitalsHospitalIdHandlesGet: async (hospitalId: string,
|
|
31344
|
+
apiV1HospitalsHospitalIdHandlesGet: async (hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
31346
31345
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
31347
31346
|
assertParamExists('apiV1HospitalsHospitalIdHandlesGet', 'hospitalId', hospitalId)
|
|
31348
31347
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/handles`
|
|
@@ -31362,10 +31361,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
31362
31361
|
// oauth required
|
|
31363
31362
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
31364
31363
|
|
|
31365
|
-
if (hospitalId2 !== undefined) {
|
|
31366
|
-
localVarQueryParameter['HospitalId'] = hospitalId2;
|
|
31367
|
-
}
|
|
31368
|
-
|
|
31369
31364
|
if (id !== undefined) {
|
|
31370
31365
|
localVarQueryParameter['Id'] = id;
|
|
31371
31366
|
}
|
|
@@ -32879,7 +32874,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32879
32874
|
*
|
|
32880
32875
|
* @summary Get all HospitalWorkingDays.
|
|
32881
32876
|
* @param {string} hospitalId
|
|
32882
|
-
* @param {string} [hospitalId2]
|
|
32883
32877
|
* @param {string} [id]
|
|
32884
32878
|
* @param {string} [dayOfWeek]
|
|
32885
32879
|
* @param {Date} [timeFrom]
|
|
@@ -32891,7 +32885,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32891
32885
|
* @param {*} [options] Override http request option.
|
|
32892
32886
|
* @throws {RequiredError}
|
|
32893
32887
|
*/
|
|
32894
|
-
apiV1HospitalsHospitalIdWorkingdaysGet: async (hospitalId: string,
|
|
32888
|
+
apiV1HospitalsHospitalIdWorkingdaysGet: async (hospitalId: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32895
32889
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
32896
32890
|
assertParamExists('apiV1HospitalsHospitalIdWorkingdaysGet', 'hospitalId', hospitalId)
|
|
32897
32891
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/workingdays`
|
|
@@ -32911,10 +32905,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32911
32905
|
// oauth required
|
|
32912
32906
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
32913
32907
|
|
|
32914
|
-
if (hospitalId2 !== undefined) {
|
|
32915
|
-
localVarQueryParameter['HospitalId'] = hospitalId2;
|
|
32916
|
-
}
|
|
32917
|
-
|
|
32918
32908
|
if (id !== undefined) {
|
|
32919
32909
|
localVarQueryParameter['Id'] = id;
|
|
32920
32910
|
}
|
|
@@ -33667,7 +33657,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
33667
33657
|
*
|
|
33668
33658
|
* @summary Get all HospitalHandles.
|
|
33669
33659
|
* @param {string} hospitalId
|
|
33670
|
-
* @param {string} [hospitalId2]
|
|
33671
33660
|
* @param {string} [id]
|
|
33672
33661
|
* @param {SnsType} [snsType]
|
|
33673
33662
|
* @param {string} [handle]
|
|
@@ -33677,8 +33666,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
33677
33666
|
* @param {*} [options] Override http request option.
|
|
33678
33667
|
* @throws {RequiredError}
|
|
33679
33668
|
*/
|
|
33680
|
-
async apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
33681
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdHandlesGet(hospitalId,
|
|
33669
|
+
async apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSnsHandlesModel>> {
|
|
33670
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdHandlesGet(hospitalId, id, snsType, handle, page, limit, lastRetrieved, options);
|
|
33682
33671
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
33683
33672
|
},
|
|
33684
33673
|
/**
|
|
@@ -34072,7 +34061,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34072
34061
|
*
|
|
34073
34062
|
* @summary Get all HospitalWorkingDays.
|
|
34074
34063
|
* @param {string} hospitalId
|
|
34075
|
-
* @param {string} [hospitalId2]
|
|
34076
34064
|
* @param {string} [id]
|
|
34077
34065
|
* @param {string} [dayOfWeek]
|
|
34078
34066
|
* @param {Date} [timeFrom]
|
|
@@ -34084,8 +34072,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34084
34072
|
* @param {*} [options] Override http request option.
|
|
34085
34073
|
* @throws {RequiredError}
|
|
34086
34074
|
*/
|
|
34087
|
-
async apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
34088
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId,
|
|
34075
|
+
async apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkingDaysModel>> {
|
|
34076
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId, id, dayOfWeek, timeFrom, timeTo, checkHoliday, page, limit, lastRetrieved, options);
|
|
34089
34077
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
34090
34078
|
},
|
|
34091
34079
|
/**
|
|
@@ -34096,7 +34084,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34096
34084
|
* @param {*} [options] Override http request option.
|
|
34097
34085
|
* @throws {RequiredError}
|
|
34098
34086
|
*/
|
|
34099
|
-
async apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
34087
|
+
async apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkingDayModel>> {
|
|
34100
34088
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId, createHospitalWorkingDayCommand, options);
|
|
34101
34089
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
34102
34090
|
},
|
|
@@ -34488,7 +34476,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
34488
34476
|
*
|
|
34489
34477
|
* @summary Get all HospitalHandles.
|
|
34490
34478
|
* @param {string} hospitalId
|
|
34491
|
-
* @param {string} [hospitalId2]
|
|
34492
34479
|
* @param {string} [id]
|
|
34493
34480
|
* @param {SnsType} [snsType]
|
|
34494
34481
|
* @param {string} [handle]
|
|
@@ -34498,8 +34485,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
34498
34485
|
* @param {*} [options] Override http request option.
|
|
34499
34486
|
* @throws {RequiredError}
|
|
34500
34487
|
*/
|
|
34501
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
34502
|
-
return localVarFp.apiV1HospitalsHospitalIdHandlesGet(hospitalId,
|
|
34488
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSnsHandlesModel> {
|
|
34489
|
+
return localVarFp.apiV1HospitalsHospitalIdHandlesGet(hospitalId, id, snsType, handle, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
34503
34490
|
},
|
|
34504
34491
|
/**
|
|
34505
34492
|
*
|
|
@@ -34866,7 +34853,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
34866
34853
|
*
|
|
34867
34854
|
* @summary Get all HospitalWorkingDays.
|
|
34868
34855
|
* @param {string} hospitalId
|
|
34869
|
-
* @param {string} [hospitalId2]
|
|
34870
34856
|
* @param {string} [id]
|
|
34871
34857
|
* @param {string} [dayOfWeek]
|
|
34872
34858
|
* @param {Date} [timeFrom]
|
|
@@ -34878,8 +34864,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
34878
34864
|
* @param {*} [options] Override http request option.
|
|
34879
34865
|
* @throws {RequiredError}
|
|
34880
34866
|
*/
|
|
34881
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
34882
|
-
return localVarFp.apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId,
|
|
34867
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<WorkingDaysModel> {
|
|
34868
|
+
return localVarFp.apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId, id, dayOfWeek, timeFrom, timeTo, checkHoliday, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
34883
34869
|
},
|
|
34884
34870
|
/**
|
|
34885
34871
|
*
|
|
@@ -34889,7 +34875,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
34889
34875
|
* @param {*} [options] Override http request option.
|
|
34890
34876
|
* @throws {RequiredError}
|
|
34891
34877
|
*/
|
|
34892
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: any): AxiosPromise<
|
|
34878
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: any): AxiosPromise<WorkingDayModel> {
|
|
34893
34879
|
return localVarFp.apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId, createHospitalWorkingDayCommand, options).then((request) => request(axios, basePath));
|
|
34894
34880
|
},
|
|
34895
34881
|
/**
|
|
@@ -35318,7 +35304,6 @@ export class HospitalsApi extends BaseAPI {
|
|
|
35318
35304
|
*
|
|
35319
35305
|
* @summary Get all HospitalHandles.
|
|
35320
35306
|
* @param {string} hospitalId
|
|
35321
|
-
* @param {string} [hospitalId2]
|
|
35322
35307
|
* @param {string} [id]
|
|
35323
35308
|
* @param {SnsType} [snsType]
|
|
35324
35309
|
* @param {string} [handle]
|
|
@@ -35329,8 +35314,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
35329
35314
|
* @throws {RequiredError}
|
|
35330
35315
|
* @memberof HospitalsApi
|
|
35331
35316
|
*/
|
|
35332
|
-
public apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
35333
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdHandlesGet(hospitalId,
|
|
35317
|
+
public apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
35318
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdHandlesGet(hospitalId, id, snsType, handle, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
35334
35319
|
}
|
|
35335
35320
|
|
|
35336
35321
|
/**
|
|
@@ -35750,7 +35735,6 @@ export class HospitalsApi extends BaseAPI {
|
|
|
35750
35735
|
*
|
|
35751
35736
|
* @summary Get all HospitalWorkingDays.
|
|
35752
35737
|
* @param {string} hospitalId
|
|
35753
|
-
* @param {string} [hospitalId2]
|
|
35754
35738
|
* @param {string} [id]
|
|
35755
35739
|
* @param {string} [dayOfWeek]
|
|
35756
35740
|
* @param {Date} [timeFrom]
|
|
@@ -35763,8 +35747,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
35763
35747
|
* @throws {RequiredError}
|
|
35764
35748
|
* @memberof HospitalsApi
|
|
35765
35749
|
*/
|
|
35766
|
-
public apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
35767
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId,
|
|
35750
|
+
public apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
35751
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId, id, dayOfWeek, timeFrom, timeTo, checkHoliday, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
35768
35752
|
}
|
|
35769
35753
|
|
|
35770
35754
|
/**
|