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
|
@@ -278,6 +278,30 @@ export interface HospitalModel {
|
|
|
278
278
|
* @memberof HospitalModel
|
|
279
279
|
*/
|
|
280
280
|
'customStyle'?: string | null;
|
|
281
|
+
/**
|
|
282
|
+
*
|
|
283
|
+
* @type {string}
|
|
284
|
+
* @memberof HospitalModel
|
|
285
|
+
*/
|
|
286
|
+
'corporateIdentificationNumber'?: string | null;
|
|
287
|
+
/**
|
|
288
|
+
*
|
|
289
|
+
* @type {string}
|
|
290
|
+
* @memberof HospitalModel
|
|
291
|
+
*/
|
|
292
|
+
'gstRegistrationNumber'?: string | null;
|
|
293
|
+
/**
|
|
294
|
+
*
|
|
295
|
+
* @type {string}
|
|
296
|
+
* @memberof HospitalModel
|
|
297
|
+
*/
|
|
298
|
+
'permanentAccountNumber'?: string | null;
|
|
299
|
+
/**
|
|
300
|
+
*
|
|
301
|
+
* @type {string}
|
|
302
|
+
* @memberof HospitalModel
|
|
303
|
+
*/
|
|
304
|
+
'hospitalRegistrationNumber'?: string | null;
|
|
281
305
|
/**
|
|
282
306
|
*
|
|
283
307
|
* @type {Array<HospitalLanguageItemModel>}
|
package/src/models/index.ts
CHANGED
|
@@ -24,9 +24,12 @@ export * from './appointment-refund-bank-transfer-model';
|
|
|
24
24
|
export * from './appointment-refund-upi-model';
|
|
25
25
|
export * from './appointment-statistics-model';
|
|
26
26
|
export * from './appointment-status';
|
|
27
|
+
export * from './appointment-timetable-date-model';
|
|
27
28
|
export * from './appointment-timetable-model';
|
|
28
29
|
export * from './appointment-timetable-override-model';
|
|
29
30
|
export * from './appointment-timetable-overrides-model';
|
|
31
|
+
export * from './appointment-timetable-status';
|
|
32
|
+
export * from './appointment-timetable-time-slot-model';
|
|
30
33
|
export * from './appointment-timetables-model';
|
|
31
34
|
export * from './appointment-type';
|
|
32
35
|
export * from './appointments-model';
|
|
@@ -150,6 +153,7 @@ export * from './create-patient-command';
|
|
|
150
153
|
export * from './create-plan-command';
|
|
151
154
|
export * from './create-plan-hospital-command';
|
|
152
155
|
export * from './create-policy-command';
|
|
156
|
+
export * from './create-prescription-command';
|
|
153
157
|
export * from './create-profile-command';
|
|
154
158
|
export * from './create-secret-command';
|
|
155
159
|
export * from './create-service-category-command';
|
|
@@ -160,6 +164,7 @@ export * from './create-sub-account-command';
|
|
|
160
164
|
export * from './create-survey-form-command';
|
|
161
165
|
export * from './create-tag-command';
|
|
162
166
|
export * from './create-template-version-command';
|
|
167
|
+
export * from './create-walk-in-appointment-command';
|
|
163
168
|
export * from './create-web-app-command';
|
|
164
169
|
export * from './curation-model';
|
|
165
170
|
export * from './curations-model';
|
|
@@ -223,6 +228,7 @@ export * from './feature-model';
|
|
|
223
228
|
export * from './footer-navigation-item-model';
|
|
224
229
|
export * from './gender';
|
|
225
230
|
export * from './general-statistics-model';
|
|
231
|
+
export * from './get-appointment-timetables-response-model';
|
|
226
232
|
export * from './get-patient-walk-in-query';
|
|
227
233
|
export * from './get-transfer-balance-embeded';
|
|
228
234
|
export * from './get-transfer-balance-result';
|
|
@@ -368,6 +374,15 @@ export * from './platform';
|
|
|
368
374
|
export * from './policies-model';
|
|
369
375
|
export * from './policy-item-model';
|
|
370
376
|
export * from './policy-model';
|
|
377
|
+
export * from './prescription-diagnosis-input-model';
|
|
378
|
+
export * from './prescription-diagnosis-item-model';
|
|
379
|
+
export * from './prescription-item-model';
|
|
380
|
+
export * from './prescription-medication-input-model';
|
|
381
|
+
export * from './prescription-medication-item-model';
|
|
382
|
+
export * from './prescription-model';
|
|
383
|
+
export * from './prescription-symptom-input-model';
|
|
384
|
+
export * from './prescription-symptom-item-model';
|
|
385
|
+
export * from './prescriptions-model';
|
|
371
386
|
export * from './primary-account';
|
|
372
387
|
export * from './problem-details';
|
|
373
388
|
export * from './procedure';
|
|
@@ -543,6 +558,7 @@ export * from './update-patient-command';
|
|
|
543
558
|
export * from './update-plan-command';
|
|
544
559
|
export * from './update-plan-hospital-command';
|
|
545
560
|
export * from './update-policy-command';
|
|
561
|
+
export * from './update-prescription-command';
|
|
546
562
|
export * from './update-profile-command';
|
|
547
563
|
export * from './update-service-category-command';
|
|
548
564
|
export * from './update-service-review-command';
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
* @interface PrescriptionDiagnosisInputModel
|
|
21
|
+
*/
|
|
22
|
+
export interface PrescriptionDiagnosisInputModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PrescriptionDiagnosisInputModel
|
|
27
|
+
*/
|
|
28
|
+
'description'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof PrescriptionDiagnosisInputModel
|
|
33
|
+
*/
|
|
34
|
+
'order'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PrescriptionDiagnosisInputModel
|
|
39
|
+
*/
|
|
40
|
+
'id'?: string | null;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
* @interface PrescriptionDiagnosisItemModel
|
|
21
|
+
*/
|
|
22
|
+
export interface PrescriptionDiagnosisItemModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PrescriptionDiagnosisItemModel
|
|
27
|
+
*/
|
|
28
|
+
'description'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof PrescriptionDiagnosisItemModel
|
|
33
|
+
*/
|
|
34
|
+
'order'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PrescriptionDiagnosisItemModel
|
|
39
|
+
*/
|
|
40
|
+
'id'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,171 @@
|
|
|
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 { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface PrescriptionItemModel
|
|
24
|
+
*/
|
|
25
|
+
export interface PrescriptionItemModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof PrescriptionItemModel
|
|
30
|
+
*/
|
|
31
|
+
'languageCode'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof PrescriptionItemModel
|
|
36
|
+
*/
|
|
37
|
+
'hospitalId'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof PrescriptionItemModel
|
|
42
|
+
*/
|
|
43
|
+
'hospitalName'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof PrescriptionItemModel
|
|
48
|
+
*/
|
|
49
|
+
'doctorName'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof PrescriptionItemModel
|
|
54
|
+
*/
|
|
55
|
+
'height'?: number | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof PrescriptionItemModel
|
|
60
|
+
*/
|
|
61
|
+
'heightUnit'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof PrescriptionItemModel
|
|
66
|
+
*/
|
|
67
|
+
'weight'?: number | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof PrescriptionItemModel
|
|
72
|
+
*/
|
|
73
|
+
'weightUnit'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof PrescriptionItemModel
|
|
78
|
+
*/
|
|
79
|
+
'bodyMassIndex'?: number | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof PrescriptionItemModel
|
|
84
|
+
*/
|
|
85
|
+
'bodyMassIndexUnit'?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {number}
|
|
89
|
+
* @memberof PrescriptionItemModel
|
|
90
|
+
*/
|
|
91
|
+
'pulseRate'?: number | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof PrescriptionItemModel
|
|
96
|
+
*/
|
|
97
|
+
'pulseRateUnit'?: string | null;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {number}
|
|
101
|
+
* @memberof PrescriptionItemModel
|
|
102
|
+
*/
|
|
103
|
+
'systolicBloodPressure'?: number | null;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {number}
|
|
107
|
+
* @memberof PrescriptionItemModel
|
|
108
|
+
*/
|
|
109
|
+
'diastolicBloodPressure'?: number | null;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof PrescriptionItemModel
|
|
114
|
+
*/
|
|
115
|
+
'bloodPressureUnit'?: string | null;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {number}
|
|
119
|
+
* @memberof PrescriptionItemModel
|
|
120
|
+
*/
|
|
121
|
+
'bodyTemperature'?: number | null;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof PrescriptionItemModel
|
|
126
|
+
*/
|
|
127
|
+
'bodyTemperatureUnit'?: string | null;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {string}
|
|
131
|
+
* @memberof PrescriptionItemModel
|
|
132
|
+
*/
|
|
133
|
+
'advice'?: string | null;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {string}
|
|
137
|
+
* @memberof PrescriptionItemModel
|
|
138
|
+
*/
|
|
139
|
+
'summary'?: string | null;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {boolean}
|
|
143
|
+
* @memberof PrescriptionItemModel
|
|
144
|
+
*/
|
|
145
|
+
'followUpNeeded'?: boolean;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {number}
|
|
149
|
+
* @memberof PrescriptionItemModel
|
|
150
|
+
*/
|
|
151
|
+
'followUpDays'?: number | null;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {string}
|
|
155
|
+
* @memberof PrescriptionItemModel
|
|
156
|
+
*/
|
|
157
|
+
'followUpNotes'?: string | null;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {AuditableEntityModel}
|
|
161
|
+
* @memberof PrescriptionItemModel
|
|
162
|
+
*/
|
|
163
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @type {string}
|
|
167
|
+
* @memberof PrescriptionItemModel
|
|
168
|
+
*/
|
|
169
|
+
'id'?: string;
|
|
170
|
+
}
|
|
171
|
+
|
|
@@ -0,0 +1,84 @@
|
|
|
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
|
+
* @interface PrescriptionMedicationInputModel
|
|
21
|
+
*/
|
|
22
|
+
export interface PrescriptionMedicationInputModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PrescriptionMedicationInputModel
|
|
27
|
+
*/
|
|
28
|
+
'name'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PrescriptionMedicationInputModel
|
|
33
|
+
*/
|
|
34
|
+
'ingredients'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof PrescriptionMedicationInputModel
|
|
39
|
+
*/
|
|
40
|
+
'dose'?: number | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PrescriptionMedicationInputModel
|
|
45
|
+
*/
|
|
46
|
+
'doseUnit'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PrescriptionMedicationInputModel
|
|
51
|
+
*/
|
|
52
|
+
'frequency'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof PrescriptionMedicationInputModel
|
|
57
|
+
*/
|
|
58
|
+
'duration'?: number | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof PrescriptionMedicationInputModel
|
|
63
|
+
*/
|
|
64
|
+
'durationUnit'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PrescriptionMedicationInputModel
|
|
69
|
+
*/
|
|
70
|
+
'notes'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof PrescriptionMedicationInputModel
|
|
75
|
+
*/
|
|
76
|
+
'order'?: number;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PrescriptionMedicationInputModel
|
|
81
|
+
*/
|
|
82
|
+
'id'?: string | null;
|
|
83
|
+
}
|
|
84
|
+
|
|
@@ -0,0 +1,84 @@
|
|
|
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
|
+
* @interface PrescriptionMedicationItemModel
|
|
21
|
+
*/
|
|
22
|
+
export interface PrescriptionMedicationItemModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PrescriptionMedicationItemModel
|
|
27
|
+
*/
|
|
28
|
+
'name'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PrescriptionMedicationItemModel
|
|
33
|
+
*/
|
|
34
|
+
'ingredients'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof PrescriptionMedicationItemModel
|
|
39
|
+
*/
|
|
40
|
+
'dose'?: number | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PrescriptionMedicationItemModel
|
|
45
|
+
*/
|
|
46
|
+
'doseUnit'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PrescriptionMedicationItemModel
|
|
51
|
+
*/
|
|
52
|
+
'frequency'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof PrescriptionMedicationItemModel
|
|
57
|
+
*/
|
|
58
|
+
'duration'?: number | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof PrescriptionMedicationItemModel
|
|
63
|
+
*/
|
|
64
|
+
'durationUnit'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PrescriptionMedicationItemModel
|
|
69
|
+
*/
|
|
70
|
+
'notes'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof PrescriptionMedicationItemModel
|
|
75
|
+
*/
|
|
76
|
+
'order'?: number;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PrescriptionMedicationItemModel
|
|
81
|
+
*/
|
|
82
|
+
'id'?: string;
|
|
83
|
+
}
|
|
84
|
+
|
|
@@ -0,0 +1,198 @@
|
|
|
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 { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PrescriptionDiagnosisItemModel } from './prescription-diagnosis-item-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { PrescriptionMedicationItemModel } from './prescription-medication-item-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
import { PrescriptionSymptomItemModel } from './prescription-symptom-item-model';
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @export
|
|
32
|
+
* @interface PrescriptionModel
|
|
33
|
+
*/
|
|
34
|
+
export interface PrescriptionModel {
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PrescriptionModel
|
|
39
|
+
*/
|
|
40
|
+
'languageCode'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PrescriptionModel
|
|
45
|
+
*/
|
|
46
|
+
'hospitalId'?: string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PrescriptionModel
|
|
51
|
+
*/
|
|
52
|
+
'hospitalName'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PrescriptionModel
|
|
57
|
+
*/
|
|
58
|
+
'doctorName'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof PrescriptionModel
|
|
63
|
+
*/
|
|
64
|
+
'height'?: number | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PrescriptionModel
|
|
69
|
+
*/
|
|
70
|
+
'heightUnit'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof PrescriptionModel
|
|
75
|
+
*/
|
|
76
|
+
'weight'?: number | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PrescriptionModel
|
|
81
|
+
*/
|
|
82
|
+
'weightUnit'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof PrescriptionModel
|
|
87
|
+
*/
|
|
88
|
+
'bodyMassIndex'?: number | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof PrescriptionModel
|
|
93
|
+
*/
|
|
94
|
+
'bodyMassIndexUnit'?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof PrescriptionModel
|
|
99
|
+
*/
|
|
100
|
+
'pulseRate'?: number | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof PrescriptionModel
|
|
105
|
+
*/
|
|
106
|
+
'pulseRateUnit'?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof PrescriptionModel
|
|
111
|
+
*/
|
|
112
|
+
'systolicBloodPressure'?: number | null;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {number}
|
|
116
|
+
* @memberof PrescriptionModel
|
|
117
|
+
*/
|
|
118
|
+
'diastolicBloodPressure'?: number | null;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof PrescriptionModel
|
|
123
|
+
*/
|
|
124
|
+
'bloodPressureUnit'?: string | null;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {number}
|
|
128
|
+
* @memberof PrescriptionModel
|
|
129
|
+
*/
|
|
130
|
+
'bodyTemperature'?: number | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {string}
|
|
134
|
+
* @memberof PrescriptionModel
|
|
135
|
+
*/
|
|
136
|
+
'bodyTemperatureUnit'?: string | null;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {string}
|
|
140
|
+
* @memberof PrescriptionModel
|
|
141
|
+
*/
|
|
142
|
+
'advice'?: string | null;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {string}
|
|
146
|
+
* @memberof PrescriptionModel
|
|
147
|
+
*/
|
|
148
|
+
'summary'?: string | null;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @type {boolean}
|
|
152
|
+
* @memberof PrescriptionModel
|
|
153
|
+
*/
|
|
154
|
+
'followUpNeeded'?: boolean;
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @type {number}
|
|
158
|
+
* @memberof PrescriptionModel
|
|
159
|
+
*/
|
|
160
|
+
'followUpDays'?: number | null;
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @type {string}
|
|
164
|
+
* @memberof PrescriptionModel
|
|
165
|
+
*/
|
|
166
|
+
'followUpNotes'?: string | null;
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @type {AuditableEntityModel}
|
|
170
|
+
* @memberof PrescriptionModel
|
|
171
|
+
*/
|
|
172
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @type {Array<PrescriptionSymptomItemModel>}
|
|
176
|
+
* @memberof PrescriptionModel
|
|
177
|
+
*/
|
|
178
|
+
'prescriptionSymptoms'?: Array<PrescriptionSymptomItemModel> | null;
|
|
179
|
+
/**
|
|
180
|
+
*
|
|
181
|
+
* @type {Array<PrescriptionDiagnosisItemModel>}
|
|
182
|
+
* @memberof PrescriptionModel
|
|
183
|
+
*/
|
|
184
|
+
'prescriptionDiagnoses'?: Array<PrescriptionDiagnosisItemModel> | null;
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* @type {Array<PrescriptionMedicationItemModel>}
|
|
188
|
+
* @memberof PrescriptionModel
|
|
189
|
+
*/
|
|
190
|
+
'prescriptionMedications'?: Array<PrescriptionMedicationItemModel> | null;
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @type {string}
|
|
194
|
+
* @memberof PrescriptionModel
|
|
195
|
+
*/
|
|
196
|
+
'id'?: string;
|
|
197
|
+
}
|
|
198
|
+
|