ch-admin-api-client-typescript 5.23.2 → 5.23.10
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/appointments-api.d.ts +47 -0
- package/lib/api/appointments-api.d.ts.map +1 -1
- package/lib/api/appointments-api.js +85 -0
- package/lib/api/deals-api.d.ts +110 -0
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +127 -0
- package/lib/api/doctor-affiliations-api.d.ts +101 -0
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +121 -0
- package/lib/api/hospitals-api.d.ts +328 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +381 -0
- package/lib/api/prescriptions-api.d.ts +447 -0
- package/lib/api/prescriptions-api.d.ts.map +1 -0
- package/lib/api/prescriptions-api.js +727 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/appointment-timetable-date-model.d.ts +58 -0
- package/lib/models/appointment-timetable-date-model.d.ts.map +1 -0
- package/lib/models/appointment-timetable-date-model.js +15 -0
- package/lib/models/appointment-timetable-status.d.ts +22 -0
- package/lib/models/appointment-timetable-status.d.ts.map +1 -0
- package/lib/models/appointment-timetable-status.js +25 -0
- package/lib/models/appointment-timetable-time-slot-model.d.ts +74 -0
- package/lib/models/appointment-timetable-time-slot-model.d.ts.map +1 -0
- package/lib/models/appointment-timetable-time-slot-model.js +15 -0
- package/lib/models/create-doctor-affiliation-command.d.ts +6 -0
- package/lib/models/create-doctor-affiliation-command.d.ts.map +1 -1
- package/lib/models/create-hospital-command.d.ts +24 -0
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/create-prescription-command.d.ts +184 -0
- package/lib/models/create-prescription-command.d.ts.map +1 -0
- package/lib/models/create-prescription-command.js +15 -0
- package/lib/models/create-walk-in-appointment-command.d.ts +154 -0
- package/lib/models/create-walk-in-appointment-command.d.ts.map +1 -0
- package/lib/models/create-walk-in-appointment-command.js +15 -0
- package/lib/models/doctor-affiliation-item-model.d.ts +3 -3
- package/lib/models/doctor-affiliation-item-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-model.d.ts +9 -3
- package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
- package/lib/models/get-appointment-timetables-response-model.d.ts +44 -0
- package/lib/models/get-appointment-timetables-response-model.d.ts.map +1 -0
- package/lib/models/get-appointment-timetables-response-model.js +15 -0
- package/lib/models/hospital-model.d.ts +24 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +16 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +16 -0
- package/lib/models/prescription-diagnosis-input-model.d.ts +37 -0
- package/lib/models/prescription-diagnosis-input-model.d.ts.map +1 -0
- package/lib/models/prescription-diagnosis-input-model.js +15 -0
- package/lib/models/prescription-diagnosis-item-model.d.ts +37 -0
- package/lib/models/prescription-diagnosis-item-model.d.ts.map +1 -0
- package/lib/models/prescription-diagnosis-item-model.js +15 -0
- package/lib/models/prescription-item-model.d.ts +164 -0
- package/lib/models/prescription-item-model.d.ts.map +1 -0
- package/lib/models/prescription-item-model.js +15 -0
- package/lib/models/prescription-medication-input-model.d.ts +79 -0
- package/lib/models/prescription-medication-input-model.d.ts.map +1 -0
- package/lib/models/prescription-medication-input-model.js +15 -0
- package/lib/models/prescription-medication-item-model.d.ts +79 -0
- package/lib/models/prescription-medication-item-model.d.ts.map +1 -0
- package/lib/models/prescription-medication-item-model.js +15 -0
- package/lib/models/prescription-model.d.ts +185 -0
- package/lib/models/prescription-model.d.ts.map +1 -0
- package/lib/models/prescription-model.js +15 -0
- package/lib/models/prescription-symptom-input-model.d.ts +49 -0
- package/lib/models/prescription-symptom-input-model.d.ts.map +1 -0
- package/lib/models/prescription-symptom-input-model.js +15 -0
- package/lib/models/prescription-symptom-item-model.d.ts +49 -0
- package/lib/models/prescription-symptom-item-model.d.ts.map +1 -0
- package/lib/models/prescription-symptom-item-model.js +15 -0
- package/lib/models/prescriptions-model.d.ts +33 -0
- package/lib/models/prescriptions-model.d.ts.map +1 -0
- package/lib/models/prescriptions-model.js +15 -0
- package/lib/models/update-doctor-affiliation-command.d.ts +6 -0
- package/lib/models/update-doctor-affiliation-command.d.ts.map +1 -1
- package/lib/models/update-hospital-command.d.ts +24 -0
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- package/lib/models/update-prescription-command.d.ts +154 -0
- package/lib/models/update-prescription-command.d.ts.map +1 -0
- package/lib/models/update-prescription-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +17 -0
- package/src/api/appointments-api.ts +87 -0
- package/src/api/deals-api.ts +184 -0
- package/src/api/doctor-affiliations-api.ts +171 -0
- package/src/api/hospitals-api.ts +548 -0
- package/src/api/prescriptions-api.ts +776 -0
- package/src/api.ts +1 -0
- package/src/models/appointment-timetable-date-model.ts +69 -0
- package/src/models/appointment-timetable-status.ts +31 -0
- package/src/models/appointment-timetable-time-slot-model.ts +81 -0
- package/src/models/create-doctor-affiliation-command.ts +6 -0
- package/src/models/create-hospital-command.ts +24 -0
- package/src/models/create-prescription-command.ts +195 -0
- package/src/models/create-walk-in-appointment-command.ts +165 -0
- package/src/models/doctor-affiliation-item-model.ts +3 -3
- package/src/models/doctor-affiliation-model.ts +9 -3
- package/src/models/get-appointment-timetables-response-model.ts +51 -0
- package/src/models/hospital-model.ts +24 -0
- package/src/models/index.ts +16 -0
- package/src/models/prescription-diagnosis-input-model.ts +42 -0
- package/src/models/prescription-diagnosis-item-model.ts +42 -0
- package/src/models/prescription-item-model.ts +171 -0
- package/src/models/prescription-medication-input-model.ts +84 -0
- package/src/models/prescription-medication-item-model.ts +84 -0
- package/src/models/prescription-model.ts +198 -0
- package/src/models/prescription-symptom-input-model.ts +54 -0
- package/src/models/prescription-symptom-item-model.ts +54 -0
- package/src/models/prescriptions-model.ts +42 -0
- package/src/models/update-doctor-affiliation-command.ts +6 -0
- package/src/models/update-hospital-command.ts +24 -0
- package/src/models/update-prescription-command.ts +165 -0
package/src/api/hospitals-api.ts
CHANGED
|
@@ -95,6 +95,8 @@ import { FooterNavigationItemModel } from '../models';
|
|
|
95
95
|
// @ts-ignore
|
|
96
96
|
import { Gender } from '../models';
|
|
97
97
|
// @ts-ignore
|
|
98
|
+
import { GetAppointmentTimetablesResponseModel } from '../models';
|
|
99
|
+
// @ts-ignore
|
|
98
100
|
import { HospitalAccreditationModel } from '../models';
|
|
99
101
|
// @ts-ignore
|
|
100
102
|
import { HospitalAccreditationsModel } from '../models';
|
|
@@ -738,6 +740,74 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
738
740
|
options: localVarRequestOptions,
|
|
739
741
|
};
|
|
740
742
|
},
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @summary Get Hospital appointment timetables for application
|
|
746
|
+
* @param {string} hospitalId
|
|
747
|
+
* @param {number} [year]
|
|
748
|
+
* @param {number} [month]
|
|
749
|
+
* @param {string} [timeZone]
|
|
750
|
+
* @param {boolean} [isExternal]
|
|
751
|
+
* @param {boolean} [isOnline]
|
|
752
|
+
* @param {string} [appointmentIdExcluded]
|
|
753
|
+
* @param {*} [options] Override http request option.
|
|
754
|
+
* @throws {RequiredError}
|
|
755
|
+
*/
|
|
756
|
+
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet: async (hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
757
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
758
|
+
assertParamExists('apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet', 'hospitalId', hospitalId)
|
|
759
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/appointmenttimetables/application`
|
|
760
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
761
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
762
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
763
|
+
let baseOptions;
|
|
764
|
+
if (configuration) {
|
|
765
|
+
baseOptions = configuration.baseOptions;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
769
|
+
const localVarHeaderParameter = {} as any;
|
|
770
|
+
const localVarQueryParameter = {} as any;
|
|
771
|
+
|
|
772
|
+
// authentication oauth2 required
|
|
773
|
+
// oauth required
|
|
774
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
775
|
+
|
|
776
|
+
if (year !== undefined) {
|
|
777
|
+
localVarQueryParameter['Year'] = year;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
if (month !== undefined) {
|
|
781
|
+
localVarQueryParameter['Month'] = month;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
if (timeZone !== undefined) {
|
|
785
|
+
localVarQueryParameter['TimeZone'] = timeZone;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
if (isExternal !== undefined) {
|
|
789
|
+
localVarQueryParameter['IsExternal'] = isExternal;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
if (isOnline !== undefined) {
|
|
793
|
+
localVarQueryParameter['IsOnline'] = isOnline;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
if (appointmentIdExcluded !== undefined) {
|
|
797
|
+
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
803
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
804
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
805
|
+
|
|
806
|
+
return {
|
|
807
|
+
url: toPathString(localVarUrlObj),
|
|
808
|
+
options: localVarRequestOptions,
|
|
809
|
+
};
|
|
810
|
+
},
|
|
741
811
|
/**
|
|
742
812
|
*
|
|
743
813
|
* @summary Add, update, delete Hospital appointment timetables
|
|
@@ -6350,6 +6420,78 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
6350
6420
|
options: localVarRequestOptions,
|
|
6351
6421
|
};
|
|
6352
6422
|
},
|
|
6423
|
+
/**
|
|
6424
|
+
*
|
|
6425
|
+
* @summary Get HospitalSpecialty appointment timetables for application
|
|
6426
|
+
* @param {string} hospitalId
|
|
6427
|
+
* @param {string} hospitalSpecialtyId
|
|
6428
|
+
* @param {number} [year]
|
|
6429
|
+
* @param {number} [month]
|
|
6430
|
+
* @param {string} [timeZone]
|
|
6431
|
+
* @param {boolean} [isExternal]
|
|
6432
|
+
* @param {boolean} [isOnline]
|
|
6433
|
+
* @param {string} [appointmentIdExcluded]
|
|
6434
|
+
* @param {*} [options] Override http request option.
|
|
6435
|
+
* @throws {RequiredError}
|
|
6436
|
+
*/
|
|
6437
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet: async (hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6438
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
6439
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet', 'hospitalId', hospitalId)
|
|
6440
|
+
// verify required parameter 'hospitalSpecialtyId' is not null or undefined
|
|
6441
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet', 'hospitalSpecialtyId', hospitalSpecialtyId)
|
|
6442
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties/{hospitalSpecialtyId}/appointmenttimetables/application`
|
|
6443
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
6444
|
+
.replace(`{${"hospitalSpecialtyId"}}`, encodeURIComponent(String(hospitalSpecialtyId)));
|
|
6445
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6446
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6447
|
+
let baseOptions;
|
|
6448
|
+
if (configuration) {
|
|
6449
|
+
baseOptions = configuration.baseOptions;
|
|
6450
|
+
}
|
|
6451
|
+
|
|
6452
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
6453
|
+
const localVarHeaderParameter = {} as any;
|
|
6454
|
+
const localVarQueryParameter = {} as any;
|
|
6455
|
+
|
|
6456
|
+
// authentication oauth2 required
|
|
6457
|
+
// oauth required
|
|
6458
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
6459
|
+
|
|
6460
|
+
if (year !== undefined) {
|
|
6461
|
+
localVarQueryParameter['Year'] = year;
|
|
6462
|
+
}
|
|
6463
|
+
|
|
6464
|
+
if (month !== undefined) {
|
|
6465
|
+
localVarQueryParameter['Month'] = month;
|
|
6466
|
+
}
|
|
6467
|
+
|
|
6468
|
+
if (timeZone !== undefined) {
|
|
6469
|
+
localVarQueryParameter['TimeZone'] = timeZone;
|
|
6470
|
+
}
|
|
6471
|
+
|
|
6472
|
+
if (isExternal !== undefined) {
|
|
6473
|
+
localVarQueryParameter['IsExternal'] = isExternal;
|
|
6474
|
+
}
|
|
6475
|
+
|
|
6476
|
+
if (isOnline !== undefined) {
|
|
6477
|
+
localVarQueryParameter['IsOnline'] = isOnline;
|
|
6478
|
+
}
|
|
6479
|
+
|
|
6480
|
+
if (appointmentIdExcluded !== undefined) {
|
|
6481
|
+
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
6482
|
+
}
|
|
6483
|
+
|
|
6484
|
+
|
|
6485
|
+
|
|
6486
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6487
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6488
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
6489
|
+
|
|
6490
|
+
return {
|
|
6491
|
+
url: toPathString(localVarUrlObj),
|
|
6492
|
+
options: localVarRequestOptions,
|
|
6493
|
+
};
|
|
6494
|
+
},
|
|
6353
6495
|
/**
|
|
6354
6496
|
*
|
|
6355
6497
|
* @summary Add, update, delete HospitalSpecialty appointment timetables
|
|
@@ -7535,6 +7677,82 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
7535
7677
|
options: localVarRequestOptions,
|
|
7536
7678
|
};
|
|
7537
7679
|
},
|
|
7680
|
+
/**
|
|
7681
|
+
*
|
|
7682
|
+
* @summary Get Service appointment timetables for application
|
|
7683
|
+
* @param {string} hospitalId
|
|
7684
|
+
* @param {string} specialtyId
|
|
7685
|
+
* @param {string} serviceId
|
|
7686
|
+
* @param {number} [year]
|
|
7687
|
+
* @param {number} [month]
|
|
7688
|
+
* @param {string} [timeZone]
|
|
7689
|
+
* @param {boolean} [isExternal]
|
|
7690
|
+
* @param {boolean} [isOnline]
|
|
7691
|
+
* @param {string} [appointmentIdExcluded]
|
|
7692
|
+
* @param {*} [options] Override http request option.
|
|
7693
|
+
* @throws {RequiredError}
|
|
7694
|
+
*/
|
|
7695
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet: async (hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7696
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
7697
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet', 'hospitalId', hospitalId)
|
|
7698
|
+
// verify required parameter 'specialtyId' is not null or undefined
|
|
7699
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet', 'specialtyId', specialtyId)
|
|
7700
|
+
// verify required parameter 'serviceId' is not null or undefined
|
|
7701
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet', 'serviceId', serviceId)
|
|
7702
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties/{specialtyId}/services/{serviceId}/appointmenttimetables/application`
|
|
7703
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
7704
|
+
.replace(`{${"specialtyId"}}`, encodeURIComponent(String(specialtyId)))
|
|
7705
|
+
.replace(`{${"serviceId"}}`, encodeURIComponent(String(serviceId)));
|
|
7706
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7707
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7708
|
+
let baseOptions;
|
|
7709
|
+
if (configuration) {
|
|
7710
|
+
baseOptions = configuration.baseOptions;
|
|
7711
|
+
}
|
|
7712
|
+
|
|
7713
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
7714
|
+
const localVarHeaderParameter = {} as any;
|
|
7715
|
+
const localVarQueryParameter = {} as any;
|
|
7716
|
+
|
|
7717
|
+
// authentication oauth2 required
|
|
7718
|
+
// oauth required
|
|
7719
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
7720
|
+
|
|
7721
|
+
if (year !== undefined) {
|
|
7722
|
+
localVarQueryParameter['Year'] = year;
|
|
7723
|
+
}
|
|
7724
|
+
|
|
7725
|
+
if (month !== undefined) {
|
|
7726
|
+
localVarQueryParameter['Month'] = month;
|
|
7727
|
+
}
|
|
7728
|
+
|
|
7729
|
+
if (timeZone !== undefined) {
|
|
7730
|
+
localVarQueryParameter['TimeZone'] = timeZone;
|
|
7731
|
+
}
|
|
7732
|
+
|
|
7733
|
+
if (isExternal !== undefined) {
|
|
7734
|
+
localVarQueryParameter['IsExternal'] = isExternal;
|
|
7735
|
+
}
|
|
7736
|
+
|
|
7737
|
+
if (isOnline !== undefined) {
|
|
7738
|
+
localVarQueryParameter['IsOnline'] = isOnline;
|
|
7739
|
+
}
|
|
7740
|
+
|
|
7741
|
+
if (appointmentIdExcluded !== undefined) {
|
|
7742
|
+
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
7743
|
+
}
|
|
7744
|
+
|
|
7745
|
+
|
|
7746
|
+
|
|
7747
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7748
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7749
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
7750
|
+
|
|
7751
|
+
return {
|
|
7752
|
+
url: toPathString(localVarUrlObj),
|
|
7753
|
+
options: localVarRequestOptions,
|
|
7754
|
+
};
|
|
7755
|
+
},
|
|
7538
7756
|
/**
|
|
7539
7757
|
*
|
|
7540
7758
|
* @summary Add, update and delete service appointment timetables
|
|
@@ -9089,6 +9307,23 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
9089
9307
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdAppointmenttimetableoverridesPost(hospitalId, saveHospitalAppointmentTimetableOverridesCommand, options);
|
|
9090
9308
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9091
9309
|
},
|
|
9310
|
+
/**
|
|
9311
|
+
*
|
|
9312
|
+
* @summary Get Hospital appointment timetables for application
|
|
9313
|
+
* @param {string} hospitalId
|
|
9314
|
+
* @param {number} [year]
|
|
9315
|
+
* @param {number} [month]
|
|
9316
|
+
* @param {string} [timeZone]
|
|
9317
|
+
* @param {boolean} [isExternal]
|
|
9318
|
+
* @param {boolean} [isOnline]
|
|
9319
|
+
* @param {string} [appointmentIdExcluded]
|
|
9320
|
+
* @param {*} [options] Override http request option.
|
|
9321
|
+
* @throws {RequiredError}
|
|
9322
|
+
*/
|
|
9323
|
+
async apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
9324
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
9325
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9326
|
+
},
|
|
9092
9327
|
/**
|
|
9093
9328
|
*
|
|
9094
9329
|
* @summary Add, update, delete Hospital appointment timetables
|
|
@@ -10610,6 +10845,24 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
10610
10845
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPost(hospitalId, hospitalSpecialtyId, saveHospitalSpecialtyAppointmentTimetableOverridesCommand, options);
|
|
10611
10846
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
10612
10847
|
},
|
|
10848
|
+
/**
|
|
10849
|
+
*
|
|
10850
|
+
* @summary Get HospitalSpecialty appointment timetables for application
|
|
10851
|
+
* @param {string} hospitalId
|
|
10852
|
+
* @param {string} hospitalSpecialtyId
|
|
10853
|
+
* @param {number} [year]
|
|
10854
|
+
* @param {number} [month]
|
|
10855
|
+
* @param {string} [timeZone]
|
|
10856
|
+
* @param {boolean} [isExternal]
|
|
10857
|
+
* @param {boolean} [isOnline]
|
|
10858
|
+
* @param {string} [appointmentIdExcluded]
|
|
10859
|
+
* @param {*} [options] Override http request option.
|
|
10860
|
+
* @throws {RequiredError}
|
|
10861
|
+
*/
|
|
10862
|
+
async apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
10863
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
10864
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
10865
|
+
},
|
|
10613
10866
|
/**
|
|
10614
10867
|
*
|
|
10615
10868
|
* @summary Add, update, delete HospitalSpecialty appointment timetables
|
|
@@ -10922,6 +11175,25 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
10922
11175
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPost(hospitalId, specialtyId, serviceId, saveServiceAppointmentTimetableOverridesCommand, options);
|
|
10923
11176
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
10924
11177
|
},
|
|
11178
|
+
/**
|
|
11179
|
+
*
|
|
11180
|
+
* @summary Get Service appointment timetables for application
|
|
11181
|
+
* @param {string} hospitalId
|
|
11182
|
+
* @param {string} specialtyId
|
|
11183
|
+
* @param {string} serviceId
|
|
11184
|
+
* @param {number} [year]
|
|
11185
|
+
* @param {number} [month]
|
|
11186
|
+
* @param {string} [timeZone]
|
|
11187
|
+
* @param {boolean} [isExternal]
|
|
11188
|
+
* @param {boolean} [isOnline]
|
|
11189
|
+
* @param {string} [appointmentIdExcluded]
|
|
11190
|
+
* @param {*} [options] Override http request option.
|
|
11191
|
+
* @throws {RequiredError}
|
|
11192
|
+
*/
|
|
11193
|
+
async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
11194
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
11195
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11196
|
+
},
|
|
10925
11197
|
/**
|
|
10926
11198
|
*
|
|
10927
11199
|
* @summary Add, update and delete service appointment timetables
|
|
@@ -11426,6 +11698,22 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
11426
11698
|
apiV1HospitalsHospitalIdAppointmenttimetableoverridesPost(hospitalId: string, saveHospitalAppointmentTimetableOverridesCommand?: SaveHospitalAppointmentTimetableOverridesCommand, options?: any): AxiosPromise<SaveAppointmentTimetableOverridesResultModel> {
|
|
11427
11699
|
return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetableoverridesPost(hospitalId, saveHospitalAppointmentTimetableOverridesCommand, options).then((request) => request(axios, basePath));
|
|
11428
11700
|
},
|
|
11701
|
+
/**
|
|
11702
|
+
*
|
|
11703
|
+
* @summary Get Hospital appointment timetables for application
|
|
11704
|
+
* @param {string} hospitalId
|
|
11705
|
+
* @param {number} [year]
|
|
11706
|
+
* @param {number} [month]
|
|
11707
|
+
* @param {string} [timeZone]
|
|
11708
|
+
* @param {boolean} [isExternal]
|
|
11709
|
+
* @param {boolean} [isOnline]
|
|
11710
|
+
* @param {string} [appointmentIdExcluded]
|
|
11711
|
+
* @param {*} [options] Override http request option.
|
|
11712
|
+
* @throws {RequiredError}
|
|
11713
|
+
*/
|
|
11714
|
+
apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
11715
|
+
return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
11716
|
+
},
|
|
11429
11717
|
/**
|
|
11430
11718
|
*
|
|
11431
11719
|
* @summary Add, update, delete Hospital appointment timetables
|
|
@@ -12834,6 +13122,23 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
12834
13122
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPost(hospitalId: string, hospitalSpecialtyId: string, saveHospitalSpecialtyAppointmentTimetableOverridesCommand?: SaveHospitalSpecialtyAppointmentTimetableOverridesCommand, options?: any): AxiosPromise<SaveAppointmentTimetableOverridesResultModel> {
|
|
12835
13123
|
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPost(hospitalId, hospitalSpecialtyId, saveHospitalSpecialtyAppointmentTimetableOverridesCommand, options).then((request) => request(axios, basePath));
|
|
12836
13124
|
},
|
|
13125
|
+
/**
|
|
13126
|
+
*
|
|
13127
|
+
* @summary Get HospitalSpecialty appointment timetables for application
|
|
13128
|
+
* @param {string} hospitalId
|
|
13129
|
+
* @param {string} hospitalSpecialtyId
|
|
13130
|
+
* @param {number} [year]
|
|
13131
|
+
* @param {number} [month]
|
|
13132
|
+
* @param {string} [timeZone]
|
|
13133
|
+
* @param {boolean} [isExternal]
|
|
13134
|
+
* @param {boolean} [isOnline]
|
|
13135
|
+
* @param {string} [appointmentIdExcluded]
|
|
13136
|
+
* @param {*} [options] Override http request option.
|
|
13137
|
+
* @throws {RequiredError}
|
|
13138
|
+
*/
|
|
13139
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
13140
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
13141
|
+
},
|
|
12837
13142
|
/**
|
|
12838
13143
|
*
|
|
12839
13144
|
* @summary Add, update, delete HospitalSpecialty appointment timetables
|
|
@@ -13125,6 +13430,24 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
13125
13430
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPost(hospitalId: string, specialtyId: string, serviceId: string, saveServiceAppointmentTimetableOverridesCommand?: SaveServiceAppointmentTimetableOverridesCommand, options?: any): AxiosPromise<SaveAppointmentTimetableOverridesResultModel> {
|
|
13126
13431
|
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPost(hospitalId, specialtyId, serviceId, saveServiceAppointmentTimetableOverridesCommand, options).then((request) => request(axios, basePath));
|
|
13127
13432
|
},
|
|
13433
|
+
/**
|
|
13434
|
+
*
|
|
13435
|
+
* @summary Get Service appointment timetables for application
|
|
13436
|
+
* @param {string} hospitalId
|
|
13437
|
+
* @param {string} specialtyId
|
|
13438
|
+
* @param {string} serviceId
|
|
13439
|
+
* @param {number} [year]
|
|
13440
|
+
* @param {number} [month]
|
|
13441
|
+
* @param {string} [timeZone]
|
|
13442
|
+
* @param {boolean} [isExternal]
|
|
13443
|
+
* @param {boolean} [isOnline]
|
|
13444
|
+
* @param {string} [appointmentIdExcluded]
|
|
13445
|
+
* @param {*} [options] Override http request option.
|
|
13446
|
+
* @throws {RequiredError}
|
|
13447
|
+
*/
|
|
13448
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
13449
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
13450
|
+
},
|
|
13128
13451
|
/**
|
|
13129
13452
|
*
|
|
13130
13453
|
* @summary Add, update and delete service appointment timetables
|
|
@@ -13819,6 +14142,62 @@ export interface HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverrid
|
|
|
13819
14142
|
readonly saveHospitalAppointmentTimetableOverridesCommand?: SaveHospitalAppointmentTimetableOverridesCommand
|
|
13820
14143
|
}
|
|
13821
14144
|
|
|
14145
|
+
/**
|
|
14146
|
+
* Request parameters for apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet operation in HospitalsApi.
|
|
14147
|
+
* @export
|
|
14148
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGetRequest
|
|
14149
|
+
*/
|
|
14150
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGetRequest {
|
|
14151
|
+
/**
|
|
14152
|
+
*
|
|
14153
|
+
* @type {string}
|
|
14154
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet
|
|
14155
|
+
*/
|
|
14156
|
+
readonly hospitalId: string
|
|
14157
|
+
|
|
14158
|
+
/**
|
|
14159
|
+
*
|
|
14160
|
+
* @type {number}
|
|
14161
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet
|
|
14162
|
+
*/
|
|
14163
|
+
readonly year?: number
|
|
14164
|
+
|
|
14165
|
+
/**
|
|
14166
|
+
*
|
|
14167
|
+
* @type {number}
|
|
14168
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet
|
|
14169
|
+
*/
|
|
14170
|
+
readonly month?: number
|
|
14171
|
+
|
|
14172
|
+
/**
|
|
14173
|
+
*
|
|
14174
|
+
* @type {string}
|
|
14175
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet
|
|
14176
|
+
*/
|
|
14177
|
+
readonly timeZone?: string
|
|
14178
|
+
|
|
14179
|
+
/**
|
|
14180
|
+
*
|
|
14181
|
+
* @type {boolean}
|
|
14182
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet
|
|
14183
|
+
*/
|
|
14184
|
+
readonly isExternal?: boolean
|
|
14185
|
+
|
|
14186
|
+
/**
|
|
14187
|
+
*
|
|
14188
|
+
* @type {boolean}
|
|
14189
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet
|
|
14190
|
+
*/
|
|
14191
|
+
readonly isOnline?: boolean
|
|
14192
|
+
|
|
14193
|
+
/**
|
|
14194
|
+
*
|
|
14195
|
+
* @type {string}
|
|
14196
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet
|
|
14197
|
+
*/
|
|
14198
|
+
readonly appointmentIdExcluded?: string
|
|
14199
|
+
}
|
|
14200
|
+
|
|
13822
14201
|
/**
|
|
13823
14202
|
* Request parameters for apiV1HospitalsHospitalIdAppointmenttimetablesBatchPost operation in HospitalsApi.
|
|
13824
14203
|
* @export
|
|
@@ -17347,6 +17726,69 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialt
|
|
|
17347
17726
|
readonly saveHospitalSpecialtyAppointmentTimetableOverridesCommand?: SaveHospitalSpecialtyAppointmentTimetableOverridesCommand
|
|
17348
17727
|
}
|
|
17349
17728
|
|
|
17729
|
+
/**
|
|
17730
|
+
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet operation in HospitalsApi.
|
|
17731
|
+
* @export
|
|
17732
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGetRequest
|
|
17733
|
+
*/
|
|
17734
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGetRequest {
|
|
17735
|
+
/**
|
|
17736
|
+
*
|
|
17737
|
+
* @type {string}
|
|
17738
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet
|
|
17739
|
+
*/
|
|
17740
|
+
readonly hospitalId: string
|
|
17741
|
+
|
|
17742
|
+
/**
|
|
17743
|
+
*
|
|
17744
|
+
* @type {string}
|
|
17745
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet
|
|
17746
|
+
*/
|
|
17747
|
+
readonly hospitalSpecialtyId: string
|
|
17748
|
+
|
|
17749
|
+
/**
|
|
17750
|
+
*
|
|
17751
|
+
* @type {number}
|
|
17752
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet
|
|
17753
|
+
*/
|
|
17754
|
+
readonly year?: number
|
|
17755
|
+
|
|
17756
|
+
/**
|
|
17757
|
+
*
|
|
17758
|
+
* @type {number}
|
|
17759
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet
|
|
17760
|
+
*/
|
|
17761
|
+
readonly month?: number
|
|
17762
|
+
|
|
17763
|
+
/**
|
|
17764
|
+
*
|
|
17765
|
+
* @type {string}
|
|
17766
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet
|
|
17767
|
+
*/
|
|
17768
|
+
readonly timeZone?: string
|
|
17769
|
+
|
|
17770
|
+
/**
|
|
17771
|
+
*
|
|
17772
|
+
* @type {boolean}
|
|
17773
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet
|
|
17774
|
+
*/
|
|
17775
|
+
readonly isExternal?: boolean
|
|
17776
|
+
|
|
17777
|
+
/**
|
|
17778
|
+
*
|
|
17779
|
+
* @type {boolean}
|
|
17780
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet
|
|
17781
|
+
*/
|
|
17782
|
+
readonly isOnline?: boolean
|
|
17783
|
+
|
|
17784
|
+
/**
|
|
17785
|
+
*
|
|
17786
|
+
* @type {string}
|
|
17787
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet
|
|
17788
|
+
*/
|
|
17789
|
+
readonly appointmentIdExcluded?: string
|
|
17790
|
+
}
|
|
17791
|
+
|
|
17350
17792
|
/**
|
|
17351
17793
|
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesBatchPost operation in HospitalsApi.
|
|
17352
17794
|
* @export
|
|
@@ -18208,6 +18650,76 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServi
|
|
|
18208
18650
|
readonly saveServiceAppointmentTimetableOverridesCommand?: SaveServiceAppointmentTimetableOverridesCommand
|
|
18209
18651
|
}
|
|
18210
18652
|
|
|
18653
|
+
/**
|
|
18654
|
+
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet operation in HospitalsApi.
|
|
18655
|
+
* @export
|
|
18656
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGetRequest
|
|
18657
|
+
*/
|
|
18658
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGetRequest {
|
|
18659
|
+
/**
|
|
18660
|
+
*
|
|
18661
|
+
* @type {string}
|
|
18662
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet
|
|
18663
|
+
*/
|
|
18664
|
+
readonly hospitalId: string
|
|
18665
|
+
|
|
18666
|
+
/**
|
|
18667
|
+
*
|
|
18668
|
+
* @type {string}
|
|
18669
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet
|
|
18670
|
+
*/
|
|
18671
|
+
readonly specialtyId: string
|
|
18672
|
+
|
|
18673
|
+
/**
|
|
18674
|
+
*
|
|
18675
|
+
* @type {string}
|
|
18676
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet
|
|
18677
|
+
*/
|
|
18678
|
+
readonly serviceId: string
|
|
18679
|
+
|
|
18680
|
+
/**
|
|
18681
|
+
*
|
|
18682
|
+
* @type {number}
|
|
18683
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet
|
|
18684
|
+
*/
|
|
18685
|
+
readonly year?: number
|
|
18686
|
+
|
|
18687
|
+
/**
|
|
18688
|
+
*
|
|
18689
|
+
* @type {number}
|
|
18690
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet
|
|
18691
|
+
*/
|
|
18692
|
+
readonly month?: number
|
|
18693
|
+
|
|
18694
|
+
/**
|
|
18695
|
+
*
|
|
18696
|
+
* @type {string}
|
|
18697
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet
|
|
18698
|
+
*/
|
|
18699
|
+
readonly timeZone?: string
|
|
18700
|
+
|
|
18701
|
+
/**
|
|
18702
|
+
*
|
|
18703
|
+
* @type {boolean}
|
|
18704
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet
|
|
18705
|
+
*/
|
|
18706
|
+
readonly isExternal?: boolean
|
|
18707
|
+
|
|
18708
|
+
/**
|
|
18709
|
+
*
|
|
18710
|
+
* @type {boolean}
|
|
18711
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet
|
|
18712
|
+
*/
|
|
18713
|
+
readonly isOnline?: boolean
|
|
18714
|
+
|
|
18715
|
+
/**
|
|
18716
|
+
*
|
|
18717
|
+
* @type {string}
|
|
18718
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet
|
|
18719
|
+
*/
|
|
18720
|
+
readonly appointmentIdExcluded?: string
|
|
18721
|
+
}
|
|
18722
|
+
|
|
18211
18723
|
/**
|
|
18212
18724
|
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesBatchPost operation in HospitalsApi.
|
|
18213
18725
|
* @export
|
|
@@ -19284,6 +19796,18 @@ export class HospitalsApi extends BaseAPI {
|
|
|
19284
19796
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdAppointmenttimetableoverridesPost(requestParameters.hospitalId, requestParameters.saveHospitalAppointmentTimetableOverridesCommand, options).then((request) => request(this.axios, this.basePath));
|
|
19285
19797
|
}
|
|
19286
19798
|
|
|
19799
|
+
/**
|
|
19800
|
+
*
|
|
19801
|
+
* @summary Get Hospital appointment timetables for application
|
|
19802
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGetRequest} requestParameters Request parameters.
|
|
19803
|
+
* @param {*} [options] Override http request option.
|
|
19804
|
+
* @throws {RequiredError}
|
|
19805
|
+
* @memberof HospitalsApi
|
|
19806
|
+
*/
|
|
19807
|
+
public apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesApplicationGetRequest, options?: AxiosRequestConfig) {
|
|
19808
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
19809
|
+
}
|
|
19810
|
+
|
|
19287
19811
|
/**
|
|
19288
19812
|
*
|
|
19289
19813
|
* @summary Add, update, delete Hospital appointment timetables
|
|
@@ -20640,6 +21164,18 @@ export class HospitalsApi extends BaseAPI {
|
|
|
20640
21164
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPost(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.saveHospitalSpecialtyAppointmentTimetableOverridesCommand, options).then((request) => request(this.axios, this.basePath));
|
|
20641
21165
|
}
|
|
20642
21166
|
|
|
21167
|
+
/**
|
|
21168
|
+
*
|
|
21169
|
+
* @summary Get HospitalSpecialty appointment timetables for application
|
|
21170
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGetRequest} requestParameters Request parameters.
|
|
21171
|
+
* @param {*} [options] Override http request option.
|
|
21172
|
+
* @throws {RequiredError}
|
|
21173
|
+
* @memberof HospitalsApi
|
|
21174
|
+
*/
|
|
21175
|
+
public apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGetRequest, options?: AxiosRequestConfig) {
|
|
21176
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
21177
|
+
}
|
|
21178
|
+
|
|
20643
21179
|
/**
|
|
20644
21180
|
*
|
|
20645
21181
|
* @summary Add, update, delete HospitalSpecialty appointment timetables
|
|
@@ -20892,6 +21428,18 @@ export class HospitalsApi extends BaseAPI {
|
|
|
20892
21428
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPost(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.saveServiceAppointmentTimetableOverridesCommand, options).then((request) => request(this.axios, this.basePath));
|
|
20893
21429
|
}
|
|
20894
21430
|
|
|
21431
|
+
/**
|
|
21432
|
+
*
|
|
21433
|
+
* @summary Get Service appointment timetables for application
|
|
21434
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGetRequest} requestParameters Request parameters.
|
|
21435
|
+
* @param {*} [options] Override http request option.
|
|
21436
|
+
* @throws {RequiredError}
|
|
21437
|
+
* @memberof HospitalsApi
|
|
21438
|
+
*/
|
|
21439
|
+
public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGetRequest, options?: AxiosRequestConfig) {
|
|
21440
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesApplicationGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
21441
|
+
}
|
|
21442
|
+
|
|
20895
21443
|
/**
|
|
20896
21444
|
*
|
|
20897
21445
|
* @summary Add, update and delete service appointment timetables
|