@awell-health/awell-extensions 2.0.76 → 2.0.78
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/extensions/elation/actions/addVitals/addVitals.d.ts +4 -0
- package/dist/extensions/elation/actions/addVitals/addVitals.js +73 -0
- package/dist/extensions/elation/actions/addVitals/addVitals.js.map +1 -0
- package/dist/extensions/elation/actions/addVitals/config/dataPoints.d.ts +6 -0
- package/dist/extensions/elation/actions/addVitals/config/dataPoints.js +10 -0
- package/dist/extensions/elation/actions/addVitals/config/dataPoints.js.map +1 -0
- package/dist/extensions/elation/actions/addVitals/config/fields.d.ts +298 -0
- package/dist/extensions/elation/actions/addVitals/config/fields.js +245 -0
- package/dist/extensions/elation/actions/addVitals/config/fields.js.map +1 -0
- package/dist/extensions/elation/actions/addVitals/config/index.d.ts +2 -0
- package/dist/extensions/elation/actions/addVitals/config/index.js +9 -0
- package/dist/extensions/elation/actions/addVitals/config/index.js.map +1 -0
- package/dist/extensions/elation/actions/addVitals/index.d.ts +1 -0
- package/dist/extensions/elation/actions/addVitals/index.js +6 -0
- package/dist/extensions/elation/actions/addVitals/index.js.map +1 -0
- package/dist/extensions/elation/actions/index.d.ts +322 -74
- package/dist/extensions/elation/actions/index.js +5 -3
- package/dist/extensions/elation/actions/index.js.map +1 -1
- package/dist/extensions/elation/client.d.ts +3 -0
- package/dist/extensions/elation/client.js +12 -0
- package/dist/extensions/elation/client.js.map +1 -1
- package/dist/extensions/elation/types/vitals.d.ts +250 -0
- package/dist/extensions/elation/types/vitals.js +111 -0
- package/dist/extensions/elation/types/vitals.js.map +1 -0
- package/package.json +1 -1
@@ -0,0 +1,4 @@
|
|
1
|
+
import { type Action } from '@awell-health/extensions-core';
|
2
|
+
import { type settings } from '../../settings';
|
3
|
+
import { fields as elationFields, dataPoints } from './config';
|
4
|
+
export declare const addVitals: Action<typeof elationFields, typeof settings, keyof typeof dataPoints>;
|
@@ -0,0 +1,73 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.addVitals = void 0;
|
4
|
+
const zod_1 = require("zod");
|
5
|
+
const lodash_1 = require("lodash");
|
6
|
+
const extensions_core_1 = require("@awell-health/extensions-core");
|
7
|
+
const settings_1 = require("../../settings");
|
8
|
+
const client_1 = require("../../client");
|
9
|
+
const config_1 = require("./config");
|
10
|
+
// Helper function to create measurement objects with optional notes
|
11
|
+
const createMeasurement = (value, note) => {
|
12
|
+
// the undefined check is stupid but otherwise the build is failing
|
13
|
+
if (value !== undefined && !(0, lodash_1.isEmpty)(value)) {
|
14
|
+
return (0, lodash_1.isEmpty)(note)
|
15
|
+
? [
|
16
|
+
{ value: value.toString() },
|
17
|
+
]
|
18
|
+
: [
|
19
|
+
{ value: value.toString(), note },
|
20
|
+
];
|
21
|
+
}
|
22
|
+
return undefined;
|
23
|
+
};
|
24
|
+
exports.addVitals = {
|
25
|
+
key: 'addVitals',
|
26
|
+
category: extensions_core_1.Category.EHR_INTEGRATIONS,
|
27
|
+
title: 'Add Vitals',
|
28
|
+
description: 'Add vitals for the patient',
|
29
|
+
fields: config_1.fields,
|
30
|
+
previewable: true,
|
31
|
+
dataPoints: config_1.dataPoints,
|
32
|
+
onEvent: async ({ payload, onComplete }) => {
|
33
|
+
const { fields, settings } = (0, extensions_core_1.validate)({
|
34
|
+
schema: zod_1.z.object({
|
35
|
+
fields: config_1.FieldsValidationSchema,
|
36
|
+
settings: settings_1.SettingsValidationSchema,
|
37
|
+
}),
|
38
|
+
payload,
|
39
|
+
});
|
40
|
+
const api = (0, client_1.makeAPIClient)(settings);
|
41
|
+
const measurements = {
|
42
|
+
height: createMeasurement(fields.height, fields.heightNote),
|
43
|
+
weight: createMeasurement(fields.weight, fields.weightNote),
|
44
|
+
oxygen: createMeasurement(fields.oxygen, fields.oxygenNote),
|
45
|
+
rr: createMeasurement(fields.rr, fields.rrNote),
|
46
|
+
hr: createMeasurement(fields.hr, fields.hrNote),
|
47
|
+
hc: createMeasurement(fields.hc, fields.hcNote),
|
48
|
+
temperature: createMeasurement(fields.temperature, fields.temperatureNote),
|
49
|
+
bp: createMeasurement(fields.bp, fields.bpNote),
|
50
|
+
bodyfat: createMeasurement(fields.bodyfat, fields.bodyfatNote),
|
51
|
+
dlm: createMeasurement(fields.dlm, fields.dlmNote),
|
52
|
+
bfm: createMeasurement(fields.bfm, fields.bfmNote),
|
53
|
+
wc: createMeasurement(fields.wc, fields.wcNote),
|
54
|
+
};
|
55
|
+
// remove empty measurements
|
56
|
+
const validMeasurements = (0, lodash_1.omitBy)(measurements, lodash_1.isEmpty);
|
57
|
+
const body = {
|
58
|
+
patient: fields.patientId,
|
59
|
+
practice: fields.practiceId,
|
60
|
+
visit_node: fields === null || fields === void 0 ? void 0 : fields.visitNoteId,
|
61
|
+
non_visit_node: fields === null || fields === void 0 ? void 0 : fields.nonVisitNoteId,
|
62
|
+
bmi: fields.bmi,
|
63
|
+
...validMeasurements,
|
64
|
+
};
|
65
|
+
const { id } = await api.addVitals(body);
|
66
|
+
await onComplete({
|
67
|
+
data_points: {
|
68
|
+
vitalsId: String(id),
|
69
|
+
},
|
70
|
+
});
|
71
|
+
},
|
72
|
+
};
|
73
|
+
//# sourceMappingURL=addVitals.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"addVitals.js","sourceRoot":"","sources":["../../../../../extensions/elation/actions/addVitals/addVitals.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"dataPoints.js","sourceRoot":"","sources":["../../../../../../extensions/elation/actions/addVitals/config/dataPoints.ts"],"names":[],"mappings":";;;AAEa,QAAA,UAAU,GAAG;IACxB,QAAQ,EAAE;QACR,GAAG,EAAE,UAAU;QACf,SAAS,EAAE,QAAQ;KACpB;CAC4C,CAAA"}
|
@@ -0,0 +1,298 @@
|
|
1
|
+
import { FieldType } from '@awell-health/extensions-core';
|
2
|
+
import z from 'zod';
|
3
|
+
export declare const fields: {
|
4
|
+
patientId: {
|
5
|
+
id: string;
|
6
|
+
label: string;
|
7
|
+
description: string;
|
8
|
+
type: FieldType.NUMERIC;
|
9
|
+
required: true;
|
10
|
+
};
|
11
|
+
practiceId: {
|
12
|
+
id: string;
|
13
|
+
label: string;
|
14
|
+
description: string;
|
15
|
+
type: FieldType.NUMERIC;
|
16
|
+
required: true;
|
17
|
+
};
|
18
|
+
visitNoteId: {
|
19
|
+
id: string;
|
20
|
+
label: string;
|
21
|
+
description: string;
|
22
|
+
type: FieldType.NUMERIC;
|
23
|
+
required: false;
|
24
|
+
};
|
25
|
+
nonVisitNoteId: {
|
26
|
+
id: string;
|
27
|
+
label: string;
|
28
|
+
description: string;
|
29
|
+
type: FieldType.NUMERIC;
|
30
|
+
required: false;
|
31
|
+
};
|
32
|
+
bmi: {
|
33
|
+
id: string;
|
34
|
+
label: string;
|
35
|
+
description: string;
|
36
|
+
type: FieldType.NUMERIC;
|
37
|
+
required: false;
|
38
|
+
};
|
39
|
+
height: {
|
40
|
+
id: string;
|
41
|
+
label: string;
|
42
|
+
description: string;
|
43
|
+
type: FieldType.NUMERIC;
|
44
|
+
required: false;
|
45
|
+
};
|
46
|
+
heightNote: {
|
47
|
+
id: string;
|
48
|
+
label: string;
|
49
|
+
description: string;
|
50
|
+
type: FieldType.STRING;
|
51
|
+
required: false;
|
52
|
+
};
|
53
|
+
weight: {
|
54
|
+
id: string;
|
55
|
+
label: string;
|
56
|
+
description: string;
|
57
|
+
type: FieldType.NUMERIC;
|
58
|
+
required: false;
|
59
|
+
};
|
60
|
+
weightNote: {
|
61
|
+
id: string;
|
62
|
+
label: string;
|
63
|
+
description: string;
|
64
|
+
type: FieldType.STRING;
|
65
|
+
required: false;
|
66
|
+
};
|
67
|
+
oxygen: {
|
68
|
+
id: string;
|
69
|
+
label: string;
|
70
|
+
description: string;
|
71
|
+
type: FieldType.NUMERIC;
|
72
|
+
required: false;
|
73
|
+
};
|
74
|
+
oxygenNote: {
|
75
|
+
id: string;
|
76
|
+
label: string;
|
77
|
+
description: string;
|
78
|
+
type: FieldType.STRING;
|
79
|
+
required: false;
|
80
|
+
};
|
81
|
+
rr: {
|
82
|
+
id: string;
|
83
|
+
label: string;
|
84
|
+
description: string;
|
85
|
+
type: FieldType.NUMERIC;
|
86
|
+
required: false;
|
87
|
+
};
|
88
|
+
rrNote: {
|
89
|
+
id: string;
|
90
|
+
label: string;
|
91
|
+
description: string;
|
92
|
+
type: FieldType.STRING;
|
93
|
+
required: false;
|
94
|
+
};
|
95
|
+
hr: {
|
96
|
+
id: string;
|
97
|
+
label: string;
|
98
|
+
description: string;
|
99
|
+
type: FieldType.NUMERIC;
|
100
|
+
required: false;
|
101
|
+
};
|
102
|
+
hrNote: {
|
103
|
+
id: string;
|
104
|
+
label: string;
|
105
|
+
description: string;
|
106
|
+
type: FieldType.STRING;
|
107
|
+
required: false;
|
108
|
+
};
|
109
|
+
hc: {
|
110
|
+
id: string;
|
111
|
+
label: string;
|
112
|
+
description: string;
|
113
|
+
type: FieldType.NUMERIC;
|
114
|
+
required: false;
|
115
|
+
};
|
116
|
+
hcNote: {
|
117
|
+
id: string;
|
118
|
+
label: string;
|
119
|
+
description: string;
|
120
|
+
type: FieldType.STRING;
|
121
|
+
required: false;
|
122
|
+
};
|
123
|
+
temperature: {
|
124
|
+
id: string;
|
125
|
+
label: string;
|
126
|
+
description: string;
|
127
|
+
type: FieldType.NUMERIC;
|
128
|
+
required: false;
|
129
|
+
};
|
130
|
+
temperatureNote: {
|
131
|
+
id: string;
|
132
|
+
label: string;
|
133
|
+
description: string;
|
134
|
+
type: FieldType.STRING;
|
135
|
+
required: false;
|
136
|
+
};
|
137
|
+
bp: {
|
138
|
+
id: string;
|
139
|
+
label: string;
|
140
|
+
description: string;
|
141
|
+
type: FieldType.NUMERIC;
|
142
|
+
required: false;
|
143
|
+
};
|
144
|
+
bpNote: {
|
145
|
+
id: string;
|
146
|
+
label: string;
|
147
|
+
description: string;
|
148
|
+
type: FieldType.STRING;
|
149
|
+
required: false;
|
150
|
+
};
|
151
|
+
bodyfat: {
|
152
|
+
id: string;
|
153
|
+
label: string;
|
154
|
+
description: string;
|
155
|
+
type: FieldType.NUMERIC;
|
156
|
+
required: false;
|
157
|
+
};
|
158
|
+
bodyfatNote: {
|
159
|
+
id: string;
|
160
|
+
label: string;
|
161
|
+
description: string;
|
162
|
+
type: FieldType.STRING;
|
163
|
+
required: false;
|
164
|
+
};
|
165
|
+
dlm: {
|
166
|
+
id: string;
|
167
|
+
label: string;
|
168
|
+
description: string;
|
169
|
+
type: FieldType.NUMERIC;
|
170
|
+
required: false;
|
171
|
+
};
|
172
|
+
dlmNote: {
|
173
|
+
id: string;
|
174
|
+
label: string;
|
175
|
+
description: string;
|
176
|
+
type: FieldType.STRING;
|
177
|
+
required: false;
|
178
|
+
};
|
179
|
+
bfm: {
|
180
|
+
id: string;
|
181
|
+
label: string;
|
182
|
+
description: string;
|
183
|
+
type: FieldType.NUMERIC;
|
184
|
+
required: false;
|
185
|
+
};
|
186
|
+
bfmNote: {
|
187
|
+
id: string;
|
188
|
+
label: string;
|
189
|
+
description: string;
|
190
|
+
type: FieldType.STRING;
|
191
|
+
required: false;
|
192
|
+
};
|
193
|
+
wc: {
|
194
|
+
id: string;
|
195
|
+
label: string;
|
196
|
+
description: string;
|
197
|
+
type: FieldType.NUMERIC;
|
198
|
+
required: false;
|
199
|
+
};
|
200
|
+
wcNote: {
|
201
|
+
id: string;
|
202
|
+
label: string;
|
203
|
+
description: string;
|
204
|
+
type: FieldType.STRING;
|
205
|
+
required: false;
|
206
|
+
};
|
207
|
+
};
|
208
|
+
export declare const FieldsValidationSchema: z.ZodObject<{
|
209
|
+
patientId: z.ZodNumber;
|
210
|
+
practiceId: z.ZodNumber;
|
211
|
+
visitNoteId: z.ZodOptional<z.ZodNumber>;
|
212
|
+
nonVisitNoteId: z.ZodOptional<z.ZodNumber>;
|
213
|
+
bmi: z.ZodOptional<z.ZodNumber>;
|
214
|
+
height: z.ZodOptional<z.ZodNumber>;
|
215
|
+
heightNote: z.ZodOptional<z.ZodString>;
|
216
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
217
|
+
weightNote: z.ZodOptional<z.ZodString>;
|
218
|
+
oxygen: z.ZodOptional<z.ZodNumber>;
|
219
|
+
oxygenNote: z.ZodOptional<z.ZodString>;
|
220
|
+
rr: z.ZodOptional<z.ZodNumber>;
|
221
|
+
rrNote: z.ZodOptional<z.ZodString>;
|
222
|
+
hr: z.ZodOptional<z.ZodNumber>;
|
223
|
+
hrNote: z.ZodOptional<z.ZodString>;
|
224
|
+
hc: z.ZodOptional<z.ZodNumber>;
|
225
|
+
hcNote: z.ZodOptional<z.ZodString>;
|
226
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
227
|
+
temperatureNote: z.ZodOptional<z.ZodString>;
|
228
|
+
bp: z.ZodOptional<z.ZodNumber>;
|
229
|
+
bpNote: z.ZodOptional<z.ZodString>;
|
230
|
+
bodyfat: z.ZodOptional<z.ZodNumber>;
|
231
|
+
bodyfatNote: z.ZodOptional<z.ZodString>;
|
232
|
+
dlm: z.ZodOptional<z.ZodNumber>;
|
233
|
+
dlmNote: z.ZodOptional<z.ZodString>;
|
234
|
+
bfm: z.ZodOptional<z.ZodNumber>;
|
235
|
+
bfmNote: z.ZodOptional<z.ZodString>;
|
236
|
+
wc: z.ZodOptional<z.ZodNumber>;
|
237
|
+
wcNote: z.ZodOptional<z.ZodString>;
|
238
|
+
}, "strip", z.ZodTypeAny, {
|
239
|
+
practiceId: number;
|
240
|
+
patientId: number;
|
241
|
+
temperature?: number | undefined;
|
242
|
+
bmi?: number | undefined;
|
243
|
+
height?: number | undefined;
|
244
|
+
weight?: number | undefined;
|
245
|
+
oxygen?: number | undefined;
|
246
|
+
rr?: number | undefined;
|
247
|
+
hr?: number | undefined;
|
248
|
+
hc?: number | undefined;
|
249
|
+
bp?: number | undefined;
|
250
|
+
bodyfat?: number | undefined;
|
251
|
+
dlm?: number | undefined;
|
252
|
+
bfm?: number | undefined;
|
253
|
+
wc?: number | undefined;
|
254
|
+
nonVisitNoteId?: number | undefined;
|
255
|
+
visitNoteId?: number | undefined;
|
256
|
+
heightNote?: string | undefined;
|
257
|
+
weightNote?: string | undefined;
|
258
|
+
oxygenNote?: string | undefined;
|
259
|
+
rrNote?: string | undefined;
|
260
|
+
hrNote?: string | undefined;
|
261
|
+
hcNote?: string | undefined;
|
262
|
+
temperatureNote?: string | undefined;
|
263
|
+
bpNote?: string | undefined;
|
264
|
+
bodyfatNote?: string | undefined;
|
265
|
+
dlmNote?: string | undefined;
|
266
|
+
bfmNote?: string | undefined;
|
267
|
+
wcNote?: string | undefined;
|
268
|
+
}, {
|
269
|
+
practiceId: number;
|
270
|
+
patientId: number;
|
271
|
+
temperature?: number | undefined;
|
272
|
+
bmi?: number | undefined;
|
273
|
+
height?: number | undefined;
|
274
|
+
weight?: number | undefined;
|
275
|
+
oxygen?: number | undefined;
|
276
|
+
rr?: number | undefined;
|
277
|
+
hr?: number | undefined;
|
278
|
+
hc?: number | undefined;
|
279
|
+
bp?: number | undefined;
|
280
|
+
bodyfat?: number | undefined;
|
281
|
+
dlm?: number | undefined;
|
282
|
+
bfm?: number | undefined;
|
283
|
+
wc?: number | undefined;
|
284
|
+
nonVisitNoteId?: number | undefined;
|
285
|
+
visitNoteId?: number | undefined;
|
286
|
+
heightNote?: string | undefined;
|
287
|
+
weightNote?: string | undefined;
|
288
|
+
oxygenNote?: string | undefined;
|
289
|
+
rrNote?: string | undefined;
|
290
|
+
hrNote?: string | undefined;
|
291
|
+
hcNote?: string | undefined;
|
292
|
+
temperatureNote?: string | undefined;
|
293
|
+
bpNote?: string | undefined;
|
294
|
+
bodyfatNote?: string | undefined;
|
295
|
+
dlmNote?: string | undefined;
|
296
|
+
bfmNote?: string | undefined;
|
297
|
+
wcNote?: string | undefined;
|
298
|
+
}>;
|
@@ -0,0 +1,245 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.FieldsValidationSchema = exports.fields = void 0;
|
7
|
+
const extensions_core_1 = require("@awell-health/extensions-core");
|
8
|
+
const zod_1 = __importDefault(require("zod"));
|
9
|
+
exports.fields = {
|
10
|
+
patientId: {
|
11
|
+
id: 'patientId',
|
12
|
+
label: 'Patient ID',
|
13
|
+
description: 'The patient for whom the the history is being created',
|
14
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
15
|
+
required: true,
|
16
|
+
},
|
17
|
+
practiceId: {
|
18
|
+
id: 'practiceId',
|
19
|
+
label: 'Practice ID',
|
20
|
+
description: 'Practice ID where the vitas are beind measured for the patient',
|
21
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
22
|
+
required: true,
|
23
|
+
},
|
24
|
+
visitNoteId: {
|
25
|
+
id: 'visitNoteId',
|
26
|
+
label: 'Visit Note ID',
|
27
|
+
description: 'When provided, the vitals will be attached to the visit note. Note that vitals can only be attached to unsigned visit notes.',
|
28
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
29
|
+
required: false,
|
30
|
+
},
|
31
|
+
nonVisitNoteId: {
|
32
|
+
id: 'nonVisitNoteId',
|
33
|
+
label: 'Non-Visit Note ID',
|
34
|
+
description: 'When provided, the vitals will be attached to the non-visit note. Note that vitals can only be attached to unsigned non-visit notes.',
|
35
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
36
|
+
required: false,
|
37
|
+
},
|
38
|
+
bmi: {
|
39
|
+
id: 'bmi',
|
40
|
+
label: 'BMI',
|
41
|
+
description: 'Body Mass Index; optional and calculated if height and weight are available',
|
42
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
43
|
+
required: false,
|
44
|
+
},
|
45
|
+
height: {
|
46
|
+
id: 'height',
|
47
|
+
label: 'Height',
|
48
|
+
description: 'Patient height in inches',
|
49
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
50
|
+
required: false,
|
51
|
+
},
|
52
|
+
heightNote: {
|
53
|
+
id: 'heightNote',
|
54
|
+
label: 'Height Note',
|
55
|
+
description: '',
|
56
|
+
type: extensions_core_1.FieldType.STRING,
|
57
|
+
required: false,
|
58
|
+
},
|
59
|
+
weight: {
|
60
|
+
id: 'weight',
|
61
|
+
label: 'Weight',
|
62
|
+
description: 'Patient weight in lbs',
|
63
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
64
|
+
required: false,
|
65
|
+
},
|
66
|
+
weightNote: {
|
67
|
+
id: 'weightNote',
|
68
|
+
label: 'Weight Note',
|
69
|
+
description: '',
|
70
|
+
type: extensions_core_1.FieldType.STRING,
|
71
|
+
required: false,
|
72
|
+
},
|
73
|
+
oxygen: {
|
74
|
+
id: 'oxygen',
|
75
|
+
label: 'Oxygen',
|
76
|
+
description: 'Oxygen',
|
77
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
78
|
+
required: false,
|
79
|
+
},
|
80
|
+
oxygenNote: {
|
81
|
+
id: 'oxygenNote',
|
82
|
+
label: 'Oxygen Note',
|
83
|
+
description: '',
|
84
|
+
type: extensions_core_1.FieldType.STRING,
|
85
|
+
required: false,
|
86
|
+
},
|
87
|
+
rr: {
|
88
|
+
id: 'rr',
|
89
|
+
label: 'Respiratory Rate',
|
90
|
+
description: 'Respiratory rate',
|
91
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
92
|
+
required: false,
|
93
|
+
},
|
94
|
+
rrNote: {
|
95
|
+
id: 'rrNote',
|
96
|
+
label: 'Respiratory Rate Note',
|
97
|
+
description: '',
|
98
|
+
type: extensions_core_1.FieldType.STRING,
|
99
|
+
required: false,
|
100
|
+
},
|
101
|
+
hr: {
|
102
|
+
id: 'hr',
|
103
|
+
label: 'Heart Rate',
|
104
|
+
description: 'Heart rate',
|
105
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
106
|
+
required: false,
|
107
|
+
},
|
108
|
+
hrNote: {
|
109
|
+
id: 'hrNote',
|
110
|
+
label: 'Heart Rate Note',
|
111
|
+
description: '',
|
112
|
+
type: extensions_core_1.FieldType.STRING,
|
113
|
+
required: false,
|
114
|
+
},
|
115
|
+
hc: {
|
116
|
+
id: 'hc',
|
117
|
+
label: 'Head Circumference',
|
118
|
+
description: 'Head circumference',
|
119
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
120
|
+
required: false,
|
121
|
+
},
|
122
|
+
hcNote: {
|
123
|
+
id: 'hcNote',
|
124
|
+
label: 'Head Circumference Note',
|
125
|
+
description: '',
|
126
|
+
type: extensions_core_1.FieldType.STRING,
|
127
|
+
required: false,
|
128
|
+
},
|
129
|
+
temperature: {
|
130
|
+
id: 'temperature',
|
131
|
+
label: 'Temperature',
|
132
|
+
description: 'Temperature',
|
133
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
134
|
+
required: false,
|
135
|
+
},
|
136
|
+
temperatureNote: {
|
137
|
+
id: 'temperatureNote',
|
138
|
+
label: 'Temperature Note',
|
139
|
+
description: '',
|
140
|
+
type: extensions_core_1.FieldType.STRING,
|
141
|
+
required: false,
|
142
|
+
},
|
143
|
+
bp: {
|
144
|
+
id: 'bp',
|
145
|
+
label: 'Blood Pressure',
|
146
|
+
description: 'Blood pressure',
|
147
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
148
|
+
required: false,
|
149
|
+
},
|
150
|
+
bpNote: {
|
151
|
+
id: 'bpNote',
|
152
|
+
label: 'Blood Pressure Note',
|
153
|
+
description: '',
|
154
|
+
type: extensions_core_1.FieldType.STRING,
|
155
|
+
required: false,
|
156
|
+
},
|
157
|
+
bodyfat: {
|
158
|
+
id: 'bodyfat',
|
159
|
+
label: 'Body Fat',
|
160
|
+
description: 'Body fat percentage',
|
161
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
162
|
+
required: false,
|
163
|
+
},
|
164
|
+
bodyfatNote: {
|
165
|
+
id: 'bodyfatNote',
|
166
|
+
label: 'Body Fat Note',
|
167
|
+
description: '',
|
168
|
+
type: extensions_core_1.FieldType.STRING,
|
169
|
+
required: false,
|
170
|
+
},
|
171
|
+
dlm: {
|
172
|
+
id: 'dlm',
|
173
|
+
label: 'Dry Lean Mass',
|
174
|
+
description: 'Dry lean mass',
|
175
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
176
|
+
required: false,
|
177
|
+
},
|
178
|
+
dlmNote: {
|
179
|
+
id: 'dlmNote',
|
180
|
+
label: 'Dry Lean Mass Note',
|
181
|
+
description: '',
|
182
|
+
type: extensions_core_1.FieldType.STRING,
|
183
|
+
required: false,
|
184
|
+
},
|
185
|
+
bfm: {
|
186
|
+
id: 'bfm',
|
187
|
+
label: 'Body Fat Mass',
|
188
|
+
description: 'Body fat mass',
|
189
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
190
|
+
required: false,
|
191
|
+
},
|
192
|
+
bfmNote: {
|
193
|
+
id: 'bfmNote',
|
194
|
+
label: 'Body Fat Mass Note',
|
195
|
+
description: '',
|
196
|
+
type: extensions_core_1.FieldType.STRING,
|
197
|
+
required: false,
|
198
|
+
},
|
199
|
+
wc: {
|
200
|
+
id: 'wc',
|
201
|
+
label: 'Waist Circumference',
|
202
|
+
description: 'Waist circumference',
|
203
|
+
type: extensions_core_1.FieldType.NUMERIC,
|
204
|
+
required: false,
|
205
|
+
},
|
206
|
+
wcNote: {
|
207
|
+
id: 'wcNote',
|
208
|
+
label: 'Waist Circumference Note',
|
209
|
+
description: '',
|
210
|
+
type: extensions_core_1.FieldType.STRING,
|
211
|
+
required: false,
|
212
|
+
},
|
213
|
+
};
|
214
|
+
exports.FieldsValidationSchema = zod_1.default.object({
|
215
|
+
patientId: extensions_core_1.NumericIdSchema,
|
216
|
+
practiceId: extensions_core_1.NumericIdSchema,
|
217
|
+
visitNoteId: extensions_core_1.NumericIdSchema.optional(),
|
218
|
+
nonVisitNoteId: extensions_core_1.NumericIdSchema.optional(),
|
219
|
+
bmi: zod_1.default.number().optional(),
|
220
|
+
height: zod_1.default.number().optional(),
|
221
|
+
heightNote: zod_1.default.string().optional(),
|
222
|
+
weight: zod_1.default.number().optional(),
|
223
|
+
weightNote: zod_1.default.string().optional(),
|
224
|
+
oxygen: zod_1.default.number().optional(),
|
225
|
+
oxygenNote: zod_1.default.string().optional(),
|
226
|
+
rr: zod_1.default.number().optional(),
|
227
|
+
rrNote: zod_1.default.string().optional(),
|
228
|
+
hr: zod_1.default.number().optional(),
|
229
|
+
hrNote: zod_1.default.string().optional(),
|
230
|
+
hc: zod_1.default.number().optional(),
|
231
|
+
hcNote: zod_1.default.string().optional(),
|
232
|
+
temperature: zod_1.default.number().optional(),
|
233
|
+
temperatureNote: zod_1.default.string().optional(),
|
234
|
+
bp: zod_1.default.number().optional(),
|
235
|
+
bpNote: zod_1.default.string().optional(),
|
236
|
+
bodyfat: zod_1.default.number().optional(),
|
237
|
+
bodyfatNote: zod_1.default.string().optional(),
|
238
|
+
dlm: zod_1.default.number().optional(),
|
239
|
+
dlmNote: zod_1.default.string().optional(),
|
240
|
+
bfm: zod_1.default.number().optional(),
|
241
|
+
bfmNote: zod_1.default.string().optional(),
|
242
|
+
wc: zod_1.default.number().optional(),
|
243
|
+
wcNote: zod_1.default.string().optional(),
|
244
|
+
});
|
245
|
+
//# sourceMappingURL=fields.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"fields.js","sourceRoot":"","sources":["../../../../../../extensions/elation/actions/addVitals/config/fields.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.dataPoints = exports.FieldsValidationSchema = exports.fields = void 0;
|
4
|
+
var fields_1 = require("./fields");
|
5
|
+
Object.defineProperty(exports, "fields", { enumerable: true, get: function () { return fields_1.fields; } });
|
6
|
+
Object.defineProperty(exports, "FieldsValidationSchema", { enumerable: true, get: function () { return fields_1.FieldsValidationSchema; } });
|
7
|
+
var dataPoints_1 = require("./dataPoints");
|
8
|
+
Object.defineProperty(exports, "dataPoints", { enumerable: true, get: function () { return dataPoints_1.dataPoints; } });
|
9
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../extensions/elation/actions/addVitals/config/index.ts"],"names":[],"mappings":";;;AAAA,mCAAyD;AAAhD,gGAAA,MAAM,OAAA;AAAE,gHAAA,sBAAsB,OAAA;AACvC,2CAAyC;AAAhC,wGAAA,UAAU,OAAA"}
|
@@ -0,0 +1 @@
|
|
1
|
+
export { addVitals } from './addVitals';
|