ch-admin-api-client-typescript 5.67.1 → 5.69.9
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/about-us-api.d.ts +28 -28
- package/lib/api/about-us-api.js +28 -28
- package/lib/api/appointments-api.d.ts +52 -52
- package/lib/api/appointments-api.js +52 -52
- package/lib/api/content-managers-api.d.ts +24 -24
- package/lib/api/content-managers-api.js +24 -24
- package/lib/api/countries-api.d.ts +28 -28
- package/lib/api/countries-api.js +28 -28
- package/lib/api/form-results-api.d.ts +20 -20
- package/lib/api/form-results-api.js +20 -20
- package/lib/api/hospitals-api.d.ts +520 -520
- package/lib/api/hospitals-api.js +520 -520
- package/lib/api/languages-api.d.ts +8 -8
- package/lib/api/languages-api.js +8 -8
- package/lib/api/notifications-api.d.ts +8 -8
- package/lib/api/notifications-api.js +8 -8
- package/lib/api/patient-affiliations-api.d.ts +8 -8
- package/lib/api/patient-affiliations-api.js +8 -8
- package/lib/api/patient-managers-api.d.ts +24 -24
- package/lib/api/patient-managers-api.js +24 -24
- package/lib/api/patients-api.d.ts +48 -48
- package/lib/api/patients-api.js +48 -48
- package/lib/api/profiles-api.d.ts +24 -24
- package/lib/api/profiles-api.js +24 -24
- package/lib/api/specialties-api.d.ts +60 -60
- package/lib/api/specialties-api.js +60 -60
- package/lib/api/specialty-types-api.d.ts +64 -64
- package/lib/api/specialty-types-api.js +64 -64
- package/lib/api/survey-results-api.d.ts +16 -16
- package/lib/api/survey-results-api.js +16 -16
- package/lib/api/tags-api.d.ts +16 -16
- package/lib/api/tags-api.js +16 -16
- package/lib/api/translation-api.d.ts +8 -8
- package/lib/api/translation-api.js +8 -8
- package/lib/api/users-api.d.ts +8 -8
- package/lib/api/users-api.js +8 -8
- package/lib/models/about-us-page-model.d.ts +6 -0
- package/lib/models/about-us-page-model.d.ts.map +1 -1
- package/lib/models/article-model.d.ts +6 -0
- package/lib/models/article-model.d.ts.map +1 -1
- package/lib/models/country-model.d.ts +6 -0
- package/lib/models/country-model.d.ts.map +1 -1
- package/lib/models/deal-model.d.ts +6 -0
- package/lib/models/deal-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-model.d.ts +6 -0
- package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +6 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/hospital-service-model.d.ts +6 -0
- package/lib/models/hospital-service-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-model.d.ts +6 -0
- package/lib/models/hospital-specialty-model.d.ts.map +1 -1
- package/lib/models/notification-code.d.ts +1 -0
- package/lib/models/notification-code.d.ts.map +1 -1
- package/lib/models/notification-code.js +2 -1
- package/lib/models/specialty-model.d.ts +6 -0
- package/lib/models/specialty-model.d.ts.map +1 -1
- package/lib/models/specialty-type-model.d.ts +6 -0
- package/lib/models/specialty-type-model.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -166,7 +166,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
166
166
|
apiV1HospitalsGet: (hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
167
167
|
/**
|
|
168
168
|
*
|
|
169
|
-
* @summary Delete HospitalAccreditation. (Auth
|
|
169
|
+
* @summary Delete HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
170
170
|
* @param {string} hospitalId
|
|
171
171
|
* @param {string} accreditationId
|
|
172
172
|
* @param {*} [options] Override http request option.
|
|
@@ -175,7 +175,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
175
175
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdDelete: (hospitalId: string, accreditationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
176
176
|
/**
|
|
177
177
|
*
|
|
178
|
-
* @summary Get HospitalAccreditation. (Auth
|
|
178
|
+
* @summary Get HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
179
179
|
* @param {string} hospitalId
|
|
180
180
|
* @param {string} accreditationId
|
|
181
181
|
* @param {*} [options] Override http request option.
|
|
@@ -184,7 +184,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
184
184
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet: (hospitalId: string, accreditationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
185
185
|
/**
|
|
186
186
|
*
|
|
187
|
-
* @summary Get all HospitalAccreditations. (Auth
|
|
187
|
+
* @summary Get all HospitalAccreditations. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
188
188
|
* @param {string} hospitalId
|
|
189
189
|
* @param {string} [hospitalName]
|
|
190
190
|
* @param {string} [accreditationId]
|
|
@@ -198,7 +198,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
198
198
|
apiV1HospitalsHospitalIdAccreditationsGet: (hospitalId: string, hospitalName?: string, accreditationId?: string, accreditationName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
199
199
|
/**
|
|
200
200
|
*
|
|
201
|
-
* @summary Create HospitalAccreditation. (Auth
|
|
201
|
+
* @summary Create HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
202
202
|
* @param {string} hospitalId
|
|
203
203
|
* @param {CreateHospitalAccreditationCommand} [createHospitalAccreditationCommand]
|
|
204
204
|
* @param {*} [options] Override http request option.
|
|
@@ -222,7 +222,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
222
222
|
apiV1HospitalsHospitalIdAppointmenttimetableoverridesGet: (hospitalId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
223
223
|
/**
|
|
224
224
|
*
|
|
225
|
-
* @summary Delete Hospital appointment timetable overrides (Auth
|
|
225
|
+
* @summary Delete Hospital appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
226
226
|
* @param {string} hospitalId
|
|
227
227
|
* @param {DeleteHospitalAppointmentTimetableOverridesCommand} [deleteHospitalAppointmentTimetableOverridesCommand]
|
|
228
228
|
* @param {*} [options] Override http request option.
|
|
@@ -231,7 +231,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
231
231
|
apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch: (hospitalId: string, deleteHospitalAppointmentTimetableOverridesCommand?: DeleteHospitalAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
232
232
|
/**
|
|
233
233
|
*
|
|
234
|
-
* @summary Save Hospital appointment timetable overrides (Auth
|
|
234
|
+
* @summary Save Hospital appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
235
235
|
* @param {string} hospitalId
|
|
236
236
|
* @param {SaveHospitalAppointmentTimetableOverridesCommand} [saveHospitalAppointmentTimetableOverridesCommand]
|
|
237
237
|
* @param {*} [options] Override http request option.
|
|
@@ -255,7 +255,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
255
255
|
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: (hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
256
256
|
/**
|
|
257
257
|
*
|
|
258
|
-
* @summary Add, update, delete Hospital appointment timetables (Auth
|
|
258
|
+
* @summary Add, update, delete Hospital appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
259
259
|
* @param {string} hospitalId
|
|
260
260
|
* @param {BatchHospitalAppointmentTimetablesCommand} [batchHospitalAppointmentTimetablesCommand]
|
|
261
261
|
* @param {*} [options] Override http request option.
|
|
@@ -276,7 +276,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
276
276
|
apiV1HospitalsHospitalIdAppointmenttimetablesGet: (hospitalId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
277
277
|
/**
|
|
278
278
|
*
|
|
279
|
-
* @summary Delete bankAccountInfo (Auth
|
|
279
|
+
* @summary Delete bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
280
280
|
* @param {string} hospitalId
|
|
281
281
|
* @param {string} bankAccountInfoId
|
|
282
282
|
* @param {*} [options] Override http request option.
|
|
@@ -285,7 +285,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
285
285
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDelete: (hospitalId: string, bankAccountInfoId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
286
286
|
/**
|
|
287
287
|
*
|
|
288
|
-
* @summary Get bankAccountInfo (Auth
|
|
288
|
+
* @summary Get bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
289
289
|
* @param {string} hospitalId
|
|
290
290
|
* @param {string} bankAccountInfoId
|
|
291
291
|
* @param {*} [options] Override http request option.
|
|
@@ -294,7 +294,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
294
294
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet: (hospitalId: string, bankAccountInfoId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
295
295
|
/**
|
|
296
296
|
*
|
|
297
|
-
* @summary Update bankAccountInfo (Auth
|
|
297
|
+
* @summary Update bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
298
298
|
* @param {string} hospitalId
|
|
299
299
|
* @param {string} bankAccountInfoId
|
|
300
300
|
* @param {UpdateHospitalBankAccountInfoCommand} [updateHospitalBankAccountInfoCommand]
|
|
@@ -304,7 +304,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
304
304
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut: (hospitalId: string, bankAccountInfoId: string, updateHospitalBankAccountInfoCommand?: UpdateHospitalBankAccountInfoCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
305
305
|
/**
|
|
306
306
|
*
|
|
307
|
-
* @summary Get all bankAccountInfos (Auth
|
|
307
|
+
* @summary Get all bankAccountInfos (Auth policies: RequireDoctorRole)
|
|
308
308
|
* @param {string} hospitalId
|
|
309
309
|
* @param {string} [bank]
|
|
310
310
|
* @param {boolean} [isEnabled]
|
|
@@ -317,7 +317,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
317
317
|
apiV1HospitalsHospitalIdBankaccountinfosGet: (hospitalId: string, bank?: string, isEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
318
318
|
/**
|
|
319
319
|
*
|
|
320
|
-
* @summary Create bankAccountInfo (Auth
|
|
320
|
+
* @summary Create bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
321
321
|
* @param {string} hospitalId
|
|
322
322
|
* @param {CreateHospitalBankAccountInfoCommand} [createHospitalBankAccountInfoCommand]
|
|
323
323
|
* @param {*} [options] Override http request option.
|
|
@@ -326,7 +326,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
326
326
|
apiV1HospitalsHospitalIdBankaccountinfosPost: (hospitalId: string, createHospitalBankAccountInfoCommand?: CreateHospitalBankAccountInfoCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
327
327
|
/**
|
|
328
328
|
*
|
|
329
|
-
* @summary Delete hospital contact (Auth
|
|
329
|
+
* @summary Delete hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
330
330
|
* @param {string} hospitalId
|
|
331
331
|
* @param {string} contactId
|
|
332
332
|
* @param {boolean} [isPermanent]
|
|
@@ -345,7 +345,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
345
345
|
apiV1HospitalsHospitalIdContactsContactIdGet: (hospitalId: string, contactId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
346
346
|
/**
|
|
347
347
|
*
|
|
348
|
-
* @summary Update hospital contact (Auth
|
|
348
|
+
* @summary Update hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
349
349
|
* @param {string} hospitalId
|
|
350
350
|
* @param {string} contactId
|
|
351
351
|
* @param {UpdateHospitalContactCommand} [updateHospitalContactCommand]
|
|
@@ -355,7 +355,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
355
355
|
apiV1HospitalsHospitalIdContactsContactIdPut: (hospitalId: string, contactId: string, updateHospitalContactCommand?: UpdateHospitalContactCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
356
356
|
/**
|
|
357
357
|
*
|
|
358
|
-
* @summary Reactivate hospital contact (Auth
|
|
358
|
+
* @summary Reactivate hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
359
359
|
* @param {string} hospitalId
|
|
360
360
|
* @param {string} contactId
|
|
361
361
|
* @param {*} [options] Override http request option.
|
|
@@ -380,7 +380,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
380
380
|
apiV1HospitalsHospitalIdContactsGet: (hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
381
381
|
/**
|
|
382
382
|
*
|
|
383
|
-
* @summary Create hospital contact (Auth
|
|
383
|
+
* @summary Create hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
384
384
|
* @param {string} hospitalId
|
|
385
385
|
* @param {CreateHospitalContactCommand} [createHospitalContactCommand]
|
|
386
386
|
* @param {*} [options] Override http request option.
|
|
@@ -389,7 +389,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
389
389
|
apiV1HospitalsHospitalIdContactsPost: (hospitalId: string, createHospitalContactCommand?: CreateHospitalContactCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
390
390
|
/**
|
|
391
391
|
*
|
|
392
|
-
* @summary Batch for contacts sorting (Auth
|
|
392
|
+
* @summary Batch for contacts sorting (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
393
393
|
* @param {string} hospitalId
|
|
394
394
|
* @param {ContactSortingCommand} [contactSortingCommand]
|
|
395
395
|
* @param {*} [options] Override http request option.
|
|
@@ -398,7 +398,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
398
398
|
apiV1HospitalsHospitalIdContactsSortPut: (hospitalId: string, contactSortingCommand?: ContactSortingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
399
399
|
/**
|
|
400
400
|
*
|
|
401
|
-
* @summary Delete Hospital. (Auth
|
|
401
|
+
* @summary Delete Hospital. (Auth policies: RequireManagerRole)
|
|
402
402
|
* @param {string} hospitalId
|
|
403
403
|
* @param {boolean} [isPermanent]
|
|
404
404
|
* @param {*} [options] Override http request option.
|
|
@@ -407,7 +407,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
407
407
|
apiV1HospitalsHospitalIdDelete: (hospitalId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
408
408
|
/**
|
|
409
409
|
*
|
|
410
|
-
* @summary Delete HospitalEquipment (Auth
|
|
410
|
+
* @summary Delete HospitalEquipment (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
411
411
|
* @param {string} hospitalId
|
|
412
412
|
* @param {string} equipmentId
|
|
413
413
|
* @param {boolean} [isPermanent]
|
|
@@ -440,7 +440,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
440
440
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasGet: (hospitalId: string, equipmentId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
441
441
|
/**
|
|
442
442
|
*
|
|
443
|
-
* @summary Delete EquipmentMedia (Auth
|
|
443
|
+
* @summary Delete EquipmentMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
444
444
|
* @param {string} hospitalId
|
|
445
445
|
* @param {string} equipmentId
|
|
446
446
|
* @param {string} mediaId
|
|
@@ -460,7 +460,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
460
460
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdGet: (hospitalId: string, equipmentId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
461
461
|
/**
|
|
462
462
|
*
|
|
463
|
-
* @summary Update EquipmentMedia. (Auth
|
|
463
|
+
* @summary Update EquipmentMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
464
464
|
* @param {string} hospitalId
|
|
465
465
|
* @param {string} equipmentId
|
|
466
466
|
* @param {string} mediaId
|
|
@@ -471,7 +471,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
471
471
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdPut: (hospitalId: string, equipmentId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
472
472
|
/**
|
|
473
473
|
*
|
|
474
|
-
* @summary Create EquipmentMedia. (Auth
|
|
474
|
+
* @summary Create EquipmentMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
475
475
|
* @param {string} hospitalId
|
|
476
476
|
* @param {string} equipmentId
|
|
477
477
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
@@ -481,7 +481,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
481
481
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasPost: (hospitalId: string, equipmentId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
482
482
|
/**
|
|
483
483
|
*
|
|
484
|
-
* @summary Update HospitalEquipment. (Auth
|
|
484
|
+
* @summary Update HospitalEquipment. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
485
485
|
* @param {string} hospitalId
|
|
486
486
|
* @param {string} equipmentId
|
|
487
487
|
* @param {UpdateHospitalEquipmentCommand} [updateHospitalEquipmentCommand]
|
|
@@ -491,7 +491,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
491
491
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut: (hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
492
492
|
/**
|
|
493
493
|
*
|
|
494
|
-
* @summary Reactivate HospitalEquipment. (Auth
|
|
494
|
+
* @summary Reactivate HospitalEquipment. (Auth policies: RequireManagerRole)
|
|
495
495
|
* @param {string} hospitalId
|
|
496
496
|
* @param {string} equipmentId
|
|
497
497
|
* @param {*} [options] Override http request option.
|
|
@@ -518,7 +518,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
518
518
|
apiV1HospitalsHospitalIdEquipmentsGet: (hospitalId: string, id?: string, name?: string, hospitalId2?: string, hospitalName?: string, description?: string, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
519
519
|
/**
|
|
520
520
|
*
|
|
521
|
-
* @summary Create HospitalEquipment. (Auth
|
|
521
|
+
* @summary Create HospitalEquipment. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
522
522
|
* @param {string} hospitalId
|
|
523
523
|
* @param {CreateHospitalEquipmentCommand} [createHospitalEquipmentCommand]
|
|
524
524
|
* @param {*} [options] Override http request option.
|
|
@@ -527,7 +527,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
527
527
|
apiV1HospitalsHospitalIdEquipmentsPost: (hospitalId: string, createHospitalEquipmentCommand?: CreateHospitalEquipmentCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
528
528
|
/**
|
|
529
529
|
*
|
|
530
|
-
* @summary Delete HospitalEvaluation. (Auth
|
|
530
|
+
* @summary Delete HospitalEvaluation. (Auth policies: RequireContentManagerRole)
|
|
531
531
|
* @param {string} hospitalId
|
|
532
532
|
* @param {string} evaluationId
|
|
533
533
|
* @param {*} [options] Override http request option.
|
|
@@ -559,7 +559,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
559
559
|
apiV1HospitalsHospitalIdEvaluationsGet: (hospitalId: string, id?: string, name?: string, stars?: number, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
560
560
|
/**
|
|
561
561
|
*
|
|
562
|
-
* @summary Create HospitalEvaluation. (Auth
|
|
562
|
+
* @summary Create HospitalEvaluation. (Auth policies: RequireContentManagerRole)
|
|
563
563
|
* @param {string} hospitalId
|
|
564
564
|
* @param {CreateHospitalEvaluationCommand} [createHospitalEvaluationCommand]
|
|
565
565
|
* @param {*} [options] Override http request option.
|
|
@@ -568,7 +568,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
568
568
|
apiV1HospitalsHospitalIdEvaluationsPost: (hospitalId: string, createHospitalEvaluationCommand?: CreateHospitalEvaluationCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
569
569
|
/**
|
|
570
570
|
*
|
|
571
|
-
* @summary Get footerNavigationItems (Auth
|
|
571
|
+
* @summary Get footerNavigationItems (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
572
572
|
* @param {string} hospitalId
|
|
573
573
|
* @param {string} languageCode
|
|
574
574
|
* @param {*} [options] Override http request option.
|
|
@@ -577,7 +577,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
577
577
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet: (hospitalId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
578
578
|
/**
|
|
579
579
|
*
|
|
580
|
-
* @summary Delete footerNavigationItem (Auth
|
|
580
|
+
* @summary Delete footerNavigationItem (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
581
581
|
* @param {string} hospitalId
|
|
582
582
|
* @param {string} languageCode
|
|
583
583
|
* @param {string} id Id of level 1 item in the json data
|
|
@@ -587,7 +587,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
587
587
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete: (hospitalId: string, languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
588
588
|
/**
|
|
589
589
|
*
|
|
590
|
-
* @summary Get footerNavigationItem by Id (Auth
|
|
590
|
+
* @summary Get footerNavigationItem by Id (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
591
591
|
* @param {string} hospitalId
|
|
592
592
|
* @param {string} languageCode
|
|
593
593
|
* @param {string} id
|
|
@@ -597,7 +597,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
597
597
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet: (hospitalId: string, languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
598
598
|
/**
|
|
599
599
|
*
|
|
600
|
-
* @summary Get footerNavigationItems by ParentId (Auth
|
|
600
|
+
* @summary Get footerNavigationItems by ParentId (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
601
601
|
* @param {string} hospitalId
|
|
602
602
|
* @param {string} languageCode
|
|
603
603
|
* @param {string} parentId
|
|
@@ -607,7 +607,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
607
607
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet: (hospitalId: string, languageCode: string, parentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
608
608
|
/**
|
|
609
609
|
*
|
|
610
|
-
* @summary Save footerNavigationItem (Auth
|
|
610
|
+
* @summary Save footerNavigationItem (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
611
611
|
* @param {string} hospitalId
|
|
612
612
|
* @param {string} languageCode
|
|
613
613
|
* @param {SaveFooterNavigationsCommand} [saveFooterNavigationsCommand]
|
|
@@ -617,7 +617,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
617
617
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost: (hospitalId: string, languageCode: string, saveFooterNavigationsCommand?: SaveFooterNavigationsCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
618
618
|
/**
|
|
619
619
|
*
|
|
620
|
-
* @summary Batch for footer navigation items sorting <br> Level 1 item only (Auth
|
|
620
|
+
* @summary Batch for footer navigation items sorting <br> Level 1 item only (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
621
621
|
* @param {string} hospitalId
|
|
622
622
|
* @param {string} languageCode
|
|
623
623
|
* @param {SortFooterNavigationsCommand} [sortFooterNavigationsCommand]
|
|
@@ -651,7 +651,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
651
651
|
apiV1HospitalsHospitalIdHandlesGet: (hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
652
652
|
/**
|
|
653
653
|
*
|
|
654
|
-
* @summary Delete HospitalHandle. (Auth
|
|
654
|
+
* @summary Delete HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
655
655
|
* @param {string} hospitalId
|
|
656
656
|
* @param {string} handleId
|
|
657
657
|
* @param {*} [options] Override http request option.
|
|
@@ -669,7 +669,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
669
669
|
apiV1HospitalsHospitalIdHandlesHandleIdGet: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
670
670
|
/**
|
|
671
671
|
*
|
|
672
|
-
* @summary Update HospitalHandle. (Auth
|
|
672
|
+
* @summary Update HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
673
673
|
* @param {string} hospitalId
|
|
674
674
|
* @param {string} handleId
|
|
675
675
|
* @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
|
|
@@ -679,7 +679,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
679
679
|
apiV1HospitalsHospitalIdHandlesHandleIdPut: (hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
680
680
|
/**
|
|
681
681
|
*
|
|
682
|
-
* @summary Get HospitalHandle. (Auth
|
|
682
|
+
* @summary Get HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
683
683
|
* @param {string} hospitalId
|
|
684
684
|
* @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
|
|
685
685
|
* @param {*} [options] Override http request option.
|
|
@@ -688,7 +688,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
688
688
|
apiV1HospitalsHospitalIdHandlesPost: (hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
689
689
|
/**
|
|
690
690
|
*
|
|
691
|
-
* @summary Get all HeaderNavigationItems (Auth
|
|
691
|
+
* @summary Get all HeaderNavigationItems (Auth policies: RequireDoctorRole)
|
|
692
692
|
* @param {string} hospitalId
|
|
693
693
|
* @param {string} languageCode
|
|
694
694
|
* @param {*} [options] Override http request option.
|
|
@@ -697,7 +697,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
697
697
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeGet: (hospitalId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
698
698
|
/**
|
|
699
699
|
*
|
|
700
|
-
* @summary Delete HeaderNavigationItem (Auth
|
|
700
|
+
* @summary Delete HeaderNavigationItem (Auth policies: RequireDoctorRole)
|
|
701
701
|
* @param {string} hospitalId
|
|
702
702
|
* @param {string} languageCode
|
|
703
703
|
* @param {string} id
|
|
@@ -707,7 +707,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
707
707
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdDelete: (hospitalId: string, languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
708
708
|
/**
|
|
709
709
|
*
|
|
710
|
-
* @summary Get HeaderNavigationItem by id (Auth
|
|
710
|
+
* @summary Get HeaderNavigationItem by id (Auth policies: RequireDoctorRole)
|
|
711
711
|
* @param {string} hospitalId
|
|
712
712
|
* @param {string} languageCode
|
|
713
713
|
* @param {string} id
|
|
@@ -717,7 +717,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
717
717
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdGet: (hospitalId: string, languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
718
718
|
/**
|
|
719
719
|
*
|
|
720
|
-
* @summary Get HeaderNavigationItems by parent id (Auth
|
|
720
|
+
* @summary Get HeaderNavigationItems by parent id (Auth policies: RequireDoctorRole)
|
|
721
721
|
* @param {string} hospitalId
|
|
722
722
|
* @param {string} languageCode
|
|
723
723
|
* @param {string} parentId
|
|
@@ -727,7 +727,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
727
727
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeParentIdSubitemsGet: (hospitalId: string, languageCode: string, parentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
728
728
|
/**
|
|
729
729
|
*
|
|
730
|
-
* @summary Save HeaderNavigationItem (Auth
|
|
730
|
+
* @summary Save HeaderNavigationItem (Auth policies: RequireDoctorRole)
|
|
731
731
|
* @param {string} hospitalId
|
|
732
732
|
* @param {string} languageCode
|
|
733
733
|
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
@@ -752,7 +752,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
752
752
|
apiV1HospitalsHospitalIdLandingsGet: (hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
753
753
|
/**
|
|
754
754
|
*
|
|
755
|
-
* @summary Delete Landing. (Auth
|
|
755
|
+
* @summary Delete Landing. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
756
756
|
* @param {string} hospitalId
|
|
757
757
|
* @param {string} landingId
|
|
758
758
|
* @param {boolean} [isPermanent]
|
|
@@ -772,7 +772,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
772
772
|
apiV1HospitalsHospitalIdLandingsLandingIdGet: (hospitalId: string, landingId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
773
773
|
/**
|
|
774
774
|
*
|
|
775
|
-
* @summary Update Landing (Auth
|
|
775
|
+
* @summary Update Landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
776
776
|
* @param {string} hospitalId
|
|
777
777
|
* @param {string} landingId
|
|
778
778
|
* @param {UpdateLandingCommand} [updateLandingCommand]
|
|
@@ -782,7 +782,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
782
782
|
apiV1HospitalsHospitalIdLandingsLandingIdPut: (hospitalId: string, landingId: string, updateLandingCommand?: UpdateLandingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
783
783
|
/**
|
|
784
784
|
*
|
|
785
|
-
* @summary Reactivate Landing (Auth
|
|
785
|
+
* @summary Reactivate Landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
786
786
|
* @param {string} hospitalId
|
|
787
787
|
* @param {string} landingId
|
|
788
788
|
* @param {*} [options] Override http request option.
|
|
@@ -791,7 +791,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
791
791
|
apiV1HospitalsHospitalIdLandingsLandingIdReactivatePut: (hospitalId: string, landingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
792
792
|
/**
|
|
793
793
|
*
|
|
794
|
-
* @summary Revalidate landing (Auth
|
|
794
|
+
* @summary Revalidate landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
795
795
|
* @param {string} hospitalId
|
|
796
796
|
* @param {string} landingId
|
|
797
797
|
* @param {boolean} [includeCurrent]
|
|
@@ -801,7 +801,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
801
801
|
apiV1HospitalsHospitalIdLandingsLandingIdRevalidatePost: (hospitalId: string, landingId: string, includeCurrent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
802
802
|
/**
|
|
803
803
|
*
|
|
804
|
-
* @summary Translate landing (Auth
|
|
804
|
+
* @summary Translate landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
805
805
|
* @param {string} hospitalId
|
|
806
806
|
* @param {string} landingId
|
|
807
807
|
* @param {TranslateLandingCommand} [translateLandingCommand]
|
|
@@ -811,7 +811,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
811
811
|
apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost: (hospitalId: string, landingId: string, translateLandingCommand?: TranslateLandingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
812
812
|
/**
|
|
813
813
|
*
|
|
814
|
-
* @summary Create HospitalLandings. (Auth
|
|
814
|
+
* @summary Create HospitalLandings. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
815
815
|
* @param {string} hospitalId
|
|
816
816
|
* @param {CreateLandingCommand} [createLandingCommand]
|
|
817
817
|
* @param {*} [options] Override http request option.
|
|
@@ -833,7 +833,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
833
833
|
apiV1HospitalsHospitalIdLanguagesGet: (hospitalId: string, name?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
834
834
|
/**
|
|
835
835
|
*
|
|
836
|
-
* @summary Delete GetAllLanguage. (Auth
|
|
836
|
+
* @summary Delete GetAllLanguage. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
837
837
|
* @param {string} hospitalId
|
|
838
838
|
* @param {string} languageCode
|
|
839
839
|
* @param {*} [options] Override http request option.
|
|
@@ -842,7 +842,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
842
842
|
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete: (hospitalId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
843
843
|
/**
|
|
844
844
|
*
|
|
845
|
-
* @summary Update HospitalLanguage (Auth
|
|
845
|
+
* @summary Update HospitalLanguage (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
846
846
|
* @param {string} hospitalId
|
|
847
847
|
* @param {string} languageCode
|
|
848
848
|
* @param {UpdateHospitalLanguageCommand} [updateHospitalLanguageCommand]
|
|
@@ -852,7 +852,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
852
852
|
apiV1HospitalsHospitalIdLanguagesLanguageCodePut: (hospitalId: string, languageCode: string, updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
853
853
|
/**
|
|
854
854
|
*
|
|
855
|
-
* @summary Create HospitalLanguages. (Auth
|
|
855
|
+
* @summary Create HospitalLanguages. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
856
856
|
* @param {string} hospitalId
|
|
857
857
|
* @param {CreateHospitalLanguageCommand} [createHospitalLanguageCommand]
|
|
858
858
|
* @param {*} [options] Override http request option.
|
|
@@ -861,7 +861,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
861
861
|
apiV1HospitalsHospitalIdLanguagesPost: (hospitalId: string, createHospitalLanguageCommand?: CreateHospitalLanguageCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
862
862
|
/**
|
|
863
863
|
*
|
|
864
|
-
* @summary Get managers (Auth
|
|
864
|
+
* @summary Get managers (Auth policies: RequireDoctorRole)
|
|
865
865
|
* @param {string} hospitalId
|
|
866
866
|
* @param {string} [id]
|
|
867
867
|
* @param {string} [fullname]
|
|
@@ -879,7 +879,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
879
879
|
apiV1HospitalsHospitalIdManagersGet: (hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
880
880
|
/**
|
|
881
881
|
*
|
|
882
|
-
* @summary Delete manager (Auth
|
|
882
|
+
* @summary Delete manager (Auth policies: RequireManagerRole)
|
|
883
883
|
* @param {string} hospitalId
|
|
884
884
|
* @param {string} managerId
|
|
885
885
|
* @param {boolean} [isPermanent]
|
|
@@ -889,7 +889,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
889
889
|
apiV1HospitalsHospitalIdManagersManagerIdDelete: (hospitalId: string, managerId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
890
890
|
/**
|
|
891
891
|
*
|
|
892
|
-
* @summary Get manager (Auth
|
|
892
|
+
* @summary Get manager (Auth policies: RequireDoctorRole)
|
|
893
893
|
* @param {string} hospitalId
|
|
894
894
|
* @param {string} managerId
|
|
895
895
|
* @param {*} [options] Override http request option.
|
|
@@ -898,7 +898,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
898
898
|
apiV1HospitalsHospitalIdManagersManagerIdGet: (hospitalId: string, managerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
899
899
|
/**
|
|
900
900
|
* PUT: /api/v1/hospitals/{hospitlaId}/managers/{managerId} { \"email\": \"emailaddress@icloudhospital.com\", \"firstName\": \"First\", \"lastName\": \"Last\", \"phone\": \"+82 1012340000\", \"photo\": \"\", \"photoThumbnail\": \"\", \"gender\": \"Male\", \"dateOfBirth\": \"2023-08-07T06:02:05.652Z\", \"timeZone\": \"Asia/Seoul\" }
|
|
901
|
-
* @summary Update manager (Auth
|
|
901
|
+
* @summary Update manager (Auth policies: RequireDoctorRole)
|
|
902
902
|
* @param {string} hospitalId
|
|
903
903
|
* @param {string} managerId
|
|
904
904
|
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
@@ -908,7 +908,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
908
908
|
apiV1HospitalsHospitalIdManagersManagerIdPut: (hospitalId: string, managerId: string, updateManagerCommand?: UpdateManagerCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
909
909
|
/**
|
|
910
910
|
* POST: /api/v1/hospitals/{hospitlaId}/managers { \"email\": \"emailaddress@icloudhospital.com\", \"firstName\": \"First\", \"lastName\": \"Last\", \"phone\": \"+82 1012340000\", \"photo\": \"\", \"photoThumbnail\": \"\", \"gender\": \"Male\", \"dateOfBirth\": \"2023-08-07T06:02:05.652Z\", \"timeZone\": \"Asia/Seoul\" }
|
|
911
|
-
* @summary Create manager (Auth
|
|
911
|
+
* @summary Create manager (Auth policies: RequireManagerRole)
|
|
912
912
|
* @param {string} hospitalId
|
|
913
913
|
* @param {CreateManagerCommand} [createManagerCommand]
|
|
914
914
|
* @param {*} [options] Override http request option.
|
|
@@ -930,7 +930,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
930
930
|
apiV1HospitalsHospitalIdMediasGet: (hospitalId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
931
931
|
/**
|
|
932
932
|
*
|
|
933
|
-
* @summary Delete HospitalMedia (Auth
|
|
933
|
+
* @summary Delete HospitalMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
934
934
|
* @param {string} hospitalId
|
|
935
935
|
* @param {string} mediaId
|
|
936
936
|
* @param {*} [options] Override http request option.
|
|
@@ -948,7 +948,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
948
948
|
apiV1HospitalsHospitalIdMediasMediaIdGet: (hospitalId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
949
949
|
/**
|
|
950
950
|
*
|
|
951
|
-
* @summary Update HospitalMedia. (Auth
|
|
951
|
+
* @summary Update HospitalMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
952
952
|
* @param {string} hospitalId
|
|
953
953
|
* @param {string} mediaId
|
|
954
954
|
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
@@ -958,7 +958,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
958
958
|
apiV1HospitalsHospitalIdMediasMediaIdPut: (hospitalId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
959
959
|
/**
|
|
960
960
|
*
|
|
961
|
-
* @summary Create HospitalMedia. (Auth
|
|
961
|
+
* @summary Create HospitalMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
962
962
|
* @param {string} hospitalId
|
|
963
963
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
964
964
|
* @param {*} [options] Override http request option.
|
|
@@ -967,7 +967,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
967
967
|
apiV1HospitalsHospitalIdMediasPost: (hospitalId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
968
968
|
/**
|
|
969
969
|
*
|
|
970
|
-
* @summary Get notices (Auth
|
|
970
|
+
* @summary Get notices (Auth policies: RequireLocalManagerRole)
|
|
971
971
|
* @param {string} hospitalId
|
|
972
972
|
* @param {string} [id]
|
|
973
973
|
* @param {string} [languageCode]
|
|
@@ -983,7 +983,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
983
983
|
apiV1HospitalsHospitalIdNoticesGet: (hospitalId: string, id?: string, languageCode?: string, name?: string, status?: NoticeStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
984
984
|
/**
|
|
985
985
|
*
|
|
986
|
-
* @summary Delete notice (Auth
|
|
986
|
+
* @summary Delete notice (Auth policies: RequireLocalManagerRole)
|
|
987
987
|
* @param {string} hospitalId
|
|
988
988
|
* @param {string} noticeId
|
|
989
989
|
* @param {string} [languageCode]
|
|
@@ -994,7 +994,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
994
994
|
apiV1HospitalsHospitalIdNoticesNoticeIdDelete: (hospitalId: string, noticeId: string, languageCode?: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
995
995
|
/**
|
|
996
996
|
*
|
|
997
|
-
* @summary Get notice by id (Auth
|
|
997
|
+
* @summary Get notice by id (Auth policies: RequireLocalManagerRole)
|
|
998
998
|
* @param {string} hospitalId
|
|
999
999
|
* @param {string} noticeId
|
|
1000
1000
|
* @param {string} [languageCode]
|
|
@@ -1004,7 +1004,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1004
1004
|
apiV1HospitalsHospitalIdNoticesNoticeIdGet: (hospitalId: string, noticeId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1005
1005
|
/**
|
|
1006
1006
|
*
|
|
1007
|
-
* @summary Update notice (Auth
|
|
1007
|
+
* @summary Update notice (Auth policies: RequireLocalManagerRole)
|
|
1008
1008
|
* @param {string} hospitalId
|
|
1009
1009
|
* @param {string} noticeId
|
|
1010
1010
|
* @param {UpdateNoticeCommand} [updateNoticeCommand]
|
|
@@ -1014,7 +1014,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1014
1014
|
apiV1HospitalsHospitalIdNoticesNoticeIdPut: (hospitalId: string, noticeId: string, updateNoticeCommand?: UpdateNoticeCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1015
1015
|
/**
|
|
1016
1016
|
*
|
|
1017
|
-
* @summary Reactivate notice (Auth
|
|
1017
|
+
* @summary Reactivate notice (Auth policies: RequireLocalManagerRole)
|
|
1018
1018
|
* @param {string} hospitalId
|
|
1019
1019
|
* @param {string} noticeId
|
|
1020
1020
|
* @param {*} [options] Override http request option.
|
|
@@ -1023,7 +1023,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1023
1023
|
apiV1HospitalsHospitalIdNoticesNoticeIdReactivatePut: (hospitalId: string, noticeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1024
1024
|
/**
|
|
1025
1025
|
*
|
|
1026
|
-
* @summary Create notice (Auth
|
|
1026
|
+
* @summary Create notice (Auth policies: RequireLocalManagerRole)
|
|
1027
1027
|
* @param {string} hospitalId
|
|
1028
1028
|
* @param {CreateNoticeCommand} [createNoticeCommand]
|
|
1029
1029
|
* @param {*} [options] Override http request option.
|
|
@@ -1032,7 +1032,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1032
1032
|
apiV1HospitalsHospitalIdNoticesPost: (hospitalId: string, createNoticeCommand?: CreateNoticeCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1033
1033
|
/**
|
|
1034
1034
|
*
|
|
1035
|
-
* @summary Batch for notices sorting (Auth
|
|
1035
|
+
* @summary Batch for notices sorting (Auth policies: RequireLocalManagerRole)
|
|
1036
1036
|
* @param {string} hospitalId
|
|
1037
1037
|
* @param {NoticeSortingCommand} [noticeSortingCommand]
|
|
1038
1038
|
* @param {*} [options] Override http request option.
|
|
@@ -1041,7 +1041,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1041
1041
|
apiV1HospitalsHospitalIdNoticesSortPut: (hospitalId: string, noticeSortingCommand?: NoticeSortingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1042
1042
|
/**
|
|
1043
1043
|
*
|
|
1044
|
-
* @summary Get hospital pageItems (Auth
|
|
1044
|
+
* @summary Get hospital pageItems (Auth policies: RequireDoctorRole)
|
|
1045
1045
|
* @param {string} hospitalId
|
|
1046
1046
|
* @param {string} [id]
|
|
1047
1047
|
* @param {string} [languageCode]
|
|
@@ -1057,7 +1057,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1057
1057
|
apiV1HospitalsHospitalIdPagesGet: (hospitalId: string, id?: string, languageCode?: string, name?: string, status?: PageItemStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1058
1058
|
/**
|
|
1059
1059
|
*
|
|
1060
|
-
* @summary Delete page (Auth
|
|
1060
|
+
* @summary Delete page (Auth policies: RequireDoctorRole)
|
|
1061
1061
|
* @param {string} hospitalId
|
|
1062
1062
|
* @param {string} pageItemId
|
|
1063
1063
|
* @param {boolean} [isPermanent]
|
|
@@ -1068,7 +1068,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1068
1068
|
apiV1HospitalsHospitalIdPagesPageItemIdDelete: (hospitalId: string, pageItemId: string, isPermanent?: boolean, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1069
1069
|
/**
|
|
1070
1070
|
*
|
|
1071
|
-
* @summary Get hospital page (Auth
|
|
1071
|
+
* @summary Get hospital page (Auth policies: RequireDoctorRole)
|
|
1072
1072
|
* @param {string} hospitalId
|
|
1073
1073
|
* @param {string} pageItemId
|
|
1074
1074
|
* @param {string} [languageCode]
|
|
@@ -1078,7 +1078,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1078
1078
|
apiV1HospitalsHospitalIdPagesPageItemIdGet: (hospitalId: string, pageItemId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1079
1079
|
/**
|
|
1080
1080
|
*
|
|
1081
|
-
* @summary Update page (Auth
|
|
1081
|
+
* @summary Update page (Auth policies: RequireDoctorRole)
|
|
1082
1082
|
* @param {string} hospitalId
|
|
1083
1083
|
* @param {string} pageItemId
|
|
1084
1084
|
* @param {UpdatePageCommand} [updatePageCommand]
|
|
@@ -1088,7 +1088,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1088
1088
|
apiV1HospitalsHospitalIdPagesPageItemIdPut: (hospitalId: string, pageItemId: string, updatePageCommand?: UpdatePageCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1089
1089
|
/**
|
|
1090
1090
|
*
|
|
1091
|
-
* @summary Reactivate page (Auth
|
|
1091
|
+
* @summary Reactivate page (Auth policies: RequireDoctorRole)
|
|
1092
1092
|
* @param {string} hospitalId
|
|
1093
1093
|
* @param {string} pageItemId
|
|
1094
1094
|
* @param {*} [options] Override http request option.
|
|
@@ -1097,7 +1097,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1097
1097
|
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut: (hospitalId: string, pageItemId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1098
1098
|
/**
|
|
1099
1099
|
*
|
|
1100
|
-
* @summary Translate pageBlocks in section (Auth
|
|
1100
|
+
* @summary Translate pageBlocks in section (Auth policies: RequireDoctorRole)
|
|
1101
1101
|
* @param {string} hospitalId
|
|
1102
1102
|
* @param {string} pageItemId
|
|
1103
1103
|
* @param {string} pageSectionId
|
|
@@ -1108,7 +1108,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1108
1108
|
apiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost: (hospitalId: string, pageItemId: string, pageSectionId: string, translatePageSectionCommand?: TranslatePageSectionCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1109
1109
|
/**
|
|
1110
1110
|
*
|
|
1111
|
-
* @summary Translate page (Auth
|
|
1111
|
+
* @summary Translate page (Auth policies: RequireDoctorRole)
|
|
1112
1112
|
* @param {string} hospitalId
|
|
1113
1113
|
* @param {string} pageItemId
|
|
1114
1114
|
* @param {TranslatePageCommand} [translatePageCommand]
|
|
@@ -1118,7 +1118,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1118
1118
|
apiV1HospitalsHospitalIdPagesPageItemIdTranslatePost: (hospitalId: string, pageItemId: string, translatePageCommand?: TranslatePageCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1119
1119
|
/**
|
|
1120
1120
|
*
|
|
1121
|
-
* @summary Create page (Auth
|
|
1121
|
+
* @summary Create page (Auth policies: RequireDoctorRole)
|
|
1122
1122
|
* @param {string} hospitalId
|
|
1123
1123
|
* @param {CreatePageCommand} [createPageCommand]
|
|
1124
1124
|
* @param {*} [options] Override http request option.
|
|
@@ -1127,7 +1127,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1127
1127
|
apiV1HospitalsHospitalIdPagesPost: (hospitalId: string, createPageCommand?: CreatePageCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1128
1128
|
/**
|
|
1129
1129
|
*
|
|
1130
|
-
* @summary Get hospitalPaymentMethods list (Auth
|
|
1130
|
+
* @summary Get hospitalPaymentMethods list (Auth policies: RequireDoctorRole)
|
|
1131
1131
|
* @param {string} hospitalId
|
|
1132
1132
|
* @param {PaymentMethod} [paymentMethod]
|
|
1133
1133
|
* @param {string} [id]
|
|
@@ -1140,7 +1140,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1140
1140
|
apiV1HospitalsHospitalIdPaymentmethodsGet: (hospitalId: string, paymentMethod?: PaymentMethod, id?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1141
1141
|
/**
|
|
1142
1142
|
*
|
|
1143
|
-
* @summary Delete hospitalPaymentMethod (Auth
|
|
1143
|
+
* @summary Delete hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
1144
1144
|
* @param {string} hospitalId
|
|
1145
1145
|
* @param {string} id
|
|
1146
1146
|
* @param {*} [options] Override http request option.
|
|
@@ -1149,7 +1149,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1149
1149
|
apiV1HospitalsHospitalIdPaymentmethodsIdDelete: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1150
1150
|
/**
|
|
1151
1151
|
*
|
|
1152
|
-
* @summary Get hospitalPaymentMethod (Auth
|
|
1152
|
+
* @summary Get hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
1153
1153
|
* @param {string} hospitalId
|
|
1154
1154
|
* @param {string} id
|
|
1155
1155
|
* @param {*} [options] Override http request option.
|
|
@@ -1158,7 +1158,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1158
1158
|
apiV1HospitalsHospitalIdPaymentmethodsIdGet: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1159
1159
|
/**
|
|
1160
1160
|
*
|
|
1161
|
-
* @summary Update hospitalPaymentMethod (Auth
|
|
1161
|
+
* @summary Update hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
1162
1162
|
* @param {string} hospitalId
|
|
1163
1163
|
* @param {string} id
|
|
1164
1164
|
* @param {UpdateHospitalPaymentMethodCommand} [updateHospitalPaymentMethodCommand]
|
|
@@ -1168,7 +1168,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1168
1168
|
apiV1HospitalsHospitalIdPaymentmethodsIdPut: (hospitalId: string, id: string, updateHospitalPaymentMethodCommand?: UpdateHospitalPaymentMethodCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1169
1169
|
/**
|
|
1170
1170
|
*
|
|
1171
|
-
* @summary Create hospitalPaymentMethod (Auth
|
|
1171
|
+
* @summary Create hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
1172
1172
|
* @param {string} hospitalId
|
|
1173
1173
|
* @param {CreateHospitalPaymentMethodCommand} [createHospitalPaymentMethodCommand]
|
|
1174
1174
|
* @param {*} [options] Override http request option.
|
|
@@ -1192,7 +1192,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1192
1192
|
apiV1HospitalsHospitalIdPoliciesGet: (hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1193
1193
|
/**
|
|
1194
1194
|
*
|
|
1195
|
-
* @summary Delete policy (Auth
|
|
1195
|
+
* @summary Delete policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1196
1196
|
* @param {string} hospitalId
|
|
1197
1197
|
* @param {string} policyId
|
|
1198
1198
|
* @param {boolean} [isPermanent]
|
|
@@ -1212,7 +1212,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1212
1212
|
apiV1HospitalsHospitalIdPoliciesPolicyIdGet: (hospitalId: string, policyId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1213
1213
|
/**
|
|
1214
1214
|
*
|
|
1215
|
-
* @summary Update policy (Auth
|
|
1215
|
+
* @summary Update policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1216
1216
|
* @param {string} hospitalId
|
|
1217
1217
|
* @param {string} policyId
|
|
1218
1218
|
* @param {UpdatePolicyCommand} [updatePolicyCommand]
|
|
@@ -1222,7 +1222,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1222
1222
|
apiV1HospitalsHospitalIdPoliciesPolicyIdPut: (hospitalId: string, policyId: string, updatePolicyCommand?: UpdatePolicyCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1223
1223
|
/**
|
|
1224
1224
|
*
|
|
1225
|
-
* @summary Reactivate policy (Auth
|
|
1225
|
+
* @summary Reactivate policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1226
1226
|
* @param {string} hospitalId
|
|
1227
1227
|
* @param {string} policyId
|
|
1228
1228
|
* @param {*} [options] Override http request option.
|
|
@@ -1231,7 +1231,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1231
1231
|
apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut: (hospitalId: string, policyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1232
1232
|
/**
|
|
1233
1233
|
*
|
|
1234
|
-
* @summary Create policy (Auth
|
|
1234
|
+
* @summary Create policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1235
1235
|
* @param {string} hospitalId
|
|
1236
1236
|
* @param {CreatePolicyCommand} [createPolicyCommand]
|
|
1237
1237
|
* @param {*} [options] Override http request option.
|
|
@@ -1240,7 +1240,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1240
1240
|
apiV1HospitalsHospitalIdPoliciesPost: (hospitalId: string, createPolicyCommand?: CreatePolicyCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1241
1241
|
/**
|
|
1242
1242
|
*
|
|
1243
|
-
* @summary Update Hospital. (Auth
|
|
1243
|
+
* @summary Update Hospital. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1244
1244
|
* @param {string} hospitalId
|
|
1245
1245
|
* @param {UpdateHospitalCommand} [updateHospitalCommand]
|
|
1246
1246
|
* @param {*} [options] Override http request option.
|
|
@@ -1263,7 +1263,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1263
1263
|
apiV1HospitalsHospitalIdRatingsGet: (hospitalId: string, id?: string, vender?: string, isConfirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1264
1264
|
/**
|
|
1265
1265
|
*
|
|
1266
|
-
* @summary Delete hospitalRating (Auth
|
|
1266
|
+
* @summary Delete hospitalRating (Auth policies: RequireDoctorRole)
|
|
1267
1267
|
* @param {string} hospitalId
|
|
1268
1268
|
* @param {string} id
|
|
1269
1269
|
* @param {*} [options] Override http request option.
|
|
@@ -1281,7 +1281,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1281
1281
|
apiV1HospitalsHospitalIdRatingsIdGet: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1282
1282
|
/**
|
|
1283
1283
|
*
|
|
1284
|
-
* @summary Update hospitalRating (Auth
|
|
1284
|
+
* @summary Update hospitalRating (Auth policies: RequireDoctorRole)
|
|
1285
1285
|
* @param {string} hospitalId
|
|
1286
1286
|
* @param {string} id
|
|
1287
1287
|
* @param {UpdateHospitalRatingCommand} [updateHospitalRatingCommand]
|
|
@@ -1291,7 +1291,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1291
1291
|
apiV1HospitalsHospitalIdRatingsIdPut: (hospitalId: string, id: string, updateHospitalRatingCommand?: UpdateHospitalRatingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1292
1292
|
/**
|
|
1293
1293
|
*
|
|
1294
|
-
* @summary Create hospitalRating (Auth
|
|
1294
|
+
* @summary Create hospitalRating (Auth policies: RequireDoctorRole)
|
|
1295
1295
|
* @param {string} hospitalId
|
|
1296
1296
|
* @param {CreateHospitalRatingCommand} [createHospitalRatingCommand]
|
|
1297
1297
|
* @param {*} [options] Override http request option.
|
|
@@ -1300,7 +1300,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1300
1300
|
apiV1HospitalsHospitalIdRatingsPost: (hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1301
1301
|
/**
|
|
1302
1302
|
*
|
|
1303
|
-
* @summary Sort hospitalRating entities (Auth
|
|
1303
|
+
* @summary Sort hospitalRating entities (Auth policies: RequireDoctorRole)
|
|
1304
1304
|
* @param {string} hospitalId
|
|
1305
1305
|
* @param {HospitalRatingSortingCommand} [hospitalRatingSortingCommand]
|
|
1306
1306
|
* @param {*} [options] Override http request option.
|
|
@@ -1309,7 +1309,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1309
1309
|
apiV1HospitalsHospitalIdRatingsSortPut: (hospitalId: string, hospitalRatingSortingCommand?: HospitalRatingSortingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1310
1310
|
/**
|
|
1311
1311
|
*
|
|
1312
|
-
* @summary Delete HospitalSpecialty. (Auth
|
|
1312
|
+
* @summary Delete HospitalSpecialty. (Auth policies: RequireManagerRole)
|
|
1313
1313
|
* @param {string} hospitalId
|
|
1314
1314
|
* @param {*} [options] Override http request option.
|
|
1315
1315
|
* @throws {RequiredError}
|
|
@@ -1317,7 +1317,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1317
1317
|
apiV1HospitalsHospitalIdReactivatePut: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1318
1318
|
/**
|
|
1319
1319
|
*
|
|
1320
|
-
* @summary Revalidate hospital (Auth
|
|
1320
|
+
* @summary Revalidate hospital (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1321
1321
|
* @param {string} hospitalId
|
|
1322
1322
|
* @param {boolean} [includeCurrent]
|
|
1323
1323
|
* @param {*} [options] Override http request option.
|
|
@@ -1326,7 +1326,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1326
1326
|
apiV1HospitalsHospitalIdRevalidatePost: (hospitalId: string, includeCurrent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1327
1327
|
/**
|
|
1328
1328
|
*
|
|
1329
|
-
* @summary Delete secure file container (Auth
|
|
1329
|
+
* @summary Delete secure file container (Auth policies: RequireLocalManagerRole)
|
|
1330
1330
|
* @param {string} hospitalId
|
|
1331
1331
|
* @param {string} containerId
|
|
1332
1332
|
* @param {*} [options] Override http request option.
|
|
@@ -1335,7 +1335,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1335
1335
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete: (hospitalId: string, containerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1336
1336
|
/**
|
|
1337
1337
|
*
|
|
1338
|
-
* @summary Get file content (Auth
|
|
1338
|
+
* @summary Get file content (Auth policies: RequireLocalManagerRole)
|
|
1339
1339
|
* @param {string} hospitalId
|
|
1340
1340
|
* @param {string} containerId
|
|
1341
1341
|
* @param {string} fileId
|
|
@@ -1345,7 +1345,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1345
1345
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet: (hospitalId: string, containerId: string, fileId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1346
1346
|
/**
|
|
1347
1347
|
*
|
|
1348
|
-
* @summary Get secure file url with read access (Auth
|
|
1348
|
+
* @summary Get secure file url with read access (Auth policies: RequireLocalManagerRole)
|
|
1349
1349
|
* @param {string} hospitalId
|
|
1350
1350
|
* @param {string} containerId
|
|
1351
1351
|
* @param {string} fileId
|
|
@@ -1356,7 +1356,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1356
1356
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet: (hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1357
1357
|
/**
|
|
1358
1358
|
*
|
|
1359
|
-
* @summary Get secure container (Auth
|
|
1359
|
+
* @summary Get secure container (Auth policies: RequireLocalManagerRole)
|
|
1360
1360
|
* @param {string} hospitalId
|
|
1361
1361
|
* @param {string} containerId
|
|
1362
1362
|
* @param {string} [languageCode]
|
|
@@ -1366,7 +1366,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1366
1366
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdGet: (hospitalId: string, containerId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1367
1367
|
/**
|
|
1368
1368
|
*
|
|
1369
|
-
* @summary Get secure containers (Auth
|
|
1369
|
+
* @summary Get secure containers (Auth policies: RequireLocalManagerRole)
|
|
1370
1370
|
* @param {string} hospitalId
|
|
1371
1371
|
* @param {string} [id]
|
|
1372
1372
|
* @param {string} [languageCode]
|
|
@@ -1383,7 +1383,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1383
1383
|
apiV1HospitalsHospitalIdSecurecontainersGet: (hospitalId: string, id?: string, languageCode?: string, showHidden?: boolean, userName?: string, userEmail?: string, userId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1384
1384
|
/**
|
|
1385
1385
|
*
|
|
1386
|
-
* @summary Create secure file container (Auth
|
|
1386
|
+
* @summary Create secure file container (Auth policies: RequireLocalManagerRole)
|
|
1387
1387
|
* @param {string} hospitalId
|
|
1388
1388
|
* @param {*} [options] Override http request option.
|
|
1389
1389
|
* @throws {RequiredError}
|
|
@@ -1391,7 +1391,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1391
1391
|
apiV1HospitalsHospitalIdSecurecontainersPost: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1392
1392
|
/**
|
|
1393
1393
|
*
|
|
1394
|
-
* @summary Get file content by file name (Auth
|
|
1394
|
+
* @summary Get file content by file name (Auth policies: RequireLocalManagerRole)
|
|
1395
1395
|
* @param {string} hospitalId
|
|
1396
1396
|
* @param {string} fileName
|
|
1397
1397
|
* @param {*} [options] Override http request option.
|
|
@@ -1400,7 +1400,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1400
1400
|
apiV1HospitalsHospitalIdSecurefilesFileNameGet: (hospitalId: string, fileName: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1401
1401
|
/**
|
|
1402
1402
|
*
|
|
1403
|
-
* @summary Get secure file url with read access by file name (Auth
|
|
1403
|
+
* @summary Get secure file url with read access by file name (Auth policies: RequireLocalManagerRole)
|
|
1404
1404
|
* @param {string} hospitalId
|
|
1405
1405
|
* @param {string} fileName
|
|
1406
1406
|
* @param {number} [minutesAvailableUntil]
|
|
@@ -1410,7 +1410,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1410
1410
|
apiV1HospitalsHospitalIdSecurefilesFileNameReadGet: (hospitalId: string, fileName: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1411
1411
|
/**
|
|
1412
1412
|
*
|
|
1413
|
-
* @summary Get file content by uri (Auth
|
|
1413
|
+
* @summary Get file content by uri (Auth policies: RequireLocalManagerRole)
|
|
1414
1414
|
* @param {string} hospitalId
|
|
1415
1415
|
* @param {string} [uri]
|
|
1416
1416
|
* @param {*} [options] Override http request option.
|
|
@@ -1419,7 +1419,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1419
1419
|
apiV1HospitalsHospitalIdSecurefilesGet: (hospitalId: string, uri?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1420
1420
|
/**
|
|
1421
1421
|
*
|
|
1422
|
-
* @summary Upload secure files (Auth
|
|
1422
|
+
* @summary Upload secure files (Auth policies: RequireDoctorRole)
|
|
1423
1423
|
* @param {string} hospitalId
|
|
1424
1424
|
* @param {Array<File>} [files]
|
|
1425
1425
|
* @param {*} [options] Override http request option.
|
|
@@ -1428,7 +1428,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1428
1428
|
apiV1HospitalsHospitalIdSecurefilesPost: (hospitalId: string, files?: Array<File>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1429
1429
|
/**
|
|
1430
1430
|
*
|
|
1431
|
-
* @summary Get secure file url with read access by uri (Auth
|
|
1431
|
+
* @summary Get secure file url with read access by uri (Auth policies: RequireLocalManagerRole)
|
|
1432
1432
|
* @param {string} hospitalId
|
|
1433
1433
|
* @param {string} [uri]
|
|
1434
1434
|
* @param {number} [minutesAvailableUntil]
|
|
@@ -1475,7 +1475,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1475
1475
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGet: (hospitalId: string, hospitalSpecialtyId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1476
1476
|
/**
|
|
1477
1477
|
*
|
|
1478
|
-
* @summary Delete HospitalSpecialty appointment timetable overrides (Auth
|
|
1478
|
+
* @summary Delete HospitalSpecialty appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1479
1479
|
* @param {string} hospitalId
|
|
1480
1480
|
* @param {string} hospitalSpecialtyId
|
|
1481
1481
|
* @param {DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand} [deleteHospitalSpecialtyAppointmentTimetableOverridesCommand]
|
|
@@ -1485,7 +1485,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1485
1485
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch: (hospitalId: string, hospitalSpecialtyId: string, deleteHospitalSpecialtyAppointmentTimetableOverridesCommand?: DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1486
1486
|
/**
|
|
1487
1487
|
*
|
|
1488
|
-
* @summary Save HospitalSpecialty appointment timetable overrides (Auth
|
|
1488
|
+
* @summary Save HospitalSpecialty appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1489
1489
|
* @param {string} hospitalId
|
|
1490
1490
|
* @param {string} hospitalSpecialtyId
|
|
1491
1491
|
* @param {SaveHospitalSpecialtyAppointmentTimetableOverridesCommand} [saveHospitalSpecialtyAppointmentTimetableOverridesCommand]
|
|
@@ -1511,7 +1511,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1511
1511
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: (hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1512
1512
|
/**
|
|
1513
1513
|
*
|
|
1514
|
-
* @summary Add, update, delete HospitalSpecialty appointment timetables (Auth
|
|
1514
|
+
* @summary Add, update, delete HospitalSpecialty appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1515
1515
|
* @param {string} hospitalId
|
|
1516
1516
|
* @param {string} hospitalSpecialtyId
|
|
1517
1517
|
* @param {BatchHospitalSpecialtyAppointmentTimetablesCommand} [batchHospitalSpecialtyAppointmentTimetablesCommand]
|
|
@@ -1534,7 +1534,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1534
1534
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet: (hospitalId: string, hospitalSpecialtyId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1535
1535
|
/**
|
|
1536
1536
|
*
|
|
1537
|
-
* @summary Delete HospitalSpecialty. (Auth
|
|
1537
|
+
* @summary Delete HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1538
1538
|
* @param {string} hospitalId
|
|
1539
1539
|
* @param {string} hospitalSpecialtyId
|
|
1540
1540
|
* @param {boolean} [isPermanent]
|
|
@@ -1568,7 +1568,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1568
1568
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet: (hospitalId: string, hospitalSpecialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1569
1569
|
/**
|
|
1570
1570
|
*
|
|
1571
|
-
* @summary Delete HospitalServiceMedia (Auth
|
|
1571
|
+
* @summary Delete HospitalServiceMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1572
1572
|
* @param {string} hospitalId
|
|
1573
1573
|
* @param {string} hospitalSpecialtyId
|
|
1574
1574
|
* @param {string} mediaId
|
|
@@ -1588,7 +1588,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1588
1588
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1589
1589
|
/**
|
|
1590
1590
|
*
|
|
1591
|
-
* @summary Update HospitalServiceMedia. (Auth
|
|
1591
|
+
* @summary Update HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1592
1592
|
* @param {string} hospitalId
|
|
1593
1593
|
* @param {string} hospitalSpecialtyId
|
|
1594
1594
|
* @param {string} mediaId
|
|
@@ -1599,7 +1599,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1599
1599
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1600
1600
|
/**
|
|
1601
1601
|
*
|
|
1602
|
-
* @summary Create HospitalServiceMedia. (Auth
|
|
1602
|
+
* @summary Create HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1603
1603
|
* @param {string} hospitalId
|
|
1604
1604
|
* @param {string} hospitalSpecialtyId
|
|
1605
1605
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
@@ -1609,7 +1609,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1609
1609
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost: (hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1610
1610
|
/**
|
|
1611
1611
|
*
|
|
1612
|
-
* @summary Update HospitalSpecialty. (Auth
|
|
1612
|
+
* @summary Update HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1613
1613
|
* @param {string} hospitalId
|
|
1614
1614
|
* @param {string} hospitalSpecialtyId
|
|
1615
1615
|
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
@@ -1619,7 +1619,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1619
1619
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdPut: (hospitalId: string, hospitalSpecialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1620
1620
|
/**
|
|
1621
1621
|
*
|
|
1622
|
-
* @summary Reactivate HospitalSpecialty. (Auth
|
|
1622
|
+
* @summary Reactivate HospitalSpecialty. (Auth policies: RequireManagerRole)
|
|
1623
1623
|
* @param {string} hospitalId
|
|
1624
1624
|
* @param {string} hospitalSpecialtyId
|
|
1625
1625
|
* @param {*} [options] Override http request option.
|
|
@@ -1628,7 +1628,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1628
1628
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdReactivatePut: (hospitalId: string, hospitalSpecialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1629
1629
|
/**
|
|
1630
1630
|
*
|
|
1631
|
-
* @summary Revalidate hospitalSpecialty (Auth
|
|
1631
|
+
* @summary Revalidate hospitalSpecialty (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1632
1632
|
* @param {string} hospitalId
|
|
1633
1633
|
* @param {string} hospitalSpecialtyId
|
|
1634
1634
|
* @param {boolean} [includeCurrent]
|
|
@@ -1638,7 +1638,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1638
1638
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost: (hospitalId: string, hospitalSpecialtyId: string, includeCurrent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1639
1639
|
/**
|
|
1640
1640
|
*
|
|
1641
|
-
* @summary Translate hospitalSpecialty (Auth
|
|
1641
|
+
* @summary Translate hospitalSpecialty (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1642
1642
|
* @param {string} hospitalId
|
|
1643
1643
|
* @param {string} hospitalSpecialtyId
|
|
1644
1644
|
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
@@ -1648,7 +1648,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1648
1648
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost: (hospitalId: string, hospitalSpecialtyId: string, translateHospitalSpecialtyCommand?: TranslateHospitalSpecialtyCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1649
1649
|
/**
|
|
1650
1650
|
*
|
|
1651
|
-
* @summary Create HospitalSpecialty. (Auth
|
|
1651
|
+
* @summary Create HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1652
1652
|
* @param {string} hospitalId
|
|
1653
1653
|
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
1654
1654
|
* @param {*} [options] Override http request option.
|
|
@@ -1711,7 +1711,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1711
1711
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1712
1712
|
/**
|
|
1713
1713
|
*
|
|
1714
|
-
* @summary Create HospitalService. (Auth
|
|
1714
|
+
* @summary Create HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1715
1715
|
* @param {string} hospitalId
|
|
1716
1716
|
* @param {string} specialtyId
|
|
1717
1717
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
@@ -1738,7 +1738,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1738
1738
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGet: (hospitalId: string, specialtyId: string, serviceId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1739
1739
|
/**
|
|
1740
1740
|
*
|
|
1741
|
-
* @summary Delete Service appointment timetable overrides (Auth
|
|
1741
|
+
* @summary Delete Service appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1742
1742
|
* @param {string} hospitalId
|
|
1743
1743
|
* @param {string} specialtyId
|
|
1744
1744
|
* @param {string} serviceId
|
|
@@ -1749,7 +1749,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1749
1749
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch: (hospitalId: string, specialtyId: string, serviceId: string, deleteServiceAppointmentTimetableOverridesCommand?: DeleteServiceAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1750
1750
|
/**
|
|
1751
1751
|
*
|
|
1752
|
-
* @summary Save Service appointment timetable overrides (Auth
|
|
1752
|
+
* @summary Save Service appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1753
1753
|
* @param {string} hospitalId
|
|
1754
1754
|
* @param {string} specialtyId
|
|
1755
1755
|
* @param {string} serviceId
|
|
@@ -1777,7 +1777,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1777
1777
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: (hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1778
1778
|
/**
|
|
1779
1779
|
*
|
|
1780
|
-
* @summary Add, update and delete service appointment timetables (Auth
|
|
1780
|
+
* @summary Add, update and delete service appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1781
1781
|
* @param {string} hospitalId
|
|
1782
1782
|
* @param {string} specialtyId
|
|
1783
1783
|
* @param {string} serviceId
|
|
@@ -1802,7 +1802,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1802
1802
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet: (hospitalId: string, specialtyId: string, serviceId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1803
1803
|
/**
|
|
1804
1804
|
*
|
|
1805
|
-
* @summary Delete HospitalService (Auth
|
|
1805
|
+
* @summary Delete HospitalService (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1806
1806
|
* @param {string} hospitalId
|
|
1807
1807
|
* @param {string} specialtyId
|
|
1808
1808
|
* @param {string} serviceId
|
|
@@ -1840,7 +1840,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1840
1840
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet: (hospitalId: string, specialtyId: string, serviceId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1841
1841
|
/**
|
|
1842
1842
|
*
|
|
1843
|
-
* @summary Delete HospitalServiceMedia (Auth
|
|
1843
|
+
* @summary Delete HospitalServiceMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1844
1844
|
* @param {string} hospitalId
|
|
1845
1845
|
* @param {string} specialtyId
|
|
1846
1846
|
* @param {string} serviceId
|
|
@@ -1862,7 +1862,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1862
1862
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1863
1863
|
/**
|
|
1864
1864
|
*
|
|
1865
|
-
* @summary Update HospitalServiceMedia. (Auth
|
|
1865
|
+
* @summary Update HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1866
1866
|
* @param {string} hospitalId
|
|
1867
1867
|
* @param {string} specialtyId
|
|
1868
1868
|
* @param {string} serviceId
|
|
@@ -1874,7 +1874,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1874
1874
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1875
1875
|
/**
|
|
1876
1876
|
*
|
|
1877
|
-
* @summary Create HospitalServiceMedia. (Auth
|
|
1877
|
+
* @summary Create HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1878
1878
|
* @param {string} hospitalId
|
|
1879
1879
|
* @param {string} specialtyId
|
|
1880
1880
|
* @param {string} serviceId
|
|
@@ -1885,7 +1885,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1885
1885
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost: (hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1886
1886
|
/**
|
|
1887
1887
|
*
|
|
1888
|
-
* @summary Update HospitalService. (Auth
|
|
1888
|
+
* @summary Update HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1889
1889
|
* @param {string} hospitalId
|
|
1890
1890
|
* @param {string} specialtyId
|
|
1891
1891
|
* @param {string} serviceId
|
|
@@ -1896,7 +1896,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1896
1896
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1897
1897
|
/**
|
|
1898
1898
|
*
|
|
1899
|
-
* @summary Reactivate Hospital Service (Auth
|
|
1899
|
+
* @summary Reactivate Hospital Service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1900
1900
|
* @param {string} hospitalId
|
|
1901
1901
|
* @param {string} specialtyId
|
|
1902
1902
|
* @param {string} serviceId
|
|
@@ -1906,7 +1906,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1906
1906
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1907
1907
|
/**
|
|
1908
1908
|
*
|
|
1909
|
-
* @summary Revalidate service (Auth
|
|
1909
|
+
* @summary Revalidate service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1910
1910
|
* @param {string} hospitalId
|
|
1911
1911
|
* @param {string} specialtyId
|
|
1912
1912
|
* @param {string} serviceId
|
|
@@ -1917,7 +1917,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1917
1917
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost: (hospitalId: string, specialtyId: string, serviceId: string, includeCurrent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1918
1918
|
/**
|
|
1919
1919
|
*
|
|
1920
|
-
* @summary Translate service (Auth
|
|
1920
|
+
* @summary Translate service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1921
1921
|
* @param {string} hospitalId
|
|
1922
1922
|
* @param {string} specialtyId
|
|
1923
1923
|
* @param {string} serviceId
|
|
@@ -1967,7 +1967,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1967
1967
|
apiV1HospitalsHospitalIdTagsTagIdGet: (hospitalId: string, tagId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1968
1968
|
/**
|
|
1969
1969
|
*
|
|
1970
|
-
* @summary Translate hospital at once (Auth
|
|
1970
|
+
* @summary Translate hospital at once (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1971
1971
|
* @param {string} hospitalId
|
|
1972
1972
|
* @param {TranslateHospitalCommand} [translateHospitalCommand]
|
|
1973
1973
|
* @param {*} [options] Override http request option.
|
|
@@ -1976,7 +1976,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1976
1976
|
apiV1HospitalsHospitalIdTranslatePost: (hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1977
1977
|
/**
|
|
1978
1978
|
*
|
|
1979
|
-
* @summary Batch HospitalWorkingDays. (Auth
|
|
1979
|
+
* @summary Batch HospitalWorkingDays. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1980
1980
|
* @param {string} hospitalId
|
|
1981
1981
|
* @param {BatchHospitalWorkingDaysCommand} [batchHospitalWorkingDaysCommand]
|
|
1982
1982
|
* @param {*} [options] Override http request option.
|
|
@@ -2001,7 +2001,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
2001
2001
|
apiV1HospitalsHospitalIdWorkingdaysGet: (hospitalId: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2002
2002
|
/**
|
|
2003
2003
|
*
|
|
2004
|
-
* @summary Create HospitalWorkingDay. (Auth
|
|
2004
|
+
* @summary Create HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2005
2005
|
* @param {string} hospitalId
|
|
2006
2006
|
* @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
|
|
2007
2007
|
* @param {*} [options] Override http request option.
|
|
@@ -2010,7 +2010,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
2010
2010
|
apiV1HospitalsHospitalIdWorkingdaysPost: (hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2011
2011
|
/**
|
|
2012
2012
|
*
|
|
2013
|
-
* @summary Delete HospitalWorkingDay. (Auth
|
|
2013
|
+
* @summary Delete HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2014
2014
|
* @param {string} hospitalId
|
|
2015
2015
|
* @param {string} workingDayId
|
|
2016
2016
|
* @param {*} [options] Override http request option.
|
|
@@ -2028,7 +2028,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
2028
2028
|
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2029
2029
|
/**
|
|
2030
2030
|
*
|
|
2031
|
-
* @summary Update HospitalWorkingDay. (Auth
|
|
2031
|
+
* @summary Update HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2032
2032
|
* @param {string} hospitalId
|
|
2033
2033
|
* @param {string} workingDayId
|
|
2034
2034
|
* @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
|
|
@@ -2038,7 +2038,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
2038
2038
|
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut: (hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2039
2039
|
/**
|
|
2040
2040
|
*
|
|
2041
|
-
* @summary Create Hospital. (Auth
|
|
2041
|
+
* @summary Create Hospital. (Auth policies: RequireContentManagerRole)
|
|
2042
2042
|
* @param {CreateHospitalCommand} [createHospitalCommand]
|
|
2043
2043
|
* @param {*} [options] Override http request option.
|
|
2044
2044
|
* @throws {RequiredError}
|
|
@@ -2108,7 +2108,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2108
2108
|
apiV1HospitalsGet(hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>>;
|
|
2109
2109
|
/**
|
|
2110
2110
|
*
|
|
2111
|
-
* @summary Delete HospitalAccreditation. (Auth
|
|
2111
|
+
* @summary Delete HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2112
2112
|
* @param {string} hospitalId
|
|
2113
2113
|
* @param {string} accreditationId
|
|
2114
2114
|
* @param {*} [options] Override http request option.
|
|
@@ -2117,7 +2117,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2117
2117
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdDelete(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2118
2118
|
/**
|
|
2119
2119
|
*
|
|
2120
|
-
* @summary Get HospitalAccreditation. (Auth
|
|
2120
|
+
* @summary Get HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2121
2121
|
* @param {string} hospitalId
|
|
2122
2122
|
* @param {string} accreditationId
|
|
2123
2123
|
* @param {*} [options] Override http request option.
|
|
@@ -2126,7 +2126,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2126
2126
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalAccreditationModel>>;
|
|
2127
2127
|
/**
|
|
2128
2128
|
*
|
|
2129
|
-
* @summary Get all HospitalAccreditations. (Auth
|
|
2129
|
+
* @summary Get all HospitalAccreditations. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2130
2130
|
* @param {string} hospitalId
|
|
2131
2131
|
* @param {string} [hospitalName]
|
|
2132
2132
|
* @param {string} [accreditationId]
|
|
@@ -2140,7 +2140,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2140
2140
|
apiV1HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string, accreditationId?: string, accreditationName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalAccreditationsModel>>;
|
|
2141
2141
|
/**
|
|
2142
2142
|
*
|
|
2143
|
-
* @summary Create HospitalAccreditation. (Auth
|
|
2143
|
+
* @summary Create HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2144
2144
|
* @param {string} hospitalId
|
|
2145
2145
|
* @param {CreateHospitalAccreditationCommand} [createHospitalAccreditationCommand]
|
|
2146
2146
|
* @param {*} [options] Override http request option.
|
|
@@ -2164,7 +2164,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2164
2164
|
apiV1HospitalsHospitalIdAppointmenttimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetableOverridesModel>>;
|
|
2165
2165
|
/**
|
|
2166
2166
|
*
|
|
2167
|
-
* @summary Delete Hospital appointment timetable overrides (Auth
|
|
2167
|
+
* @summary Delete Hospital appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2168
2168
|
* @param {string} hospitalId
|
|
2169
2169
|
* @param {DeleteHospitalAppointmentTimetableOverridesCommand} [deleteHospitalAppointmentTimetableOverridesCommand]
|
|
2170
2170
|
* @param {*} [options] Override http request option.
|
|
@@ -2173,7 +2173,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2173
2173
|
apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch(hospitalId: string, deleteHospitalAppointmentTimetableOverridesCommand?: DeleteHospitalAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2174
2174
|
/**
|
|
2175
2175
|
*
|
|
2176
|
-
* @summary Save Hospital appointment timetable overrides (Auth
|
|
2176
|
+
* @summary Save Hospital appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2177
2177
|
* @param {string} hospitalId
|
|
2178
2178
|
* @param {SaveHospitalAppointmentTimetableOverridesCommand} [saveHospitalAppointmentTimetableOverridesCommand]
|
|
2179
2179
|
* @param {*} [options] Override http request option.
|
|
@@ -2197,7 +2197,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2197
2197
|
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>>;
|
|
2198
2198
|
/**
|
|
2199
2199
|
*
|
|
2200
|
-
* @summary Add, update, delete Hospital appointment timetables (Auth
|
|
2200
|
+
* @summary Add, update, delete Hospital appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2201
2201
|
* @param {string} hospitalId
|
|
2202
2202
|
* @param {BatchHospitalAppointmentTimetablesCommand} [batchHospitalAppointmentTimetablesCommand]
|
|
2203
2203
|
* @param {*} [options] Override http request option.
|
|
@@ -2218,7 +2218,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2218
2218
|
apiV1HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>>;
|
|
2219
2219
|
/**
|
|
2220
2220
|
*
|
|
2221
|
-
* @summary Delete bankAccountInfo (Auth
|
|
2221
|
+
* @summary Delete bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
2222
2222
|
* @param {string} hospitalId
|
|
2223
2223
|
* @param {string} bankAccountInfoId
|
|
2224
2224
|
* @param {*} [options] Override http request option.
|
|
@@ -2227,7 +2227,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2227
2227
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDelete(hospitalId: string, bankAccountInfoId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2228
2228
|
/**
|
|
2229
2229
|
*
|
|
2230
|
-
* @summary Get bankAccountInfo (Auth
|
|
2230
|
+
* @summary Get bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
2231
2231
|
* @param {string} hospitalId
|
|
2232
2232
|
* @param {string} bankAccountInfoId
|
|
2233
2233
|
* @param {*} [options] Override http request option.
|
|
@@ -2236,7 +2236,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2236
2236
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet(hospitalId: string, bankAccountInfoId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccountInfoModel>>;
|
|
2237
2237
|
/**
|
|
2238
2238
|
*
|
|
2239
|
-
* @summary Update bankAccountInfo (Auth
|
|
2239
|
+
* @summary Update bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
2240
2240
|
* @param {string} hospitalId
|
|
2241
2241
|
* @param {string} bankAccountInfoId
|
|
2242
2242
|
* @param {UpdateHospitalBankAccountInfoCommand} [updateHospitalBankAccountInfoCommand]
|
|
@@ -2246,7 +2246,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2246
2246
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut(hospitalId: string, bankAccountInfoId: string, updateHospitalBankAccountInfoCommand?: UpdateHospitalBankAccountInfoCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccountInfoModel>>;
|
|
2247
2247
|
/**
|
|
2248
2248
|
*
|
|
2249
|
-
* @summary Get all bankAccountInfos (Auth
|
|
2249
|
+
* @summary Get all bankAccountInfos (Auth policies: RequireDoctorRole)
|
|
2250
2250
|
* @param {string} hospitalId
|
|
2251
2251
|
* @param {string} [bank]
|
|
2252
2252
|
* @param {boolean} [isEnabled]
|
|
@@ -2259,7 +2259,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2259
2259
|
apiV1HospitalsHospitalIdBankaccountinfosGet(hospitalId: string, bank?: string, isEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccountInfosModel>>;
|
|
2260
2260
|
/**
|
|
2261
2261
|
*
|
|
2262
|
-
* @summary Create bankAccountInfo (Auth
|
|
2262
|
+
* @summary Create bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
2263
2263
|
* @param {string} hospitalId
|
|
2264
2264
|
* @param {CreateHospitalBankAccountInfoCommand} [createHospitalBankAccountInfoCommand]
|
|
2265
2265
|
* @param {*} [options] Override http request option.
|
|
@@ -2268,7 +2268,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2268
2268
|
apiV1HospitalsHospitalIdBankaccountinfosPost(hospitalId: string, createHospitalBankAccountInfoCommand?: CreateHospitalBankAccountInfoCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccountInfoModel>>;
|
|
2269
2269
|
/**
|
|
2270
2270
|
*
|
|
2271
|
-
* @summary Delete hospital contact (Auth
|
|
2271
|
+
* @summary Delete hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2272
2272
|
* @param {string} hospitalId
|
|
2273
2273
|
* @param {string} contactId
|
|
2274
2274
|
* @param {boolean} [isPermanent]
|
|
@@ -2287,7 +2287,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2287
2287
|
apiV1HospitalsHospitalIdContactsContactIdGet(hospitalId: string, contactId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalContactModel>>;
|
|
2288
2288
|
/**
|
|
2289
2289
|
*
|
|
2290
|
-
* @summary Update hospital contact (Auth
|
|
2290
|
+
* @summary Update hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2291
2291
|
* @param {string} hospitalId
|
|
2292
2292
|
* @param {string} contactId
|
|
2293
2293
|
* @param {UpdateHospitalContactCommand} [updateHospitalContactCommand]
|
|
@@ -2297,7 +2297,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2297
2297
|
apiV1HospitalsHospitalIdContactsContactIdPut(hospitalId: string, contactId: string, updateHospitalContactCommand?: UpdateHospitalContactCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalContactModel>>;
|
|
2298
2298
|
/**
|
|
2299
2299
|
*
|
|
2300
|
-
* @summary Reactivate hospital contact (Auth
|
|
2300
|
+
* @summary Reactivate hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2301
2301
|
* @param {string} hospitalId
|
|
2302
2302
|
* @param {string} contactId
|
|
2303
2303
|
* @param {*} [options] Override http request option.
|
|
@@ -2322,7 +2322,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2322
2322
|
apiV1HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalContactsModel>>;
|
|
2323
2323
|
/**
|
|
2324
2324
|
*
|
|
2325
|
-
* @summary Create hospital contact (Auth
|
|
2325
|
+
* @summary Create hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2326
2326
|
* @param {string} hospitalId
|
|
2327
2327
|
* @param {CreateHospitalContactCommand} [createHospitalContactCommand]
|
|
2328
2328
|
* @param {*} [options] Override http request option.
|
|
@@ -2331,7 +2331,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2331
2331
|
apiV1HospitalsHospitalIdContactsPost(hospitalId: string, createHospitalContactCommand?: CreateHospitalContactCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalContactModel>>;
|
|
2332
2332
|
/**
|
|
2333
2333
|
*
|
|
2334
|
-
* @summary Batch for contacts sorting (Auth
|
|
2334
|
+
* @summary Batch for contacts sorting (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2335
2335
|
* @param {string} hospitalId
|
|
2336
2336
|
* @param {ContactSortingCommand} [contactSortingCommand]
|
|
2337
2337
|
* @param {*} [options] Override http request option.
|
|
@@ -2340,7 +2340,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2340
2340
|
apiV1HospitalsHospitalIdContactsSortPut(hospitalId: string, contactSortingCommand?: ContactSortingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SortingResultModel>>;
|
|
2341
2341
|
/**
|
|
2342
2342
|
*
|
|
2343
|
-
* @summary Delete Hospital. (Auth
|
|
2343
|
+
* @summary Delete Hospital. (Auth policies: RequireManagerRole)
|
|
2344
2344
|
* @param {string} hospitalId
|
|
2345
2345
|
* @param {boolean} [isPermanent]
|
|
2346
2346
|
* @param {*} [options] Override http request option.
|
|
@@ -2349,7 +2349,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2349
2349
|
apiV1HospitalsHospitalIdDelete(hospitalId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2350
2350
|
/**
|
|
2351
2351
|
*
|
|
2352
|
-
* @summary Delete HospitalEquipment (Auth
|
|
2352
|
+
* @summary Delete HospitalEquipment (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2353
2353
|
* @param {string} hospitalId
|
|
2354
2354
|
* @param {string} equipmentId
|
|
2355
2355
|
* @param {boolean} [isPermanent]
|
|
@@ -2382,7 +2382,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2382
2382
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasGet(hospitalId: string, equipmentId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediasModel>>;
|
|
2383
2383
|
/**
|
|
2384
2384
|
*
|
|
2385
|
-
* @summary Delete EquipmentMedia (Auth
|
|
2385
|
+
* @summary Delete EquipmentMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2386
2386
|
* @param {string} hospitalId
|
|
2387
2387
|
* @param {string} equipmentId
|
|
2388
2388
|
* @param {string} mediaId
|
|
@@ -2402,7 +2402,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2402
2402
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdGet(hospitalId: string, equipmentId: string, mediaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
2403
2403
|
/**
|
|
2404
2404
|
*
|
|
2405
|
-
* @summary Update EquipmentMedia. (Auth
|
|
2405
|
+
* @summary Update EquipmentMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2406
2406
|
* @param {string} hospitalId
|
|
2407
2407
|
* @param {string} equipmentId
|
|
2408
2408
|
* @param {string} mediaId
|
|
@@ -2413,7 +2413,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2413
2413
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdPut(hospitalId: string, equipmentId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
2414
2414
|
/**
|
|
2415
2415
|
*
|
|
2416
|
-
* @summary Create EquipmentMedia. (Auth
|
|
2416
|
+
* @summary Create EquipmentMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2417
2417
|
* @param {string} hospitalId
|
|
2418
2418
|
* @param {string} equipmentId
|
|
2419
2419
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
@@ -2423,7 +2423,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2423
2423
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasPost(hospitalId: string, equipmentId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
2424
2424
|
/**
|
|
2425
2425
|
*
|
|
2426
|
-
* @summary Update HospitalEquipment. (Auth
|
|
2426
|
+
* @summary Update HospitalEquipment. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2427
2427
|
* @param {string} hospitalId
|
|
2428
2428
|
* @param {string} equipmentId
|
|
2429
2429
|
* @param {UpdateHospitalEquipmentCommand} [updateHospitalEquipmentCommand]
|
|
@@ -2433,7 +2433,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2433
2433
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalEquipmentModel>>;
|
|
2434
2434
|
/**
|
|
2435
2435
|
*
|
|
2436
|
-
* @summary Reactivate HospitalEquipment. (Auth
|
|
2436
|
+
* @summary Reactivate HospitalEquipment. (Auth policies: RequireManagerRole)
|
|
2437
2437
|
* @param {string} hospitalId
|
|
2438
2438
|
* @param {string} equipmentId
|
|
2439
2439
|
* @param {*} [options] Override http request option.
|
|
@@ -2460,7 +2460,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2460
2460
|
apiV1HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string, name?: string, hospitalId2?: string, hospitalName?: string, description?: string, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalEquipmentsModel>>;
|
|
2461
2461
|
/**
|
|
2462
2462
|
*
|
|
2463
|
-
* @summary Create HospitalEquipment. (Auth
|
|
2463
|
+
* @summary Create HospitalEquipment. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2464
2464
|
* @param {string} hospitalId
|
|
2465
2465
|
* @param {CreateHospitalEquipmentCommand} [createHospitalEquipmentCommand]
|
|
2466
2466
|
* @param {*} [options] Override http request option.
|
|
@@ -2469,7 +2469,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2469
2469
|
apiV1HospitalsHospitalIdEquipmentsPost(hospitalId: string, createHospitalEquipmentCommand?: CreateHospitalEquipmentCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalEquipmentModel>>;
|
|
2470
2470
|
/**
|
|
2471
2471
|
*
|
|
2472
|
-
* @summary Delete HospitalEvaluation. (Auth
|
|
2472
|
+
* @summary Delete HospitalEvaluation. (Auth policies: RequireContentManagerRole)
|
|
2473
2473
|
* @param {string} hospitalId
|
|
2474
2474
|
* @param {string} evaluationId
|
|
2475
2475
|
* @param {*} [options] Override http request option.
|
|
@@ -2501,7 +2501,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2501
2501
|
apiV1HospitalsHospitalIdEvaluationsGet(hospitalId: string, id?: string, name?: string, stars?: number, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalEvaluationsModel>>;
|
|
2502
2502
|
/**
|
|
2503
2503
|
*
|
|
2504
|
-
* @summary Create HospitalEvaluation. (Auth
|
|
2504
|
+
* @summary Create HospitalEvaluation. (Auth policies: RequireContentManagerRole)
|
|
2505
2505
|
* @param {string} hospitalId
|
|
2506
2506
|
* @param {CreateHospitalEvaluationCommand} [createHospitalEvaluationCommand]
|
|
2507
2507
|
* @param {*} [options] Override http request option.
|
|
@@ -2510,7 +2510,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2510
2510
|
apiV1HospitalsHospitalIdEvaluationsPost(hospitalId: string, createHospitalEvaluationCommand?: CreateHospitalEvaluationCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalEvaluationModel>>;
|
|
2511
2511
|
/**
|
|
2512
2512
|
*
|
|
2513
|
-
* @summary Get footerNavigationItems (Auth
|
|
2513
|
+
* @summary Get footerNavigationItems (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2514
2514
|
* @param {string} hospitalId
|
|
2515
2515
|
* @param {string} languageCode
|
|
2516
2516
|
* @param {*} [options] Override http request option.
|
|
@@ -2519,7 +2519,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2519
2519
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet(hospitalId: string, languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FooterNavigationItemModel>>>;
|
|
2520
2520
|
/**
|
|
2521
2521
|
*
|
|
2522
|
-
* @summary Delete footerNavigationItem (Auth
|
|
2522
|
+
* @summary Delete footerNavigationItem (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2523
2523
|
* @param {string} hospitalId
|
|
2524
2524
|
* @param {string} languageCode
|
|
2525
2525
|
* @param {string} id Id of level 1 item in the json data
|
|
@@ -2529,7 +2529,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2529
2529
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete(hospitalId: string, languageCode: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2530
2530
|
/**
|
|
2531
2531
|
*
|
|
2532
|
-
* @summary Get footerNavigationItem by Id (Auth
|
|
2532
|
+
* @summary Get footerNavigationItem by Id (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2533
2533
|
* @param {string} hospitalId
|
|
2534
2534
|
* @param {string} languageCode
|
|
2535
2535
|
* @param {string} id
|
|
@@ -2539,7 +2539,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2539
2539
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet(hospitalId: string, languageCode: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FooterNavigationItemModel>>;
|
|
2540
2540
|
/**
|
|
2541
2541
|
*
|
|
2542
|
-
* @summary Get footerNavigationItems by ParentId (Auth
|
|
2542
|
+
* @summary Get footerNavigationItems by ParentId (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2543
2543
|
* @param {string} hospitalId
|
|
2544
2544
|
* @param {string} languageCode
|
|
2545
2545
|
* @param {string} parentId
|
|
@@ -2549,7 +2549,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2549
2549
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet(hospitalId: string, languageCode: string, parentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FooterNavigationItemModel>>>;
|
|
2550
2550
|
/**
|
|
2551
2551
|
*
|
|
2552
|
-
* @summary Save footerNavigationItem (Auth
|
|
2552
|
+
* @summary Save footerNavigationItem (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2553
2553
|
* @param {string} hospitalId
|
|
2554
2554
|
* @param {string} languageCode
|
|
2555
2555
|
* @param {SaveFooterNavigationsCommand} [saveFooterNavigationsCommand]
|
|
@@ -2559,7 +2559,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2559
2559
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost(hospitalId: string, languageCode: string, saveFooterNavigationsCommand?: SaveFooterNavigationsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FooterNavigationItemModel>>;
|
|
2560
2560
|
/**
|
|
2561
2561
|
*
|
|
2562
|
-
* @summary Batch for footer navigation items sorting <br> Level 1 item only (Auth
|
|
2562
|
+
* @summary Batch for footer navigation items sorting <br> Level 1 item only (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2563
2563
|
* @param {string} hospitalId
|
|
2564
2564
|
* @param {string} languageCode
|
|
2565
2565
|
* @param {SortFooterNavigationsCommand} [sortFooterNavigationsCommand]
|
|
@@ -2593,7 +2593,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2593
2593
|
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSnsHandlesModel>>;
|
|
2594
2594
|
/**
|
|
2595
2595
|
*
|
|
2596
|
-
* @summary Delete HospitalHandle. (Auth
|
|
2596
|
+
* @summary Delete HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2597
2597
|
* @param {string} hospitalId
|
|
2598
2598
|
* @param {string} handleId
|
|
2599
2599
|
* @param {*} [options] Override http request option.
|
|
@@ -2611,7 +2611,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2611
2611
|
apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SnsHandleModel>>;
|
|
2612
2612
|
/**
|
|
2613
2613
|
*
|
|
2614
|
-
* @summary Update HospitalHandle. (Auth
|
|
2614
|
+
* @summary Update HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2615
2615
|
* @param {string} hospitalId
|
|
2616
2616
|
* @param {string} handleId
|
|
2617
2617
|
* @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
|
|
@@ -2621,7 +2621,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2621
2621
|
apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SnsHandleModel>>;
|
|
2622
2622
|
/**
|
|
2623
2623
|
*
|
|
2624
|
-
* @summary Get HospitalHandle. (Auth
|
|
2624
|
+
* @summary Get HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2625
2625
|
* @param {string} hospitalId
|
|
2626
2626
|
* @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
|
|
2627
2627
|
* @param {*} [options] Override http request option.
|
|
@@ -2630,7 +2630,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2630
2630
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SnsHandleModel>>;
|
|
2631
2631
|
/**
|
|
2632
2632
|
*
|
|
2633
|
-
* @summary Get all HeaderNavigationItems (Auth
|
|
2633
|
+
* @summary Get all HeaderNavigationItems (Auth policies: RequireDoctorRole)
|
|
2634
2634
|
* @param {string} hospitalId
|
|
2635
2635
|
* @param {string} languageCode
|
|
2636
2636
|
* @param {*} [options] Override http request option.
|
|
@@ -2639,7 +2639,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2639
2639
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeGet(hospitalId: string, languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<HeaderNavigationItemModel>>>;
|
|
2640
2640
|
/**
|
|
2641
2641
|
*
|
|
2642
|
-
* @summary Delete HeaderNavigationItem (Auth
|
|
2642
|
+
* @summary Delete HeaderNavigationItem (Auth policies: RequireDoctorRole)
|
|
2643
2643
|
* @param {string} hospitalId
|
|
2644
2644
|
* @param {string} languageCode
|
|
2645
2645
|
* @param {string} id
|
|
@@ -2649,7 +2649,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2649
2649
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdDelete(hospitalId: string, languageCode: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2650
2650
|
/**
|
|
2651
2651
|
*
|
|
2652
|
-
* @summary Get HeaderNavigationItem by id (Auth
|
|
2652
|
+
* @summary Get HeaderNavigationItem by id (Auth policies: RequireDoctorRole)
|
|
2653
2653
|
* @param {string} hospitalId
|
|
2654
2654
|
* @param {string} languageCode
|
|
2655
2655
|
* @param {string} id
|
|
@@ -2659,7 +2659,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2659
2659
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdGet(hospitalId: string, languageCode: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HeaderNavigationItemModel>>;
|
|
2660
2660
|
/**
|
|
2661
2661
|
*
|
|
2662
|
-
* @summary Get HeaderNavigationItems by parent id (Auth
|
|
2662
|
+
* @summary Get HeaderNavigationItems by parent id (Auth policies: RequireDoctorRole)
|
|
2663
2663
|
* @param {string} hospitalId
|
|
2664
2664
|
* @param {string} languageCode
|
|
2665
2665
|
* @param {string} parentId
|
|
@@ -2669,7 +2669,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2669
2669
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeParentIdSubitemsGet(hospitalId: string, languageCode: string, parentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<HeaderNavigationItemModel>>>;
|
|
2670
2670
|
/**
|
|
2671
2671
|
*
|
|
2672
|
-
* @summary Save HeaderNavigationItem (Auth
|
|
2672
|
+
* @summary Save HeaderNavigationItem (Auth policies: RequireDoctorRole)
|
|
2673
2673
|
* @param {string} hospitalId
|
|
2674
2674
|
* @param {string} languageCode
|
|
2675
2675
|
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
@@ -2694,7 +2694,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2694
2694
|
apiV1HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LandingsModel>>;
|
|
2695
2695
|
/**
|
|
2696
2696
|
*
|
|
2697
|
-
* @summary Delete Landing. (Auth
|
|
2697
|
+
* @summary Delete Landing. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2698
2698
|
* @param {string} hospitalId
|
|
2699
2699
|
* @param {string} landingId
|
|
2700
2700
|
* @param {boolean} [isPermanent]
|
|
@@ -2714,7 +2714,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2714
2714
|
apiV1HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LandingModel>>;
|
|
2715
2715
|
/**
|
|
2716
2716
|
*
|
|
2717
|
-
* @summary Update Landing (Auth
|
|
2717
|
+
* @summary Update Landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2718
2718
|
* @param {string} hospitalId
|
|
2719
2719
|
* @param {string} landingId
|
|
2720
2720
|
* @param {UpdateLandingCommand} [updateLandingCommand]
|
|
@@ -2724,7 +2724,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2724
2724
|
apiV1HospitalsHospitalIdLandingsLandingIdPut(hospitalId: string, landingId: string, updateLandingCommand?: UpdateLandingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LandingModel>>;
|
|
2725
2725
|
/**
|
|
2726
2726
|
*
|
|
2727
|
-
* @summary Reactivate Landing (Auth
|
|
2727
|
+
* @summary Reactivate Landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2728
2728
|
* @param {string} hospitalId
|
|
2729
2729
|
* @param {string} landingId
|
|
2730
2730
|
* @param {*} [options] Override http request option.
|
|
@@ -2733,7 +2733,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2733
2733
|
apiV1HospitalsHospitalIdLandingsLandingIdReactivatePut(hospitalId: string, landingId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2734
2734
|
/**
|
|
2735
2735
|
*
|
|
2736
|
-
* @summary Revalidate landing (Auth
|
|
2736
|
+
* @summary Revalidate landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2737
2737
|
* @param {string} hospitalId
|
|
2738
2738
|
* @param {string} landingId
|
|
2739
2739
|
* @param {boolean} [includeCurrent]
|
|
@@ -2743,7 +2743,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2743
2743
|
apiV1HospitalsHospitalIdLandingsLandingIdRevalidatePost(hospitalId: string, landingId: string, includeCurrent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2744
2744
|
/**
|
|
2745
2745
|
*
|
|
2746
|
-
* @summary Translate landing (Auth
|
|
2746
|
+
* @summary Translate landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2747
2747
|
* @param {string} hospitalId
|
|
2748
2748
|
* @param {string} landingId
|
|
2749
2749
|
* @param {TranslateLandingCommand} [translateLandingCommand]
|
|
@@ -2753,7 +2753,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2753
2753
|
apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost(hospitalId: string, landingId: string, translateLandingCommand?: TranslateLandingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2754
2754
|
/**
|
|
2755
2755
|
*
|
|
2756
|
-
* @summary Create HospitalLandings. (Auth
|
|
2756
|
+
* @summary Create HospitalLandings. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2757
2757
|
* @param {string} hospitalId
|
|
2758
2758
|
* @param {CreateLandingCommand} [createLandingCommand]
|
|
2759
2759
|
* @param {*} [options] Override http request option.
|
|
@@ -2775,7 +2775,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2775
2775
|
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalLanguagesModel>>;
|
|
2776
2776
|
/**
|
|
2777
2777
|
*
|
|
2778
|
-
* @summary Delete GetAllLanguage. (Auth
|
|
2778
|
+
* @summary Delete GetAllLanguage. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2779
2779
|
* @param {string} hospitalId
|
|
2780
2780
|
* @param {string} languageCode
|
|
2781
2781
|
* @param {*} [options] Override http request option.
|
|
@@ -2784,7 +2784,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2784
2784
|
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2785
2785
|
/**
|
|
2786
2786
|
*
|
|
2787
|
-
* @summary Update HospitalLanguage (Auth
|
|
2787
|
+
* @summary Update HospitalLanguage (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2788
2788
|
* @param {string} hospitalId
|
|
2789
2789
|
* @param {string} languageCode
|
|
2790
2790
|
* @param {UpdateHospitalLanguageCommand} [updateHospitalLanguageCommand]
|
|
@@ -2794,7 +2794,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2794
2794
|
apiV1HospitalsHospitalIdLanguagesLanguageCodePut(hospitalId: string, languageCode: string, updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2795
2795
|
/**
|
|
2796
2796
|
*
|
|
2797
|
-
* @summary Create HospitalLanguages. (Auth
|
|
2797
|
+
* @summary Create HospitalLanguages. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2798
2798
|
* @param {string} hospitalId
|
|
2799
2799
|
* @param {CreateHospitalLanguageCommand} [createHospitalLanguageCommand]
|
|
2800
2800
|
* @param {*} [options] Override http request option.
|
|
@@ -2803,7 +2803,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2803
2803
|
apiV1HospitalsHospitalIdLanguagesPost(hospitalId: string, createHospitalLanguageCommand?: CreateHospitalLanguageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2804
2804
|
/**
|
|
2805
2805
|
*
|
|
2806
|
-
* @summary Get managers (Auth
|
|
2806
|
+
* @summary Get managers (Auth policies: RequireDoctorRole)
|
|
2807
2807
|
* @param {string} hospitalId
|
|
2808
2808
|
* @param {string} [id]
|
|
2809
2809
|
* @param {string} [fullname]
|
|
@@ -2821,7 +2821,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2821
2821
|
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagersModel>>;
|
|
2822
2822
|
/**
|
|
2823
2823
|
*
|
|
2824
|
-
* @summary Delete manager (Auth
|
|
2824
|
+
* @summary Delete manager (Auth policies: RequireManagerRole)
|
|
2825
2825
|
* @param {string} hospitalId
|
|
2826
2826
|
* @param {string} managerId
|
|
2827
2827
|
* @param {boolean} [isPermanent]
|
|
@@ -2831,7 +2831,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2831
2831
|
apiV1HospitalsHospitalIdManagersManagerIdDelete(hospitalId: string, managerId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2832
2832
|
/**
|
|
2833
2833
|
*
|
|
2834
|
-
* @summary Get manager (Auth
|
|
2834
|
+
* @summary Get manager (Auth policies: RequireDoctorRole)
|
|
2835
2835
|
* @param {string} hospitalId
|
|
2836
2836
|
* @param {string} managerId
|
|
2837
2837
|
* @param {*} [options] Override http request option.
|
|
@@ -2840,7 +2840,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2840
2840
|
apiV1HospitalsHospitalIdManagersManagerIdGet(hospitalId: string, managerId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagerModel>>;
|
|
2841
2841
|
/**
|
|
2842
2842
|
* PUT: /api/v1/hospitals/{hospitlaId}/managers/{managerId} { \"email\": \"emailaddress@icloudhospital.com\", \"firstName\": \"First\", \"lastName\": \"Last\", \"phone\": \"+82 1012340000\", \"photo\": \"\", \"photoThumbnail\": \"\", \"gender\": \"Male\", \"dateOfBirth\": \"2023-08-07T06:02:05.652Z\", \"timeZone\": \"Asia/Seoul\" }
|
|
2843
|
-
* @summary Update manager (Auth
|
|
2843
|
+
* @summary Update manager (Auth policies: RequireDoctorRole)
|
|
2844
2844
|
* @param {string} hospitalId
|
|
2845
2845
|
* @param {string} managerId
|
|
2846
2846
|
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
@@ -2850,7 +2850,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2850
2850
|
apiV1HospitalsHospitalIdManagersManagerIdPut(hospitalId: string, managerId: string, updateManagerCommand?: UpdateManagerCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagerModel>>;
|
|
2851
2851
|
/**
|
|
2852
2852
|
* POST: /api/v1/hospitals/{hospitlaId}/managers { \"email\": \"emailaddress@icloudhospital.com\", \"firstName\": \"First\", \"lastName\": \"Last\", \"phone\": \"+82 1012340000\", \"photo\": \"\", \"photoThumbnail\": \"\", \"gender\": \"Male\", \"dateOfBirth\": \"2023-08-07T06:02:05.652Z\", \"timeZone\": \"Asia/Seoul\" }
|
|
2853
|
-
* @summary Create manager (Auth
|
|
2853
|
+
* @summary Create manager (Auth policies: RequireManagerRole)
|
|
2854
2854
|
* @param {string} hospitalId
|
|
2855
2855
|
* @param {CreateManagerCommand} [createManagerCommand]
|
|
2856
2856
|
* @param {*} [options] Override http request option.
|
|
@@ -2872,7 +2872,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2872
2872
|
apiV1HospitalsHospitalIdMediasGet(hospitalId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediasModel>>;
|
|
2873
2873
|
/**
|
|
2874
2874
|
*
|
|
2875
|
-
* @summary Delete HospitalMedia (Auth
|
|
2875
|
+
* @summary Delete HospitalMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2876
2876
|
* @param {string} hospitalId
|
|
2877
2877
|
* @param {string} mediaId
|
|
2878
2878
|
* @param {*} [options] Override http request option.
|
|
@@ -2890,7 +2890,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2890
2890
|
apiV1HospitalsHospitalIdMediasMediaIdGet(hospitalId: string, mediaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
2891
2891
|
/**
|
|
2892
2892
|
*
|
|
2893
|
-
* @summary Update HospitalMedia. (Auth
|
|
2893
|
+
* @summary Update HospitalMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2894
2894
|
* @param {string} hospitalId
|
|
2895
2895
|
* @param {string} mediaId
|
|
2896
2896
|
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
@@ -2900,7 +2900,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2900
2900
|
apiV1HospitalsHospitalIdMediasMediaIdPut(hospitalId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
2901
2901
|
/**
|
|
2902
2902
|
*
|
|
2903
|
-
* @summary Create HospitalMedia. (Auth
|
|
2903
|
+
* @summary Create HospitalMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
2904
2904
|
* @param {string} hospitalId
|
|
2905
2905
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
2906
2906
|
* @param {*} [options] Override http request option.
|
|
@@ -2909,7 +2909,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2909
2909
|
apiV1HospitalsHospitalIdMediasPost(hospitalId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
2910
2910
|
/**
|
|
2911
2911
|
*
|
|
2912
|
-
* @summary Get notices (Auth
|
|
2912
|
+
* @summary Get notices (Auth policies: RequireLocalManagerRole)
|
|
2913
2913
|
* @param {string} hospitalId
|
|
2914
2914
|
* @param {string} [id]
|
|
2915
2915
|
* @param {string} [languageCode]
|
|
@@ -2925,7 +2925,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2925
2925
|
apiV1HospitalsHospitalIdNoticesGet(hospitalId: string, id?: string, languageCode?: string, name?: string, status?: NoticeStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NoticesModel>>;
|
|
2926
2926
|
/**
|
|
2927
2927
|
*
|
|
2928
|
-
* @summary Delete notice (Auth
|
|
2928
|
+
* @summary Delete notice (Auth policies: RequireLocalManagerRole)
|
|
2929
2929
|
* @param {string} hospitalId
|
|
2930
2930
|
* @param {string} noticeId
|
|
2931
2931
|
* @param {string} [languageCode]
|
|
@@ -2936,7 +2936,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2936
2936
|
apiV1HospitalsHospitalIdNoticesNoticeIdDelete(hospitalId: string, noticeId: string, languageCode?: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2937
2937
|
/**
|
|
2938
2938
|
*
|
|
2939
|
-
* @summary Get notice by id (Auth
|
|
2939
|
+
* @summary Get notice by id (Auth policies: RequireLocalManagerRole)
|
|
2940
2940
|
* @param {string} hospitalId
|
|
2941
2941
|
* @param {string} noticeId
|
|
2942
2942
|
* @param {string} [languageCode]
|
|
@@ -2946,7 +2946,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2946
2946
|
apiV1HospitalsHospitalIdNoticesNoticeIdGet(hospitalId: string, noticeId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NoticeModel>>;
|
|
2947
2947
|
/**
|
|
2948
2948
|
*
|
|
2949
|
-
* @summary Update notice (Auth
|
|
2949
|
+
* @summary Update notice (Auth policies: RequireLocalManagerRole)
|
|
2950
2950
|
* @param {string} hospitalId
|
|
2951
2951
|
* @param {string} noticeId
|
|
2952
2952
|
* @param {UpdateNoticeCommand} [updateNoticeCommand]
|
|
@@ -2956,7 +2956,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2956
2956
|
apiV1HospitalsHospitalIdNoticesNoticeIdPut(hospitalId: string, noticeId: string, updateNoticeCommand?: UpdateNoticeCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NoticeModel>>;
|
|
2957
2957
|
/**
|
|
2958
2958
|
*
|
|
2959
|
-
* @summary Reactivate notice (Auth
|
|
2959
|
+
* @summary Reactivate notice (Auth policies: RequireLocalManagerRole)
|
|
2960
2960
|
* @param {string} hospitalId
|
|
2961
2961
|
* @param {string} noticeId
|
|
2962
2962
|
* @param {*} [options] Override http request option.
|
|
@@ -2965,7 +2965,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2965
2965
|
apiV1HospitalsHospitalIdNoticesNoticeIdReactivatePut(hospitalId: string, noticeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2966
2966
|
/**
|
|
2967
2967
|
*
|
|
2968
|
-
* @summary Create notice (Auth
|
|
2968
|
+
* @summary Create notice (Auth policies: RequireLocalManagerRole)
|
|
2969
2969
|
* @param {string} hospitalId
|
|
2970
2970
|
* @param {CreateNoticeCommand} [createNoticeCommand]
|
|
2971
2971
|
* @param {*} [options] Override http request option.
|
|
@@ -2974,7 +2974,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2974
2974
|
apiV1HospitalsHospitalIdNoticesPost(hospitalId: string, createNoticeCommand?: CreateNoticeCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NoticeModel>>;
|
|
2975
2975
|
/**
|
|
2976
2976
|
*
|
|
2977
|
-
* @summary Batch for notices sorting (Auth
|
|
2977
|
+
* @summary Batch for notices sorting (Auth policies: RequireLocalManagerRole)
|
|
2978
2978
|
* @param {string} hospitalId
|
|
2979
2979
|
* @param {NoticeSortingCommand} [noticeSortingCommand]
|
|
2980
2980
|
* @param {*} [options] Override http request option.
|
|
@@ -2983,7 +2983,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2983
2983
|
apiV1HospitalsHospitalIdNoticesSortPut(hospitalId: string, noticeSortingCommand?: NoticeSortingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SortingResultModel>>;
|
|
2984
2984
|
/**
|
|
2985
2985
|
*
|
|
2986
|
-
* @summary Get hospital pageItems (Auth
|
|
2986
|
+
* @summary Get hospital pageItems (Auth policies: RequireDoctorRole)
|
|
2987
2987
|
* @param {string} hospitalId
|
|
2988
2988
|
* @param {string} [id]
|
|
2989
2989
|
* @param {string} [languageCode]
|
|
@@ -2999,7 +2999,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2999
2999
|
apiV1HospitalsHospitalIdPagesGet(hospitalId: string, id?: string, languageCode?: string, name?: string, status?: PageItemStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PageItemsModel>>;
|
|
3000
3000
|
/**
|
|
3001
3001
|
*
|
|
3002
|
-
* @summary Delete page (Auth
|
|
3002
|
+
* @summary Delete page (Auth policies: RequireDoctorRole)
|
|
3003
3003
|
* @param {string} hospitalId
|
|
3004
3004
|
* @param {string} pageItemId
|
|
3005
3005
|
* @param {boolean} [isPermanent]
|
|
@@ -3010,7 +3010,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3010
3010
|
apiV1HospitalsHospitalIdPagesPageItemIdDelete(hospitalId: string, pageItemId: string, isPermanent?: boolean, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3011
3011
|
/**
|
|
3012
3012
|
*
|
|
3013
|
-
* @summary Get hospital page (Auth
|
|
3013
|
+
* @summary Get hospital page (Auth policies: RequireDoctorRole)
|
|
3014
3014
|
* @param {string} hospitalId
|
|
3015
3015
|
* @param {string} pageItemId
|
|
3016
3016
|
* @param {string} [languageCode]
|
|
@@ -3020,7 +3020,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3020
3020
|
apiV1HospitalsHospitalIdPagesPageItemIdGet(hospitalId: string, pageItemId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PageItemModel>>;
|
|
3021
3021
|
/**
|
|
3022
3022
|
*
|
|
3023
|
-
* @summary Update page (Auth
|
|
3023
|
+
* @summary Update page (Auth policies: RequireDoctorRole)
|
|
3024
3024
|
* @param {string} hospitalId
|
|
3025
3025
|
* @param {string} pageItemId
|
|
3026
3026
|
* @param {UpdatePageCommand} [updatePageCommand]
|
|
@@ -3030,7 +3030,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3030
3030
|
apiV1HospitalsHospitalIdPagesPageItemIdPut(hospitalId: string, pageItemId: string, updatePageCommand?: UpdatePageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PageItemModel>>;
|
|
3031
3031
|
/**
|
|
3032
3032
|
*
|
|
3033
|
-
* @summary Reactivate page (Auth
|
|
3033
|
+
* @summary Reactivate page (Auth policies: RequireDoctorRole)
|
|
3034
3034
|
* @param {string} hospitalId
|
|
3035
3035
|
* @param {string} pageItemId
|
|
3036
3036
|
* @param {*} [options] Override http request option.
|
|
@@ -3039,7 +3039,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3039
3039
|
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut(hospitalId: string, pageItemId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3040
3040
|
/**
|
|
3041
3041
|
*
|
|
3042
|
-
* @summary Translate pageBlocks in section (Auth
|
|
3042
|
+
* @summary Translate pageBlocks in section (Auth policies: RequireDoctorRole)
|
|
3043
3043
|
* @param {string} hospitalId
|
|
3044
3044
|
* @param {string} pageItemId
|
|
3045
3045
|
* @param {string} pageSectionId
|
|
@@ -3050,7 +3050,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3050
3050
|
apiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost(hospitalId: string, pageItemId: string, pageSectionId: string, translatePageSectionCommand?: TranslatePageSectionCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TranslationBatchResultModel>>;
|
|
3051
3051
|
/**
|
|
3052
3052
|
*
|
|
3053
|
-
* @summary Translate page (Auth
|
|
3053
|
+
* @summary Translate page (Auth policies: RequireDoctorRole)
|
|
3054
3054
|
* @param {string} hospitalId
|
|
3055
3055
|
* @param {string} pageItemId
|
|
3056
3056
|
* @param {TranslatePageCommand} [translatePageCommand]
|
|
@@ -3060,7 +3060,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3060
3060
|
apiV1HospitalsHospitalIdPagesPageItemIdTranslatePost(hospitalId: string, pageItemId: string, translatePageCommand?: TranslatePageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TranslationBatchResultModel>>;
|
|
3061
3061
|
/**
|
|
3062
3062
|
*
|
|
3063
|
-
* @summary Create page (Auth
|
|
3063
|
+
* @summary Create page (Auth policies: RequireDoctorRole)
|
|
3064
3064
|
* @param {string} hospitalId
|
|
3065
3065
|
* @param {CreatePageCommand} [createPageCommand]
|
|
3066
3066
|
* @param {*} [options] Override http request option.
|
|
@@ -3069,7 +3069,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3069
3069
|
apiV1HospitalsHospitalIdPagesPost(hospitalId: string, createPageCommand?: CreatePageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3070
3070
|
/**
|
|
3071
3071
|
*
|
|
3072
|
-
* @summary Get hospitalPaymentMethods list (Auth
|
|
3072
|
+
* @summary Get hospitalPaymentMethods list (Auth policies: RequireDoctorRole)
|
|
3073
3073
|
* @param {string} hospitalId
|
|
3074
3074
|
* @param {PaymentMethod} [paymentMethod]
|
|
3075
3075
|
* @param {string} [id]
|
|
@@ -3082,7 +3082,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3082
3082
|
apiV1HospitalsHospitalIdPaymentmethodsGet(hospitalId: string, paymentMethod?: PaymentMethod, id?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalPaymentMethodsModel>>;
|
|
3083
3083
|
/**
|
|
3084
3084
|
*
|
|
3085
|
-
* @summary Delete hospitalPaymentMethod (Auth
|
|
3085
|
+
* @summary Delete hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
3086
3086
|
* @param {string} hospitalId
|
|
3087
3087
|
* @param {string} id
|
|
3088
3088
|
* @param {*} [options] Override http request option.
|
|
@@ -3091,7 +3091,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3091
3091
|
apiV1HospitalsHospitalIdPaymentmethodsIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3092
3092
|
/**
|
|
3093
3093
|
*
|
|
3094
|
-
* @summary Get hospitalPaymentMethod (Auth
|
|
3094
|
+
* @summary Get hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
3095
3095
|
* @param {string} hospitalId
|
|
3096
3096
|
* @param {string} id
|
|
3097
3097
|
* @param {*} [options] Override http request option.
|
|
@@ -3100,7 +3100,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3100
3100
|
apiV1HospitalsHospitalIdPaymentmethodsIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalPaymentMethodModel>>;
|
|
3101
3101
|
/**
|
|
3102
3102
|
*
|
|
3103
|
-
* @summary Update hospitalPaymentMethod (Auth
|
|
3103
|
+
* @summary Update hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
3104
3104
|
* @param {string} hospitalId
|
|
3105
3105
|
* @param {string} id
|
|
3106
3106
|
* @param {UpdateHospitalPaymentMethodCommand} [updateHospitalPaymentMethodCommand]
|
|
@@ -3110,7 +3110,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3110
3110
|
apiV1HospitalsHospitalIdPaymentmethodsIdPut(hospitalId: string, id: string, updateHospitalPaymentMethodCommand?: UpdateHospitalPaymentMethodCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalPaymentMethodModel>>;
|
|
3111
3111
|
/**
|
|
3112
3112
|
*
|
|
3113
|
-
* @summary Create hospitalPaymentMethod (Auth
|
|
3113
|
+
* @summary Create hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
3114
3114
|
* @param {string} hospitalId
|
|
3115
3115
|
* @param {CreateHospitalPaymentMethodCommand} [createHospitalPaymentMethodCommand]
|
|
3116
3116
|
* @param {*} [options] Override http request option.
|
|
@@ -3134,7 +3134,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3134
3134
|
apiV1HospitalsHospitalIdPoliciesGet(hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoliciesModel>>;
|
|
3135
3135
|
/**
|
|
3136
3136
|
*
|
|
3137
|
-
* @summary Delete policy (Auth
|
|
3137
|
+
* @summary Delete policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3138
3138
|
* @param {string} hospitalId
|
|
3139
3139
|
* @param {string} policyId
|
|
3140
3140
|
* @param {boolean} [isPermanent]
|
|
@@ -3154,7 +3154,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3154
3154
|
apiV1HospitalsHospitalIdPoliciesPolicyIdGet(hospitalId: string, policyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyModel>>;
|
|
3155
3155
|
/**
|
|
3156
3156
|
*
|
|
3157
|
-
* @summary Update policy (Auth
|
|
3157
|
+
* @summary Update policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3158
3158
|
* @param {string} hospitalId
|
|
3159
3159
|
* @param {string} policyId
|
|
3160
3160
|
* @param {UpdatePolicyCommand} [updatePolicyCommand]
|
|
@@ -3164,7 +3164,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3164
3164
|
apiV1HospitalsHospitalIdPoliciesPolicyIdPut(hospitalId: string, policyId: string, updatePolicyCommand?: UpdatePolicyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyModel>>;
|
|
3165
3165
|
/**
|
|
3166
3166
|
*
|
|
3167
|
-
* @summary Reactivate policy (Auth
|
|
3167
|
+
* @summary Reactivate policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3168
3168
|
* @param {string} hospitalId
|
|
3169
3169
|
* @param {string} policyId
|
|
3170
3170
|
* @param {*} [options] Override http request option.
|
|
@@ -3173,7 +3173,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3173
3173
|
apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut(hospitalId: string, policyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3174
3174
|
/**
|
|
3175
3175
|
*
|
|
3176
|
-
* @summary Create policy (Auth
|
|
3176
|
+
* @summary Create policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3177
3177
|
* @param {string} hospitalId
|
|
3178
3178
|
* @param {CreatePolicyCommand} [createPolicyCommand]
|
|
3179
3179
|
* @param {*} [options] Override http request option.
|
|
@@ -3182,7 +3182,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3182
3182
|
apiV1HospitalsHospitalIdPoliciesPost(hospitalId: string, createPolicyCommand?: CreatePolicyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyModel>>;
|
|
3183
3183
|
/**
|
|
3184
3184
|
*
|
|
3185
|
-
* @summary Update Hospital. (Auth
|
|
3185
|
+
* @summary Update Hospital. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3186
3186
|
* @param {string} hospitalId
|
|
3187
3187
|
* @param {UpdateHospitalCommand} [updateHospitalCommand]
|
|
3188
3188
|
* @param {*} [options] Override http request option.
|
|
@@ -3205,7 +3205,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3205
3205
|
apiV1HospitalsHospitalIdRatingsGet(hospitalId: string, id?: string, vender?: string, isConfirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingsModel>>;
|
|
3206
3206
|
/**
|
|
3207
3207
|
*
|
|
3208
|
-
* @summary Delete hospitalRating (Auth
|
|
3208
|
+
* @summary Delete hospitalRating (Auth policies: RequireDoctorRole)
|
|
3209
3209
|
* @param {string} hospitalId
|
|
3210
3210
|
* @param {string} id
|
|
3211
3211
|
* @param {*} [options] Override http request option.
|
|
@@ -3223,7 +3223,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3223
3223
|
apiV1HospitalsHospitalIdRatingsIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingModel>>;
|
|
3224
3224
|
/**
|
|
3225
3225
|
*
|
|
3226
|
-
* @summary Update hospitalRating (Auth
|
|
3226
|
+
* @summary Update hospitalRating (Auth policies: RequireDoctorRole)
|
|
3227
3227
|
* @param {string} hospitalId
|
|
3228
3228
|
* @param {string} id
|
|
3229
3229
|
* @param {UpdateHospitalRatingCommand} [updateHospitalRatingCommand]
|
|
@@ -3233,7 +3233,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3233
3233
|
apiV1HospitalsHospitalIdRatingsIdPut(hospitalId: string, id: string, updateHospitalRatingCommand?: UpdateHospitalRatingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingModel>>;
|
|
3234
3234
|
/**
|
|
3235
3235
|
*
|
|
3236
|
-
* @summary Create hospitalRating (Auth
|
|
3236
|
+
* @summary Create hospitalRating (Auth policies: RequireDoctorRole)
|
|
3237
3237
|
* @param {string} hospitalId
|
|
3238
3238
|
* @param {CreateHospitalRatingCommand} [createHospitalRatingCommand]
|
|
3239
3239
|
* @param {*} [options] Override http request option.
|
|
@@ -3242,7 +3242,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3242
3242
|
apiV1HospitalsHospitalIdRatingsPost(hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingModel>>;
|
|
3243
3243
|
/**
|
|
3244
3244
|
*
|
|
3245
|
-
* @summary Sort hospitalRating entities (Auth
|
|
3245
|
+
* @summary Sort hospitalRating entities (Auth policies: RequireDoctorRole)
|
|
3246
3246
|
* @param {string} hospitalId
|
|
3247
3247
|
* @param {HospitalRatingSortingCommand} [hospitalRatingSortingCommand]
|
|
3248
3248
|
* @param {*} [options] Override http request option.
|
|
@@ -3251,7 +3251,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3251
3251
|
apiV1HospitalsHospitalIdRatingsSortPut(hospitalId: string, hospitalRatingSortingCommand?: HospitalRatingSortingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SortingResultModel>>;
|
|
3252
3252
|
/**
|
|
3253
3253
|
*
|
|
3254
|
-
* @summary Delete HospitalSpecialty. (Auth
|
|
3254
|
+
* @summary Delete HospitalSpecialty. (Auth policies: RequireManagerRole)
|
|
3255
3255
|
* @param {string} hospitalId
|
|
3256
3256
|
* @param {*} [options] Override http request option.
|
|
3257
3257
|
* @throws {RequiredError}
|
|
@@ -3259,7 +3259,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3259
3259
|
apiV1HospitalsHospitalIdReactivatePut(hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3260
3260
|
/**
|
|
3261
3261
|
*
|
|
3262
|
-
* @summary Revalidate hospital (Auth
|
|
3262
|
+
* @summary Revalidate hospital (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3263
3263
|
* @param {string} hospitalId
|
|
3264
3264
|
* @param {boolean} [includeCurrent]
|
|
3265
3265
|
* @param {*} [options] Override http request option.
|
|
@@ -3268,7 +3268,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3268
3268
|
apiV1HospitalsHospitalIdRevalidatePost(hospitalId: string, includeCurrent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3269
3269
|
/**
|
|
3270
3270
|
*
|
|
3271
|
-
* @summary Delete secure file container (Auth
|
|
3271
|
+
* @summary Delete secure file container (Auth policies: RequireLocalManagerRole)
|
|
3272
3272
|
* @param {string} hospitalId
|
|
3273
3273
|
* @param {string} containerId
|
|
3274
3274
|
* @param {*} [options] Override http request option.
|
|
@@ -3277,7 +3277,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3277
3277
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(hospitalId: string, containerId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3278
3278
|
/**
|
|
3279
3279
|
*
|
|
3280
|
-
* @summary Get file content (Auth
|
|
3280
|
+
* @summary Get file content (Auth policies: RequireLocalManagerRole)
|
|
3281
3281
|
* @param {string} hospitalId
|
|
3282
3282
|
* @param {string} containerId
|
|
3283
3283
|
* @param {string} fileId
|
|
@@ -3287,7 +3287,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3287
3287
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(hospitalId: string, containerId: string, fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3288
3288
|
/**
|
|
3289
3289
|
*
|
|
3290
|
-
* @summary Get secure file url with read access (Auth
|
|
3290
|
+
* @summary Get secure file url with read access (Auth policies: RequireLocalManagerRole)
|
|
3291
3291
|
* @param {string} hospitalId
|
|
3292
3292
|
* @param {string} containerId
|
|
3293
3293
|
* @param {string} fileId
|
|
@@ -3298,7 +3298,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3298
3298
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet(hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
3299
3299
|
/**
|
|
3300
3300
|
*
|
|
3301
|
-
* @summary Get secure container (Auth
|
|
3301
|
+
* @summary Get secure container (Auth policies: RequireLocalManagerRole)
|
|
3302
3302
|
* @param {string} hospitalId
|
|
3303
3303
|
* @param {string} containerId
|
|
3304
3304
|
* @param {string} [languageCode]
|
|
@@ -3308,7 +3308,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3308
3308
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(hospitalId: string, containerId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureContainerModel>>;
|
|
3309
3309
|
/**
|
|
3310
3310
|
*
|
|
3311
|
-
* @summary Get secure containers (Auth
|
|
3311
|
+
* @summary Get secure containers (Auth policies: RequireLocalManagerRole)
|
|
3312
3312
|
* @param {string} hospitalId
|
|
3313
3313
|
* @param {string} [id]
|
|
3314
3314
|
* @param {string} [languageCode]
|
|
@@ -3325,7 +3325,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3325
3325
|
apiV1HospitalsHospitalIdSecurecontainersGet(hospitalId: string, id?: string, languageCode?: string, showHidden?: boolean, userName?: string, userEmail?: string, userId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureContainersModel>>;
|
|
3326
3326
|
/**
|
|
3327
3327
|
*
|
|
3328
|
-
* @summary Create secure file container (Auth
|
|
3328
|
+
* @summary Create secure file container (Auth policies: RequireLocalManagerRole)
|
|
3329
3329
|
* @param {string} hospitalId
|
|
3330
3330
|
* @param {*} [options] Override http request option.
|
|
3331
3331
|
* @throws {RequiredError}
|
|
@@ -3333,7 +3333,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3333
3333
|
apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureContainerModel>>;
|
|
3334
3334
|
/**
|
|
3335
3335
|
*
|
|
3336
|
-
* @summary Get file content by file name (Auth
|
|
3336
|
+
* @summary Get file content by file name (Auth policies: RequireLocalManagerRole)
|
|
3337
3337
|
* @param {string} hospitalId
|
|
3338
3338
|
* @param {string} fileName
|
|
3339
3339
|
* @param {*} [options] Override http request option.
|
|
@@ -3342,7 +3342,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3342
3342
|
apiV1HospitalsHospitalIdSecurefilesFileNameGet(hospitalId: string, fileName: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3343
3343
|
/**
|
|
3344
3344
|
*
|
|
3345
|
-
* @summary Get secure file url with read access by file name (Auth
|
|
3345
|
+
* @summary Get secure file url with read access by file name (Auth policies: RequireLocalManagerRole)
|
|
3346
3346
|
* @param {string} hospitalId
|
|
3347
3347
|
* @param {string} fileName
|
|
3348
3348
|
* @param {number} [minutesAvailableUntil]
|
|
@@ -3352,7 +3352,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3352
3352
|
apiV1HospitalsHospitalIdSecurefilesFileNameReadGet(hospitalId: string, fileName: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
3353
3353
|
/**
|
|
3354
3354
|
*
|
|
3355
|
-
* @summary Get file content by uri (Auth
|
|
3355
|
+
* @summary Get file content by uri (Auth policies: RequireLocalManagerRole)
|
|
3356
3356
|
* @param {string} hospitalId
|
|
3357
3357
|
* @param {string} [uri]
|
|
3358
3358
|
* @param {*} [options] Override http request option.
|
|
@@ -3361,7 +3361,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3361
3361
|
apiV1HospitalsHospitalIdSecurefilesGet(hospitalId: string, uri?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3362
3362
|
/**
|
|
3363
3363
|
*
|
|
3364
|
-
* @summary Upload secure files (Auth
|
|
3364
|
+
* @summary Upload secure files (Auth policies: RequireDoctorRole)
|
|
3365
3365
|
* @param {string} hospitalId
|
|
3366
3366
|
* @param {Array<File>} [files]
|
|
3367
3367
|
* @param {*} [options] Override http request option.
|
|
@@ -3370,7 +3370,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3370
3370
|
apiV1HospitalsHospitalIdSecurefilesPost(hospitalId: string, files?: Array<File>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureFilesUploadedModel>>;
|
|
3371
3371
|
/**
|
|
3372
3372
|
*
|
|
3373
|
-
* @summary Get secure file url with read access by uri (Auth
|
|
3373
|
+
* @summary Get secure file url with read access by uri (Auth policies: RequireLocalManagerRole)
|
|
3374
3374
|
* @param {string} hospitalId
|
|
3375
3375
|
* @param {string} [uri]
|
|
3376
3376
|
* @param {number} [minutesAvailableUntil]
|
|
@@ -3417,7 +3417,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3417
3417
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGet(hospitalId: string, hospitalSpecialtyId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetableOverridesModel>>;
|
|
3418
3418
|
/**
|
|
3419
3419
|
*
|
|
3420
|
-
* @summary Delete HospitalSpecialty appointment timetable overrides (Auth
|
|
3420
|
+
* @summary Delete HospitalSpecialty appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3421
3421
|
* @param {string} hospitalId
|
|
3422
3422
|
* @param {string} hospitalSpecialtyId
|
|
3423
3423
|
* @param {DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand} [deleteHospitalSpecialtyAppointmentTimetableOverridesCommand]
|
|
@@ -3427,7 +3427,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3427
3427
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch(hospitalId: string, hospitalSpecialtyId: string, deleteHospitalSpecialtyAppointmentTimetableOverridesCommand?: DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3428
3428
|
/**
|
|
3429
3429
|
*
|
|
3430
|
-
* @summary Save HospitalSpecialty appointment timetable overrides (Auth
|
|
3430
|
+
* @summary Save HospitalSpecialty appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3431
3431
|
* @param {string} hospitalId
|
|
3432
3432
|
* @param {string} hospitalSpecialtyId
|
|
3433
3433
|
* @param {SaveHospitalSpecialtyAppointmentTimetableOverridesCommand} [saveHospitalSpecialtyAppointmentTimetableOverridesCommand]
|
|
@@ -3453,7 +3453,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3453
3453
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>>;
|
|
3454
3454
|
/**
|
|
3455
3455
|
*
|
|
3456
|
-
* @summary Add, update, delete HospitalSpecialty appointment timetables (Auth
|
|
3456
|
+
* @summary Add, update, delete HospitalSpecialty appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3457
3457
|
* @param {string} hospitalId
|
|
3458
3458
|
* @param {string} hospitalSpecialtyId
|
|
3459
3459
|
* @param {BatchHospitalSpecialtyAppointmentTimetablesCommand} [batchHospitalSpecialtyAppointmentTimetablesCommand]
|
|
@@ -3476,7 +3476,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3476
3476
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>>;
|
|
3477
3477
|
/**
|
|
3478
3478
|
*
|
|
3479
|
-
* @summary Delete HospitalSpecialty. (Auth
|
|
3479
|
+
* @summary Delete HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3480
3480
|
* @param {string} hospitalId
|
|
3481
3481
|
* @param {string} hospitalSpecialtyId
|
|
3482
3482
|
* @param {boolean} [isPermanent]
|
|
@@ -3510,7 +3510,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3510
3510
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediasModel>>;
|
|
3511
3511
|
/**
|
|
3512
3512
|
*
|
|
3513
|
-
* @summary Delete HospitalServiceMedia (Auth
|
|
3513
|
+
* @summary Delete HospitalServiceMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3514
3514
|
* @param {string} hospitalId
|
|
3515
3515
|
* @param {string} hospitalSpecialtyId
|
|
3516
3516
|
* @param {string} mediaId
|
|
@@ -3530,7 +3530,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3530
3530
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
3531
3531
|
/**
|
|
3532
3532
|
*
|
|
3533
|
-
* @summary Update HospitalServiceMedia. (Auth
|
|
3533
|
+
* @summary Update HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3534
3534
|
* @param {string} hospitalId
|
|
3535
3535
|
* @param {string} hospitalSpecialtyId
|
|
3536
3536
|
* @param {string} mediaId
|
|
@@ -3541,7 +3541,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3541
3541
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
3542
3542
|
/**
|
|
3543
3543
|
*
|
|
3544
|
-
* @summary Create HospitalServiceMedia. (Auth
|
|
3544
|
+
* @summary Create HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3545
3545
|
* @param {string} hospitalId
|
|
3546
3546
|
* @param {string} hospitalSpecialtyId
|
|
3547
3547
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
@@ -3551,7 +3551,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3551
3551
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
3552
3552
|
/**
|
|
3553
3553
|
*
|
|
3554
|
-
* @summary Update HospitalSpecialty. (Auth
|
|
3554
|
+
* @summary Update HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3555
3555
|
* @param {string} hospitalId
|
|
3556
3556
|
* @param {string} hospitalSpecialtyId
|
|
3557
3557
|
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
@@ -3561,7 +3561,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3561
3561
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdPut(hospitalId: string, hospitalSpecialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
3562
3562
|
/**
|
|
3563
3563
|
*
|
|
3564
|
-
* @summary Reactivate HospitalSpecialty. (Auth
|
|
3564
|
+
* @summary Reactivate HospitalSpecialty. (Auth policies: RequireManagerRole)
|
|
3565
3565
|
* @param {string} hospitalId
|
|
3566
3566
|
* @param {string} hospitalSpecialtyId
|
|
3567
3567
|
* @param {*} [options] Override http request option.
|
|
@@ -3570,7 +3570,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3570
3570
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdReactivatePut(hospitalId: string, hospitalSpecialtyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3571
3571
|
/**
|
|
3572
3572
|
*
|
|
3573
|
-
* @summary Revalidate hospitalSpecialty (Auth
|
|
3573
|
+
* @summary Revalidate hospitalSpecialty (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3574
3574
|
* @param {string} hospitalId
|
|
3575
3575
|
* @param {string} hospitalSpecialtyId
|
|
3576
3576
|
* @param {boolean} [includeCurrent]
|
|
@@ -3580,7 +3580,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3580
3580
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(hospitalId: string, hospitalSpecialtyId: string, includeCurrent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3581
3581
|
/**
|
|
3582
3582
|
*
|
|
3583
|
-
* @summary Translate hospitalSpecialty (Auth
|
|
3583
|
+
* @summary Translate hospitalSpecialty (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3584
3584
|
* @param {string} hospitalId
|
|
3585
3585
|
* @param {string} hospitalSpecialtyId
|
|
3586
3586
|
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
@@ -3590,7 +3590,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3590
3590
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(hospitalId: string, hospitalSpecialtyId: string, translateHospitalSpecialtyCommand?: TranslateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3591
3591
|
/**
|
|
3592
3592
|
*
|
|
3593
|
-
* @summary Create HospitalSpecialty. (Auth
|
|
3593
|
+
* @summary Create HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3594
3594
|
* @param {string} hospitalId
|
|
3595
3595
|
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
3596
3596
|
* @param {*} [options] Override http request option.
|
|
@@ -3653,7 +3653,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3653
3653
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServicesModel>>;
|
|
3654
3654
|
/**
|
|
3655
3655
|
*
|
|
3656
|
-
* @summary Create HospitalService. (Auth
|
|
3656
|
+
* @summary Create HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3657
3657
|
* @param {string} hospitalId
|
|
3658
3658
|
* @param {string} specialtyId
|
|
3659
3659
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
@@ -3680,7 +3680,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3680
3680
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGet(hospitalId: string, specialtyId: string, serviceId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetableOverridesModel>>;
|
|
3681
3681
|
/**
|
|
3682
3682
|
*
|
|
3683
|
-
* @summary Delete Service appointment timetable overrides (Auth
|
|
3683
|
+
* @summary Delete Service appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3684
3684
|
* @param {string} hospitalId
|
|
3685
3685
|
* @param {string} specialtyId
|
|
3686
3686
|
* @param {string} serviceId
|
|
@@ -3691,7 +3691,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3691
3691
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch(hospitalId: string, specialtyId: string, serviceId: string, deleteServiceAppointmentTimetableOverridesCommand?: DeleteServiceAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3692
3692
|
/**
|
|
3693
3693
|
*
|
|
3694
|
-
* @summary Save Service appointment timetable overrides (Auth
|
|
3694
|
+
* @summary Save Service appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3695
3695
|
* @param {string} hospitalId
|
|
3696
3696
|
* @param {string} specialtyId
|
|
3697
3697
|
* @param {string} serviceId
|
|
@@ -3719,7 +3719,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3719
3719
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>>;
|
|
3720
3720
|
/**
|
|
3721
3721
|
*
|
|
3722
|
-
* @summary Add, update and delete service appointment timetables (Auth
|
|
3722
|
+
* @summary Add, update and delete service appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3723
3723
|
* @param {string} hospitalId
|
|
3724
3724
|
* @param {string} specialtyId
|
|
3725
3725
|
* @param {string} serviceId
|
|
@@ -3744,7 +3744,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3744
3744
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>>;
|
|
3745
3745
|
/**
|
|
3746
3746
|
*
|
|
3747
|
-
* @summary Delete HospitalService (Auth
|
|
3747
|
+
* @summary Delete HospitalService (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3748
3748
|
* @param {string} hospitalId
|
|
3749
3749
|
* @param {string} specialtyId
|
|
3750
3750
|
* @param {string} serviceId
|
|
@@ -3782,7 +3782,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3782
3782
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediasModel>>;
|
|
3783
3783
|
/**
|
|
3784
3784
|
*
|
|
3785
|
-
* @summary Delete HospitalServiceMedia (Auth
|
|
3785
|
+
* @summary Delete HospitalServiceMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3786
3786
|
* @param {string} hospitalId
|
|
3787
3787
|
* @param {string} specialtyId
|
|
3788
3788
|
* @param {string} serviceId
|
|
@@ -3804,7 +3804,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3804
3804
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
3805
3805
|
/**
|
|
3806
3806
|
*
|
|
3807
|
-
* @summary Update HospitalServiceMedia. (Auth
|
|
3807
|
+
* @summary Update HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3808
3808
|
* @param {string} hospitalId
|
|
3809
3809
|
* @param {string} specialtyId
|
|
3810
3810
|
* @param {string} serviceId
|
|
@@ -3816,7 +3816,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3816
3816
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
3817
3817
|
/**
|
|
3818
3818
|
*
|
|
3819
|
-
* @summary Create HospitalServiceMedia. (Auth
|
|
3819
|
+
* @summary Create HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3820
3820
|
* @param {string} hospitalId
|
|
3821
3821
|
* @param {string} specialtyId
|
|
3822
3822
|
* @param {string} serviceId
|
|
@@ -3827,7 +3827,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3827
3827
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
3828
3828
|
/**
|
|
3829
3829
|
*
|
|
3830
|
-
* @summary Update HospitalService. (Auth
|
|
3830
|
+
* @summary Update HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3831
3831
|
* @param {string} hospitalId
|
|
3832
3832
|
* @param {string} specialtyId
|
|
3833
3833
|
* @param {string} serviceId
|
|
@@ -3838,7 +3838,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3838
3838
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServiceModel>>;
|
|
3839
3839
|
/**
|
|
3840
3840
|
*
|
|
3841
|
-
* @summary Reactivate Hospital Service (Auth
|
|
3841
|
+
* @summary Reactivate Hospital Service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3842
3842
|
* @param {string} hospitalId
|
|
3843
3843
|
* @param {string} specialtyId
|
|
3844
3844
|
* @param {string} serviceId
|
|
@@ -3848,7 +3848,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3848
3848
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3849
3849
|
/**
|
|
3850
3850
|
*
|
|
3851
|
-
* @summary Revalidate service (Auth
|
|
3851
|
+
* @summary Revalidate service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3852
3852
|
* @param {string} hospitalId
|
|
3853
3853
|
* @param {string} specialtyId
|
|
3854
3854
|
* @param {string} serviceId
|
|
@@ -3859,7 +3859,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3859
3859
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(hospitalId: string, specialtyId: string, serviceId: string, includeCurrent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3860
3860
|
/**
|
|
3861
3861
|
*
|
|
3862
|
-
* @summary Translate service (Auth
|
|
3862
|
+
* @summary Translate service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3863
3863
|
* @param {string} hospitalId
|
|
3864
3864
|
* @param {string} specialtyId
|
|
3865
3865
|
* @param {string} serviceId
|
|
@@ -3909,7 +3909,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3909
3909
|
apiV1HospitalsHospitalIdTagsTagIdGet(hospitalId: string, tagId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalTagModel>>;
|
|
3910
3910
|
/**
|
|
3911
3911
|
*
|
|
3912
|
-
* @summary Translate hospital at once (Auth
|
|
3912
|
+
* @summary Translate hospital at once (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3913
3913
|
* @param {string} hospitalId
|
|
3914
3914
|
* @param {TranslateHospitalCommand} [translateHospitalCommand]
|
|
3915
3915
|
* @param {*} [options] Override http request option.
|
|
@@ -3918,7 +3918,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3918
3918
|
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3919
3919
|
/**
|
|
3920
3920
|
*
|
|
3921
|
-
* @summary Batch HospitalWorkingDays. (Auth
|
|
3921
|
+
* @summary Batch HospitalWorkingDays. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3922
3922
|
* @param {string} hospitalId
|
|
3923
3923
|
* @param {BatchHospitalWorkingDaysCommand} [batchHospitalWorkingDaysCommand]
|
|
3924
3924
|
* @param {*} [options] Override http request option.
|
|
@@ -3943,7 +3943,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3943
3943
|
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>>;
|
|
3944
3944
|
/**
|
|
3945
3945
|
*
|
|
3946
|
-
* @summary Create HospitalWorkingDay. (Auth
|
|
3946
|
+
* @summary Create HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3947
3947
|
* @param {string} hospitalId
|
|
3948
3948
|
* @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
|
|
3949
3949
|
* @param {*} [options] Override http request option.
|
|
@@ -3952,7 +3952,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3952
3952
|
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkingDayModel>>;
|
|
3953
3953
|
/**
|
|
3954
3954
|
*
|
|
3955
|
-
* @summary Delete HospitalWorkingDay. (Auth
|
|
3955
|
+
* @summary Delete HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3956
3956
|
* @param {string} hospitalId
|
|
3957
3957
|
* @param {string} workingDayId
|
|
3958
3958
|
* @param {*} [options] Override http request option.
|
|
@@ -3970,7 +3970,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3970
3970
|
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkingDayModel>>;
|
|
3971
3971
|
/**
|
|
3972
3972
|
*
|
|
3973
|
-
* @summary Update HospitalWorkingDay. (Auth
|
|
3973
|
+
* @summary Update HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
3974
3974
|
* @param {string} hospitalId
|
|
3975
3975
|
* @param {string} workingDayId
|
|
3976
3976
|
* @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
|
|
@@ -3980,7 +3980,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3980
3980
|
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkingDayModel>>;
|
|
3981
3981
|
/**
|
|
3982
3982
|
*
|
|
3983
|
-
* @summary Create Hospital. (Auth
|
|
3983
|
+
* @summary Create Hospital. (Auth policies: RequireContentManagerRole)
|
|
3984
3984
|
* @param {CreateHospitalCommand} [createHospitalCommand]
|
|
3985
3985
|
* @param {*} [options] Override http request option.
|
|
3986
3986
|
* @throws {RequiredError}
|
|
@@ -4050,7 +4050,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4050
4050
|
apiV1HospitalsGet(hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsModel>;
|
|
4051
4051
|
/**
|
|
4052
4052
|
*
|
|
4053
|
-
* @summary Delete HospitalAccreditation. (Auth
|
|
4053
|
+
* @summary Delete HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4054
4054
|
* @param {string} hospitalId
|
|
4055
4055
|
* @param {string} accreditationId
|
|
4056
4056
|
* @param {*} [options] Override http request option.
|
|
@@ -4059,7 +4059,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4059
4059
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdDelete(hospitalId: string, accreditationId: string, options?: any): AxiosPromise<boolean>;
|
|
4060
4060
|
/**
|
|
4061
4061
|
*
|
|
4062
|
-
* @summary Get HospitalAccreditation. (Auth
|
|
4062
|
+
* @summary Get HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4063
4063
|
* @param {string} hospitalId
|
|
4064
4064
|
* @param {string} accreditationId
|
|
4065
4065
|
* @param {*} [options] Override http request option.
|
|
@@ -4068,7 +4068,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4068
4068
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: any): AxiosPromise<HospitalAccreditationModel>;
|
|
4069
4069
|
/**
|
|
4070
4070
|
*
|
|
4071
|
-
* @summary Get all HospitalAccreditations. (Auth
|
|
4071
|
+
* @summary Get all HospitalAccreditations. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4072
4072
|
* @param {string} hospitalId
|
|
4073
4073
|
* @param {string} [hospitalName]
|
|
4074
4074
|
* @param {string} [accreditationId]
|
|
@@ -4082,7 +4082,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4082
4082
|
apiV1HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string, accreditationId?: string, accreditationName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalAccreditationsModel>;
|
|
4083
4083
|
/**
|
|
4084
4084
|
*
|
|
4085
|
-
* @summary Create HospitalAccreditation. (Auth
|
|
4085
|
+
* @summary Create HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4086
4086
|
* @param {string} hospitalId
|
|
4087
4087
|
* @param {CreateHospitalAccreditationCommand} [createHospitalAccreditationCommand]
|
|
4088
4088
|
* @param {*} [options] Override http request option.
|
|
@@ -4106,7 +4106,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4106
4106
|
apiV1HospitalsHospitalIdAppointmenttimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentTimetableOverridesModel>;
|
|
4107
4107
|
/**
|
|
4108
4108
|
*
|
|
4109
|
-
* @summary Delete Hospital appointment timetable overrides (Auth
|
|
4109
|
+
* @summary Delete Hospital appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4110
4110
|
* @param {string} hospitalId
|
|
4111
4111
|
* @param {DeleteHospitalAppointmentTimetableOverridesCommand} [deleteHospitalAppointmentTimetableOverridesCommand]
|
|
4112
4112
|
* @param {*} [options] Override http request option.
|
|
@@ -4115,7 +4115,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4115
4115
|
apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch(hospitalId: string, deleteHospitalAppointmentTimetableOverridesCommand?: DeleteHospitalAppointmentTimetableOverridesCommand, options?: any): AxiosPromise<boolean>;
|
|
4116
4116
|
/**
|
|
4117
4117
|
*
|
|
4118
|
-
* @summary Save Hospital appointment timetable overrides (Auth
|
|
4118
|
+
* @summary Save Hospital appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4119
4119
|
* @param {string} hospitalId
|
|
4120
4120
|
* @param {SaveHospitalAppointmentTimetableOverridesCommand} [saveHospitalAppointmentTimetableOverridesCommand]
|
|
4121
4121
|
* @param {*} [options] Override http request option.
|
|
@@ -4139,7 +4139,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4139
4139
|
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel>;
|
|
4140
4140
|
/**
|
|
4141
4141
|
*
|
|
4142
|
-
* @summary Add, update, delete Hospital appointment timetables (Auth
|
|
4142
|
+
* @summary Add, update, delete Hospital appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4143
4143
|
* @param {string} hospitalId
|
|
4144
4144
|
* @param {BatchHospitalAppointmentTimetablesCommand} [batchHospitalAppointmentTimetablesCommand]
|
|
4145
4145
|
* @param {*} [options] Override http request option.
|
|
@@ -4160,7 +4160,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4160
4160
|
apiV1HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentTimetablesModel>;
|
|
4161
4161
|
/**
|
|
4162
4162
|
*
|
|
4163
|
-
* @summary Delete bankAccountInfo (Auth
|
|
4163
|
+
* @summary Delete bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
4164
4164
|
* @param {string} hospitalId
|
|
4165
4165
|
* @param {string} bankAccountInfoId
|
|
4166
4166
|
* @param {*} [options] Override http request option.
|
|
@@ -4169,7 +4169,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4169
4169
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDelete(hospitalId: string, bankAccountInfoId: string, options?: any): AxiosPromise<boolean>;
|
|
4170
4170
|
/**
|
|
4171
4171
|
*
|
|
4172
|
-
* @summary Get bankAccountInfo (Auth
|
|
4172
|
+
* @summary Get bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
4173
4173
|
* @param {string} hospitalId
|
|
4174
4174
|
* @param {string} bankAccountInfoId
|
|
4175
4175
|
* @param {*} [options] Override http request option.
|
|
@@ -4178,7 +4178,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4178
4178
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet(hospitalId: string, bankAccountInfoId: string, options?: any): AxiosPromise<BankAccountInfoModel>;
|
|
4179
4179
|
/**
|
|
4180
4180
|
*
|
|
4181
|
-
* @summary Update bankAccountInfo (Auth
|
|
4181
|
+
* @summary Update bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
4182
4182
|
* @param {string} hospitalId
|
|
4183
4183
|
* @param {string} bankAccountInfoId
|
|
4184
4184
|
* @param {UpdateHospitalBankAccountInfoCommand} [updateHospitalBankAccountInfoCommand]
|
|
@@ -4188,7 +4188,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4188
4188
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut(hospitalId: string, bankAccountInfoId: string, updateHospitalBankAccountInfoCommand?: UpdateHospitalBankAccountInfoCommand, options?: any): AxiosPromise<BankAccountInfoModel>;
|
|
4189
4189
|
/**
|
|
4190
4190
|
*
|
|
4191
|
-
* @summary Get all bankAccountInfos (Auth
|
|
4191
|
+
* @summary Get all bankAccountInfos (Auth policies: RequireDoctorRole)
|
|
4192
4192
|
* @param {string} hospitalId
|
|
4193
4193
|
* @param {string} [bank]
|
|
4194
4194
|
* @param {boolean} [isEnabled]
|
|
@@ -4201,7 +4201,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4201
4201
|
apiV1HospitalsHospitalIdBankaccountinfosGet(hospitalId: string, bank?: string, isEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<BankAccountInfosModel>;
|
|
4202
4202
|
/**
|
|
4203
4203
|
*
|
|
4204
|
-
* @summary Create bankAccountInfo (Auth
|
|
4204
|
+
* @summary Create bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
4205
4205
|
* @param {string} hospitalId
|
|
4206
4206
|
* @param {CreateHospitalBankAccountInfoCommand} [createHospitalBankAccountInfoCommand]
|
|
4207
4207
|
* @param {*} [options] Override http request option.
|
|
@@ -4210,7 +4210,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4210
4210
|
apiV1HospitalsHospitalIdBankaccountinfosPost(hospitalId: string, createHospitalBankAccountInfoCommand?: CreateHospitalBankAccountInfoCommand, options?: any): AxiosPromise<BankAccountInfoModel>;
|
|
4211
4211
|
/**
|
|
4212
4212
|
*
|
|
4213
|
-
* @summary Delete hospital contact (Auth
|
|
4213
|
+
* @summary Delete hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4214
4214
|
* @param {string} hospitalId
|
|
4215
4215
|
* @param {string} contactId
|
|
4216
4216
|
* @param {boolean} [isPermanent]
|
|
@@ -4229,7 +4229,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4229
4229
|
apiV1HospitalsHospitalIdContactsContactIdGet(hospitalId: string, contactId: string, options?: any): AxiosPromise<HospitalContactModel>;
|
|
4230
4230
|
/**
|
|
4231
4231
|
*
|
|
4232
|
-
* @summary Update hospital contact (Auth
|
|
4232
|
+
* @summary Update hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4233
4233
|
* @param {string} hospitalId
|
|
4234
4234
|
* @param {string} contactId
|
|
4235
4235
|
* @param {UpdateHospitalContactCommand} [updateHospitalContactCommand]
|
|
@@ -4239,7 +4239,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4239
4239
|
apiV1HospitalsHospitalIdContactsContactIdPut(hospitalId: string, contactId: string, updateHospitalContactCommand?: UpdateHospitalContactCommand, options?: any): AxiosPromise<HospitalContactModel>;
|
|
4240
4240
|
/**
|
|
4241
4241
|
*
|
|
4242
|
-
* @summary Reactivate hospital contact (Auth
|
|
4242
|
+
* @summary Reactivate hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4243
4243
|
* @param {string} hospitalId
|
|
4244
4244
|
* @param {string} contactId
|
|
4245
4245
|
* @param {*} [options] Override http request option.
|
|
@@ -4264,7 +4264,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4264
4264
|
apiV1HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalContactsModel>;
|
|
4265
4265
|
/**
|
|
4266
4266
|
*
|
|
4267
|
-
* @summary Create hospital contact (Auth
|
|
4267
|
+
* @summary Create hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4268
4268
|
* @param {string} hospitalId
|
|
4269
4269
|
* @param {CreateHospitalContactCommand} [createHospitalContactCommand]
|
|
4270
4270
|
* @param {*} [options] Override http request option.
|
|
@@ -4273,7 +4273,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4273
4273
|
apiV1HospitalsHospitalIdContactsPost(hospitalId: string, createHospitalContactCommand?: CreateHospitalContactCommand, options?: any): AxiosPromise<HospitalContactModel>;
|
|
4274
4274
|
/**
|
|
4275
4275
|
*
|
|
4276
|
-
* @summary Batch for contacts sorting (Auth
|
|
4276
|
+
* @summary Batch for contacts sorting (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4277
4277
|
* @param {string} hospitalId
|
|
4278
4278
|
* @param {ContactSortingCommand} [contactSortingCommand]
|
|
4279
4279
|
* @param {*} [options] Override http request option.
|
|
@@ -4282,7 +4282,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4282
4282
|
apiV1HospitalsHospitalIdContactsSortPut(hospitalId: string, contactSortingCommand?: ContactSortingCommand, options?: any): AxiosPromise<SortingResultModel>;
|
|
4283
4283
|
/**
|
|
4284
4284
|
*
|
|
4285
|
-
* @summary Delete Hospital. (Auth
|
|
4285
|
+
* @summary Delete Hospital. (Auth policies: RequireManagerRole)
|
|
4286
4286
|
* @param {string} hospitalId
|
|
4287
4287
|
* @param {boolean} [isPermanent]
|
|
4288
4288
|
* @param {*} [options] Override http request option.
|
|
@@ -4291,7 +4291,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4291
4291
|
apiV1HospitalsHospitalIdDelete(hospitalId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
4292
4292
|
/**
|
|
4293
4293
|
*
|
|
4294
|
-
* @summary Delete HospitalEquipment (Auth
|
|
4294
|
+
* @summary Delete HospitalEquipment (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4295
4295
|
* @param {string} hospitalId
|
|
4296
4296
|
* @param {string} equipmentId
|
|
4297
4297
|
* @param {boolean} [isPermanent]
|
|
@@ -4324,7 +4324,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4324
4324
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasGet(hospitalId: string, equipmentId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<MediasModel>;
|
|
4325
4325
|
/**
|
|
4326
4326
|
*
|
|
4327
|
-
* @summary Delete EquipmentMedia (Auth
|
|
4327
|
+
* @summary Delete EquipmentMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4328
4328
|
* @param {string} hospitalId
|
|
4329
4329
|
* @param {string} equipmentId
|
|
4330
4330
|
* @param {string} mediaId
|
|
@@ -4344,7 +4344,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4344
4344
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdGet(hospitalId: string, equipmentId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
4345
4345
|
/**
|
|
4346
4346
|
*
|
|
4347
|
-
* @summary Update EquipmentMedia. (Auth
|
|
4347
|
+
* @summary Update EquipmentMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4348
4348
|
* @param {string} hospitalId
|
|
4349
4349
|
* @param {string} equipmentId
|
|
4350
4350
|
* @param {string} mediaId
|
|
@@ -4355,7 +4355,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4355
4355
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdPut(hospitalId: string, equipmentId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: any): AxiosPromise<MediaModel>;
|
|
4356
4356
|
/**
|
|
4357
4357
|
*
|
|
4358
|
-
* @summary Create EquipmentMedia. (Auth
|
|
4358
|
+
* @summary Create EquipmentMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4359
4359
|
* @param {string} hospitalId
|
|
4360
4360
|
* @param {string} equipmentId
|
|
4361
4361
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
@@ -4365,7 +4365,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4365
4365
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasPost(hospitalId: string, equipmentId: string, createMediaCommand?: CreateMediaCommand, options?: any): AxiosPromise<MediaModel>;
|
|
4366
4366
|
/**
|
|
4367
4367
|
*
|
|
4368
|
-
* @summary Update HospitalEquipment. (Auth
|
|
4368
|
+
* @summary Update HospitalEquipment. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4369
4369
|
* @param {string} hospitalId
|
|
4370
4370
|
* @param {string} equipmentId
|
|
4371
4371
|
* @param {UpdateHospitalEquipmentCommand} [updateHospitalEquipmentCommand]
|
|
@@ -4375,7 +4375,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4375
4375
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand, options?: any): AxiosPromise<HospitalEquipmentModel>;
|
|
4376
4376
|
/**
|
|
4377
4377
|
*
|
|
4378
|
-
* @summary Reactivate HospitalEquipment. (Auth
|
|
4378
|
+
* @summary Reactivate HospitalEquipment. (Auth policies: RequireManagerRole)
|
|
4379
4379
|
* @param {string} hospitalId
|
|
4380
4380
|
* @param {string} equipmentId
|
|
4381
4381
|
* @param {*} [options] Override http request option.
|
|
@@ -4402,7 +4402,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4402
4402
|
apiV1HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string, name?: string, hospitalId2?: string, hospitalName?: string, description?: string, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalEquipmentsModel>;
|
|
4403
4403
|
/**
|
|
4404
4404
|
*
|
|
4405
|
-
* @summary Create HospitalEquipment. (Auth
|
|
4405
|
+
* @summary Create HospitalEquipment. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4406
4406
|
* @param {string} hospitalId
|
|
4407
4407
|
* @param {CreateHospitalEquipmentCommand} [createHospitalEquipmentCommand]
|
|
4408
4408
|
* @param {*} [options] Override http request option.
|
|
@@ -4411,7 +4411,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4411
4411
|
apiV1HospitalsHospitalIdEquipmentsPost(hospitalId: string, createHospitalEquipmentCommand?: CreateHospitalEquipmentCommand, options?: any): AxiosPromise<HospitalEquipmentModel>;
|
|
4412
4412
|
/**
|
|
4413
4413
|
*
|
|
4414
|
-
* @summary Delete HospitalEvaluation. (Auth
|
|
4414
|
+
* @summary Delete HospitalEvaluation. (Auth policies: RequireContentManagerRole)
|
|
4415
4415
|
* @param {string} hospitalId
|
|
4416
4416
|
* @param {string} evaluationId
|
|
4417
4417
|
* @param {*} [options] Override http request option.
|
|
@@ -4443,7 +4443,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4443
4443
|
apiV1HospitalsHospitalIdEvaluationsGet(hospitalId: string, id?: string, name?: string, stars?: number, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalEvaluationsModel>;
|
|
4444
4444
|
/**
|
|
4445
4445
|
*
|
|
4446
|
-
* @summary Create HospitalEvaluation. (Auth
|
|
4446
|
+
* @summary Create HospitalEvaluation. (Auth policies: RequireContentManagerRole)
|
|
4447
4447
|
* @param {string} hospitalId
|
|
4448
4448
|
* @param {CreateHospitalEvaluationCommand} [createHospitalEvaluationCommand]
|
|
4449
4449
|
* @param {*} [options] Override http request option.
|
|
@@ -4452,7 +4452,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4452
4452
|
apiV1HospitalsHospitalIdEvaluationsPost(hospitalId: string, createHospitalEvaluationCommand?: CreateHospitalEvaluationCommand, options?: any): AxiosPromise<HospitalEvaluationModel>;
|
|
4453
4453
|
/**
|
|
4454
4454
|
*
|
|
4455
|
-
* @summary Get footerNavigationItems (Auth
|
|
4455
|
+
* @summary Get footerNavigationItems (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4456
4456
|
* @param {string} hospitalId
|
|
4457
4457
|
* @param {string} languageCode
|
|
4458
4458
|
* @param {*} [options] Override http request option.
|
|
@@ -4461,7 +4461,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4461
4461
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet(hospitalId: string, languageCode: string, options?: any): AxiosPromise<Array<FooterNavigationItemModel>>;
|
|
4462
4462
|
/**
|
|
4463
4463
|
*
|
|
4464
|
-
* @summary Delete footerNavigationItem (Auth
|
|
4464
|
+
* @summary Delete footerNavigationItem (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4465
4465
|
* @param {string} hospitalId
|
|
4466
4466
|
* @param {string} languageCode
|
|
4467
4467
|
* @param {string} id Id of level 1 item in the json data
|
|
@@ -4471,7 +4471,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4471
4471
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete(hospitalId: string, languageCode: string, id: string, options?: any): AxiosPromise<boolean>;
|
|
4472
4472
|
/**
|
|
4473
4473
|
*
|
|
4474
|
-
* @summary Get footerNavigationItem by Id (Auth
|
|
4474
|
+
* @summary Get footerNavigationItem by Id (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4475
4475
|
* @param {string} hospitalId
|
|
4476
4476
|
* @param {string} languageCode
|
|
4477
4477
|
* @param {string} id
|
|
@@ -4481,7 +4481,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4481
4481
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet(hospitalId: string, languageCode: string, id: string, options?: any): AxiosPromise<FooterNavigationItemModel>;
|
|
4482
4482
|
/**
|
|
4483
4483
|
*
|
|
4484
|
-
* @summary Get footerNavigationItems by ParentId (Auth
|
|
4484
|
+
* @summary Get footerNavigationItems by ParentId (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4485
4485
|
* @param {string} hospitalId
|
|
4486
4486
|
* @param {string} languageCode
|
|
4487
4487
|
* @param {string} parentId
|
|
@@ -4491,7 +4491,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4491
4491
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet(hospitalId: string, languageCode: string, parentId: string, options?: any): AxiosPromise<Array<FooterNavigationItemModel>>;
|
|
4492
4492
|
/**
|
|
4493
4493
|
*
|
|
4494
|
-
* @summary Save footerNavigationItem (Auth
|
|
4494
|
+
* @summary Save footerNavigationItem (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4495
4495
|
* @param {string} hospitalId
|
|
4496
4496
|
* @param {string} languageCode
|
|
4497
4497
|
* @param {SaveFooterNavigationsCommand} [saveFooterNavigationsCommand]
|
|
@@ -4501,7 +4501,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4501
4501
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost(hospitalId: string, languageCode: string, saveFooterNavigationsCommand?: SaveFooterNavigationsCommand, options?: any): AxiosPromise<FooterNavigationItemModel>;
|
|
4502
4502
|
/**
|
|
4503
4503
|
*
|
|
4504
|
-
* @summary Batch for footer navigation items sorting <br> Level 1 item only (Auth
|
|
4504
|
+
* @summary Batch for footer navigation items sorting <br> Level 1 item only (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4505
4505
|
* @param {string} hospitalId
|
|
4506
4506
|
* @param {string} languageCode
|
|
4507
4507
|
* @param {SortFooterNavigationsCommand} [sortFooterNavigationsCommand]
|
|
@@ -4535,7 +4535,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4535
4535
|
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
|
|
4536
4536
|
/**
|
|
4537
4537
|
*
|
|
4538
|
-
* @summary Delete HospitalHandle. (Auth
|
|
4538
|
+
* @summary Delete HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4539
4539
|
* @param {string} hospitalId
|
|
4540
4540
|
* @param {string} handleId
|
|
4541
4541
|
* @param {*} [options] Override http request option.
|
|
@@ -4553,7 +4553,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4553
4553
|
apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
|
|
4554
4554
|
/**
|
|
4555
4555
|
*
|
|
4556
|
-
* @summary Update HospitalHandle. (Auth
|
|
4556
|
+
* @summary Update HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4557
4557
|
* @param {string} hospitalId
|
|
4558
4558
|
* @param {string} handleId
|
|
4559
4559
|
* @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
|
|
@@ -4563,7 +4563,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4563
4563
|
apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand, options?: any): AxiosPromise<SnsHandleModel>;
|
|
4564
4564
|
/**
|
|
4565
4565
|
*
|
|
4566
|
-
* @summary Get HospitalHandle. (Auth
|
|
4566
|
+
* @summary Get HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4567
4567
|
* @param {string} hospitalId
|
|
4568
4568
|
* @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
|
|
4569
4569
|
* @param {*} [options] Override http request option.
|
|
@@ -4572,7 +4572,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4572
4572
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: any): AxiosPromise<SnsHandleModel>;
|
|
4573
4573
|
/**
|
|
4574
4574
|
*
|
|
4575
|
-
* @summary Get all HeaderNavigationItems (Auth
|
|
4575
|
+
* @summary Get all HeaderNavigationItems (Auth policies: RequireDoctorRole)
|
|
4576
4576
|
* @param {string} hospitalId
|
|
4577
4577
|
* @param {string} languageCode
|
|
4578
4578
|
* @param {*} [options] Override http request option.
|
|
@@ -4581,7 +4581,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4581
4581
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeGet(hospitalId: string, languageCode: string, options?: any): AxiosPromise<Array<HeaderNavigationItemModel>>;
|
|
4582
4582
|
/**
|
|
4583
4583
|
*
|
|
4584
|
-
* @summary Delete HeaderNavigationItem (Auth
|
|
4584
|
+
* @summary Delete HeaderNavigationItem (Auth policies: RequireDoctorRole)
|
|
4585
4585
|
* @param {string} hospitalId
|
|
4586
4586
|
* @param {string} languageCode
|
|
4587
4587
|
* @param {string} id
|
|
@@ -4591,7 +4591,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4591
4591
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdDelete(hospitalId: string, languageCode: string, id: string, options?: any): AxiosPromise<boolean>;
|
|
4592
4592
|
/**
|
|
4593
4593
|
*
|
|
4594
|
-
* @summary Get HeaderNavigationItem by id (Auth
|
|
4594
|
+
* @summary Get HeaderNavigationItem by id (Auth policies: RequireDoctorRole)
|
|
4595
4595
|
* @param {string} hospitalId
|
|
4596
4596
|
* @param {string} languageCode
|
|
4597
4597
|
* @param {string} id
|
|
@@ -4601,7 +4601,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4601
4601
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdGet(hospitalId: string, languageCode: string, id: string, options?: any): AxiosPromise<HeaderNavigationItemModel>;
|
|
4602
4602
|
/**
|
|
4603
4603
|
*
|
|
4604
|
-
* @summary Get HeaderNavigationItems by parent id (Auth
|
|
4604
|
+
* @summary Get HeaderNavigationItems by parent id (Auth policies: RequireDoctorRole)
|
|
4605
4605
|
* @param {string} hospitalId
|
|
4606
4606
|
* @param {string} languageCode
|
|
4607
4607
|
* @param {string} parentId
|
|
@@ -4611,7 +4611,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4611
4611
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeParentIdSubitemsGet(hospitalId: string, languageCode: string, parentId: string, options?: any): AxiosPromise<Array<HeaderNavigationItemModel>>;
|
|
4612
4612
|
/**
|
|
4613
4613
|
*
|
|
4614
|
-
* @summary Save HeaderNavigationItem (Auth
|
|
4614
|
+
* @summary Save HeaderNavigationItem (Auth policies: RequireDoctorRole)
|
|
4615
4615
|
* @param {string} hospitalId
|
|
4616
4616
|
* @param {string} languageCode
|
|
4617
4617
|
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
@@ -4636,7 +4636,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4636
4636
|
apiV1HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<LandingsModel>;
|
|
4637
4637
|
/**
|
|
4638
4638
|
*
|
|
4639
|
-
* @summary Delete Landing. (Auth
|
|
4639
|
+
* @summary Delete Landing. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4640
4640
|
* @param {string} hospitalId
|
|
4641
4641
|
* @param {string} landingId
|
|
4642
4642
|
* @param {boolean} [isPermanent]
|
|
@@ -4656,7 +4656,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4656
4656
|
apiV1HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string, options?: any): AxiosPromise<LandingModel>;
|
|
4657
4657
|
/**
|
|
4658
4658
|
*
|
|
4659
|
-
* @summary Update Landing (Auth
|
|
4659
|
+
* @summary Update Landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4660
4660
|
* @param {string} hospitalId
|
|
4661
4661
|
* @param {string} landingId
|
|
4662
4662
|
* @param {UpdateLandingCommand} [updateLandingCommand]
|
|
@@ -4666,7 +4666,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4666
4666
|
apiV1HospitalsHospitalIdLandingsLandingIdPut(hospitalId: string, landingId: string, updateLandingCommand?: UpdateLandingCommand, options?: any): AxiosPromise<LandingModel>;
|
|
4667
4667
|
/**
|
|
4668
4668
|
*
|
|
4669
|
-
* @summary Reactivate Landing (Auth
|
|
4669
|
+
* @summary Reactivate Landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4670
4670
|
* @param {string} hospitalId
|
|
4671
4671
|
* @param {string} landingId
|
|
4672
4672
|
* @param {*} [options] Override http request option.
|
|
@@ -4675,7 +4675,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4675
4675
|
apiV1HospitalsHospitalIdLandingsLandingIdReactivatePut(hospitalId: string, landingId: string, options?: any): AxiosPromise<boolean>;
|
|
4676
4676
|
/**
|
|
4677
4677
|
*
|
|
4678
|
-
* @summary Revalidate landing (Auth
|
|
4678
|
+
* @summary Revalidate landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4679
4679
|
* @param {string} hospitalId
|
|
4680
4680
|
* @param {string} landingId
|
|
4681
4681
|
* @param {boolean} [includeCurrent]
|
|
@@ -4685,7 +4685,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4685
4685
|
apiV1HospitalsHospitalIdLandingsLandingIdRevalidatePost(hospitalId: string, landingId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
4686
4686
|
/**
|
|
4687
4687
|
*
|
|
4688
|
-
* @summary Translate landing (Auth
|
|
4688
|
+
* @summary Translate landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4689
4689
|
* @param {string} hospitalId
|
|
4690
4690
|
* @param {string} landingId
|
|
4691
4691
|
* @param {TranslateLandingCommand} [translateLandingCommand]
|
|
@@ -4695,7 +4695,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4695
4695
|
apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost(hospitalId: string, landingId: string, translateLandingCommand?: TranslateLandingCommand, options?: any): AxiosPromise<boolean>;
|
|
4696
4696
|
/**
|
|
4697
4697
|
*
|
|
4698
|
-
* @summary Create HospitalLandings. (Auth
|
|
4698
|
+
* @summary Create HospitalLandings. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4699
4699
|
* @param {string} hospitalId
|
|
4700
4700
|
* @param {CreateLandingCommand} [createLandingCommand]
|
|
4701
4701
|
* @param {*} [options] Override http request option.
|
|
@@ -4717,7 +4717,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4717
4717
|
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalLanguagesModel>;
|
|
4718
4718
|
/**
|
|
4719
4719
|
*
|
|
4720
|
-
* @summary Delete GetAllLanguage. (Auth
|
|
4720
|
+
* @summary Delete GetAllLanguage. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4721
4721
|
* @param {string} hospitalId
|
|
4722
4722
|
* @param {string} languageCode
|
|
4723
4723
|
* @param {*} [options] Override http request option.
|
|
@@ -4726,7 +4726,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4726
4726
|
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: any): AxiosPromise<boolean>;
|
|
4727
4727
|
/**
|
|
4728
4728
|
*
|
|
4729
|
-
* @summary Update HospitalLanguage (Auth
|
|
4729
|
+
* @summary Update HospitalLanguage (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4730
4730
|
* @param {string} hospitalId
|
|
4731
4731
|
* @param {string} languageCode
|
|
4732
4732
|
* @param {UpdateHospitalLanguageCommand} [updateHospitalLanguageCommand]
|
|
@@ -4736,7 +4736,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4736
4736
|
apiV1HospitalsHospitalIdLanguagesLanguageCodePut(hospitalId: string, languageCode: string, updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand, options?: any): AxiosPromise<boolean>;
|
|
4737
4737
|
/**
|
|
4738
4738
|
*
|
|
4739
|
-
* @summary Create HospitalLanguages. (Auth
|
|
4739
|
+
* @summary Create HospitalLanguages. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4740
4740
|
* @param {string} hospitalId
|
|
4741
4741
|
* @param {CreateHospitalLanguageCommand} [createHospitalLanguageCommand]
|
|
4742
4742
|
* @param {*} [options] Override http request option.
|
|
@@ -4745,7 +4745,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4745
4745
|
apiV1HospitalsHospitalIdLanguagesPost(hospitalId: string, createHospitalLanguageCommand?: CreateHospitalLanguageCommand, options?: any): AxiosPromise<boolean>;
|
|
4746
4746
|
/**
|
|
4747
4747
|
*
|
|
4748
|
-
* @summary Get managers (Auth
|
|
4748
|
+
* @summary Get managers (Auth policies: RequireDoctorRole)
|
|
4749
4749
|
* @param {string} hospitalId
|
|
4750
4750
|
* @param {string} [id]
|
|
4751
4751
|
* @param {string} [fullname]
|
|
@@ -4763,7 +4763,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4763
4763
|
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ManagersModel>;
|
|
4764
4764
|
/**
|
|
4765
4765
|
*
|
|
4766
|
-
* @summary Delete manager (Auth
|
|
4766
|
+
* @summary Delete manager (Auth policies: RequireManagerRole)
|
|
4767
4767
|
* @param {string} hospitalId
|
|
4768
4768
|
* @param {string} managerId
|
|
4769
4769
|
* @param {boolean} [isPermanent]
|
|
@@ -4773,7 +4773,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4773
4773
|
apiV1HospitalsHospitalIdManagersManagerIdDelete(hospitalId: string, managerId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
4774
4774
|
/**
|
|
4775
4775
|
*
|
|
4776
|
-
* @summary Get manager (Auth
|
|
4776
|
+
* @summary Get manager (Auth policies: RequireDoctorRole)
|
|
4777
4777
|
* @param {string} hospitalId
|
|
4778
4778
|
* @param {string} managerId
|
|
4779
4779
|
* @param {*} [options] Override http request option.
|
|
@@ -4782,7 +4782,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4782
4782
|
apiV1HospitalsHospitalIdManagersManagerIdGet(hospitalId: string, managerId: string, options?: any): AxiosPromise<ManagerModel>;
|
|
4783
4783
|
/**
|
|
4784
4784
|
* PUT: /api/v1/hospitals/{hospitlaId}/managers/{managerId} { \"email\": \"emailaddress@icloudhospital.com\", \"firstName\": \"First\", \"lastName\": \"Last\", \"phone\": \"+82 1012340000\", \"photo\": \"\", \"photoThumbnail\": \"\", \"gender\": \"Male\", \"dateOfBirth\": \"2023-08-07T06:02:05.652Z\", \"timeZone\": \"Asia/Seoul\" }
|
|
4785
|
-
* @summary Update manager (Auth
|
|
4785
|
+
* @summary Update manager (Auth policies: RequireDoctorRole)
|
|
4786
4786
|
* @param {string} hospitalId
|
|
4787
4787
|
* @param {string} managerId
|
|
4788
4788
|
* @param {UpdateManagerCommand} [updateManagerCommand]
|
|
@@ -4792,7 +4792,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4792
4792
|
apiV1HospitalsHospitalIdManagersManagerIdPut(hospitalId: string, managerId: string, updateManagerCommand?: UpdateManagerCommand, options?: any): AxiosPromise<ManagerModel>;
|
|
4793
4793
|
/**
|
|
4794
4794
|
* POST: /api/v1/hospitals/{hospitlaId}/managers { \"email\": \"emailaddress@icloudhospital.com\", \"firstName\": \"First\", \"lastName\": \"Last\", \"phone\": \"+82 1012340000\", \"photo\": \"\", \"photoThumbnail\": \"\", \"gender\": \"Male\", \"dateOfBirth\": \"2023-08-07T06:02:05.652Z\", \"timeZone\": \"Asia/Seoul\" }
|
|
4795
|
-
* @summary Create manager (Auth
|
|
4795
|
+
* @summary Create manager (Auth policies: RequireManagerRole)
|
|
4796
4796
|
* @param {string} hospitalId
|
|
4797
4797
|
* @param {CreateManagerCommand} [createManagerCommand]
|
|
4798
4798
|
* @param {*} [options] Override http request option.
|
|
@@ -4814,7 +4814,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4814
4814
|
apiV1HospitalsHospitalIdMediasGet(hospitalId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<MediasModel>;
|
|
4815
4815
|
/**
|
|
4816
4816
|
*
|
|
4817
|
-
* @summary Delete HospitalMedia (Auth
|
|
4817
|
+
* @summary Delete HospitalMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4818
4818
|
* @param {string} hospitalId
|
|
4819
4819
|
* @param {string} mediaId
|
|
4820
4820
|
* @param {*} [options] Override http request option.
|
|
@@ -4832,7 +4832,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4832
4832
|
apiV1HospitalsHospitalIdMediasMediaIdGet(hospitalId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
4833
4833
|
/**
|
|
4834
4834
|
*
|
|
4835
|
-
* @summary Update HospitalMedia. (Auth
|
|
4835
|
+
* @summary Update HospitalMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4836
4836
|
* @param {string} hospitalId
|
|
4837
4837
|
* @param {string} mediaId
|
|
4838
4838
|
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
@@ -4842,7 +4842,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4842
4842
|
apiV1HospitalsHospitalIdMediasMediaIdPut(hospitalId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: any): AxiosPromise<MediaModel>;
|
|
4843
4843
|
/**
|
|
4844
4844
|
*
|
|
4845
|
-
* @summary Create HospitalMedia. (Auth
|
|
4845
|
+
* @summary Create HospitalMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4846
4846
|
* @param {string} hospitalId
|
|
4847
4847
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
4848
4848
|
* @param {*} [options] Override http request option.
|
|
@@ -4851,7 +4851,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4851
4851
|
apiV1HospitalsHospitalIdMediasPost(hospitalId: string, createMediaCommand?: CreateMediaCommand, options?: any): AxiosPromise<MediaModel>;
|
|
4852
4852
|
/**
|
|
4853
4853
|
*
|
|
4854
|
-
* @summary Get notices (Auth
|
|
4854
|
+
* @summary Get notices (Auth policies: RequireLocalManagerRole)
|
|
4855
4855
|
* @param {string} hospitalId
|
|
4856
4856
|
* @param {string} [id]
|
|
4857
4857
|
* @param {string} [languageCode]
|
|
@@ -4867,7 +4867,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4867
4867
|
apiV1HospitalsHospitalIdNoticesGet(hospitalId: string, id?: string, languageCode?: string, name?: string, status?: NoticeStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<NoticesModel>;
|
|
4868
4868
|
/**
|
|
4869
4869
|
*
|
|
4870
|
-
* @summary Delete notice (Auth
|
|
4870
|
+
* @summary Delete notice (Auth policies: RequireLocalManagerRole)
|
|
4871
4871
|
* @param {string} hospitalId
|
|
4872
4872
|
* @param {string} noticeId
|
|
4873
4873
|
* @param {string} [languageCode]
|
|
@@ -4878,7 +4878,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4878
4878
|
apiV1HospitalsHospitalIdNoticesNoticeIdDelete(hospitalId: string, noticeId: string, languageCode?: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
4879
4879
|
/**
|
|
4880
4880
|
*
|
|
4881
|
-
* @summary Get notice by id (Auth
|
|
4881
|
+
* @summary Get notice by id (Auth policies: RequireLocalManagerRole)
|
|
4882
4882
|
* @param {string} hospitalId
|
|
4883
4883
|
* @param {string} noticeId
|
|
4884
4884
|
* @param {string} [languageCode]
|
|
@@ -4888,7 +4888,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4888
4888
|
apiV1HospitalsHospitalIdNoticesNoticeIdGet(hospitalId: string, noticeId: string, languageCode?: string, options?: any): AxiosPromise<NoticeModel>;
|
|
4889
4889
|
/**
|
|
4890
4890
|
*
|
|
4891
|
-
* @summary Update notice (Auth
|
|
4891
|
+
* @summary Update notice (Auth policies: RequireLocalManagerRole)
|
|
4892
4892
|
* @param {string} hospitalId
|
|
4893
4893
|
* @param {string} noticeId
|
|
4894
4894
|
* @param {UpdateNoticeCommand} [updateNoticeCommand]
|
|
@@ -4898,7 +4898,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4898
4898
|
apiV1HospitalsHospitalIdNoticesNoticeIdPut(hospitalId: string, noticeId: string, updateNoticeCommand?: UpdateNoticeCommand, options?: any): AxiosPromise<NoticeModel>;
|
|
4899
4899
|
/**
|
|
4900
4900
|
*
|
|
4901
|
-
* @summary Reactivate notice (Auth
|
|
4901
|
+
* @summary Reactivate notice (Auth policies: RequireLocalManagerRole)
|
|
4902
4902
|
* @param {string} hospitalId
|
|
4903
4903
|
* @param {string} noticeId
|
|
4904
4904
|
* @param {*} [options] Override http request option.
|
|
@@ -4907,7 +4907,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4907
4907
|
apiV1HospitalsHospitalIdNoticesNoticeIdReactivatePut(hospitalId: string, noticeId: string, options?: any): AxiosPromise<boolean>;
|
|
4908
4908
|
/**
|
|
4909
4909
|
*
|
|
4910
|
-
* @summary Create notice (Auth
|
|
4910
|
+
* @summary Create notice (Auth policies: RequireLocalManagerRole)
|
|
4911
4911
|
* @param {string} hospitalId
|
|
4912
4912
|
* @param {CreateNoticeCommand} [createNoticeCommand]
|
|
4913
4913
|
* @param {*} [options] Override http request option.
|
|
@@ -4916,7 +4916,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4916
4916
|
apiV1HospitalsHospitalIdNoticesPost(hospitalId: string, createNoticeCommand?: CreateNoticeCommand, options?: any): AxiosPromise<NoticeModel>;
|
|
4917
4917
|
/**
|
|
4918
4918
|
*
|
|
4919
|
-
* @summary Batch for notices sorting (Auth
|
|
4919
|
+
* @summary Batch for notices sorting (Auth policies: RequireLocalManagerRole)
|
|
4920
4920
|
* @param {string} hospitalId
|
|
4921
4921
|
* @param {NoticeSortingCommand} [noticeSortingCommand]
|
|
4922
4922
|
* @param {*} [options] Override http request option.
|
|
@@ -4925,7 +4925,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4925
4925
|
apiV1HospitalsHospitalIdNoticesSortPut(hospitalId: string, noticeSortingCommand?: NoticeSortingCommand, options?: any): AxiosPromise<SortingResultModel>;
|
|
4926
4926
|
/**
|
|
4927
4927
|
*
|
|
4928
|
-
* @summary Get hospital pageItems (Auth
|
|
4928
|
+
* @summary Get hospital pageItems (Auth policies: RequireDoctorRole)
|
|
4929
4929
|
* @param {string} hospitalId
|
|
4930
4930
|
* @param {string} [id]
|
|
4931
4931
|
* @param {string} [languageCode]
|
|
@@ -4941,7 +4941,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4941
4941
|
apiV1HospitalsHospitalIdPagesGet(hospitalId: string, id?: string, languageCode?: string, name?: string, status?: PageItemStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<PageItemsModel>;
|
|
4942
4942
|
/**
|
|
4943
4943
|
*
|
|
4944
|
-
* @summary Delete page (Auth
|
|
4944
|
+
* @summary Delete page (Auth policies: RequireDoctorRole)
|
|
4945
4945
|
* @param {string} hospitalId
|
|
4946
4946
|
* @param {string} pageItemId
|
|
4947
4947
|
* @param {boolean} [isPermanent]
|
|
@@ -4952,7 +4952,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4952
4952
|
apiV1HospitalsHospitalIdPagesPageItemIdDelete(hospitalId: string, pageItemId: string, isPermanent?: boolean, languageCode?: string, options?: any): AxiosPromise<boolean>;
|
|
4953
4953
|
/**
|
|
4954
4954
|
*
|
|
4955
|
-
* @summary Get hospital page (Auth
|
|
4955
|
+
* @summary Get hospital page (Auth policies: RequireDoctorRole)
|
|
4956
4956
|
* @param {string} hospitalId
|
|
4957
4957
|
* @param {string} pageItemId
|
|
4958
4958
|
* @param {string} [languageCode]
|
|
@@ -4962,7 +4962,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4962
4962
|
apiV1HospitalsHospitalIdPagesPageItemIdGet(hospitalId: string, pageItemId: string, languageCode?: string, options?: any): AxiosPromise<PageItemModel>;
|
|
4963
4963
|
/**
|
|
4964
4964
|
*
|
|
4965
|
-
* @summary Update page (Auth
|
|
4965
|
+
* @summary Update page (Auth policies: RequireDoctorRole)
|
|
4966
4966
|
* @param {string} hospitalId
|
|
4967
4967
|
* @param {string} pageItemId
|
|
4968
4968
|
* @param {UpdatePageCommand} [updatePageCommand]
|
|
@@ -4972,7 +4972,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4972
4972
|
apiV1HospitalsHospitalIdPagesPageItemIdPut(hospitalId: string, pageItemId: string, updatePageCommand?: UpdatePageCommand, options?: any): AxiosPromise<PageItemModel>;
|
|
4973
4973
|
/**
|
|
4974
4974
|
*
|
|
4975
|
-
* @summary Reactivate page (Auth
|
|
4975
|
+
* @summary Reactivate page (Auth policies: RequireDoctorRole)
|
|
4976
4976
|
* @param {string} hospitalId
|
|
4977
4977
|
* @param {string} pageItemId
|
|
4978
4978
|
* @param {*} [options] Override http request option.
|
|
@@ -4981,7 +4981,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4981
4981
|
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut(hospitalId: string, pageItemId: string, options?: any): AxiosPromise<boolean>;
|
|
4982
4982
|
/**
|
|
4983
4983
|
*
|
|
4984
|
-
* @summary Translate pageBlocks in section (Auth
|
|
4984
|
+
* @summary Translate pageBlocks in section (Auth policies: RequireDoctorRole)
|
|
4985
4985
|
* @param {string} hospitalId
|
|
4986
4986
|
* @param {string} pageItemId
|
|
4987
4987
|
* @param {string} pageSectionId
|
|
@@ -4992,7 +4992,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4992
4992
|
apiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost(hospitalId: string, pageItemId: string, pageSectionId: string, translatePageSectionCommand?: TranslatePageSectionCommand, options?: any): AxiosPromise<TranslationBatchResultModel>;
|
|
4993
4993
|
/**
|
|
4994
4994
|
*
|
|
4995
|
-
* @summary Translate page (Auth
|
|
4995
|
+
* @summary Translate page (Auth policies: RequireDoctorRole)
|
|
4996
4996
|
* @param {string} hospitalId
|
|
4997
4997
|
* @param {string} pageItemId
|
|
4998
4998
|
* @param {TranslatePageCommand} [translatePageCommand]
|
|
@@ -5002,7 +5002,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5002
5002
|
apiV1HospitalsHospitalIdPagesPageItemIdTranslatePost(hospitalId: string, pageItemId: string, translatePageCommand?: TranslatePageCommand, options?: any): AxiosPromise<TranslationBatchResultModel>;
|
|
5003
5003
|
/**
|
|
5004
5004
|
*
|
|
5005
|
-
* @summary Create page (Auth
|
|
5005
|
+
* @summary Create page (Auth policies: RequireDoctorRole)
|
|
5006
5006
|
* @param {string} hospitalId
|
|
5007
5007
|
* @param {CreatePageCommand} [createPageCommand]
|
|
5008
5008
|
* @param {*} [options] Override http request option.
|
|
@@ -5011,7 +5011,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5011
5011
|
apiV1HospitalsHospitalIdPagesPost(hospitalId: string, createPageCommand?: CreatePageCommand, options?: any): AxiosPromise<void>;
|
|
5012
5012
|
/**
|
|
5013
5013
|
*
|
|
5014
|
-
* @summary Get hospitalPaymentMethods list (Auth
|
|
5014
|
+
* @summary Get hospitalPaymentMethods list (Auth policies: RequireDoctorRole)
|
|
5015
5015
|
* @param {string} hospitalId
|
|
5016
5016
|
* @param {PaymentMethod} [paymentMethod]
|
|
5017
5017
|
* @param {string} [id]
|
|
@@ -5024,7 +5024,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5024
5024
|
apiV1HospitalsHospitalIdPaymentmethodsGet(hospitalId: string, paymentMethod?: PaymentMethod, id?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalPaymentMethodsModel>;
|
|
5025
5025
|
/**
|
|
5026
5026
|
*
|
|
5027
|
-
* @summary Delete hospitalPaymentMethod (Auth
|
|
5027
|
+
* @summary Delete hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
5028
5028
|
* @param {string} hospitalId
|
|
5029
5029
|
* @param {string} id
|
|
5030
5030
|
* @param {*} [options] Override http request option.
|
|
@@ -5033,7 +5033,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5033
5033
|
apiV1HospitalsHospitalIdPaymentmethodsIdDelete(hospitalId: string, id: string, options?: any): AxiosPromise<boolean>;
|
|
5034
5034
|
/**
|
|
5035
5035
|
*
|
|
5036
|
-
* @summary Get hospitalPaymentMethod (Auth
|
|
5036
|
+
* @summary Get hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
5037
5037
|
* @param {string} hospitalId
|
|
5038
5038
|
* @param {string} id
|
|
5039
5039
|
* @param {*} [options] Override http request option.
|
|
@@ -5042,7 +5042,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5042
5042
|
apiV1HospitalsHospitalIdPaymentmethodsIdGet(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalPaymentMethodModel>;
|
|
5043
5043
|
/**
|
|
5044
5044
|
*
|
|
5045
|
-
* @summary Update hospitalPaymentMethod (Auth
|
|
5045
|
+
* @summary Update hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
5046
5046
|
* @param {string} hospitalId
|
|
5047
5047
|
* @param {string} id
|
|
5048
5048
|
* @param {UpdateHospitalPaymentMethodCommand} [updateHospitalPaymentMethodCommand]
|
|
@@ -5052,7 +5052,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5052
5052
|
apiV1HospitalsHospitalIdPaymentmethodsIdPut(hospitalId: string, id: string, updateHospitalPaymentMethodCommand?: UpdateHospitalPaymentMethodCommand, options?: any): AxiosPromise<HospitalPaymentMethodModel>;
|
|
5053
5053
|
/**
|
|
5054
5054
|
*
|
|
5055
|
-
* @summary Create hospitalPaymentMethod (Auth
|
|
5055
|
+
* @summary Create hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
5056
5056
|
* @param {string} hospitalId
|
|
5057
5057
|
* @param {CreateHospitalPaymentMethodCommand} [createHospitalPaymentMethodCommand]
|
|
5058
5058
|
* @param {*} [options] Override http request option.
|
|
@@ -5076,7 +5076,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5076
5076
|
apiV1HospitalsHospitalIdPoliciesGet(hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<PoliciesModel>;
|
|
5077
5077
|
/**
|
|
5078
5078
|
*
|
|
5079
|
-
* @summary Delete policy (Auth
|
|
5079
|
+
* @summary Delete policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5080
5080
|
* @param {string} hospitalId
|
|
5081
5081
|
* @param {string} policyId
|
|
5082
5082
|
* @param {boolean} [isPermanent]
|
|
@@ -5096,7 +5096,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5096
5096
|
apiV1HospitalsHospitalIdPoliciesPolicyIdGet(hospitalId: string, policyId: string, languageCode?: string, options?: any): AxiosPromise<PolicyModel>;
|
|
5097
5097
|
/**
|
|
5098
5098
|
*
|
|
5099
|
-
* @summary Update policy (Auth
|
|
5099
|
+
* @summary Update policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5100
5100
|
* @param {string} hospitalId
|
|
5101
5101
|
* @param {string} policyId
|
|
5102
5102
|
* @param {UpdatePolicyCommand} [updatePolicyCommand]
|
|
@@ -5106,7 +5106,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5106
5106
|
apiV1HospitalsHospitalIdPoliciesPolicyIdPut(hospitalId: string, policyId: string, updatePolicyCommand?: UpdatePolicyCommand, options?: any): AxiosPromise<PolicyModel>;
|
|
5107
5107
|
/**
|
|
5108
5108
|
*
|
|
5109
|
-
* @summary Reactivate policy (Auth
|
|
5109
|
+
* @summary Reactivate policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5110
5110
|
* @param {string} hospitalId
|
|
5111
5111
|
* @param {string} policyId
|
|
5112
5112
|
* @param {*} [options] Override http request option.
|
|
@@ -5115,7 +5115,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5115
5115
|
apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut(hospitalId: string, policyId: string, options?: any): AxiosPromise<boolean>;
|
|
5116
5116
|
/**
|
|
5117
5117
|
*
|
|
5118
|
-
* @summary Create policy (Auth
|
|
5118
|
+
* @summary Create policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5119
5119
|
* @param {string} hospitalId
|
|
5120
5120
|
* @param {CreatePolicyCommand} [createPolicyCommand]
|
|
5121
5121
|
* @param {*} [options] Override http request option.
|
|
@@ -5124,7 +5124,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5124
5124
|
apiV1HospitalsHospitalIdPoliciesPost(hospitalId: string, createPolicyCommand?: CreatePolicyCommand, options?: any): AxiosPromise<PolicyModel>;
|
|
5125
5125
|
/**
|
|
5126
5126
|
*
|
|
5127
|
-
* @summary Update Hospital. (Auth
|
|
5127
|
+
* @summary Update Hospital. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5128
5128
|
* @param {string} hospitalId
|
|
5129
5129
|
* @param {UpdateHospitalCommand} [updateHospitalCommand]
|
|
5130
5130
|
* @param {*} [options] Override http request option.
|
|
@@ -5147,7 +5147,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5147
5147
|
apiV1HospitalsHospitalIdRatingsGet(hospitalId: string, id?: string, vender?: string, isConfirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalRatingsModel>;
|
|
5148
5148
|
/**
|
|
5149
5149
|
*
|
|
5150
|
-
* @summary Delete hospitalRating (Auth
|
|
5150
|
+
* @summary Delete hospitalRating (Auth policies: RequireDoctorRole)
|
|
5151
5151
|
* @param {string} hospitalId
|
|
5152
5152
|
* @param {string} id
|
|
5153
5153
|
* @param {*} [options] Override http request option.
|
|
@@ -5165,7 +5165,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5165
5165
|
apiV1HospitalsHospitalIdRatingsIdGet(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalRatingModel>;
|
|
5166
5166
|
/**
|
|
5167
5167
|
*
|
|
5168
|
-
* @summary Update hospitalRating (Auth
|
|
5168
|
+
* @summary Update hospitalRating (Auth policies: RequireDoctorRole)
|
|
5169
5169
|
* @param {string} hospitalId
|
|
5170
5170
|
* @param {string} id
|
|
5171
5171
|
* @param {UpdateHospitalRatingCommand} [updateHospitalRatingCommand]
|
|
@@ -5175,7 +5175,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5175
5175
|
apiV1HospitalsHospitalIdRatingsIdPut(hospitalId: string, id: string, updateHospitalRatingCommand?: UpdateHospitalRatingCommand, options?: any): AxiosPromise<HospitalRatingModel>;
|
|
5176
5176
|
/**
|
|
5177
5177
|
*
|
|
5178
|
-
* @summary Create hospitalRating (Auth
|
|
5178
|
+
* @summary Create hospitalRating (Auth policies: RequireDoctorRole)
|
|
5179
5179
|
* @param {string} hospitalId
|
|
5180
5180
|
* @param {CreateHospitalRatingCommand} [createHospitalRatingCommand]
|
|
5181
5181
|
* @param {*} [options] Override http request option.
|
|
@@ -5184,7 +5184,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5184
5184
|
apiV1HospitalsHospitalIdRatingsPost(hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: any): AxiosPromise<HospitalRatingModel>;
|
|
5185
5185
|
/**
|
|
5186
5186
|
*
|
|
5187
|
-
* @summary Sort hospitalRating entities (Auth
|
|
5187
|
+
* @summary Sort hospitalRating entities (Auth policies: RequireDoctorRole)
|
|
5188
5188
|
* @param {string} hospitalId
|
|
5189
5189
|
* @param {HospitalRatingSortingCommand} [hospitalRatingSortingCommand]
|
|
5190
5190
|
* @param {*} [options] Override http request option.
|
|
@@ -5193,7 +5193,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5193
5193
|
apiV1HospitalsHospitalIdRatingsSortPut(hospitalId: string, hospitalRatingSortingCommand?: HospitalRatingSortingCommand, options?: any): AxiosPromise<SortingResultModel>;
|
|
5194
5194
|
/**
|
|
5195
5195
|
*
|
|
5196
|
-
* @summary Delete HospitalSpecialty. (Auth
|
|
5196
|
+
* @summary Delete HospitalSpecialty. (Auth policies: RequireManagerRole)
|
|
5197
5197
|
* @param {string} hospitalId
|
|
5198
5198
|
* @param {*} [options] Override http request option.
|
|
5199
5199
|
* @throws {RequiredError}
|
|
@@ -5201,7 +5201,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5201
5201
|
apiV1HospitalsHospitalIdReactivatePut(hospitalId: string, options?: any): AxiosPromise<boolean>;
|
|
5202
5202
|
/**
|
|
5203
5203
|
*
|
|
5204
|
-
* @summary Revalidate hospital (Auth
|
|
5204
|
+
* @summary Revalidate hospital (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5205
5205
|
* @param {string} hospitalId
|
|
5206
5206
|
* @param {boolean} [includeCurrent]
|
|
5207
5207
|
* @param {*} [options] Override http request option.
|
|
@@ -5210,7 +5210,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5210
5210
|
apiV1HospitalsHospitalIdRevalidatePost(hospitalId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
5211
5211
|
/**
|
|
5212
5212
|
*
|
|
5213
|
-
* @summary Delete secure file container (Auth
|
|
5213
|
+
* @summary Delete secure file container (Auth policies: RequireLocalManagerRole)
|
|
5214
5214
|
* @param {string} hospitalId
|
|
5215
5215
|
* @param {string} containerId
|
|
5216
5216
|
* @param {*} [options] Override http request option.
|
|
@@ -5219,7 +5219,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5219
5219
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(hospitalId: string, containerId: string, options?: any): AxiosPromise<boolean>;
|
|
5220
5220
|
/**
|
|
5221
5221
|
*
|
|
5222
|
-
* @summary Get file content (Auth
|
|
5222
|
+
* @summary Get file content (Auth policies: RequireLocalManagerRole)
|
|
5223
5223
|
* @param {string} hospitalId
|
|
5224
5224
|
* @param {string} containerId
|
|
5225
5225
|
* @param {string} fileId
|
|
@@ -5229,7 +5229,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5229
5229
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(hospitalId: string, containerId: string, fileId: string, options?: any): AxiosPromise<void>;
|
|
5230
5230
|
/**
|
|
5231
5231
|
*
|
|
5232
|
-
* @summary Get secure file url with read access (Auth
|
|
5232
|
+
* @summary Get secure file url with read access (Auth policies: RequireLocalManagerRole)
|
|
5233
5233
|
* @param {string} hospitalId
|
|
5234
5234
|
* @param {string} containerId
|
|
5235
5235
|
* @param {string} fileId
|
|
@@ -5240,7 +5240,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5240
5240
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet(hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<string>;
|
|
5241
5241
|
/**
|
|
5242
5242
|
*
|
|
5243
|
-
* @summary Get secure container (Auth
|
|
5243
|
+
* @summary Get secure container (Auth policies: RequireLocalManagerRole)
|
|
5244
5244
|
* @param {string} hospitalId
|
|
5245
5245
|
* @param {string} containerId
|
|
5246
5246
|
* @param {string} [languageCode]
|
|
@@ -5250,7 +5250,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5250
5250
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(hospitalId: string, containerId: string, languageCode?: string, options?: any): AxiosPromise<SecureContainerModel>;
|
|
5251
5251
|
/**
|
|
5252
5252
|
*
|
|
5253
|
-
* @summary Get secure containers (Auth
|
|
5253
|
+
* @summary Get secure containers (Auth policies: RequireLocalManagerRole)
|
|
5254
5254
|
* @param {string} hospitalId
|
|
5255
5255
|
* @param {string} [id]
|
|
5256
5256
|
* @param {string} [languageCode]
|
|
@@ -5267,7 +5267,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5267
5267
|
apiV1HospitalsHospitalIdSecurecontainersGet(hospitalId: string, id?: string, languageCode?: string, showHidden?: boolean, userName?: string, userEmail?: string, userId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SecureContainersModel>;
|
|
5268
5268
|
/**
|
|
5269
5269
|
*
|
|
5270
|
-
* @summary Create secure file container (Auth
|
|
5270
|
+
* @summary Create secure file container (Auth policies: RequireLocalManagerRole)
|
|
5271
5271
|
* @param {string} hospitalId
|
|
5272
5272
|
* @param {*} [options] Override http request option.
|
|
5273
5273
|
* @throws {RequiredError}
|
|
@@ -5275,7 +5275,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5275
5275
|
apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId: string, options?: any): AxiosPromise<SecureContainerModel>;
|
|
5276
5276
|
/**
|
|
5277
5277
|
*
|
|
5278
|
-
* @summary Get file content by file name (Auth
|
|
5278
|
+
* @summary Get file content by file name (Auth policies: RequireLocalManagerRole)
|
|
5279
5279
|
* @param {string} hospitalId
|
|
5280
5280
|
* @param {string} fileName
|
|
5281
5281
|
* @param {*} [options] Override http request option.
|
|
@@ -5284,7 +5284,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5284
5284
|
apiV1HospitalsHospitalIdSecurefilesFileNameGet(hospitalId: string, fileName: string, options?: any): AxiosPromise<void>;
|
|
5285
5285
|
/**
|
|
5286
5286
|
*
|
|
5287
|
-
* @summary Get secure file url with read access by file name (Auth
|
|
5287
|
+
* @summary Get secure file url with read access by file name (Auth policies: RequireLocalManagerRole)
|
|
5288
5288
|
* @param {string} hospitalId
|
|
5289
5289
|
* @param {string} fileName
|
|
5290
5290
|
* @param {number} [minutesAvailableUntil]
|
|
@@ -5294,7 +5294,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5294
5294
|
apiV1HospitalsHospitalIdSecurefilesFileNameReadGet(hospitalId: string, fileName: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<string>;
|
|
5295
5295
|
/**
|
|
5296
5296
|
*
|
|
5297
|
-
* @summary Get file content by uri (Auth
|
|
5297
|
+
* @summary Get file content by uri (Auth policies: RequireLocalManagerRole)
|
|
5298
5298
|
* @param {string} hospitalId
|
|
5299
5299
|
* @param {string} [uri]
|
|
5300
5300
|
* @param {*} [options] Override http request option.
|
|
@@ -5303,7 +5303,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5303
5303
|
apiV1HospitalsHospitalIdSecurefilesGet(hospitalId: string, uri?: string, options?: any): AxiosPromise<void>;
|
|
5304
5304
|
/**
|
|
5305
5305
|
*
|
|
5306
|
-
* @summary Upload secure files (Auth
|
|
5306
|
+
* @summary Upload secure files (Auth policies: RequireDoctorRole)
|
|
5307
5307
|
* @param {string} hospitalId
|
|
5308
5308
|
* @param {Array<File>} [files]
|
|
5309
5309
|
* @param {*} [options] Override http request option.
|
|
@@ -5312,7 +5312,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5312
5312
|
apiV1HospitalsHospitalIdSecurefilesPost(hospitalId: string, files?: Array<File>, options?: any): AxiosPromise<SecureFilesUploadedModel>;
|
|
5313
5313
|
/**
|
|
5314
5314
|
*
|
|
5315
|
-
* @summary Get secure file url with read access by uri (Auth
|
|
5315
|
+
* @summary Get secure file url with read access by uri (Auth policies: RequireLocalManagerRole)
|
|
5316
5316
|
* @param {string} hospitalId
|
|
5317
5317
|
* @param {string} [uri]
|
|
5318
5318
|
* @param {number} [minutesAvailableUntil]
|
|
@@ -5359,7 +5359,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5359
5359
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGet(hospitalId: string, hospitalSpecialtyId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentTimetableOverridesModel>;
|
|
5360
5360
|
/**
|
|
5361
5361
|
*
|
|
5362
|
-
* @summary Delete HospitalSpecialty appointment timetable overrides (Auth
|
|
5362
|
+
* @summary Delete HospitalSpecialty appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5363
5363
|
* @param {string} hospitalId
|
|
5364
5364
|
* @param {string} hospitalSpecialtyId
|
|
5365
5365
|
* @param {DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand} [deleteHospitalSpecialtyAppointmentTimetableOverridesCommand]
|
|
@@ -5369,7 +5369,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5369
5369
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch(hospitalId: string, hospitalSpecialtyId: string, deleteHospitalSpecialtyAppointmentTimetableOverridesCommand?: DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options?: any): AxiosPromise<boolean>;
|
|
5370
5370
|
/**
|
|
5371
5371
|
*
|
|
5372
|
-
* @summary Save HospitalSpecialty appointment timetable overrides (Auth
|
|
5372
|
+
* @summary Save HospitalSpecialty appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5373
5373
|
* @param {string} hospitalId
|
|
5374
5374
|
* @param {string} hospitalSpecialtyId
|
|
5375
5375
|
* @param {SaveHospitalSpecialtyAppointmentTimetableOverridesCommand} [saveHospitalSpecialtyAppointmentTimetableOverridesCommand]
|
|
@@ -5395,7 +5395,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5395
5395
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel>;
|
|
5396
5396
|
/**
|
|
5397
5397
|
*
|
|
5398
|
-
* @summary Add, update, delete HospitalSpecialty appointment timetables (Auth
|
|
5398
|
+
* @summary Add, update, delete HospitalSpecialty appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5399
5399
|
* @param {string} hospitalId
|
|
5400
5400
|
* @param {string} hospitalSpecialtyId
|
|
5401
5401
|
* @param {BatchHospitalSpecialtyAppointmentTimetablesCommand} [batchHospitalSpecialtyAppointmentTimetablesCommand]
|
|
@@ -5418,7 +5418,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5418
5418
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentTimetablesModel>;
|
|
5419
5419
|
/**
|
|
5420
5420
|
*
|
|
5421
|
-
* @summary Delete HospitalSpecialty. (Auth
|
|
5421
|
+
* @summary Delete HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5422
5422
|
* @param {string} hospitalId
|
|
5423
5423
|
* @param {string} hospitalSpecialtyId
|
|
5424
5424
|
* @param {boolean} [isPermanent]
|
|
@@ -5452,7 +5452,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5452
5452
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<MediasModel>;
|
|
5453
5453
|
/**
|
|
5454
5454
|
*
|
|
5455
|
-
* @summary Delete HospitalServiceMedia (Auth
|
|
5455
|
+
* @summary Delete HospitalServiceMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5456
5456
|
* @param {string} hospitalId
|
|
5457
5457
|
* @param {string} hospitalSpecialtyId
|
|
5458
5458
|
* @param {string} mediaId
|
|
@@ -5472,7 +5472,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5472
5472
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
5473
5473
|
/**
|
|
5474
5474
|
*
|
|
5475
|
-
* @summary Update HospitalServiceMedia. (Auth
|
|
5475
|
+
* @summary Update HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5476
5476
|
* @param {string} hospitalId
|
|
5477
5477
|
* @param {string} hospitalSpecialtyId
|
|
5478
5478
|
* @param {string} mediaId
|
|
@@ -5483,7 +5483,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5483
5483
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: any): AxiosPromise<MediaModel>;
|
|
5484
5484
|
/**
|
|
5485
5485
|
*
|
|
5486
|
-
* @summary Create HospitalServiceMedia. (Auth
|
|
5486
|
+
* @summary Create HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5487
5487
|
* @param {string} hospitalId
|
|
5488
5488
|
* @param {string} hospitalSpecialtyId
|
|
5489
5489
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
@@ -5493,7 +5493,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5493
5493
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand, options?: any): AxiosPromise<MediaModel>;
|
|
5494
5494
|
/**
|
|
5495
5495
|
*
|
|
5496
|
-
* @summary Update HospitalSpecialty. (Auth
|
|
5496
|
+
* @summary Update HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5497
5497
|
* @param {string} hospitalId
|
|
5498
5498
|
* @param {string} hospitalSpecialtyId
|
|
5499
5499
|
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
@@ -5503,7 +5503,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5503
5503
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdPut(hospitalId: string, hospitalSpecialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
5504
5504
|
/**
|
|
5505
5505
|
*
|
|
5506
|
-
* @summary Reactivate HospitalSpecialty. (Auth
|
|
5506
|
+
* @summary Reactivate HospitalSpecialty. (Auth policies: RequireManagerRole)
|
|
5507
5507
|
* @param {string} hospitalId
|
|
5508
5508
|
* @param {string} hospitalSpecialtyId
|
|
5509
5509
|
* @param {*} [options] Override http request option.
|
|
@@ -5512,7 +5512,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5512
5512
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdReactivatePut(hospitalId: string, hospitalSpecialtyId: string, options?: any): AxiosPromise<boolean>;
|
|
5513
5513
|
/**
|
|
5514
5514
|
*
|
|
5515
|
-
* @summary Revalidate hospitalSpecialty (Auth
|
|
5515
|
+
* @summary Revalidate hospitalSpecialty (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5516
5516
|
* @param {string} hospitalId
|
|
5517
5517
|
* @param {string} hospitalSpecialtyId
|
|
5518
5518
|
* @param {boolean} [includeCurrent]
|
|
@@ -5522,7 +5522,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5522
5522
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(hospitalId: string, hospitalSpecialtyId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
5523
5523
|
/**
|
|
5524
5524
|
*
|
|
5525
|
-
* @summary Translate hospitalSpecialty (Auth
|
|
5525
|
+
* @summary Translate hospitalSpecialty (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5526
5526
|
* @param {string} hospitalId
|
|
5527
5527
|
* @param {string} hospitalSpecialtyId
|
|
5528
5528
|
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
@@ -5532,7 +5532,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5532
5532
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(hospitalId: string, hospitalSpecialtyId: string, translateHospitalSpecialtyCommand?: TranslateHospitalSpecialtyCommand, options?: any): AxiosPromise<boolean>;
|
|
5533
5533
|
/**
|
|
5534
5534
|
*
|
|
5535
|
-
* @summary Create HospitalSpecialty. (Auth
|
|
5535
|
+
* @summary Create HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5536
5536
|
* @param {string} hospitalId
|
|
5537
5537
|
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
5538
5538
|
* @param {*} [options] Override http request option.
|
|
@@ -5595,7 +5595,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5595
5595
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalServicesModel>;
|
|
5596
5596
|
/**
|
|
5597
5597
|
*
|
|
5598
|
-
* @summary Create HospitalService. (Auth
|
|
5598
|
+
* @summary Create HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5599
5599
|
* @param {string} hospitalId
|
|
5600
5600
|
* @param {string} specialtyId
|
|
5601
5601
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
@@ -5622,7 +5622,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5622
5622
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGet(hospitalId: string, specialtyId: string, serviceId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentTimetableOverridesModel>;
|
|
5623
5623
|
/**
|
|
5624
5624
|
*
|
|
5625
|
-
* @summary Delete Service appointment timetable overrides (Auth
|
|
5625
|
+
* @summary Delete Service appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5626
5626
|
* @param {string} hospitalId
|
|
5627
5627
|
* @param {string} specialtyId
|
|
5628
5628
|
* @param {string} serviceId
|
|
@@ -5633,7 +5633,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5633
5633
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch(hospitalId: string, specialtyId: string, serviceId: string, deleteServiceAppointmentTimetableOverridesCommand?: DeleteServiceAppointmentTimetableOverridesCommand, options?: any): AxiosPromise<boolean>;
|
|
5634
5634
|
/**
|
|
5635
5635
|
*
|
|
5636
|
-
* @summary Save Service appointment timetable overrides (Auth
|
|
5636
|
+
* @summary Save Service appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5637
5637
|
* @param {string} hospitalId
|
|
5638
5638
|
* @param {string} specialtyId
|
|
5639
5639
|
* @param {string} serviceId
|
|
@@ -5661,7 +5661,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5661
5661
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, excludeUnavailableTimeSlots?: boolean, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel>;
|
|
5662
5662
|
/**
|
|
5663
5663
|
*
|
|
5664
|
-
* @summary Add, update and delete service appointment timetables (Auth
|
|
5664
|
+
* @summary Add, update and delete service appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5665
5665
|
* @param {string} hospitalId
|
|
5666
5666
|
* @param {string} specialtyId
|
|
5667
5667
|
* @param {string} serviceId
|
|
@@ -5686,7 +5686,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5686
5686
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentTimetablesModel>;
|
|
5687
5687
|
/**
|
|
5688
5688
|
*
|
|
5689
|
-
* @summary Delete HospitalService (Auth
|
|
5689
|
+
* @summary Delete HospitalService (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5690
5690
|
* @param {string} hospitalId
|
|
5691
5691
|
* @param {string} specialtyId
|
|
5692
5692
|
* @param {string} serviceId
|
|
@@ -5724,7 +5724,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5724
5724
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<MediasModel>;
|
|
5725
5725
|
/**
|
|
5726
5726
|
*
|
|
5727
|
-
* @summary Delete HospitalServiceMedia (Auth
|
|
5727
|
+
* @summary Delete HospitalServiceMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5728
5728
|
* @param {string} hospitalId
|
|
5729
5729
|
* @param {string} specialtyId
|
|
5730
5730
|
* @param {string} serviceId
|
|
@@ -5746,7 +5746,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5746
5746
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
5747
5747
|
/**
|
|
5748
5748
|
*
|
|
5749
|
-
* @summary Update HospitalServiceMedia. (Auth
|
|
5749
|
+
* @summary Update HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5750
5750
|
* @param {string} hospitalId
|
|
5751
5751
|
* @param {string} specialtyId
|
|
5752
5752
|
* @param {string} serviceId
|
|
@@ -5758,7 +5758,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5758
5758
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: any): AxiosPromise<MediaModel>;
|
|
5759
5759
|
/**
|
|
5760
5760
|
*
|
|
5761
|
-
* @summary Create HospitalServiceMedia. (Auth
|
|
5761
|
+
* @summary Create HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5762
5762
|
* @param {string} hospitalId
|
|
5763
5763
|
* @param {string} specialtyId
|
|
5764
5764
|
* @param {string} serviceId
|
|
@@ -5769,7 +5769,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5769
5769
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand, options?: any): AxiosPromise<MediaModel>;
|
|
5770
5770
|
/**
|
|
5771
5771
|
*
|
|
5772
|
-
* @summary Update HospitalService. (Auth
|
|
5772
|
+
* @summary Update HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5773
5773
|
* @param {string} hospitalId
|
|
5774
5774
|
* @param {string} specialtyId
|
|
5775
5775
|
* @param {string} serviceId
|
|
@@ -5780,7 +5780,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5780
5780
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
5781
5781
|
/**
|
|
5782
5782
|
*
|
|
5783
|
-
* @summary Reactivate Hospital Service (Auth
|
|
5783
|
+
* @summary Reactivate Hospital Service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5784
5784
|
* @param {string} hospitalId
|
|
5785
5785
|
* @param {string} specialtyId
|
|
5786
5786
|
* @param {string} serviceId
|
|
@@ -5790,7 +5790,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5790
5790
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
|
|
5791
5791
|
/**
|
|
5792
5792
|
*
|
|
5793
|
-
* @summary Revalidate service (Auth
|
|
5793
|
+
* @summary Revalidate service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5794
5794
|
* @param {string} hospitalId
|
|
5795
5795
|
* @param {string} specialtyId
|
|
5796
5796
|
* @param {string} serviceId
|
|
@@ -5801,7 +5801,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5801
5801
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(hospitalId: string, specialtyId: string, serviceId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
5802
5802
|
/**
|
|
5803
5803
|
*
|
|
5804
|
-
* @summary Translate service (Auth
|
|
5804
|
+
* @summary Translate service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5805
5805
|
* @param {string} hospitalId
|
|
5806
5806
|
* @param {string} specialtyId
|
|
5807
5807
|
* @param {string} serviceId
|
|
@@ -5851,7 +5851,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5851
5851
|
apiV1HospitalsHospitalIdTagsTagIdGet(hospitalId: string, tagId: string, options?: any): AxiosPromise<HospitalTagModel>;
|
|
5852
5852
|
/**
|
|
5853
5853
|
*
|
|
5854
|
-
* @summary Translate hospital at once (Auth
|
|
5854
|
+
* @summary Translate hospital at once (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5855
5855
|
* @param {string} hospitalId
|
|
5856
5856
|
* @param {TranslateHospitalCommand} [translateHospitalCommand]
|
|
5857
5857
|
* @param {*} [options] Override http request option.
|
|
@@ -5860,7 +5860,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5860
5860
|
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand, options?: any): AxiosPromise<boolean>;
|
|
5861
5861
|
/**
|
|
5862
5862
|
*
|
|
5863
|
-
* @summary Batch HospitalWorkingDays. (Auth
|
|
5863
|
+
* @summary Batch HospitalWorkingDays. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5864
5864
|
* @param {string} hospitalId
|
|
5865
5865
|
* @param {BatchHospitalWorkingDaysCommand} [batchHospitalWorkingDaysCommand]
|
|
5866
5866
|
* @param {*} [options] Override http request option.
|
|
@@ -5885,7 +5885,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5885
5885
|
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<WorkingDaysModel>;
|
|
5886
5886
|
/**
|
|
5887
5887
|
*
|
|
5888
|
-
* @summary Create HospitalWorkingDay. (Auth
|
|
5888
|
+
* @summary Create HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5889
5889
|
* @param {string} hospitalId
|
|
5890
5890
|
* @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
|
|
5891
5891
|
* @param {*} [options] Override http request option.
|
|
@@ -5894,7 +5894,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5894
5894
|
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: any): AxiosPromise<WorkingDayModel>;
|
|
5895
5895
|
/**
|
|
5896
5896
|
*
|
|
5897
|
-
* @summary Delete HospitalWorkingDay. (Auth
|
|
5897
|
+
* @summary Delete HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5898
5898
|
* @param {string} hospitalId
|
|
5899
5899
|
* @param {string} workingDayId
|
|
5900
5900
|
* @param {*} [options] Override http request option.
|
|
@@ -5912,7 +5912,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5912
5912
|
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<WorkingDayModel>;
|
|
5913
5913
|
/**
|
|
5914
5914
|
*
|
|
5915
|
-
* @summary Update HospitalWorkingDay. (Auth
|
|
5915
|
+
* @summary Update HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
5916
5916
|
* @param {string} hospitalId
|
|
5917
5917
|
* @param {string} workingDayId
|
|
5918
5918
|
* @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
|
|
@@ -5922,7 +5922,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5922
5922
|
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand, options?: any): AxiosPromise<WorkingDayModel>;
|
|
5923
5923
|
/**
|
|
5924
5924
|
*
|
|
5925
|
-
* @summary Create Hospital. (Auth
|
|
5925
|
+
* @summary Create Hospital. (Auth policies: RequireContentManagerRole)
|
|
5926
5926
|
* @param {CreateHospitalCommand} [createHospitalCommand]
|
|
5927
5927
|
* @param {*} [options] Override http request option.
|
|
5928
5928
|
* @throws {RequiredError}
|
|
@@ -11366,7 +11366,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11366
11366
|
apiV1HospitalsGet(requestParameters?: HospitalsApiApiV1HospitalsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel, any>>;
|
|
11367
11367
|
/**
|
|
11368
11368
|
*
|
|
11369
|
-
* @summary Delete HospitalAccreditation. (Auth
|
|
11369
|
+
* @summary Delete HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11370
11370
|
* @param {HospitalsApiApiV1HospitalsHospitalIdAccreditationsAccreditationIdDeleteRequest} requestParameters Request parameters.
|
|
11371
11371
|
* @param {*} [options] Override http request option.
|
|
11372
11372
|
* @throws {RequiredError}
|
|
@@ -11375,7 +11375,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11375
11375
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAccreditationsAccreditationIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11376
11376
|
/**
|
|
11377
11377
|
*
|
|
11378
|
-
* @summary Get HospitalAccreditation. (Auth
|
|
11378
|
+
* @summary Get HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11379
11379
|
* @param {HospitalsApiApiV1HospitalsHospitalIdAccreditationsAccreditationIdGetRequest} requestParameters Request parameters.
|
|
11380
11380
|
* @param {*} [options] Override http request option.
|
|
11381
11381
|
* @throws {RequiredError}
|
|
@@ -11384,7 +11384,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11384
11384
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAccreditationsAccreditationIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationModel, any>>;
|
|
11385
11385
|
/**
|
|
11386
11386
|
*
|
|
11387
|
-
* @summary Get all HospitalAccreditations. (Auth
|
|
11387
|
+
* @summary Get all HospitalAccreditations. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11388
11388
|
* @param {HospitalsApiApiV1HospitalsHospitalIdAccreditationsGetRequest} requestParameters Request parameters.
|
|
11389
11389
|
* @param {*} [options] Override http request option.
|
|
11390
11390
|
* @throws {RequiredError}
|
|
@@ -11393,7 +11393,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11393
11393
|
apiV1HospitalsHospitalIdAccreditationsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAccreditationsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationsModel, any>>;
|
|
11394
11394
|
/**
|
|
11395
11395
|
*
|
|
11396
|
-
* @summary Create HospitalAccreditation. (Auth
|
|
11396
|
+
* @summary Create HospitalAccreditation. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11397
11397
|
* @param {HospitalsApiApiV1HospitalsHospitalIdAccreditationsPostRequest} requestParameters Request parameters.
|
|
11398
11398
|
* @param {*} [options] Override http request option.
|
|
11399
11399
|
* @throws {RequiredError}
|
|
@@ -11411,7 +11411,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11411
11411
|
apiV1HospitalsHospitalIdAppointmenttimetableoverridesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentTimetableOverridesModel, any>>;
|
|
11412
11412
|
/**
|
|
11413
11413
|
*
|
|
11414
|
-
* @summary Delete Hospital appointment timetable overrides (Auth
|
|
11414
|
+
* @summary Delete Hospital appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11415
11415
|
* @param {HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesPatchRequest} requestParameters Request parameters.
|
|
11416
11416
|
* @param {*} [options] Override http request option.
|
|
11417
11417
|
* @throws {RequiredError}
|
|
@@ -11420,7 +11420,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11420
11420
|
apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesPatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11421
11421
|
/**
|
|
11422
11422
|
*
|
|
11423
|
-
* @summary Save Hospital appointment timetable overrides (Auth
|
|
11423
|
+
* @summary Save Hospital appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11424
11424
|
* @param {HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesPostRequest} requestParameters Request parameters.
|
|
11425
11425
|
* @param {*} [options] Override http request option.
|
|
11426
11426
|
* @throws {RequiredError}
|
|
@@ -11438,7 +11438,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11438
11438
|
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAppointmentTimetablesResponseModel, any>>;
|
|
11439
11439
|
/**
|
|
11440
11440
|
*
|
|
11441
|
-
* @summary Add, update, delete Hospital appointment timetables (Auth
|
|
11441
|
+
* @summary Add, update, delete Hospital appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11442
11442
|
* @param {HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesBatchPostRequest} requestParameters Request parameters.
|
|
11443
11443
|
* @param {*} [options] Override http request option.
|
|
11444
11444
|
* @throws {RequiredError}
|
|
@@ -11456,7 +11456,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11456
11456
|
apiV1HospitalsHospitalIdAppointmenttimetablesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentTimetablesModel, any>>;
|
|
11457
11457
|
/**
|
|
11458
11458
|
*
|
|
11459
|
-
* @summary Delete bankAccountInfo (Auth
|
|
11459
|
+
* @summary Delete bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
11460
11460
|
* @param {HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDeleteRequest} requestParameters Request parameters.
|
|
11461
11461
|
* @param {*} [options] Override http request option.
|
|
11462
11462
|
* @throws {RequiredError}
|
|
@@ -11465,7 +11465,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11465
11465
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11466
11466
|
/**
|
|
11467
11467
|
*
|
|
11468
|
-
* @summary Get bankAccountInfo (Auth
|
|
11468
|
+
* @summary Get bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
11469
11469
|
* @param {HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGetRequest} requestParameters Request parameters.
|
|
11470
11470
|
* @param {*} [options] Override http request option.
|
|
11471
11471
|
* @throws {RequiredError}
|
|
@@ -11474,7 +11474,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11474
11474
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BankAccountInfoModel, any>>;
|
|
11475
11475
|
/**
|
|
11476
11476
|
*
|
|
11477
|
-
* @summary Update bankAccountInfo (Auth
|
|
11477
|
+
* @summary Update bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
11478
11478
|
* @param {HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPutRequest} requestParameters Request parameters.
|
|
11479
11479
|
* @param {*} [options] Override http request option.
|
|
11480
11480
|
* @throws {RequiredError}
|
|
@@ -11483,7 +11483,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11483
11483
|
apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BankAccountInfoModel, any>>;
|
|
11484
11484
|
/**
|
|
11485
11485
|
*
|
|
11486
|
-
* @summary Get all bankAccountInfos (Auth
|
|
11486
|
+
* @summary Get all bankAccountInfos (Auth policies: RequireDoctorRole)
|
|
11487
11487
|
* @param {HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGetRequest} requestParameters Request parameters.
|
|
11488
11488
|
* @param {*} [options] Override http request option.
|
|
11489
11489
|
* @throws {RequiredError}
|
|
@@ -11492,7 +11492,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11492
11492
|
apiV1HospitalsHospitalIdBankaccountinfosGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BankAccountInfosModel, any>>;
|
|
11493
11493
|
/**
|
|
11494
11494
|
*
|
|
11495
|
-
* @summary Create bankAccountInfo (Auth
|
|
11495
|
+
* @summary Create bankAccountInfo (Auth policies: RequireDoctorRole)
|
|
11496
11496
|
* @param {HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosPostRequest} requestParameters Request parameters.
|
|
11497
11497
|
* @param {*} [options] Override http request option.
|
|
11498
11498
|
* @throws {RequiredError}
|
|
@@ -11501,7 +11501,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11501
11501
|
apiV1HospitalsHospitalIdBankaccountinfosPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BankAccountInfoModel, any>>;
|
|
11502
11502
|
/**
|
|
11503
11503
|
*
|
|
11504
|
-
* @summary Delete hospital contact (Auth
|
|
11504
|
+
* @summary Delete hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11505
11505
|
* @param {HospitalsApiApiV1HospitalsHospitalIdContactsContactIdDeleteRequest} requestParameters Request parameters.
|
|
11506
11506
|
* @param {*} [options] Override http request option.
|
|
11507
11507
|
* @throws {RequiredError}
|
|
@@ -11519,7 +11519,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11519
11519
|
apiV1HospitalsHospitalIdContactsContactIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdContactsContactIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalContactModel, any>>;
|
|
11520
11520
|
/**
|
|
11521
11521
|
*
|
|
11522
|
-
* @summary Update hospital contact (Auth
|
|
11522
|
+
* @summary Update hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11523
11523
|
* @param {HospitalsApiApiV1HospitalsHospitalIdContactsContactIdPutRequest} requestParameters Request parameters.
|
|
11524
11524
|
* @param {*} [options] Override http request option.
|
|
11525
11525
|
* @throws {RequiredError}
|
|
@@ -11528,7 +11528,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11528
11528
|
apiV1HospitalsHospitalIdContactsContactIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdContactsContactIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalContactModel, any>>;
|
|
11529
11529
|
/**
|
|
11530
11530
|
*
|
|
11531
|
-
* @summary Reactivate hospital contact (Auth
|
|
11531
|
+
* @summary Reactivate hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11532
11532
|
* @param {HospitalsApiApiV1HospitalsHospitalIdContactsContactIdReactivatePutRequest} requestParameters Request parameters.
|
|
11533
11533
|
* @param {*} [options] Override http request option.
|
|
11534
11534
|
* @throws {RequiredError}
|
|
@@ -11546,7 +11546,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11546
11546
|
apiV1HospitalsHospitalIdContactsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdContactsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalContactsModel, any>>;
|
|
11547
11547
|
/**
|
|
11548
11548
|
*
|
|
11549
|
-
* @summary Create hospital contact (Auth
|
|
11549
|
+
* @summary Create hospital contact (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11550
11550
|
* @param {HospitalsApiApiV1HospitalsHospitalIdContactsPostRequest} requestParameters Request parameters.
|
|
11551
11551
|
* @param {*} [options] Override http request option.
|
|
11552
11552
|
* @throws {RequiredError}
|
|
@@ -11555,7 +11555,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11555
11555
|
apiV1HospitalsHospitalIdContactsPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdContactsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalContactModel, any>>;
|
|
11556
11556
|
/**
|
|
11557
11557
|
*
|
|
11558
|
-
* @summary Batch for contacts sorting (Auth
|
|
11558
|
+
* @summary Batch for contacts sorting (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11559
11559
|
* @param {HospitalsApiApiV1HospitalsHospitalIdContactsSortPutRequest} requestParameters Request parameters.
|
|
11560
11560
|
* @param {*} [options] Override http request option.
|
|
11561
11561
|
* @throws {RequiredError}
|
|
@@ -11564,7 +11564,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11564
11564
|
apiV1HospitalsHospitalIdContactsSortPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdContactsSortPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SortingResultModel, any>>;
|
|
11565
11565
|
/**
|
|
11566
11566
|
*
|
|
11567
|
-
* @summary Delete Hospital. (Auth
|
|
11567
|
+
* @summary Delete Hospital. (Auth policies: RequireManagerRole)
|
|
11568
11568
|
* @param {HospitalsApiApiV1HospitalsHospitalIdDeleteRequest} requestParameters Request parameters.
|
|
11569
11569
|
* @param {*} [options] Override http request option.
|
|
11570
11570
|
* @throws {RequiredError}
|
|
@@ -11573,7 +11573,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11573
11573
|
apiV1HospitalsHospitalIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11574
11574
|
/**
|
|
11575
11575
|
*
|
|
11576
|
-
* @summary Delete HospitalEquipment (Auth
|
|
11576
|
+
* @summary Delete HospitalEquipment (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11577
11577
|
* @param {HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdDeleteRequest} requestParameters Request parameters.
|
|
11578
11578
|
* @param {*} [options] Override http request option.
|
|
11579
11579
|
* @throws {RequiredError}
|
|
@@ -11600,7 +11600,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11600
11600
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
11601
11601
|
/**
|
|
11602
11602
|
*
|
|
11603
|
-
* @summary Delete EquipmentMedia (Auth
|
|
11603
|
+
* @summary Delete EquipmentMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11604
11604
|
* @param {HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdDeleteRequest} requestParameters Request parameters.
|
|
11605
11605
|
* @param {*} [options] Override http request option.
|
|
11606
11606
|
* @throws {RequiredError}
|
|
@@ -11618,7 +11618,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11618
11618
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
11619
11619
|
/**
|
|
11620
11620
|
*
|
|
11621
|
-
* @summary Update EquipmentMedia. (Auth
|
|
11621
|
+
* @summary Update EquipmentMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11622
11622
|
* @param {HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdPutRequest} requestParameters Request parameters.
|
|
11623
11623
|
* @param {*} [options] Override http request option.
|
|
11624
11624
|
* @throws {RequiredError}
|
|
@@ -11627,7 +11627,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11627
11627
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
11628
11628
|
/**
|
|
11629
11629
|
*
|
|
11630
|
-
* @summary Create EquipmentMedia. (Auth
|
|
11630
|
+
* @summary Create EquipmentMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11631
11631
|
* @param {HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasPostRequest} requestParameters Request parameters.
|
|
11632
11632
|
* @param {*} [options] Override http request option.
|
|
11633
11633
|
* @throws {RequiredError}
|
|
@@ -11636,7 +11636,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11636
11636
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdMediasPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
11637
11637
|
/**
|
|
11638
11638
|
*
|
|
11639
|
-
* @summary Update HospitalEquipment. (Auth
|
|
11639
|
+
* @summary Update HospitalEquipment. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11640
11640
|
* @param {HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdPutRequest} requestParameters Request parameters.
|
|
11641
11641
|
* @param {*} [options] Override http request option.
|
|
11642
11642
|
* @throws {RequiredError}
|
|
@@ -11645,7 +11645,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11645
11645
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentModel, any>>;
|
|
11646
11646
|
/**
|
|
11647
11647
|
*
|
|
11648
|
-
* @summary Reactivate HospitalEquipment. (Auth
|
|
11648
|
+
* @summary Reactivate HospitalEquipment. (Auth policies: RequireManagerRole)
|
|
11649
11649
|
* @param {HospitalsApiApiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivatePutRequest} requestParameters Request parameters.
|
|
11650
11650
|
* @param {*} [options] Override http request option.
|
|
11651
11651
|
* @throws {RequiredError}
|
|
@@ -11663,7 +11663,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11663
11663
|
apiV1HospitalsHospitalIdEquipmentsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdEquipmentsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentsModel, any>>;
|
|
11664
11664
|
/**
|
|
11665
11665
|
*
|
|
11666
|
-
* @summary Create HospitalEquipment. (Auth
|
|
11666
|
+
* @summary Create HospitalEquipment. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11667
11667
|
* @param {HospitalsApiApiV1HospitalsHospitalIdEquipmentsPostRequest} requestParameters Request parameters.
|
|
11668
11668
|
* @param {*} [options] Override http request option.
|
|
11669
11669
|
* @throws {RequiredError}
|
|
@@ -11672,7 +11672,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11672
11672
|
apiV1HospitalsHospitalIdEquipmentsPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdEquipmentsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentModel, any>>;
|
|
11673
11673
|
/**
|
|
11674
11674
|
*
|
|
11675
|
-
* @summary Delete HospitalEvaluation. (Auth
|
|
11675
|
+
* @summary Delete HospitalEvaluation. (Auth policies: RequireContentManagerRole)
|
|
11676
11676
|
* @param {HospitalsApiApiV1HospitalsHospitalIdEvaluationsEvaluationIdDeleteRequest} requestParameters Request parameters.
|
|
11677
11677
|
* @param {*} [options] Override http request option.
|
|
11678
11678
|
* @throws {RequiredError}
|
|
@@ -11699,7 +11699,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11699
11699
|
apiV1HospitalsHospitalIdEvaluationsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdEvaluationsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEvaluationsModel, any>>;
|
|
11700
11700
|
/**
|
|
11701
11701
|
*
|
|
11702
|
-
* @summary Create HospitalEvaluation. (Auth
|
|
11702
|
+
* @summary Create HospitalEvaluation. (Auth policies: RequireContentManagerRole)
|
|
11703
11703
|
* @param {HospitalsApiApiV1HospitalsHospitalIdEvaluationsPostRequest} requestParameters Request parameters.
|
|
11704
11704
|
* @param {*} [options] Override http request option.
|
|
11705
11705
|
* @throws {RequiredError}
|
|
@@ -11708,7 +11708,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11708
11708
|
apiV1HospitalsHospitalIdEvaluationsPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdEvaluationsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEvaluationModel, any>>;
|
|
11709
11709
|
/**
|
|
11710
11710
|
*
|
|
11711
|
-
* @summary Get footerNavigationItems (Auth
|
|
11711
|
+
* @summary Get footerNavigationItems (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11712
11712
|
* @param {HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeGetRequest} requestParameters Request parameters.
|
|
11713
11713
|
* @param {*} [options] Override http request option.
|
|
11714
11714
|
* @throws {RequiredError}
|
|
@@ -11717,7 +11717,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11717
11717
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FooterNavigationItemModel[], any>>;
|
|
11718
11718
|
/**
|
|
11719
11719
|
*
|
|
11720
|
-
* @summary Delete footerNavigationItem (Auth
|
|
11720
|
+
* @summary Delete footerNavigationItem (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11721
11721
|
* @param {HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDeleteRequest} requestParameters Request parameters.
|
|
11722
11722
|
* @param {*} [options] Override http request option.
|
|
11723
11723
|
* @throws {RequiredError}
|
|
@@ -11726,7 +11726,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11726
11726
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11727
11727
|
/**
|
|
11728
11728
|
*
|
|
11729
|
-
* @summary Get footerNavigationItem by Id (Auth
|
|
11729
|
+
* @summary Get footerNavigationItem by Id (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11730
11730
|
* @param {HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGetRequest} requestParameters Request parameters.
|
|
11731
11731
|
* @param {*} [options] Override http request option.
|
|
11732
11732
|
* @throws {RequiredError}
|
|
@@ -11735,7 +11735,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11735
11735
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FooterNavigationItemModel, any>>;
|
|
11736
11736
|
/**
|
|
11737
11737
|
*
|
|
11738
|
-
* @summary Get footerNavigationItems by ParentId (Auth
|
|
11738
|
+
* @summary Get footerNavigationItems by ParentId (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11739
11739
|
* @param {HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGetRequest} requestParameters Request parameters.
|
|
11740
11740
|
* @param {*} [options] Override http request option.
|
|
11741
11741
|
* @throws {RequiredError}
|
|
@@ -11744,7 +11744,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11744
11744
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FooterNavigationItemModel[], any>>;
|
|
11745
11745
|
/**
|
|
11746
11746
|
*
|
|
11747
|
-
* @summary Save footerNavigationItem (Auth
|
|
11747
|
+
* @summary Save footerNavigationItem (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11748
11748
|
* @param {HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodePostRequest} requestParameters Request parameters.
|
|
11749
11749
|
* @param {*} [options] Override http request option.
|
|
11750
11750
|
* @throws {RequiredError}
|
|
@@ -11753,7 +11753,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11753
11753
|
apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FooterNavigationItemModel, any>>;
|
|
11754
11754
|
/**
|
|
11755
11755
|
*
|
|
11756
|
-
* @summary Batch for footer navigation items sorting <br> Level 1 item only (Auth
|
|
11756
|
+
* @summary Batch for footer navigation items sorting <br> Level 1 item only (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11757
11757
|
* @param {HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeSortPutRequest} requestParameters Request parameters.
|
|
11758
11758
|
* @param {*} [options] Override http request option.
|
|
11759
11759
|
* @throws {RequiredError}
|
|
@@ -11780,7 +11780,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11780
11780
|
apiV1HospitalsHospitalIdHandlesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdHandlesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel, any>>;
|
|
11781
11781
|
/**
|
|
11782
11782
|
*
|
|
11783
|
-
* @summary Delete HospitalHandle. (Auth
|
|
11783
|
+
* @summary Delete HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11784
11784
|
* @param {HospitalsApiApiV1HospitalsHospitalIdHandlesHandleIdDeleteRequest} requestParameters Request parameters.
|
|
11785
11785
|
* @param {*} [options] Override http request option.
|
|
11786
11786
|
* @throws {RequiredError}
|
|
@@ -11798,7 +11798,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11798
11798
|
apiV1HospitalsHospitalIdHandlesHandleIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdHandlesHandleIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel, any>>;
|
|
11799
11799
|
/**
|
|
11800
11800
|
*
|
|
11801
|
-
* @summary Update HospitalHandle. (Auth
|
|
11801
|
+
* @summary Update HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11802
11802
|
* @param {HospitalsApiApiV1HospitalsHospitalIdHandlesHandleIdPutRequest} requestParameters Request parameters.
|
|
11803
11803
|
* @param {*} [options] Override http request option.
|
|
11804
11804
|
* @throws {RequiredError}
|
|
@@ -11807,7 +11807,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11807
11807
|
apiV1HospitalsHospitalIdHandlesHandleIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdHandlesHandleIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel, any>>;
|
|
11808
11808
|
/**
|
|
11809
11809
|
*
|
|
11810
|
-
* @summary Get HospitalHandle. (Auth
|
|
11810
|
+
* @summary Get HospitalHandle. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11811
11811
|
* @param {HospitalsApiApiV1HospitalsHospitalIdHandlesPostRequest} requestParameters Request parameters.
|
|
11812
11812
|
* @param {*} [options] Override http request option.
|
|
11813
11813
|
* @throws {RequiredError}
|
|
@@ -11816,7 +11816,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11816
11816
|
apiV1HospitalsHospitalIdHandlesPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdHandlesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel, any>>;
|
|
11817
11817
|
/**
|
|
11818
11818
|
*
|
|
11819
|
-
* @summary Get all HeaderNavigationItems (Auth
|
|
11819
|
+
* @summary Get all HeaderNavigationItems (Auth policies: RequireDoctorRole)
|
|
11820
11820
|
* @param {HospitalsApiApiV1HospitalsHospitalIdHeadernavigationsLanguageCodeGetRequest} requestParameters Request parameters.
|
|
11821
11821
|
* @param {*} [options] Override http request option.
|
|
11822
11822
|
* @throws {RequiredError}
|
|
@@ -11825,7 +11825,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11825
11825
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdHeadernavigationsLanguageCodeGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[], any>>;
|
|
11826
11826
|
/**
|
|
11827
11827
|
*
|
|
11828
|
-
* @summary Delete HeaderNavigationItem (Auth
|
|
11828
|
+
* @summary Delete HeaderNavigationItem (Auth policies: RequireDoctorRole)
|
|
11829
11829
|
* @param {HospitalsApiApiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdDeleteRequest} requestParameters Request parameters.
|
|
11830
11830
|
* @param {*} [options] Override http request option.
|
|
11831
11831
|
* @throws {RequiredError}
|
|
@@ -11834,7 +11834,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11834
11834
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11835
11835
|
/**
|
|
11836
11836
|
*
|
|
11837
|
-
* @summary Get HeaderNavigationItem by id (Auth
|
|
11837
|
+
* @summary Get HeaderNavigationItem by id (Auth policies: RequireDoctorRole)
|
|
11838
11838
|
* @param {HospitalsApiApiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdGetRequest} requestParameters Request parameters.
|
|
11839
11839
|
* @param {*} [options] Override http request option.
|
|
11840
11840
|
* @throws {RequiredError}
|
|
@@ -11843,7 +11843,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11843
11843
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdHeadernavigationsLanguageCodeIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel, any>>;
|
|
11844
11844
|
/**
|
|
11845
11845
|
*
|
|
11846
|
-
* @summary Get HeaderNavigationItems by parent id (Auth
|
|
11846
|
+
* @summary Get HeaderNavigationItems by parent id (Auth policies: RequireDoctorRole)
|
|
11847
11847
|
* @param {HospitalsApiApiV1HospitalsHospitalIdHeadernavigationsLanguageCodeParentIdSubitemsGetRequest} requestParameters Request parameters.
|
|
11848
11848
|
* @param {*} [options] Override http request option.
|
|
11849
11849
|
* @throws {RequiredError}
|
|
@@ -11852,7 +11852,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11852
11852
|
apiV1HospitalsHospitalIdHeadernavigationsLanguageCodeParentIdSubitemsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdHeadernavigationsLanguageCodeParentIdSubitemsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[], any>>;
|
|
11853
11853
|
/**
|
|
11854
11854
|
*
|
|
11855
|
-
* @summary Save HeaderNavigationItem (Auth
|
|
11855
|
+
* @summary Save HeaderNavigationItem (Auth policies: RequireDoctorRole)
|
|
11856
11856
|
* @param {HospitalsApiApiV1HospitalsHospitalIdHeadernavigationsLanguageCodePostRequest} requestParameters Request parameters.
|
|
11857
11857
|
* @param {*} [options] Override http request option.
|
|
11858
11858
|
* @throws {RequiredError}
|
|
@@ -11870,7 +11870,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11870
11870
|
apiV1HospitalsHospitalIdLandingsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdLandingsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingsModel, any>>;
|
|
11871
11871
|
/**
|
|
11872
11872
|
*
|
|
11873
|
-
* @summary Delete Landing. (Auth
|
|
11873
|
+
* @summary Delete Landing. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11874
11874
|
* @param {HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdDeleteRequest} requestParameters Request parameters.
|
|
11875
11875
|
* @param {*} [options] Override http request option.
|
|
11876
11876
|
* @throws {RequiredError}
|
|
@@ -11888,7 +11888,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11888
11888
|
apiV1HospitalsHospitalIdLandingsLandingIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel, any>>;
|
|
11889
11889
|
/**
|
|
11890
11890
|
*
|
|
11891
|
-
* @summary Update Landing (Auth
|
|
11891
|
+
* @summary Update Landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11892
11892
|
* @param {HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdPutRequest} requestParameters Request parameters.
|
|
11893
11893
|
* @param {*} [options] Override http request option.
|
|
11894
11894
|
* @throws {RequiredError}
|
|
@@ -11897,7 +11897,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11897
11897
|
apiV1HospitalsHospitalIdLandingsLandingIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel, any>>;
|
|
11898
11898
|
/**
|
|
11899
11899
|
*
|
|
11900
|
-
* @summary Reactivate Landing (Auth
|
|
11900
|
+
* @summary Reactivate Landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11901
11901
|
* @param {HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdReactivatePutRequest} requestParameters Request parameters.
|
|
11902
11902
|
* @param {*} [options] Override http request option.
|
|
11903
11903
|
* @throws {RequiredError}
|
|
@@ -11906,7 +11906,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11906
11906
|
apiV1HospitalsHospitalIdLandingsLandingIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11907
11907
|
/**
|
|
11908
11908
|
*
|
|
11909
|
-
* @summary Revalidate landing (Auth
|
|
11909
|
+
* @summary Revalidate landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11910
11910
|
* @param {HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdRevalidatePostRequest} requestParameters Request parameters.
|
|
11911
11911
|
* @param {*} [options] Override http request option.
|
|
11912
11912
|
* @throws {RequiredError}
|
|
@@ -11915,7 +11915,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11915
11915
|
apiV1HospitalsHospitalIdLandingsLandingIdRevalidatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdRevalidatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11916
11916
|
/**
|
|
11917
11917
|
*
|
|
11918
|
-
* @summary Translate landing (Auth
|
|
11918
|
+
* @summary Translate landing (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11919
11919
|
* @param {HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdTranslatePostRequest} requestParameters Request parameters.
|
|
11920
11920
|
* @param {*} [options] Override http request option.
|
|
11921
11921
|
* @throws {RequiredError}
|
|
@@ -11924,7 +11924,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11924
11924
|
apiV1HospitalsHospitalIdLandingsLandingIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdLandingsLandingIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11925
11925
|
/**
|
|
11926
11926
|
*
|
|
11927
|
-
* @summary Create HospitalLandings. (Auth
|
|
11927
|
+
* @summary Create HospitalLandings. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11928
11928
|
* @param {HospitalsApiApiV1HospitalsHospitalIdLandingsPostRequest} requestParameters Request parameters.
|
|
11929
11929
|
* @param {*} [options] Override http request option.
|
|
11930
11930
|
* @throws {RequiredError}
|
|
@@ -11942,7 +11942,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11942
11942
|
apiV1HospitalsHospitalIdLanguagesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdLanguagesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalLanguagesModel, any>>;
|
|
11943
11943
|
/**
|
|
11944
11944
|
*
|
|
11945
|
-
* @summary Delete GetAllLanguage. (Auth
|
|
11945
|
+
* @summary Delete GetAllLanguage. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11946
11946
|
* @param {HospitalsApiApiV1HospitalsHospitalIdLanguagesLanguageCodeDeleteRequest} requestParameters Request parameters.
|
|
11947
11947
|
* @param {*} [options] Override http request option.
|
|
11948
11948
|
* @throws {RequiredError}
|
|
@@ -11951,7 +11951,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11951
11951
|
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdLanguagesLanguageCodeDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11952
11952
|
/**
|
|
11953
11953
|
*
|
|
11954
|
-
* @summary Update HospitalLanguage (Auth
|
|
11954
|
+
* @summary Update HospitalLanguage (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11955
11955
|
* @param {HospitalsApiApiV1HospitalsHospitalIdLanguagesLanguageCodePutRequest} requestParameters Request parameters.
|
|
11956
11956
|
* @param {*} [options] Override http request option.
|
|
11957
11957
|
* @throws {RequiredError}
|
|
@@ -11960,7 +11960,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11960
11960
|
apiV1HospitalsHospitalIdLanguagesLanguageCodePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdLanguagesLanguageCodePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11961
11961
|
/**
|
|
11962
11962
|
*
|
|
11963
|
-
* @summary Create HospitalLanguages. (Auth
|
|
11963
|
+
* @summary Create HospitalLanguages. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
11964
11964
|
* @param {HospitalsApiApiV1HospitalsHospitalIdLanguagesPostRequest} requestParameters Request parameters.
|
|
11965
11965
|
* @param {*} [options] Override http request option.
|
|
11966
11966
|
* @throws {RequiredError}
|
|
@@ -11969,7 +11969,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11969
11969
|
apiV1HospitalsHospitalIdLanguagesPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdLanguagesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11970
11970
|
/**
|
|
11971
11971
|
*
|
|
11972
|
-
* @summary Get managers (Auth
|
|
11972
|
+
* @summary Get managers (Auth policies: RequireDoctorRole)
|
|
11973
11973
|
* @param {HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest} requestParameters Request parameters.
|
|
11974
11974
|
* @param {*} [options] Override http request option.
|
|
11975
11975
|
* @throws {RequiredError}
|
|
@@ -11978,7 +11978,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11978
11978
|
apiV1HospitalsHospitalIdManagersGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagersModel, any>>;
|
|
11979
11979
|
/**
|
|
11980
11980
|
*
|
|
11981
|
-
* @summary Delete manager (Auth
|
|
11981
|
+
* @summary Delete manager (Auth policies: RequireManagerRole)
|
|
11982
11982
|
* @param {HospitalsApiApiV1HospitalsHospitalIdManagersManagerIdDeleteRequest} requestParameters Request parameters.
|
|
11983
11983
|
* @param {*} [options] Override http request option.
|
|
11984
11984
|
* @throws {RequiredError}
|
|
@@ -11987,7 +11987,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11987
11987
|
apiV1HospitalsHospitalIdManagersManagerIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdManagersManagerIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11988
11988
|
/**
|
|
11989
11989
|
*
|
|
11990
|
-
* @summary Get manager (Auth
|
|
11990
|
+
* @summary Get manager (Auth policies: RequireDoctorRole)
|
|
11991
11991
|
* @param {HospitalsApiApiV1HospitalsHospitalIdManagersManagerIdGetRequest} requestParameters Request parameters.
|
|
11992
11992
|
* @param {*} [options] Override http request option.
|
|
11993
11993
|
* @throws {RequiredError}
|
|
@@ -11996,7 +11996,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11996
11996
|
apiV1HospitalsHospitalIdManagersManagerIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdManagersManagerIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel, any>>;
|
|
11997
11997
|
/**
|
|
11998
11998
|
* PUT: /api/v1/hospitals/{hospitlaId}/managers/{managerId} { \"email\": \"emailaddress@icloudhospital.com\", \"firstName\": \"First\", \"lastName\": \"Last\", \"phone\": \"+82 1012340000\", \"photo\": \"\", \"photoThumbnail\": \"\", \"gender\": \"Male\", \"dateOfBirth\": \"2023-08-07T06:02:05.652Z\", \"timeZone\": \"Asia/Seoul\" }
|
|
11999
|
-
* @summary Update manager (Auth
|
|
11999
|
+
* @summary Update manager (Auth policies: RequireDoctorRole)
|
|
12000
12000
|
* @param {HospitalsApiApiV1HospitalsHospitalIdManagersManagerIdPutRequest} requestParameters Request parameters.
|
|
12001
12001
|
* @param {*} [options] Override http request option.
|
|
12002
12002
|
* @throws {RequiredError}
|
|
@@ -12005,7 +12005,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12005
12005
|
apiV1HospitalsHospitalIdManagersManagerIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdManagersManagerIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerModel, any>>;
|
|
12006
12006
|
/**
|
|
12007
12007
|
* POST: /api/v1/hospitals/{hospitlaId}/managers { \"email\": \"emailaddress@icloudhospital.com\", \"firstName\": \"First\", \"lastName\": \"Last\", \"phone\": \"+82 1012340000\", \"photo\": \"\", \"photoThumbnail\": \"\", \"gender\": \"Male\", \"dateOfBirth\": \"2023-08-07T06:02:05.652Z\", \"timeZone\": \"Asia/Seoul\" }
|
|
12008
|
-
* @summary Create manager (Auth
|
|
12008
|
+
* @summary Create manager (Auth policies: RequireManagerRole)
|
|
12009
12009
|
* @param {HospitalsApiApiV1HospitalsHospitalIdManagersPostRequest} requestParameters Request parameters.
|
|
12010
12010
|
* @param {*} [options] Override http request option.
|
|
12011
12011
|
* @throws {RequiredError}
|
|
@@ -12023,7 +12023,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12023
12023
|
apiV1HospitalsHospitalIdMediasGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdMediasGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
12024
12024
|
/**
|
|
12025
12025
|
*
|
|
12026
|
-
* @summary Delete HospitalMedia (Auth
|
|
12026
|
+
* @summary Delete HospitalMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12027
12027
|
* @param {HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdDeleteRequest} requestParameters Request parameters.
|
|
12028
12028
|
* @param {*} [options] Override http request option.
|
|
12029
12029
|
* @throws {RequiredError}
|
|
@@ -12041,7 +12041,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12041
12041
|
apiV1HospitalsHospitalIdMediasMediaIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
12042
12042
|
/**
|
|
12043
12043
|
*
|
|
12044
|
-
* @summary Update HospitalMedia. (Auth
|
|
12044
|
+
* @summary Update HospitalMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12045
12045
|
* @param {HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdPutRequest} requestParameters Request parameters.
|
|
12046
12046
|
* @param {*} [options] Override http request option.
|
|
12047
12047
|
* @throws {RequiredError}
|
|
@@ -12050,7 +12050,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12050
12050
|
apiV1HospitalsHospitalIdMediasMediaIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
12051
12051
|
/**
|
|
12052
12052
|
*
|
|
12053
|
-
* @summary Create HospitalMedia. (Auth
|
|
12053
|
+
* @summary Create HospitalMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12054
12054
|
* @param {HospitalsApiApiV1HospitalsHospitalIdMediasPostRequest} requestParameters Request parameters.
|
|
12055
12055
|
* @param {*} [options] Override http request option.
|
|
12056
12056
|
* @throws {RequiredError}
|
|
@@ -12059,7 +12059,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12059
12059
|
apiV1HospitalsHospitalIdMediasPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdMediasPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
12060
12060
|
/**
|
|
12061
12061
|
*
|
|
12062
|
-
* @summary Get notices (Auth
|
|
12062
|
+
* @summary Get notices (Auth policies: RequireLocalManagerRole)
|
|
12063
12063
|
* @param {HospitalsApiApiV1HospitalsHospitalIdNoticesGetRequest} requestParameters Request parameters.
|
|
12064
12064
|
* @param {*} [options] Override http request option.
|
|
12065
12065
|
* @throws {RequiredError}
|
|
@@ -12068,7 +12068,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12068
12068
|
apiV1HospitalsHospitalIdNoticesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdNoticesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NoticesModel, any>>;
|
|
12069
12069
|
/**
|
|
12070
12070
|
*
|
|
12071
|
-
* @summary Delete notice (Auth
|
|
12071
|
+
* @summary Delete notice (Auth policies: RequireLocalManagerRole)
|
|
12072
12072
|
* @param {HospitalsApiApiV1HospitalsHospitalIdNoticesNoticeIdDeleteRequest} requestParameters Request parameters.
|
|
12073
12073
|
* @param {*} [options] Override http request option.
|
|
12074
12074
|
* @throws {RequiredError}
|
|
@@ -12077,7 +12077,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12077
12077
|
apiV1HospitalsHospitalIdNoticesNoticeIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdNoticesNoticeIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12078
12078
|
/**
|
|
12079
12079
|
*
|
|
12080
|
-
* @summary Get notice by id (Auth
|
|
12080
|
+
* @summary Get notice by id (Auth policies: RequireLocalManagerRole)
|
|
12081
12081
|
* @param {HospitalsApiApiV1HospitalsHospitalIdNoticesNoticeIdGetRequest} requestParameters Request parameters.
|
|
12082
12082
|
* @param {*} [options] Override http request option.
|
|
12083
12083
|
* @throws {RequiredError}
|
|
@@ -12086,7 +12086,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12086
12086
|
apiV1HospitalsHospitalIdNoticesNoticeIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdNoticesNoticeIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NoticeModel, any>>;
|
|
12087
12087
|
/**
|
|
12088
12088
|
*
|
|
12089
|
-
* @summary Update notice (Auth
|
|
12089
|
+
* @summary Update notice (Auth policies: RequireLocalManagerRole)
|
|
12090
12090
|
* @param {HospitalsApiApiV1HospitalsHospitalIdNoticesNoticeIdPutRequest} requestParameters Request parameters.
|
|
12091
12091
|
* @param {*} [options] Override http request option.
|
|
12092
12092
|
* @throws {RequiredError}
|
|
@@ -12095,7 +12095,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12095
12095
|
apiV1HospitalsHospitalIdNoticesNoticeIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdNoticesNoticeIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NoticeModel, any>>;
|
|
12096
12096
|
/**
|
|
12097
12097
|
*
|
|
12098
|
-
* @summary Reactivate notice (Auth
|
|
12098
|
+
* @summary Reactivate notice (Auth policies: RequireLocalManagerRole)
|
|
12099
12099
|
* @param {HospitalsApiApiV1HospitalsHospitalIdNoticesNoticeIdReactivatePutRequest} requestParameters Request parameters.
|
|
12100
12100
|
* @param {*} [options] Override http request option.
|
|
12101
12101
|
* @throws {RequiredError}
|
|
@@ -12104,7 +12104,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12104
12104
|
apiV1HospitalsHospitalIdNoticesNoticeIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdNoticesNoticeIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12105
12105
|
/**
|
|
12106
12106
|
*
|
|
12107
|
-
* @summary Create notice (Auth
|
|
12107
|
+
* @summary Create notice (Auth policies: RequireLocalManagerRole)
|
|
12108
12108
|
* @param {HospitalsApiApiV1HospitalsHospitalIdNoticesPostRequest} requestParameters Request parameters.
|
|
12109
12109
|
* @param {*} [options] Override http request option.
|
|
12110
12110
|
* @throws {RequiredError}
|
|
@@ -12113,7 +12113,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12113
12113
|
apiV1HospitalsHospitalIdNoticesPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdNoticesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NoticeModel, any>>;
|
|
12114
12114
|
/**
|
|
12115
12115
|
*
|
|
12116
|
-
* @summary Batch for notices sorting (Auth
|
|
12116
|
+
* @summary Batch for notices sorting (Auth policies: RequireLocalManagerRole)
|
|
12117
12117
|
* @param {HospitalsApiApiV1HospitalsHospitalIdNoticesSortPutRequest} requestParameters Request parameters.
|
|
12118
12118
|
* @param {*} [options] Override http request option.
|
|
12119
12119
|
* @throws {RequiredError}
|
|
@@ -12122,7 +12122,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12122
12122
|
apiV1HospitalsHospitalIdNoticesSortPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdNoticesSortPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SortingResultModel, any>>;
|
|
12123
12123
|
/**
|
|
12124
12124
|
*
|
|
12125
|
-
* @summary Get hospital pageItems (Auth
|
|
12125
|
+
* @summary Get hospital pageItems (Auth policies: RequireDoctorRole)
|
|
12126
12126
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesGetRequest} requestParameters Request parameters.
|
|
12127
12127
|
* @param {*} [options] Override http request option.
|
|
12128
12128
|
* @throws {RequiredError}
|
|
@@ -12131,7 +12131,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12131
12131
|
apiV1HospitalsHospitalIdPagesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PageItemsModel, any>>;
|
|
12132
12132
|
/**
|
|
12133
12133
|
*
|
|
12134
|
-
* @summary Delete page (Auth
|
|
12134
|
+
* @summary Delete page (Auth policies: RequireDoctorRole)
|
|
12135
12135
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdDeleteRequest} requestParameters Request parameters.
|
|
12136
12136
|
* @param {*} [options] Override http request option.
|
|
12137
12137
|
* @throws {RequiredError}
|
|
@@ -12140,7 +12140,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12140
12140
|
apiV1HospitalsHospitalIdPagesPageItemIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12141
12141
|
/**
|
|
12142
12142
|
*
|
|
12143
|
-
* @summary Get hospital page (Auth
|
|
12143
|
+
* @summary Get hospital page (Auth policies: RequireDoctorRole)
|
|
12144
12144
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdGetRequest} requestParameters Request parameters.
|
|
12145
12145
|
* @param {*} [options] Override http request option.
|
|
12146
12146
|
* @throws {RequiredError}
|
|
@@ -12149,7 +12149,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12149
12149
|
apiV1HospitalsHospitalIdPagesPageItemIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PageItemModel, any>>;
|
|
12150
12150
|
/**
|
|
12151
12151
|
*
|
|
12152
|
-
* @summary Update page (Auth
|
|
12152
|
+
* @summary Update page (Auth policies: RequireDoctorRole)
|
|
12153
12153
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdPutRequest} requestParameters Request parameters.
|
|
12154
12154
|
* @param {*} [options] Override http request option.
|
|
12155
12155
|
* @throws {RequiredError}
|
|
@@ -12158,7 +12158,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12158
12158
|
apiV1HospitalsHospitalIdPagesPageItemIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PageItemModel, any>>;
|
|
12159
12159
|
/**
|
|
12160
12160
|
*
|
|
12161
|
-
* @summary Reactivate page (Auth
|
|
12161
|
+
* @summary Reactivate page (Auth policies: RequireDoctorRole)
|
|
12162
12162
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdReactivatePutRequest} requestParameters Request parameters.
|
|
12163
12163
|
* @param {*} [options] Override http request option.
|
|
12164
12164
|
* @throws {RequiredError}
|
|
@@ -12167,7 +12167,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12167
12167
|
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12168
12168
|
/**
|
|
12169
12169
|
*
|
|
12170
|
-
* @summary Translate pageBlocks in section (Auth
|
|
12170
|
+
* @summary Translate pageBlocks in section (Auth policies: RequireDoctorRole)
|
|
12171
12171
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePostRequest} requestParameters Request parameters.
|
|
12172
12172
|
* @param {*} [options] Override http request option.
|
|
12173
12173
|
* @throws {RequiredError}
|
|
@@ -12176,7 +12176,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12176
12176
|
apiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslationBatchResultModel, any>>;
|
|
12177
12177
|
/**
|
|
12178
12178
|
*
|
|
12179
|
-
* @summary Translate page (Auth
|
|
12179
|
+
* @summary Translate page (Auth policies: RequireDoctorRole)
|
|
12180
12180
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdTranslatePostRequest} requestParameters Request parameters.
|
|
12181
12181
|
* @param {*} [options] Override http request option.
|
|
12182
12182
|
* @throws {RequiredError}
|
|
@@ -12185,7 +12185,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12185
12185
|
apiV1HospitalsHospitalIdPagesPageItemIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslationBatchResultModel, any>>;
|
|
12186
12186
|
/**
|
|
12187
12187
|
*
|
|
12188
|
-
* @summary Create page (Auth
|
|
12188
|
+
* @summary Create page (Auth policies: RequireDoctorRole)
|
|
12189
12189
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPostRequest} requestParameters Request parameters.
|
|
12190
12190
|
* @param {*} [options] Override http request option.
|
|
12191
12191
|
* @throws {RequiredError}
|
|
@@ -12194,7 +12194,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12194
12194
|
apiV1HospitalsHospitalIdPagesPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12195
12195
|
/**
|
|
12196
12196
|
*
|
|
12197
|
-
* @summary Get hospitalPaymentMethods list (Auth
|
|
12197
|
+
* @summary Get hospitalPaymentMethods list (Auth policies: RequireDoctorRole)
|
|
12198
12198
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGetRequest} requestParameters Request parameters.
|
|
12199
12199
|
* @param {*} [options] Override http request option.
|
|
12200
12200
|
* @throws {RequiredError}
|
|
@@ -12203,7 +12203,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12203
12203
|
apiV1HospitalsHospitalIdPaymentmethodsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalPaymentMethodsModel, any>>;
|
|
12204
12204
|
/**
|
|
12205
12205
|
*
|
|
12206
|
-
* @summary Delete hospitalPaymentMethod (Auth
|
|
12206
|
+
* @summary Delete hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
12207
12207
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdDeleteRequest} requestParameters Request parameters.
|
|
12208
12208
|
* @param {*} [options] Override http request option.
|
|
12209
12209
|
* @throws {RequiredError}
|
|
@@ -12212,7 +12212,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12212
12212
|
apiV1HospitalsHospitalIdPaymentmethodsIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12213
12213
|
/**
|
|
12214
12214
|
*
|
|
12215
|
-
* @summary Get hospitalPaymentMethod (Auth
|
|
12215
|
+
* @summary Get hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
12216
12216
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdGetRequest} requestParameters Request parameters.
|
|
12217
12217
|
* @param {*} [options] Override http request option.
|
|
12218
12218
|
* @throws {RequiredError}
|
|
@@ -12221,7 +12221,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12221
12221
|
apiV1HospitalsHospitalIdPaymentmethodsIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalPaymentMethodModel, any>>;
|
|
12222
12222
|
/**
|
|
12223
12223
|
*
|
|
12224
|
-
* @summary Update hospitalPaymentMethod (Auth
|
|
12224
|
+
* @summary Update hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
12225
12225
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdPutRequest} requestParameters Request parameters.
|
|
12226
12226
|
* @param {*} [options] Override http request option.
|
|
12227
12227
|
* @throws {RequiredError}
|
|
@@ -12230,7 +12230,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12230
12230
|
apiV1HospitalsHospitalIdPaymentmethodsIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalPaymentMethodModel, any>>;
|
|
12231
12231
|
/**
|
|
12232
12232
|
*
|
|
12233
|
-
* @summary Create hospitalPaymentMethod (Auth
|
|
12233
|
+
* @summary Create hospitalPaymentMethod (Auth policies: RequireDoctorRole)
|
|
12234
12234
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsPostRequest} requestParameters Request parameters.
|
|
12235
12235
|
* @param {*} [options] Override http request option.
|
|
12236
12236
|
* @throws {RequiredError}
|
|
@@ -12248,7 +12248,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12248
12248
|
apiV1HospitalsHospitalIdPoliciesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PoliciesModel, any>>;
|
|
12249
12249
|
/**
|
|
12250
12250
|
*
|
|
12251
|
-
* @summary Delete policy (Auth
|
|
12251
|
+
* @summary Delete policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12252
12252
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdDeleteRequest} requestParameters Request parameters.
|
|
12253
12253
|
* @param {*} [options] Override http request option.
|
|
12254
12254
|
* @throws {RequiredError}
|
|
@@ -12266,7 +12266,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12266
12266
|
apiV1HospitalsHospitalIdPoliciesPolicyIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyModel, any>>;
|
|
12267
12267
|
/**
|
|
12268
12268
|
*
|
|
12269
|
-
* @summary Update policy (Auth
|
|
12269
|
+
* @summary Update policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12270
12270
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdPutRequest} requestParameters Request parameters.
|
|
12271
12271
|
* @param {*} [options] Override http request option.
|
|
12272
12272
|
* @throws {RequiredError}
|
|
@@ -12275,7 +12275,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12275
12275
|
apiV1HospitalsHospitalIdPoliciesPolicyIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyModel, any>>;
|
|
12276
12276
|
/**
|
|
12277
12277
|
*
|
|
12278
|
-
* @summary Reactivate policy (Auth
|
|
12278
|
+
* @summary Reactivate policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12279
12279
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePutRequest} requestParameters Request parameters.
|
|
12280
12280
|
* @param {*} [options] Override http request option.
|
|
12281
12281
|
* @throws {RequiredError}
|
|
@@ -12284,7 +12284,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12284
12284
|
apiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12285
12285
|
/**
|
|
12286
12286
|
*
|
|
12287
|
-
* @summary Create policy (Auth
|
|
12287
|
+
* @summary Create policy (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12288
12288
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesPostRequest} requestParameters Request parameters.
|
|
12289
12289
|
* @param {*} [options] Override http request option.
|
|
12290
12290
|
* @throws {RequiredError}
|
|
@@ -12293,7 +12293,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12293
12293
|
apiV1HospitalsHospitalIdPoliciesPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyModel, any>>;
|
|
12294
12294
|
/**
|
|
12295
12295
|
*
|
|
12296
|
-
* @summary Update Hospital. (Auth
|
|
12296
|
+
* @summary Update Hospital. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12297
12297
|
* @param {HospitalsApiApiV1HospitalsHospitalIdPutRequest} requestParameters Request parameters.
|
|
12298
12298
|
* @param {*} [options] Override http request option.
|
|
12299
12299
|
* @throws {RequiredError}
|
|
@@ -12311,7 +12311,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12311
12311
|
apiV1HospitalsHospitalIdRatingsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingsModel, any>>;
|
|
12312
12312
|
/**
|
|
12313
12313
|
*
|
|
12314
|
-
* @summary Delete hospitalRating (Auth
|
|
12314
|
+
* @summary Delete hospitalRating (Auth policies: RequireDoctorRole)
|
|
12315
12315
|
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsIdDeleteRequest} requestParameters Request parameters.
|
|
12316
12316
|
* @param {*} [options] Override http request option.
|
|
12317
12317
|
* @throws {RequiredError}
|
|
@@ -12329,7 +12329,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12329
12329
|
apiV1HospitalsHospitalIdRatingsIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingModel, any>>;
|
|
12330
12330
|
/**
|
|
12331
12331
|
*
|
|
12332
|
-
* @summary Update hospitalRating (Auth
|
|
12332
|
+
* @summary Update hospitalRating (Auth policies: RequireDoctorRole)
|
|
12333
12333
|
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsIdPutRequest} requestParameters Request parameters.
|
|
12334
12334
|
* @param {*} [options] Override http request option.
|
|
12335
12335
|
* @throws {RequiredError}
|
|
@@ -12338,7 +12338,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12338
12338
|
apiV1HospitalsHospitalIdRatingsIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingModel, any>>;
|
|
12339
12339
|
/**
|
|
12340
12340
|
*
|
|
12341
|
-
* @summary Create hospitalRating (Auth
|
|
12341
|
+
* @summary Create hospitalRating (Auth policies: RequireDoctorRole)
|
|
12342
12342
|
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest} requestParameters Request parameters.
|
|
12343
12343
|
* @param {*} [options] Override http request option.
|
|
12344
12344
|
* @throws {RequiredError}
|
|
@@ -12347,7 +12347,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12347
12347
|
apiV1HospitalsHospitalIdRatingsPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingModel, any>>;
|
|
12348
12348
|
/**
|
|
12349
12349
|
*
|
|
12350
|
-
* @summary Sort hospitalRating entities (Auth
|
|
12350
|
+
* @summary Sort hospitalRating entities (Auth policies: RequireDoctorRole)
|
|
12351
12351
|
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsSortPutRequest} requestParameters Request parameters.
|
|
12352
12352
|
* @param {*} [options] Override http request option.
|
|
12353
12353
|
* @throws {RequiredError}
|
|
@@ -12356,7 +12356,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12356
12356
|
apiV1HospitalsHospitalIdRatingsSortPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsSortPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SortingResultModel, any>>;
|
|
12357
12357
|
/**
|
|
12358
12358
|
*
|
|
12359
|
-
* @summary Delete HospitalSpecialty. (Auth
|
|
12359
|
+
* @summary Delete HospitalSpecialty. (Auth policies: RequireManagerRole)
|
|
12360
12360
|
* @param {HospitalsApiApiV1HospitalsHospitalIdReactivatePutRequest} requestParameters Request parameters.
|
|
12361
12361
|
* @param {*} [options] Override http request option.
|
|
12362
12362
|
* @throws {RequiredError}
|
|
@@ -12365,7 +12365,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12365
12365
|
apiV1HospitalsHospitalIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12366
12366
|
/**
|
|
12367
12367
|
*
|
|
12368
|
-
* @summary Revalidate hospital (Auth
|
|
12368
|
+
* @summary Revalidate hospital (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12369
12369
|
* @param {HospitalsApiApiV1HospitalsHospitalIdRevalidatePostRequest} requestParameters Request parameters.
|
|
12370
12370
|
* @param {*} [options] Override http request option.
|
|
12371
12371
|
* @throws {RequiredError}
|
|
@@ -12374,7 +12374,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12374
12374
|
apiV1HospitalsHospitalIdRevalidatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRevalidatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12375
12375
|
/**
|
|
12376
12376
|
*
|
|
12377
|
-
* @summary Delete secure file container (Auth
|
|
12377
|
+
* @summary Delete secure file container (Auth policies: RequireLocalManagerRole)
|
|
12378
12378
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDeleteRequest} requestParameters Request parameters.
|
|
12379
12379
|
* @param {*} [options] Override http request option.
|
|
12380
12380
|
* @throws {RequiredError}
|
|
@@ -12383,7 +12383,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12383
12383
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12384
12384
|
/**
|
|
12385
12385
|
*
|
|
12386
|
-
* @summary Get file content (Auth
|
|
12386
|
+
* @summary Get file content (Auth policies: RequireLocalManagerRole)
|
|
12387
12387
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGetRequest} requestParameters Request parameters.
|
|
12388
12388
|
* @param {*} [options] Override http request option.
|
|
12389
12389
|
* @throws {RequiredError}
|
|
@@ -12392,7 +12392,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12392
12392
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12393
12393
|
/**
|
|
12394
12394
|
*
|
|
12395
|
-
* @summary Get secure file url with read access (Auth
|
|
12395
|
+
* @summary Get secure file url with read access (Auth policies: RequireLocalManagerRole)
|
|
12396
12396
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGetRequest} requestParameters Request parameters.
|
|
12397
12397
|
* @param {*} [options] Override http request option.
|
|
12398
12398
|
* @throws {RequiredError}
|
|
@@ -12401,7 +12401,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12401
12401
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
12402
12402
|
/**
|
|
12403
12403
|
*
|
|
12404
|
-
* @summary Get secure container (Auth
|
|
12404
|
+
* @summary Get secure container (Auth policies: RequireLocalManagerRole)
|
|
12405
12405
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGetRequest} requestParameters Request parameters.
|
|
12406
12406
|
* @param {*} [options] Override http request option.
|
|
12407
12407
|
* @throws {RequiredError}
|
|
@@ -12410,7 +12410,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12410
12410
|
apiV1HospitalsHospitalIdSecurecontainersContainerIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecureContainerModel, any>>;
|
|
12411
12411
|
/**
|
|
12412
12412
|
*
|
|
12413
|
-
* @summary Get secure containers (Auth
|
|
12413
|
+
* @summary Get secure containers (Auth policies: RequireLocalManagerRole)
|
|
12414
12414
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGetRequest} requestParameters Request parameters.
|
|
12415
12415
|
* @param {*} [options] Override http request option.
|
|
12416
12416
|
* @throws {RequiredError}
|
|
@@ -12419,7 +12419,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12419
12419
|
apiV1HospitalsHospitalIdSecurecontainersGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecureContainersModel, any>>;
|
|
12420
12420
|
/**
|
|
12421
12421
|
*
|
|
12422
|
-
* @summary Create secure file container (Auth
|
|
12422
|
+
* @summary Create secure file container (Auth policies: RequireLocalManagerRole)
|
|
12423
12423
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest} requestParameters Request parameters.
|
|
12424
12424
|
* @param {*} [options] Override http request option.
|
|
12425
12425
|
* @throws {RequiredError}
|
|
@@ -12428,7 +12428,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12428
12428
|
apiV1HospitalsHospitalIdSecurecontainersPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecureContainerModel, any>>;
|
|
12429
12429
|
/**
|
|
12430
12430
|
*
|
|
12431
|
-
* @summary Get file content by file name (Auth
|
|
12431
|
+
* @summary Get file content by file name (Auth policies: RequireLocalManagerRole)
|
|
12432
12432
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameGetRequest} requestParameters Request parameters.
|
|
12433
12433
|
* @param {*} [options] Override http request option.
|
|
12434
12434
|
* @throws {RequiredError}
|
|
@@ -12437,7 +12437,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12437
12437
|
apiV1HospitalsHospitalIdSecurefilesFileNameGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12438
12438
|
/**
|
|
12439
12439
|
*
|
|
12440
|
-
* @summary Get secure file url with read access by file name (Auth
|
|
12440
|
+
* @summary Get secure file url with read access by file name (Auth policies: RequireLocalManagerRole)
|
|
12441
12441
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameReadGetRequest} requestParameters Request parameters.
|
|
12442
12442
|
* @param {*} [options] Override http request option.
|
|
12443
12443
|
* @throws {RequiredError}
|
|
@@ -12446,7 +12446,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12446
12446
|
apiV1HospitalsHospitalIdSecurefilesFileNameReadGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesFileNameReadGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
12447
12447
|
/**
|
|
12448
12448
|
*
|
|
12449
|
-
* @summary Get file content by uri (Auth
|
|
12449
|
+
* @summary Get file content by uri (Auth policies: RequireLocalManagerRole)
|
|
12450
12450
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesGetRequest} requestParameters Request parameters.
|
|
12451
12451
|
* @param {*} [options] Override http request option.
|
|
12452
12452
|
* @throws {RequiredError}
|
|
@@ -12455,7 +12455,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12455
12455
|
apiV1HospitalsHospitalIdSecurefilesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12456
12456
|
/**
|
|
12457
12457
|
*
|
|
12458
|
-
* @summary Upload secure files (Auth
|
|
12458
|
+
* @summary Upload secure files (Auth policies: RequireDoctorRole)
|
|
12459
12459
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesPostRequest} requestParameters Request parameters.
|
|
12460
12460
|
* @param {*} [options] Override http request option.
|
|
12461
12461
|
* @throws {RequiredError}
|
|
@@ -12464,7 +12464,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12464
12464
|
apiV1HospitalsHospitalIdSecurefilesPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecureFilesUploadedModel, any>>;
|
|
12465
12465
|
/**
|
|
12466
12466
|
*
|
|
12467
|
-
* @summary Get secure file url with read access by uri (Auth
|
|
12467
|
+
* @summary Get secure file url with read access by uri (Auth policies: RequireLocalManagerRole)
|
|
12468
12468
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesReadGetRequest} requestParameters Request parameters.
|
|
12469
12469
|
* @param {*} [options] Override http request option.
|
|
12470
12470
|
* @throws {RequiredError}
|
|
@@ -12491,7 +12491,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12491
12491
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentTimetableOverridesModel, any>>;
|
|
12492
12492
|
/**
|
|
12493
12493
|
*
|
|
12494
|
-
* @summary Delete HospitalSpecialty appointment timetable overrides (Auth
|
|
12494
|
+
* @summary Delete HospitalSpecialty appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12495
12495
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatchRequest} requestParameters Request parameters.
|
|
12496
12496
|
* @param {*} [options] Override http request option.
|
|
12497
12497
|
* @throws {RequiredError}
|
|
@@ -12500,7 +12500,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12500
12500
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12501
12501
|
/**
|
|
12502
12502
|
*
|
|
12503
|
-
* @summary Save HospitalSpecialty appointment timetable overrides (Auth
|
|
12503
|
+
* @summary Save HospitalSpecialty appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12504
12504
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPostRequest} requestParameters Request parameters.
|
|
12505
12505
|
* @param {*} [options] Override http request option.
|
|
12506
12506
|
* @throws {RequiredError}
|
|
@@ -12518,7 +12518,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12518
12518
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAppointmentTimetablesResponseModel, any>>;
|
|
12519
12519
|
/**
|
|
12520
12520
|
*
|
|
12521
|
-
* @summary Add, update, delete HospitalSpecialty appointment timetables (Auth
|
|
12521
|
+
* @summary Add, update, delete HospitalSpecialty appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12522
12522
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesBatchPostRequest} requestParameters Request parameters.
|
|
12523
12523
|
* @param {*} [options] Override http request option.
|
|
12524
12524
|
* @throws {RequiredError}
|
|
@@ -12536,7 +12536,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12536
12536
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentTimetablesModel, any>>;
|
|
12537
12537
|
/**
|
|
12538
12538
|
*
|
|
12539
|
-
* @summary Delete HospitalSpecialty. (Auth
|
|
12539
|
+
* @summary Delete HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12540
12540
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdDeleteRequest} requestParameters Request parameters.
|
|
12541
12541
|
* @param {*} [options] Override http request option.
|
|
12542
12542
|
* @throws {RequiredError}
|
|
@@ -12563,7 +12563,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12563
12563
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
12564
12564
|
/**
|
|
12565
12565
|
*
|
|
12566
|
-
* @summary Delete HospitalServiceMedia (Auth
|
|
12566
|
+
* @summary Delete HospitalServiceMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12567
12567
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdDeleteRequest} requestParameters Request parameters.
|
|
12568
12568
|
* @param {*} [options] Override http request option.
|
|
12569
12569
|
* @throws {RequiredError}
|
|
@@ -12581,7 +12581,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12581
12581
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
12582
12582
|
/**
|
|
12583
12583
|
*
|
|
12584
|
-
* @summary Update HospitalServiceMedia. (Auth
|
|
12584
|
+
* @summary Update HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12585
12585
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPutRequest} requestParameters Request parameters.
|
|
12586
12586
|
* @param {*} [options] Override http request option.
|
|
12587
12587
|
* @throws {RequiredError}
|
|
@@ -12590,7 +12590,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12590
12590
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
12591
12591
|
/**
|
|
12592
12592
|
*
|
|
12593
|
-
* @summary Create HospitalServiceMedia. (Auth
|
|
12593
|
+
* @summary Create HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12594
12594
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPostRequest} requestParameters Request parameters.
|
|
12595
12595
|
* @param {*} [options] Override http request option.
|
|
12596
12596
|
* @throws {RequiredError}
|
|
@@ -12599,7 +12599,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12599
12599
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
12600
12600
|
/**
|
|
12601
12601
|
*
|
|
12602
|
-
* @summary Update HospitalSpecialty. (Auth
|
|
12602
|
+
* @summary Update HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12603
12603
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdPutRequest} requestParameters Request parameters.
|
|
12604
12604
|
* @param {*} [options] Override http request option.
|
|
12605
12605
|
* @throws {RequiredError}
|
|
@@ -12608,7 +12608,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12608
12608
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
12609
12609
|
/**
|
|
12610
12610
|
*
|
|
12611
|
-
* @summary Reactivate HospitalSpecialty. (Auth
|
|
12611
|
+
* @summary Reactivate HospitalSpecialty. (Auth policies: RequireManagerRole)
|
|
12612
12612
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdReactivatePutRequest} requestParameters Request parameters.
|
|
12613
12613
|
* @param {*} [options] Override http request option.
|
|
12614
12614
|
* @throws {RequiredError}
|
|
@@ -12617,7 +12617,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12617
12617
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12618
12618
|
/**
|
|
12619
12619
|
*
|
|
12620
|
-
* @summary Revalidate hospitalSpecialty (Auth
|
|
12620
|
+
* @summary Revalidate hospitalSpecialty (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12621
12621
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePostRequest} requestParameters Request parameters.
|
|
12622
12622
|
* @param {*} [options] Override http request option.
|
|
12623
12623
|
* @throws {RequiredError}
|
|
@@ -12626,7 +12626,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12626
12626
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12627
12627
|
/**
|
|
12628
12628
|
*
|
|
12629
|
-
* @summary Translate hospitalSpecialty (Auth
|
|
12629
|
+
* @summary Translate hospitalSpecialty (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12630
12630
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePostRequest} requestParameters Request parameters.
|
|
12631
12631
|
* @param {*} [options] Override http request option.
|
|
12632
12632
|
* @throws {RequiredError}
|
|
@@ -12635,7 +12635,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12635
12635
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12636
12636
|
/**
|
|
12637
12637
|
*
|
|
12638
|
-
* @summary Create HospitalSpecialty. (Auth
|
|
12638
|
+
* @summary Create HospitalSpecialty. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12639
12639
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesPostRequest} requestParameters Request parameters.
|
|
12640
12640
|
* @param {*} [options] Override http request option.
|
|
12641
12641
|
* @throws {RequiredError}
|
|
@@ -12671,7 +12671,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12671
12671
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel, any>>;
|
|
12672
12672
|
/**
|
|
12673
12673
|
*
|
|
12674
|
-
* @summary Create HospitalService. (Auth
|
|
12674
|
+
* @summary Create HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12675
12675
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPostRequest} requestParameters Request parameters.
|
|
12676
12676
|
* @param {*} [options] Override http request option.
|
|
12677
12677
|
* @throws {RequiredError}
|
|
@@ -12689,7 +12689,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12689
12689
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentTimetableOverridesModel, any>>;
|
|
12690
12690
|
/**
|
|
12691
12691
|
*
|
|
12692
|
-
* @summary Delete Service appointment timetable overrides (Auth
|
|
12692
|
+
* @summary Delete Service appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12693
12693
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatchRequest} requestParameters Request parameters.
|
|
12694
12694
|
* @param {*} [options] Override http request option.
|
|
12695
12695
|
* @throws {RequiredError}
|
|
@@ -12698,7 +12698,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12698
12698
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12699
12699
|
/**
|
|
12700
12700
|
*
|
|
12701
|
-
* @summary Save Service appointment timetable overrides (Auth
|
|
12701
|
+
* @summary Save Service appointment timetable overrides (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12702
12702
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPostRequest} requestParameters Request parameters.
|
|
12703
12703
|
* @param {*} [options] Override http request option.
|
|
12704
12704
|
* @throws {RequiredError}
|
|
@@ -12716,7 +12716,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12716
12716
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAppointmentTimetablesResponseModel, any>>;
|
|
12717
12717
|
/**
|
|
12718
12718
|
*
|
|
12719
|
-
* @summary Add, update and delete service appointment timetables (Auth
|
|
12719
|
+
* @summary Add, update and delete service appointment timetables (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12720
12720
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesBatchPostRequest} requestParameters Request parameters.
|
|
12721
12721
|
* @param {*} [options] Override http request option.
|
|
12722
12722
|
* @throws {RequiredError}
|
|
@@ -12734,7 +12734,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12734
12734
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentTimetablesModel, any>>;
|
|
12735
12735
|
/**
|
|
12736
12736
|
*
|
|
12737
|
-
* @summary Delete HospitalService (Auth
|
|
12737
|
+
* @summary Delete HospitalService (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12738
12738
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDeleteRequest} requestParameters Request parameters.
|
|
12739
12739
|
* @param {*} [options] Override http request option.
|
|
12740
12740
|
* @throws {RequiredError}
|
|
@@ -12761,7 +12761,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12761
12761
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
12762
12762
|
/**
|
|
12763
12763
|
*
|
|
12764
|
-
* @summary Delete HospitalServiceMedia (Auth
|
|
12764
|
+
* @summary Delete HospitalServiceMedia (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12765
12765
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDeleteRequest} requestParameters Request parameters.
|
|
12766
12766
|
* @param {*} [options] Override http request option.
|
|
12767
12767
|
* @throws {RequiredError}
|
|
@@ -12779,7 +12779,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12779
12779
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
12780
12780
|
/**
|
|
12781
12781
|
*
|
|
12782
|
-
* @summary Update HospitalServiceMedia. (Auth
|
|
12782
|
+
* @summary Update HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12783
12783
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPutRequest} requestParameters Request parameters.
|
|
12784
12784
|
* @param {*} [options] Override http request option.
|
|
12785
12785
|
* @throws {RequiredError}
|
|
@@ -12788,7 +12788,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12788
12788
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
12789
12789
|
/**
|
|
12790
12790
|
*
|
|
12791
|
-
* @summary Create HospitalServiceMedia. (Auth
|
|
12791
|
+
* @summary Create HospitalServiceMedia. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12792
12792
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPostRequest} requestParameters Request parameters.
|
|
12793
12793
|
* @param {*} [options] Override http request option.
|
|
12794
12794
|
* @throws {RequiredError}
|
|
@@ -12797,7 +12797,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12797
12797
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
12798
12798
|
/**
|
|
12799
12799
|
*
|
|
12800
|
-
* @summary Update HospitalService. (Auth
|
|
12800
|
+
* @summary Update HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12801
12801
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPutRequest} requestParameters Request parameters.
|
|
12802
12802
|
* @param {*} [options] Override http request option.
|
|
12803
12803
|
* @throws {RequiredError}
|
|
@@ -12806,7 +12806,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12806
12806
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel, any>>;
|
|
12807
12807
|
/**
|
|
12808
12808
|
*
|
|
12809
|
-
* @summary Reactivate Hospital Service (Auth
|
|
12809
|
+
* @summary Reactivate Hospital Service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12810
12810
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePutRequest} requestParameters Request parameters.
|
|
12811
12811
|
* @param {*} [options] Override http request option.
|
|
12812
12812
|
* @throws {RequiredError}
|
|
@@ -12815,7 +12815,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12815
12815
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12816
12816
|
/**
|
|
12817
12817
|
*
|
|
12818
|
-
* @summary Revalidate service (Auth
|
|
12818
|
+
* @summary Revalidate service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12819
12819
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePostRequest} requestParameters Request parameters.
|
|
12820
12820
|
* @param {*} [options] Override http request option.
|
|
12821
12821
|
* @throws {RequiredError}
|
|
@@ -12824,7 +12824,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12824
12824
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12825
12825
|
/**
|
|
12826
12826
|
*
|
|
12827
|
-
* @summary Translate service (Auth
|
|
12827
|
+
* @summary Translate service (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12828
12828
|
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePostRequest} requestParameters Request parameters.
|
|
12829
12829
|
* @param {*} [options] Override http request option.
|
|
12830
12830
|
* @throws {RequiredError}
|
|
@@ -12869,7 +12869,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12869
12869
|
apiV1HospitalsHospitalIdTagsTagIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdTagsTagIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalTagModel, any>>;
|
|
12870
12870
|
/**
|
|
12871
12871
|
*
|
|
12872
|
-
* @summary Translate hospital at once (Auth
|
|
12872
|
+
* @summary Translate hospital at once (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12873
12873
|
* @param {HospitalsApiApiV1HospitalsHospitalIdTranslatePostRequest} requestParameters Request parameters.
|
|
12874
12874
|
* @param {*} [options] Override http request option.
|
|
12875
12875
|
* @throws {RequiredError}
|
|
@@ -12878,7 +12878,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12878
12878
|
apiV1HospitalsHospitalIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12879
12879
|
/**
|
|
12880
12880
|
*
|
|
12881
|
-
* @summary Batch HospitalWorkingDays. (Auth
|
|
12881
|
+
* @summary Batch HospitalWorkingDays. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12882
12882
|
* @param {HospitalsApiApiV1HospitalsHospitalIdWorkingdaysBatchPatchRequest} requestParameters Request parameters.
|
|
12883
12883
|
* @param {*} [options] Override http request option.
|
|
12884
12884
|
* @throws {RequiredError}
|
|
@@ -12896,7 +12896,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12896
12896
|
apiV1HospitalsHospitalIdWorkingdaysGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdWorkingdaysGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel, any>>;
|
|
12897
12897
|
/**
|
|
12898
12898
|
*
|
|
12899
|
-
* @summary Create HospitalWorkingDay. (Auth
|
|
12899
|
+
* @summary Create HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12900
12900
|
* @param {HospitalsApiApiV1HospitalsHospitalIdWorkingdaysPostRequest} requestParameters Request parameters.
|
|
12901
12901
|
* @param {*} [options] Override http request option.
|
|
12902
12902
|
* @throws {RequiredError}
|
|
@@ -12905,7 +12905,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12905
12905
|
apiV1HospitalsHospitalIdWorkingdaysPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdWorkingdaysPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel, any>>;
|
|
12906
12906
|
/**
|
|
12907
12907
|
*
|
|
12908
|
-
* @summary Delete HospitalWorkingDay. (Auth
|
|
12908
|
+
* @summary Delete HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12909
12909
|
* @param {HospitalsApiApiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDeleteRequest} requestParameters Request parameters.
|
|
12910
12910
|
* @param {*} [options] Override http request option.
|
|
12911
12911
|
* @throws {RequiredError}
|
|
@@ -12923,7 +12923,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12923
12923
|
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel, any>>;
|
|
12924
12924
|
/**
|
|
12925
12925
|
*
|
|
12926
|
-
* @summary Update HospitalWorkingDay. (Auth
|
|
12926
|
+
* @summary Update HospitalWorkingDay. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
12927
12927
|
* @param {HospitalsApiApiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPutRequest} requestParameters Request parameters.
|
|
12928
12928
|
* @param {*} [options] Override http request option.
|
|
12929
12929
|
* @throws {RequiredError}
|
|
@@ -12932,7 +12932,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12932
12932
|
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel, any>>;
|
|
12933
12933
|
/**
|
|
12934
12934
|
*
|
|
12935
|
-
* @summary Create Hospital. (Auth
|
|
12935
|
+
* @summary Create Hospital. (Auth policies: RequireContentManagerRole)
|
|
12936
12936
|
* @param {HospitalsApiApiV1HospitalsPostRequest} requestParameters Request parameters.
|
|
12937
12937
|
* @param {*} [options] Override http request option.
|
|
12938
12938
|
* @throws {RequiredError}
|