ch-api-client-typescript2 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.
Files changed (54) hide show
  1. package/lib/api/deals-api.d.ts +4 -4
  2. package/lib/api/deals-api.d.ts.map +1 -1
  3. package/lib/api/doctor-affiliations-api.d.ts +4 -4
  4. package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
  5. package/lib/api/hospitals-api.d.ts +10 -75
  6. package/lib/api/hospitals-api.d.ts.map +1 -1
  7. package/lib/api/hospitals-api.js +0 -96
  8. package/lib/api/prescriptions-api.d.ts +198 -0
  9. package/lib/api/prescriptions-api.d.ts.map +1 -0
  10. package/lib/api/prescriptions-api.js +346 -0
  11. package/lib/api.d.ts +1 -0
  12. package/lib/api.d.ts.map +1 -1
  13. package/lib/api.js +1 -0
  14. package/lib/models/{appointment-timetables-model.d.ts → get-appointment-timetables-response-model.d.ts} +7 -7
  15. package/lib/models/get-appointment-timetables-response-model.d.ts.map +1 -0
  16. package/lib/models/index.d.ts +7 -2
  17. package/lib/models/index.d.ts.map +1 -1
  18. package/lib/models/index.js +7 -2
  19. package/lib/models/prescription-diagnosis-model.d.ts +37 -0
  20. package/lib/models/prescription-diagnosis-model.d.ts.map +1 -0
  21. package/lib/models/prescription-item-model.d.ts +151 -0
  22. package/lib/models/prescription-item-model.d.ts.map +1 -0
  23. package/lib/models/prescription-item-model.js +15 -0
  24. package/lib/models/prescription-medication-model.d.ts +79 -0
  25. package/lib/models/prescription-medication-model.d.ts.map +1 -0
  26. package/lib/models/prescription-medication-model.js +15 -0
  27. package/lib/models/prescription-model.d.ts +172 -0
  28. package/lib/models/prescription-model.d.ts.map +1 -0
  29. package/lib/models/prescription-model.js +15 -0
  30. package/lib/models/{create-landing-form-command.d.ts → prescription-symptom-model.d.ts} +14 -20
  31. package/lib/models/prescription-symptom-model.d.ts.map +1 -0
  32. package/lib/models/prescription-symptom-model.js +15 -0
  33. package/lib/models/prescriptions-model.d.ts +33 -0
  34. package/lib/models/prescriptions-model.d.ts.map +1 -0
  35. package/lib/models/prescriptions-model.js +15 -0
  36. package/package.json +1 -1
  37. package/src/.openapi-generator/FILES +8 -2
  38. package/src/api/deals-api.ts +4 -4
  39. package/src/api/doctor-affiliations-api.ts +4 -4
  40. package/src/api/hospitals-api.ts +8 -121
  41. package/src/api/prescriptions-api.ts +333 -0
  42. package/src/api.ts +1 -0
  43. package/src/models/{appointment-timetables-model.ts → get-appointment-timetables-response-model.ts} +6 -6
  44. package/src/models/index.ts +7 -2
  45. package/src/models/prescription-diagnosis-model.ts +42 -0
  46. package/src/models/prescription-item-model.ts +156 -0
  47. package/src/models/prescription-medication-model.ts +84 -0
  48. package/src/models/prescription-model.ts +183 -0
  49. package/src/models/{create-landing-form-command.ts → prescription-symptom-model.ts} +13 -19
  50. package/src/models/prescriptions-model.ts +42 -0
  51. package/lib/models/appointment-timetables-model.d.ts.map +0 -1
  52. package/lib/models/create-landing-form-command.d.ts.map +0 -1
  53. /package/lib/models/{appointment-timetables-model.js → get-appointment-timetables-response-model.js} +0 -0
  54. /package/lib/models/{create-landing-form-command.js → prescription-diagnosis-model.js} +0 -0
@@ -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
+
@@ -17,44 +17,38 @@
17
17
  /**
18
18
  *
19
19
  * @export
20
- * @interface CreateLandingFormCommand
20
+ * @interface PrescriptionSymptomModel
21
21
  */
22
- export interface CreateLandingFormCommand {
22
+ export interface PrescriptionSymptomModel {
23
23
  /**
24
24
  *
25
25
  * @type {string}
26
- * @memberof CreateLandingFormCommand
26
+ * @memberof PrescriptionSymptomModel
27
27
  */
28
- 'languageCode'?: string | null;
29
- /**
30
- *
31
- * @type {number}
32
- * @memberof CreateLandingFormCommand
33
- */
34
- 'boardId'?: number;
28
+ 'id'?: string;
35
29
  /**
36
30
  *
37
31
  * @type {string}
38
- * @memberof CreateLandingFormCommand
32
+ * @memberof PrescriptionSymptomModel
39
33
  */
40
- 'name'?: string | null;
34
+ 'description'?: string | null;
41
35
  /**
42
36
  *
43
37
  * @type {string}
44
- * @memberof CreateLandingFormCommand
38
+ * @memberof PrescriptionSymptomModel
45
39
  */
46
- 'phone'?: string | null;
40
+ 'since'?: string | null;
47
41
  /**
48
42
  *
49
43
  * @type {string}
50
- * @memberof CreateLandingFormCommand
44
+ * @memberof PrescriptionSymptomModel
51
45
  */
52
- 'email'?: string | null;
46
+ 'severity'?: string | null;
53
47
  /**
54
48
  *
55
- * @type {string}
56
- * @memberof CreateLandingFormCommand
49
+ * @type {number}
50
+ * @memberof PrescriptionSymptomModel
57
51
  */
58
- 'description'?: string | null;
52
+ 'order'?: number;
59
53
  }
60
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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"create-landing-form-command.d.ts","sourceRoot":"","sources":["../../src/models/create-landing-form-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACjC"}