ch-api-client-typescript2 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/deals-api.d.ts +4 -4
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.d.ts +4 -4
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.d.ts +10 -10
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/prescriptions-api.d.ts +198 -0
- package/lib/api/prescriptions-api.d.ts.map +1 -0
- package/lib/api/prescriptions-api.js +346 -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-timetables-model.d.ts → get-appointment-timetables-response-model.d.ts} +7 -7
- package/lib/models/get-appointment-timetables-response-model.d.ts.map +1 -0
- package/lib/models/index.d.ts +7 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +7 -1
- package/lib/models/prescription-diagnosis-model.d.ts +37 -0
- package/lib/models/prescription-diagnosis-model.d.ts.map +1 -0
- package/lib/models/prescription-diagnosis-model.js +15 -0
- package/lib/models/prescription-item-model.d.ts +151 -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-model.d.ts +79 -0
- package/lib/models/prescription-medication-model.d.ts.map +1 -0
- package/lib/models/prescription-medication-model.js +15 -0
- package/lib/models/prescription-model.d.ts +172 -0
- package/lib/models/prescription-model.d.ts.map +1 -0
- package/lib/models/prescription-model.js +15 -0
- package/lib/models/prescription-symptom-model.d.ts +49 -0
- package/lib/models/prescription-symptom-model.d.ts.map +1 -0
- package/lib/models/prescription-symptom-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/package.json +1 -1
- package/src/.openapi-generator/FILES +8 -1
- package/src/api/deals-api.ts +4 -4
- package/src/api/doctor-affiliations-api.ts +4 -4
- package/src/api/hospitals-api.ts +8 -8
- package/src/api/prescriptions-api.ts +333 -0
- package/src/api.ts +1 -0
- package/src/models/{appointment-timetables-model.ts → get-appointment-timetables-response-model.ts} +6 -6
- package/src/models/index.ts +7 -1
- package/src/models/prescription-diagnosis-model.ts +42 -0
- package/src/models/prescription-item-model.ts +156 -0
- package/src/models/prescription-medication-model.ts +84 -0
- package/src/models/prescription-model.ts +183 -0
- package/src/models/prescription-symptom-model.ts +54 -0
- package/src/models/prescriptions-model.ts +42 -0
- package/lib/models/appointment-timetables-model.d.ts.map +0 -1
- /package/lib/models/{appointment-timetables-model.js → get-appointment-timetables-response-model.js} +0 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2
|
|
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 PrescriptionDiagnosisModel
|
|
21
|
+
*/
|
|
22
|
+
export interface PrescriptionDiagnosisModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PrescriptionDiagnosisModel
|
|
27
|
+
*/
|
|
28
|
+
'id'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PrescriptionDiagnosisModel
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof PrescriptionDiagnosisModel
|
|
39
|
+
*/
|
|
40
|
+
'order'?: number;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2
|
|
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 PrescriptionItemModel
|
|
21
|
+
*/
|
|
22
|
+
export interface PrescriptionItemModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PrescriptionItemModel
|
|
27
|
+
*/
|
|
28
|
+
'languageCode'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PrescriptionItemModel
|
|
33
|
+
*/
|
|
34
|
+
'hospitalId'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PrescriptionItemModel
|
|
39
|
+
*/
|
|
40
|
+
'hospitalName'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PrescriptionItemModel
|
|
45
|
+
*/
|
|
46
|
+
'doctorName'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof PrescriptionItemModel
|
|
51
|
+
*/
|
|
52
|
+
'height'?: number | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PrescriptionItemModel
|
|
57
|
+
*/
|
|
58
|
+
'heightUnit'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof PrescriptionItemModel
|
|
63
|
+
*/
|
|
64
|
+
'weight'?: number | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PrescriptionItemModel
|
|
69
|
+
*/
|
|
70
|
+
'weightUnit'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof PrescriptionItemModel
|
|
75
|
+
*/
|
|
76
|
+
'bodyMassIndex'?: number | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PrescriptionItemModel
|
|
81
|
+
*/
|
|
82
|
+
'bodyMassIndexUnit'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof PrescriptionItemModel
|
|
87
|
+
*/
|
|
88
|
+
'pulseRate'?: number | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof PrescriptionItemModel
|
|
93
|
+
*/
|
|
94
|
+
'pulseRateUnit'?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof PrescriptionItemModel
|
|
99
|
+
*/
|
|
100
|
+
'systolicBloodPressure'?: number | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof PrescriptionItemModel
|
|
105
|
+
*/
|
|
106
|
+
'diastolicBloodPressure'?: number | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof PrescriptionItemModel
|
|
111
|
+
*/
|
|
112
|
+
'bloodPressureUnit'?: string | null;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {number}
|
|
116
|
+
* @memberof PrescriptionItemModel
|
|
117
|
+
*/
|
|
118
|
+
'bodyTemperature'?: number | null;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof PrescriptionItemModel
|
|
123
|
+
*/
|
|
124
|
+
'bodyTemperatureUnit'?: string | null;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof PrescriptionItemModel
|
|
129
|
+
*/
|
|
130
|
+
'advice'?: string | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {string}
|
|
134
|
+
* @memberof PrescriptionItemModel
|
|
135
|
+
*/
|
|
136
|
+
'summary'?: string | null;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {boolean}
|
|
140
|
+
* @memberof PrescriptionItemModel
|
|
141
|
+
*/
|
|
142
|
+
'followUpNeeded'?: boolean;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {number}
|
|
146
|
+
* @memberof PrescriptionItemModel
|
|
147
|
+
*/
|
|
148
|
+
'followUpDays'?: number | null;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @type {string}
|
|
152
|
+
* @memberof PrescriptionItemModel
|
|
153
|
+
*/
|
|
154
|
+
'followUpNotes'?: string | null;
|
|
155
|
+
}
|
|
156
|
+
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2
|
|
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 PrescriptionMedicationModel
|
|
21
|
+
*/
|
|
22
|
+
export interface PrescriptionMedicationModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PrescriptionMedicationModel
|
|
27
|
+
*/
|
|
28
|
+
'id'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PrescriptionMedicationModel
|
|
33
|
+
*/
|
|
34
|
+
'name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PrescriptionMedicationModel
|
|
39
|
+
*/
|
|
40
|
+
'ingredients'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof PrescriptionMedicationModel
|
|
45
|
+
*/
|
|
46
|
+
'dose'?: number | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PrescriptionMedicationModel
|
|
51
|
+
*/
|
|
52
|
+
'doseUnit'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PrescriptionMedicationModel
|
|
57
|
+
*/
|
|
58
|
+
'frequency'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof PrescriptionMedicationModel
|
|
63
|
+
*/
|
|
64
|
+
'duration'?: number | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PrescriptionMedicationModel
|
|
69
|
+
*/
|
|
70
|
+
'durationUnit'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PrescriptionMedicationModel
|
|
75
|
+
*/
|
|
76
|
+
'notes'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof PrescriptionMedicationModel
|
|
81
|
+
*/
|
|
82
|
+
'order'?: number;
|
|
83
|
+
}
|
|
84
|
+
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2
|
|
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 { PrescriptionDiagnosisModel } from './prescription-diagnosis-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PrescriptionMedicationModel } from './prescription-medication-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { PrescriptionSymptomModel } from './prescription-symptom-model';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface PrescriptionModel
|
|
30
|
+
*/
|
|
31
|
+
export interface PrescriptionModel {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof PrescriptionModel
|
|
36
|
+
*/
|
|
37
|
+
'languageCode'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof PrescriptionModel
|
|
42
|
+
*/
|
|
43
|
+
'hospitalId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof PrescriptionModel
|
|
48
|
+
*/
|
|
49
|
+
'hospitalName'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof PrescriptionModel
|
|
54
|
+
*/
|
|
55
|
+
'doctorName'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {number}
|
|
59
|
+
* @memberof PrescriptionModel
|
|
60
|
+
*/
|
|
61
|
+
'height'?: number | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof PrescriptionModel
|
|
66
|
+
*/
|
|
67
|
+
'heightUnit'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {number}
|
|
71
|
+
* @memberof PrescriptionModel
|
|
72
|
+
*/
|
|
73
|
+
'weight'?: number | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof PrescriptionModel
|
|
78
|
+
*/
|
|
79
|
+
'weightUnit'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {number}
|
|
83
|
+
* @memberof PrescriptionModel
|
|
84
|
+
*/
|
|
85
|
+
'bodyMassIndex'?: number | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof PrescriptionModel
|
|
90
|
+
*/
|
|
91
|
+
'bodyMassIndexUnit'?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {number}
|
|
95
|
+
* @memberof PrescriptionModel
|
|
96
|
+
*/
|
|
97
|
+
'pulseRate'?: number | null;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof PrescriptionModel
|
|
102
|
+
*/
|
|
103
|
+
'pulseRateUnit'?: string | null;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {number}
|
|
107
|
+
* @memberof PrescriptionModel
|
|
108
|
+
*/
|
|
109
|
+
'systolicBloodPressure'?: number | null;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {number}
|
|
113
|
+
* @memberof PrescriptionModel
|
|
114
|
+
*/
|
|
115
|
+
'diastolicBloodPressure'?: number | null;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {string}
|
|
119
|
+
* @memberof PrescriptionModel
|
|
120
|
+
*/
|
|
121
|
+
'bloodPressureUnit'?: string | null;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {number}
|
|
125
|
+
* @memberof PrescriptionModel
|
|
126
|
+
*/
|
|
127
|
+
'bodyTemperature'?: number | null;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {string}
|
|
131
|
+
* @memberof PrescriptionModel
|
|
132
|
+
*/
|
|
133
|
+
'bodyTemperatureUnit'?: string | null;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {string}
|
|
137
|
+
* @memberof PrescriptionModel
|
|
138
|
+
*/
|
|
139
|
+
'advice'?: string | null;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {string}
|
|
143
|
+
* @memberof PrescriptionModel
|
|
144
|
+
*/
|
|
145
|
+
'summary'?: string | null;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {boolean}
|
|
149
|
+
* @memberof PrescriptionModel
|
|
150
|
+
*/
|
|
151
|
+
'followUpNeeded'?: boolean;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {number}
|
|
155
|
+
* @memberof PrescriptionModel
|
|
156
|
+
*/
|
|
157
|
+
'followUpDays'?: number | null;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {string}
|
|
161
|
+
* @memberof PrescriptionModel
|
|
162
|
+
*/
|
|
163
|
+
'followUpNotes'?: string | null;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @type {Array<PrescriptionSymptomModel>}
|
|
167
|
+
* @memberof PrescriptionModel
|
|
168
|
+
*/
|
|
169
|
+
'prescriptionSymptoms'?: Array<PrescriptionSymptomModel> | null;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {Array<PrescriptionDiagnosisModel>}
|
|
173
|
+
* @memberof PrescriptionModel
|
|
174
|
+
*/
|
|
175
|
+
'prescriptionDiagnoses'?: Array<PrescriptionDiagnosisModel> | null;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @type {Array<PrescriptionMedicationModel>}
|
|
179
|
+
* @memberof PrescriptionModel
|
|
180
|
+
*/
|
|
181
|
+
'prescriptionMedications'?: Array<PrescriptionMedicationModel> | null;
|
|
182
|
+
}
|
|
183
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2
|
|
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 PrescriptionSymptomModel
|
|
21
|
+
*/
|
|
22
|
+
export interface PrescriptionSymptomModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PrescriptionSymptomModel
|
|
27
|
+
*/
|
|
28
|
+
'id'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PrescriptionSymptomModel
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PrescriptionSymptomModel
|
|
39
|
+
*/
|
|
40
|
+
'since'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PrescriptionSymptomModel
|
|
45
|
+
*/
|
|
46
|
+
'severity'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof PrescriptionSymptomModel
|
|
51
|
+
*/
|
|
52
|
+
'order'?: number;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2
|
|
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 { PagedListMetaData } from './paged-list-meta-data';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PrescriptionItemModel } from './prescription-item-model';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface PrescriptionsModel
|
|
27
|
+
*/
|
|
28
|
+
export interface PrescriptionsModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<PrescriptionItemModel>}
|
|
32
|
+
* @memberof PrescriptionsModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<PrescriptionItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof PrescriptionsModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"appointment-timetables-model.d.ts","sourceRoot":"","sources":["../../src/models/appointment-timetables-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,IAAI,CAAC;IACf;;;;OAIG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC;CACxD"}
|
/package/lib/models/{appointment-timetables-model.js → get-appointment-timetables-response-model.js}
RENAMED
|
File without changes
|