ch-admin-api-client-typescript 5.23.2 → 5.23.8
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.ts
CHANGED
|
@@ -50,6 +50,7 @@ export * from './api/patient-affiliations-api';
|
|
|
50
50
|
export * from './api/patients-api';
|
|
51
51
|
export * from './api/payments-api';
|
|
52
52
|
export * from './api/plans-api';
|
|
53
|
+
export * from './api/prescriptions-api';
|
|
53
54
|
export * from './api/profiles-api';
|
|
54
55
|
export * from './api/search-api';
|
|
55
56
|
export * from './api/search-curations-api';
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AppointmentTimetableStatus } from './appointment-timetable-status';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { AppointmentTimetableTimeSlotModel } from './appointment-timetable-time-slot-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { DayOfWeek } from './day-of-week';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface AppointmentTimetableDateModel
|
|
30
|
+
*/
|
|
31
|
+
export interface AppointmentTimetableDateModel {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {Date}
|
|
35
|
+
* @memberof AppointmentTimetableDateModel
|
|
36
|
+
*/
|
|
37
|
+
'date'?: Date;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {DayOfWeek}
|
|
41
|
+
* @memberof AppointmentTimetableDateModel
|
|
42
|
+
*/
|
|
43
|
+
'dayOfWeek'?: DayOfWeek;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {AppointmentTimetableStatus}
|
|
47
|
+
* @memberof AppointmentTimetableDateModel
|
|
48
|
+
*/
|
|
49
|
+
'status'?: AppointmentTimetableStatus;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof AppointmentTimetableDateModel
|
|
54
|
+
*/
|
|
55
|
+
'isAvailable'?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {Array<AppointmentTimetableTimeSlotModel>}
|
|
59
|
+
* @memberof AppointmentTimetableDateModel
|
|
60
|
+
*/
|
|
61
|
+
'slots'?: Array<AppointmentTimetableTimeSlotModel> | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {boolean}
|
|
65
|
+
* @memberof AppointmentTimetableDateModel
|
|
66
|
+
*/
|
|
67
|
+
'hasTimeSlotItems'?: boolean;
|
|
68
|
+
}
|
|
69
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
export const AppointmentTimetableStatus = {
|
|
24
|
+
Available: 'Available',
|
|
25
|
+
Unavailable: 'Unavailable'
|
|
26
|
+
} as const;
|
|
27
|
+
|
|
28
|
+
export type AppointmentTimetableStatus = typeof AppointmentTimetableStatus[keyof typeof AppointmentTimetableStatus];
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AppointmentTimetableStatus } from './appointment-timetable-status';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface AppointmentTimetableTimeSlotModel
|
|
24
|
+
*/
|
|
25
|
+
export interface AppointmentTimetableTimeSlotModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Date}
|
|
29
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
30
|
+
*/
|
|
31
|
+
'startTime'?: Date;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {Date}
|
|
35
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
36
|
+
*/
|
|
37
|
+
'endTime'?: Date;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {AppointmentTimetableStatus}
|
|
41
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
42
|
+
*/
|
|
43
|
+
'status'?: AppointmentTimetableStatus;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {boolean}
|
|
47
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
48
|
+
*/
|
|
49
|
+
'isOverrided'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
54
|
+
*/
|
|
55
|
+
'isBooked'?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {boolean}
|
|
59
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
60
|
+
*/
|
|
61
|
+
'isAvailable'?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {boolean}
|
|
65
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
66
|
+
*/
|
|
67
|
+
'isOnline'?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {boolean}
|
|
71
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
72
|
+
*/
|
|
73
|
+
'isOffline'?: boolean;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof AppointmentTimetableTimeSlotModel
|
|
78
|
+
*/
|
|
79
|
+
'quantity'?: number;
|
|
80
|
+
}
|
|
81
|
+
|
|
@@ -107,6 +107,12 @@ export interface CreateDoctorAffiliationCommand {
|
|
|
107
107
|
* @memberof CreateDoctorAffiliationCommand
|
|
108
108
|
*/
|
|
109
109
|
'backgroundThumbnail'?: string | null;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
114
|
+
*/
|
|
115
|
+
'signature'?: string | null;
|
|
110
116
|
/**
|
|
111
117
|
*
|
|
112
118
|
* @type {boolean}
|
|
@@ -188,6 +188,30 @@ export interface CreateHospitalCommand {
|
|
|
188
188
|
* @memberof CreateHospitalCommand
|
|
189
189
|
*/
|
|
190
190
|
'appointmentCurrency'?: string | null;
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @type {string}
|
|
194
|
+
* @memberof CreateHospitalCommand
|
|
195
|
+
*/
|
|
196
|
+
'corporateIdentificationNumber'?: string | null;
|
|
197
|
+
/**
|
|
198
|
+
*
|
|
199
|
+
* @type {string}
|
|
200
|
+
* @memberof CreateHospitalCommand
|
|
201
|
+
*/
|
|
202
|
+
'gstRegistrationNumber'?: string | null;
|
|
203
|
+
/**
|
|
204
|
+
*
|
|
205
|
+
* @type {string}
|
|
206
|
+
* @memberof CreateHospitalCommand
|
|
207
|
+
*/
|
|
208
|
+
'permanentAccountNumber'?: string | null;
|
|
209
|
+
/**
|
|
210
|
+
*
|
|
211
|
+
* @type {string}
|
|
212
|
+
* @memberof CreateHospitalCommand
|
|
213
|
+
*/
|
|
214
|
+
'hospitalRegistrationNumber'?: string | null;
|
|
191
215
|
/**
|
|
192
216
|
*
|
|
193
217
|
* @type {string}
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { PrescriptionDiagnosisInputModel } from './prescription-diagnosis-input-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PrescriptionMedicationInputModel } from './prescription-medication-input-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { PrescriptionSymptomInputModel } from './prescription-symptom-input-model';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface CreatePrescriptionCommand
|
|
30
|
+
*/
|
|
31
|
+
export interface CreatePrescriptionCommand {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CreatePrescriptionCommand
|
|
36
|
+
*/
|
|
37
|
+
'languageCode'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreatePrescriptionCommand
|
|
42
|
+
*/
|
|
43
|
+
'hospitalId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CreatePrescriptionCommand
|
|
48
|
+
*/
|
|
49
|
+
'patientId'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CreatePrescriptionCommand
|
|
54
|
+
*/
|
|
55
|
+
'doctorId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof CreatePrescriptionCommand
|
|
60
|
+
*/
|
|
61
|
+
'patientAffiliationId'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof CreatePrescriptionCommand
|
|
66
|
+
*/
|
|
67
|
+
'doctorAffiliationId'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {number}
|
|
71
|
+
* @memberof CreatePrescriptionCommand
|
|
72
|
+
*/
|
|
73
|
+
'height'?: number | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof CreatePrescriptionCommand
|
|
78
|
+
*/
|
|
79
|
+
'heightUnit'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {number}
|
|
83
|
+
* @memberof CreatePrescriptionCommand
|
|
84
|
+
*/
|
|
85
|
+
'weight'?: number | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof CreatePrescriptionCommand
|
|
90
|
+
*/
|
|
91
|
+
'weightUnit'?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {number}
|
|
95
|
+
* @memberof CreatePrescriptionCommand
|
|
96
|
+
*/
|
|
97
|
+
'bodyMassIndex'?: number | null;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof CreatePrescriptionCommand
|
|
102
|
+
*/
|
|
103
|
+
'bodyMassIndexUnit'?: string | null;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {number}
|
|
107
|
+
* @memberof CreatePrescriptionCommand
|
|
108
|
+
*/
|
|
109
|
+
'pulseRate'?: number | null;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof CreatePrescriptionCommand
|
|
114
|
+
*/
|
|
115
|
+
'pulseRateUnit'?: string | null;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {number}
|
|
119
|
+
* @memberof CreatePrescriptionCommand
|
|
120
|
+
*/
|
|
121
|
+
'systolicBloodPressure'?: number | null;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {number}
|
|
125
|
+
* @memberof CreatePrescriptionCommand
|
|
126
|
+
*/
|
|
127
|
+
'diastolicBloodPressure'?: number | null;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {string}
|
|
131
|
+
* @memberof CreatePrescriptionCommand
|
|
132
|
+
*/
|
|
133
|
+
'bloodPressureUnit'?: string | null;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {number}
|
|
137
|
+
* @memberof CreatePrescriptionCommand
|
|
138
|
+
*/
|
|
139
|
+
'bodyTemperature'?: number | null;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {string}
|
|
143
|
+
* @memberof CreatePrescriptionCommand
|
|
144
|
+
*/
|
|
145
|
+
'bodyTemperatureUnit'?: string | null;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {string}
|
|
149
|
+
* @memberof CreatePrescriptionCommand
|
|
150
|
+
*/
|
|
151
|
+
'advice'?: string | null;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {string}
|
|
155
|
+
* @memberof CreatePrescriptionCommand
|
|
156
|
+
*/
|
|
157
|
+
'summary'?: string | null;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {boolean}
|
|
161
|
+
* @memberof CreatePrescriptionCommand
|
|
162
|
+
*/
|
|
163
|
+
'followUpNeeded'?: boolean;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @type {number}
|
|
167
|
+
* @memberof CreatePrescriptionCommand
|
|
168
|
+
*/
|
|
169
|
+
'followUpDays'?: number | null;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {string}
|
|
173
|
+
* @memberof CreatePrescriptionCommand
|
|
174
|
+
*/
|
|
175
|
+
'followUpNotes'?: string | null;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @type {Array<PrescriptionSymptomInputModel>}
|
|
179
|
+
* @memberof CreatePrescriptionCommand
|
|
180
|
+
*/
|
|
181
|
+
'prescriptionSymptoms'?: Array<PrescriptionSymptomInputModel> | null;
|
|
182
|
+
/**
|
|
183
|
+
*
|
|
184
|
+
* @type {Array<PrescriptionDiagnosisInputModel>}
|
|
185
|
+
* @memberof CreatePrescriptionCommand
|
|
186
|
+
*/
|
|
187
|
+
'prescriptionDiagnoses'?: Array<PrescriptionDiagnosisInputModel> | null;
|
|
188
|
+
/**
|
|
189
|
+
*
|
|
190
|
+
* @type {Array<PrescriptionMedicationInputModel>}
|
|
191
|
+
* @memberof CreatePrescriptionCommand
|
|
192
|
+
*/
|
|
193
|
+
'prescriptionMedications'?: Array<PrescriptionMedicationInputModel> | null;
|
|
194
|
+
}
|
|
195
|
+
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AppointmentType } from './appointment-type';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { Gender } from './gender';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { MediaModel } from './media-model';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface CreateWalkInAppointmentCommand
|
|
30
|
+
*/
|
|
31
|
+
export interface CreateWalkInAppointmentCommand {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {AppointmentType}
|
|
35
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
36
|
+
*/
|
|
37
|
+
'appointmentType'?: AppointmentType;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {boolean}
|
|
41
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
42
|
+
*/
|
|
43
|
+
'isOnline'?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
48
|
+
*/
|
|
49
|
+
'hospitalId'?: string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
54
|
+
*/
|
|
55
|
+
'patientId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
60
|
+
*/
|
|
61
|
+
'hospitalSpecialtyId'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
66
|
+
*/
|
|
67
|
+
'doctorAffiliationId'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
72
|
+
*/
|
|
73
|
+
'dealPackageId'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
78
|
+
*/
|
|
79
|
+
'serviceId'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
84
|
+
*/
|
|
85
|
+
'languageCode'?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
90
|
+
*/
|
|
91
|
+
'firstName'?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
96
|
+
*/
|
|
97
|
+
'lastName'?: string | null;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
102
|
+
*/
|
|
103
|
+
'email'?: string | null;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {string}
|
|
107
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
108
|
+
*/
|
|
109
|
+
'phone'?: string | null;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {Date}
|
|
113
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
114
|
+
*/
|
|
115
|
+
'dateOfBirth'?: Date | null;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {Gender}
|
|
119
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
120
|
+
*/
|
|
121
|
+
'gender'?: Gender;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
126
|
+
*/
|
|
127
|
+
'timeZone'?: string | null;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {string}
|
|
131
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
132
|
+
*/
|
|
133
|
+
'comment'?: string | null;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {number}
|
|
137
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
138
|
+
*/
|
|
139
|
+
'quantity'?: number;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {Date}
|
|
143
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
144
|
+
*/
|
|
145
|
+
'approximateDateStart'?: Date;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {Date}
|
|
149
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
150
|
+
*/
|
|
151
|
+
'approximateDateEnd'?: Date;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {boolean}
|
|
155
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
156
|
+
*/
|
|
157
|
+
'isExternal'?: boolean;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {Array<MediaModel>}
|
|
161
|
+
* @memberof CreateWalkInAppointmentCommand
|
|
162
|
+
*/
|
|
163
|
+
'medias'?: Array<MediaModel> | null;
|
|
164
|
+
}
|
|
165
|
+
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import {
|
|
21
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { MarketingType } from './marketing-type';
|
|
@@ -151,9 +151,9 @@ export interface DoctorAffiliationItemModel {
|
|
|
151
151
|
'appointmentOption'?: AppointmentOptionModel;
|
|
152
152
|
/**
|
|
153
153
|
*
|
|
154
|
-
* @type {
|
|
154
|
+
* @type {AuditableEntityModel}
|
|
155
155
|
* @memberof DoctorAffiliationItemModel
|
|
156
156
|
*/
|
|
157
|
-
'auditableEntity'?:
|
|
157
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
158
158
|
}
|
|
159
159
|
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import {
|
|
21
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { FeatureModel } from './feature-model';
|
|
@@ -157,10 +157,10 @@ export interface DoctorAffiliationModel {
|
|
|
157
157
|
'appointmentOption'?: AppointmentOptionModel;
|
|
158
158
|
/**
|
|
159
159
|
*
|
|
160
|
-
* @type {
|
|
160
|
+
* @type {AuditableEntityModel}
|
|
161
161
|
* @memberof DoctorAffiliationModel
|
|
162
162
|
*/
|
|
163
|
-
'auditableEntity'?:
|
|
163
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
164
164
|
/**
|
|
165
165
|
*
|
|
166
166
|
* @type {string}
|
|
@@ -191,6 +191,12 @@ export interface DoctorAffiliationModel {
|
|
|
191
191
|
* @memberof DoctorAffiliationModel
|
|
192
192
|
*/
|
|
193
193
|
'backgroundThumbnail'?: string | null;
|
|
194
|
+
/**
|
|
195
|
+
*
|
|
196
|
+
* @type {string}
|
|
197
|
+
* @memberof DoctorAffiliationModel
|
|
198
|
+
*/
|
|
199
|
+
'signature'?: string | null;
|
|
194
200
|
/**
|
|
195
201
|
*
|
|
196
202
|
* @type {string}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AppointmentTimetableDateModel } from './appointment-timetable-date-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface GetAppointmentTimetablesResponseModel
|
|
24
|
+
*/
|
|
25
|
+
export interface GetAppointmentTimetablesResponseModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof GetAppointmentTimetablesResponseModel
|
|
30
|
+
*/
|
|
31
|
+
'hospitalTimeZone'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof GetAppointmentTimetablesResponseModel
|
|
36
|
+
*/
|
|
37
|
+
'timeZone'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Date}
|
|
41
|
+
* @memberof GetAppointmentTimetablesResponseModel
|
|
42
|
+
*/
|
|
43
|
+
'today'?: Date;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Array<AppointmentTimetableDateModel>}
|
|
47
|
+
* @memberof GetAppointmentTimetablesResponseModel
|
|
48
|
+
*/
|
|
49
|
+
'days'?: Array<AppointmentTimetableDateModel> | null;
|
|
50
|
+
}
|
|
51
|
+
|