@awell-health/awell-extensions 2.0.75 → 2.0.77

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. package/dist/extensions/elation/actions/addVitals/addVitals.d.ts +4 -0
  2. package/dist/extensions/elation/actions/addVitals/addVitals.js +73 -0
  3. package/dist/extensions/elation/actions/addVitals/addVitals.js.map +1 -0
  4. package/dist/extensions/elation/actions/addVitals/config/dataPoints.d.ts +6 -0
  5. package/dist/extensions/elation/actions/addVitals/config/dataPoints.js +10 -0
  6. package/dist/extensions/elation/actions/addVitals/config/dataPoints.js.map +1 -0
  7. package/dist/extensions/elation/actions/addVitals/config/fields.d.ts +298 -0
  8. package/dist/extensions/elation/actions/addVitals/config/fields.js +245 -0
  9. package/dist/extensions/elation/actions/addVitals/config/fields.js.map +1 -0
  10. package/dist/extensions/elation/actions/addVitals/config/index.d.ts +2 -0
  11. package/dist/extensions/elation/actions/addVitals/config/index.js +9 -0
  12. package/dist/extensions/elation/actions/addVitals/config/index.js.map +1 -0
  13. package/dist/extensions/elation/actions/addVitals/index.d.ts +1 -0
  14. package/dist/extensions/elation/actions/addVitals/index.js +6 -0
  15. package/dist/extensions/elation/actions/addVitals/index.js.map +1 -0
  16. package/dist/extensions/elation/actions/createVisitNote/config/dataPoints.d.ts +6 -0
  17. package/dist/extensions/elation/actions/createVisitNote/config/dataPoints.js +10 -0
  18. package/dist/extensions/elation/actions/createVisitNote/config/dataPoints.js.map +1 -0
  19. package/dist/extensions/elation/actions/createVisitNote/config/fields.d.ts +106 -0
  20. package/dist/extensions/elation/actions/createVisitNote/config/fields.js +95 -0
  21. package/dist/extensions/elation/actions/createVisitNote/config/fields.js.map +1 -0
  22. package/dist/extensions/elation/actions/createVisitNote/config/index.d.ts +2 -0
  23. package/dist/extensions/elation/actions/createVisitNote/config/index.js +11 -0
  24. package/dist/extensions/elation/actions/createVisitNote/config/index.js.map +1 -0
  25. package/dist/extensions/elation/actions/createVisitNote/createVisitNote.d.ts +4 -0
  26. package/dist/extensions/elation/actions/createVisitNote/createVisitNote.js +49 -0
  27. package/dist/extensions/elation/actions/createVisitNote/createVisitNote.js.map +1 -0
  28. package/dist/extensions/elation/actions/createVisitNote/index.d.ts +1 -0
  29. package/dist/extensions/elation/actions/createVisitNote/index.js +6 -0
  30. package/dist/extensions/elation/actions/createVisitNote/index.js.map +1 -0
  31. package/dist/extensions/elation/actions/index.d.ts +101 -0
  32. package/dist/extensions/elation/actions/index.js +2 -0
  33. package/dist/extensions/elation/actions/index.js.map +1 -1
  34. package/dist/extensions/elation/client.d.ts +6 -0
  35. package/dist/extensions/elation/client.js +24 -0
  36. package/dist/extensions/elation/client.js.map +1 -1
  37. package/dist/extensions/elation/types/visitNote.d.ts +53 -0
  38. package/dist/extensions/elation/types/visitNote.js +46 -0
  39. package/dist/extensions/elation/types/visitNote.js.map +1 -0
  40. package/dist/extensions/elation/types/vitals.d.ts +250 -0
  41. package/dist/extensions/elation/types/vitals.js +111 -0
  42. package/dist/extensions/elation/types/vitals.js.map +1 -0
  43. package/package.json +1 -1
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.CreateVisitNoteInputSchema = void 0;
27
+ const extensions_core_1 = require("@awell-health/extensions-core");
28
+ const fields_1 = require("../actions/createVisitNote/config/fields");
29
+ const z = __importStar(require("zod"));
30
+ exports.CreateVisitNoteInputSchema = z
31
+ .object({
32
+ patient: extensions_core_1.NumericIdSchema,
33
+ chart_date: extensions_core_1.DateTimeSchema,
34
+ document_date: extensions_core_1.DateTimeSchema,
35
+ template: fields_1.templateType,
36
+ physician: extensions_core_1.NumericIdSchema,
37
+ bullets: z.array(z.object({
38
+ text: z.string(),
39
+ author: extensions_core_1.NumericIdSchema,
40
+ category: fields_1.bulletCategory,
41
+ })),
42
+ type: z.string().optional(),
43
+ confidential: z.boolean().optional(),
44
+ })
45
+ .strict();
46
+ //# sourceMappingURL=visitNote.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"visitNote.js","sourceRoot":"","sources":["../../../../extensions/elation/types/visitNote.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mEAA+E;AAC/E,qEAGiD;AACjD,uCAAwB;AAEX,QAAA,0BAA0B,GAAG,CAAC;KACxC,MAAM,CAAC;IACN,OAAO,EAAE,iCAAe;IACxB,UAAU,EAAE,gCAAc;IAC1B,aAAa,EAAE,gCAAc;IAC7B,QAAQ,EAAE,qBAAY;IACtB,SAAS,EAAE,iCAAe;IAC1B,OAAO,EAAE,CAAC,CAAC,KAAK,CACd,CAAC,CAAC,MAAM,CAAC;QACP,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,MAAM,EAAE,iCAAe;QACvB,QAAQ,EAAE,uBAAc;KACzB,CAAC,CACH;IACD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACrC,CAAC;KACD,MAAM,EAAE,CAAA"}
@@ -0,0 +1,250 @@
1
+ import * as z from 'zod';
2
+ export declare const measurementInputSchema: z.ZodObject<{
3
+ value: z.ZodString;
4
+ note: z.ZodOptional<z.ZodString>;
5
+ }, "strip", z.ZodTypeAny, {
6
+ value: string;
7
+ note?: string | undefined;
8
+ }, {
9
+ value: string;
10
+ note?: string | undefined;
11
+ }>;
12
+ export declare const AddVitalsInputSchema: z.ZodObject<{
13
+ patient: z.ZodNumber;
14
+ practice: z.ZodNumber;
15
+ visit_node: z.ZodOptional<z.ZodNumber>;
16
+ non_visit_node: z.ZodOptional<z.ZodNumber>;
17
+ bmi: z.ZodOptional<z.ZodNumber>;
18
+ height: z.ZodOptional<z.ZodArray<z.ZodObject<{
19
+ value: z.ZodString;
20
+ note: z.ZodOptional<z.ZodString>;
21
+ }, "strip", z.ZodTypeAny, {
22
+ value: string;
23
+ note?: string | undefined;
24
+ }, {
25
+ value: string;
26
+ note?: string | undefined;
27
+ }>, "many">>;
28
+ weight: z.ZodOptional<z.ZodArray<z.ZodObject<{
29
+ value: z.ZodString;
30
+ note: z.ZodOptional<z.ZodString>;
31
+ }, "strip", z.ZodTypeAny, {
32
+ value: string;
33
+ note?: string | undefined;
34
+ }, {
35
+ value: string;
36
+ note?: string | undefined;
37
+ }>, "many">>;
38
+ oxygen: z.ZodOptional<z.ZodArray<z.ZodObject<{
39
+ value: z.ZodString;
40
+ note: z.ZodOptional<z.ZodString>;
41
+ }, "strip", z.ZodTypeAny, {
42
+ value: string;
43
+ note?: string | undefined;
44
+ }, {
45
+ value: string;
46
+ note?: string | undefined;
47
+ }>, "many">>;
48
+ rr: z.ZodOptional<z.ZodArray<z.ZodObject<{
49
+ value: z.ZodString;
50
+ note: z.ZodOptional<z.ZodString>;
51
+ }, "strip", z.ZodTypeAny, {
52
+ value: string;
53
+ note?: string | undefined;
54
+ }, {
55
+ value: string;
56
+ note?: string | undefined;
57
+ }>, "many">>;
58
+ hr: z.ZodOptional<z.ZodArray<z.ZodObject<{
59
+ value: z.ZodString;
60
+ note: z.ZodOptional<z.ZodString>;
61
+ }, "strip", z.ZodTypeAny, {
62
+ value: string;
63
+ note?: string | undefined;
64
+ }, {
65
+ value: string;
66
+ note?: string | undefined;
67
+ }>, "many">>;
68
+ hc: z.ZodOptional<z.ZodArray<z.ZodObject<{
69
+ value: z.ZodString;
70
+ note: z.ZodOptional<z.ZodString>;
71
+ }, "strip", z.ZodTypeAny, {
72
+ value: string;
73
+ note?: string | undefined;
74
+ }, {
75
+ value: string;
76
+ note?: string | undefined;
77
+ }>, "many">>;
78
+ temperature: z.ZodOptional<z.ZodArray<z.ZodObject<{
79
+ value: z.ZodString;
80
+ note: z.ZodOptional<z.ZodString>;
81
+ }, "strip", z.ZodTypeAny, {
82
+ value: string;
83
+ note?: string | undefined;
84
+ }, {
85
+ value: string;
86
+ note?: string | undefined;
87
+ }>, "many">>;
88
+ bp: z.ZodOptional<z.ZodArray<z.ZodObject<{
89
+ value: z.ZodString;
90
+ note: z.ZodOptional<z.ZodString>;
91
+ }, "strip", z.ZodTypeAny, {
92
+ value: string;
93
+ note?: string | undefined;
94
+ }, {
95
+ value: string;
96
+ note?: string | undefined;
97
+ }>, "many">>;
98
+ bodyfat: z.ZodOptional<z.ZodArray<z.ZodObject<{
99
+ value: z.ZodString;
100
+ note: z.ZodOptional<z.ZodString>;
101
+ }, "strip", z.ZodTypeAny, {
102
+ value: string;
103
+ note?: string | undefined;
104
+ }, {
105
+ value: string;
106
+ note?: string | undefined;
107
+ }>, "many">>;
108
+ dlm: z.ZodOptional<z.ZodArray<z.ZodObject<{
109
+ value: z.ZodString;
110
+ note: z.ZodOptional<z.ZodString>;
111
+ }, "strip", z.ZodTypeAny, {
112
+ value: string;
113
+ note?: string | undefined;
114
+ }, {
115
+ value: string;
116
+ note?: string | undefined;
117
+ }>, "many">>;
118
+ bfm: z.ZodOptional<z.ZodArray<z.ZodObject<{
119
+ value: z.ZodString;
120
+ note: z.ZodOptional<z.ZodString>;
121
+ }, "strip", z.ZodTypeAny, {
122
+ value: string;
123
+ note?: string | undefined;
124
+ }, {
125
+ value: string;
126
+ note?: string | undefined;
127
+ }>, "many">>;
128
+ wc: z.ZodOptional<z.ZodArray<z.ZodObject<{
129
+ value: z.ZodString;
130
+ note: z.ZodOptional<z.ZodString>;
131
+ }, "strip", z.ZodTypeAny, {
132
+ value: string;
133
+ note?: string | undefined;
134
+ }, {
135
+ value: string;
136
+ note?: string | undefined;
137
+ }>, "many">>;
138
+ }, "strict", z.ZodTypeAny, {
139
+ patient: number;
140
+ practice: number;
141
+ temperature?: {
142
+ value: string;
143
+ note?: string | undefined;
144
+ }[] | undefined;
145
+ visit_node?: number | undefined;
146
+ non_visit_node?: number | undefined;
147
+ bmi?: number | undefined;
148
+ height?: {
149
+ value: string;
150
+ note?: string | undefined;
151
+ }[] | undefined;
152
+ weight?: {
153
+ value: string;
154
+ note?: string | undefined;
155
+ }[] | undefined;
156
+ oxygen?: {
157
+ value: string;
158
+ note?: string | undefined;
159
+ }[] | undefined;
160
+ rr?: {
161
+ value: string;
162
+ note?: string | undefined;
163
+ }[] | undefined;
164
+ hr?: {
165
+ value: string;
166
+ note?: string | undefined;
167
+ }[] | undefined;
168
+ hc?: {
169
+ value: string;
170
+ note?: string | undefined;
171
+ }[] | undefined;
172
+ bp?: {
173
+ value: string;
174
+ note?: string | undefined;
175
+ }[] | undefined;
176
+ bodyfat?: {
177
+ value: string;
178
+ note?: string | undefined;
179
+ }[] | undefined;
180
+ dlm?: {
181
+ value: string;
182
+ note?: string | undefined;
183
+ }[] | undefined;
184
+ bfm?: {
185
+ value: string;
186
+ note?: string | undefined;
187
+ }[] | undefined;
188
+ wc?: {
189
+ value: string;
190
+ note?: string | undefined;
191
+ }[] | undefined;
192
+ }, {
193
+ patient: number;
194
+ practice: number;
195
+ temperature?: {
196
+ value: string;
197
+ note?: string | undefined;
198
+ }[] | undefined;
199
+ visit_node?: number | undefined;
200
+ non_visit_node?: number | undefined;
201
+ bmi?: number | undefined;
202
+ height?: {
203
+ value: string;
204
+ note?: string | undefined;
205
+ }[] | undefined;
206
+ weight?: {
207
+ value: string;
208
+ note?: string | undefined;
209
+ }[] | undefined;
210
+ oxygen?: {
211
+ value: string;
212
+ note?: string | undefined;
213
+ }[] | undefined;
214
+ rr?: {
215
+ value: string;
216
+ note?: string | undefined;
217
+ }[] | undefined;
218
+ hr?: {
219
+ value: string;
220
+ note?: string | undefined;
221
+ }[] | undefined;
222
+ hc?: {
223
+ value: string;
224
+ note?: string | undefined;
225
+ }[] | undefined;
226
+ bp?: {
227
+ value: string;
228
+ note?: string | undefined;
229
+ }[] | undefined;
230
+ bodyfat?: {
231
+ value: string;
232
+ note?: string | undefined;
233
+ }[] | undefined;
234
+ dlm?: {
235
+ value: string;
236
+ note?: string | undefined;
237
+ }[] | undefined;
238
+ bfm?: {
239
+ value: string;
240
+ note?: string | undefined;
241
+ }[] | undefined;
242
+ wc?: {
243
+ value: string;
244
+ note?: string | undefined;
245
+ }[] | undefined;
246
+ }>;
247
+ export type AddVitalsInputType = z.infer<typeof AddVitalsInputSchema>;
248
+ export interface AddVitalsResponseType extends AddVitalsInputType {
249
+ id: number;
250
+ }
@@ -0,0 +1,111 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.AddVitalsInputSchema = exports.measurementInputSchema = void 0;
27
+ const extensions_core_1 = require("@awell-health/extensions-core");
28
+ const z = __importStar(require("zod"));
29
+ // Define the shape for each object in the array
30
+ exports.measurementInputSchema = z.object({
31
+ value: z
32
+ .string()
33
+ .max(10)
34
+ .describe('Measurement value (string up to 10 characters)'),
35
+ note: z
36
+ .string()
37
+ .max(250)
38
+ .optional()
39
+ .describe('Optional note (string up to 250 characters)'),
40
+ });
41
+ exports.AddVitalsInputSchema = z
42
+ .object({
43
+ patient: extensions_core_1.NumericIdSchema,
44
+ practice: extensions_core_1.NumericIdSchema,
45
+ visit_node: extensions_core_1.NumericIdSchema.optional(),
46
+ non_visit_node: extensions_core_1.NumericIdSchema.optional(),
47
+ bmi: z.number().optional(),
48
+ height: z
49
+ .array(exports.measurementInputSchema)
50
+ .length(1)
51
+ .optional()
52
+ .describe('Height; only one item allowed'),
53
+ weight: z
54
+ .array(exports.measurementInputSchema)
55
+ .length(1)
56
+ .optional()
57
+ .describe('Weight; only one item allowed'),
58
+ oxygen: z
59
+ .array(exports.measurementInputSchema)
60
+ .length(1)
61
+ .optional()
62
+ .describe('Oxygen; only one item allowed'),
63
+ rr: z
64
+ .array(exports.measurementInputSchema)
65
+ .length(1)
66
+ .optional()
67
+ .describe('Respiratory rate; only one item allowed'),
68
+ hr: z
69
+ .array(exports.measurementInputSchema)
70
+ .length(1)
71
+ .optional()
72
+ .describe('Heart rate; only one item allowed'),
73
+ hc: z
74
+ .array(exports.measurementInputSchema)
75
+ .length(1)
76
+ .optional()
77
+ .describe('Head circumference; only one item allowed'),
78
+ temperature: z
79
+ .array(exports.measurementInputSchema)
80
+ .length(1)
81
+ .optional()
82
+ .describe('Temperature; only one item allowed'),
83
+ bp: z
84
+ .array(exports.measurementInputSchema)
85
+ .optional()
86
+ .describe('Blood pressure; multiple items allowed'),
87
+ // we are skipping the ketone for now because of lack of documentation on the supported observations
88
+ // ketone: z.array(measurementInputSchema).optional().describe("Optional ketone; see Vital Object Definition for supported observations"),
89
+ bodyfat: z
90
+ .array(exports.measurementInputSchema)
91
+ .length(1)
92
+ .optional()
93
+ .describe('Optional body fat; only one item allowed'),
94
+ dlm: z
95
+ .array(exports.measurementInputSchema)
96
+ .length(1)
97
+ .optional()
98
+ .describe('Optional DLM; only one item allowed'),
99
+ bfm: z
100
+ .array(exports.measurementInputSchema)
101
+ .length(1)
102
+ .optional()
103
+ .describe('Optional BFM; only one item allowed'),
104
+ wc: z
105
+ .array(exports.measurementInputSchema)
106
+ .length(1)
107
+ .optional()
108
+ .describe('Optional WC; only one item allowed'),
109
+ })
110
+ .strict();
111
+ //# sourceMappingURL=vitals.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vitals.js","sourceRoot":"","sources":["../../../../extensions/elation/types/vitals.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mEAA+D;AAC/D,uCAAwB;AAExB,gDAAgD;AACnC,QAAA,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7C,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,GAAG,CAAC,EAAE,CAAC;SACP,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,GAAG,CAAC,GAAG,CAAC;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,6CAA6C,CAAC;CAC3D,CAAC,CAAA;AAEW,QAAA,oBAAoB,GAAG,CAAC;KAClC,MAAM,CAAC;IACN,OAAO,EAAE,iCAAe;IACxB,QAAQ,EAAE,iCAAe;IACzB,UAAU,EAAE,iCAAe,CAAC,QAAQ,EAAE;IACtC,cAAc,EAAE,iCAAe,CAAC,QAAQ,EAAE;IAC1C,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1B,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,8BAAsB,CAAC;SAC7B,MAAM,CAAC,CAAC,CAAC;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,+BAA+B,CAAC;IAC5C,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,8BAAsB,CAAC;SAC7B,MAAM,CAAC,CAAC,CAAC;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,+BAA+B,CAAC;IAC5C,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,8BAAsB,CAAC;SAC7B,MAAM,CAAC,CAAC,CAAC;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,+BAA+B,CAAC;IAC5C,EAAE,EAAE,CAAC;SACF,KAAK,CAAC,8BAAsB,CAAC;SAC7B,MAAM,CAAC,CAAC,CAAC;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;IACtD,EAAE,EAAE,CAAC;SACF,KAAK,CAAC,8BAAsB,CAAC;SAC7B,MAAM,CAAC,CAAC,CAAC;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,mCAAmC,CAAC;IAChD,EAAE,EAAE,CAAC;SACF,KAAK,CAAC,8BAAsB,CAAC;SAC7B,MAAM,CAAC,CAAC,CAAC;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,2CAA2C,CAAC;IACxD,WAAW,EAAE,CAAC;SACX,KAAK,CAAC,8BAAsB,CAAC;SAC7B,MAAM,CAAC,CAAC,CAAC;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,oCAAoC,CAAC;IACjD,EAAE,EAAE,CAAC;SACF,KAAK,CAAC,8BAAsB,CAAC;SAC7B,QAAQ,EAAE;SACV,QAAQ,CAAC,wCAAwC,CAAC;IACrD,oGAAoG;IACpG,0IAA0I;IAC1I,OAAO,EAAE,CAAC;SACP,KAAK,CAAC,8BAAsB,CAAC;SAC7B,MAAM,CAAC,CAAC,CAAC;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,0CAA0C,CAAC;IACvD,GAAG,EAAE,CAAC;SACH,KAAK,CAAC,8BAAsB,CAAC;SAC7B,MAAM,CAAC,CAAC,CAAC;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,qCAAqC,CAAC;IAClD,GAAG,EAAE,CAAC;SACH,KAAK,CAAC,8BAAsB,CAAC;SAC7B,MAAM,CAAC,CAAC,CAAC;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,qCAAqC,CAAC;IAClD,EAAE,EAAE,CAAC;SACF,KAAK,CAAC,8BAAsB,CAAC;SAC7B,MAAM,CAAC,CAAC,CAAC;SACT,QAAQ,EAAE;SACV,QAAQ,CAAC,oCAAoC,CAAC;CAClD,CAAC;KACD,MAAM,EAAE,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awell-health/awell-extensions",
3
- "version": "2.0.75",
3
+ "version": "2.0.77",
4
4
  "packageManager": "yarn@3.4.1",
5
5
  "main": "dist/src/index.js",
6
6
  "repository": {