@rethinkhealth/hl7v2-ast 0.2.12 → 0.2.14
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/index.d.ts +2 -2
- package/package.json +8 -2
package/index.d.ts
CHANGED
|
@@ -169,7 +169,7 @@ export interface Root extends Parent {
|
|
|
169
169
|
* Info associated with HL7v2 root nodes by the ecosystem.
|
|
170
170
|
*/
|
|
171
171
|
export interface RootData extends Data {
|
|
172
|
-
delimiters
|
|
172
|
+
delimiters?: Delimiters | undefined;
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
/**
|
|
@@ -212,7 +212,7 @@ export interface Group extends Parent {
|
|
|
212
212
|
/**
|
|
213
213
|
* Children of block quote.
|
|
214
214
|
*/
|
|
215
|
-
children: Segment
|
|
215
|
+
children: Array<Segment | Group>;
|
|
216
216
|
/**
|
|
217
217
|
* Data associated with the mdast block quote.
|
|
218
218
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rethinkhealth/hl7v2-ast",
|
|
3
3
|
"description": "HL7v2 is a specification for representing HL7v2 messages as an abstract syntax tree. It implements the unist spec.",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.14",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Melek Somai",
|
|
@@ -15,8 +15,14 @@
|
|
|
15
15
|
"@types/unist": "3.0.3"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@types/node": "24.3.0",
|
|
19
18
|
"typescript": "^5.8.3",
|
|
19
|
+
"unist-builder": "^4.0.0",
|
|
20
|
+
"@types/node": "24.3.0",
|
|
21
|
+
"@types/unist": "^3.0.2",
|
|
22
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
23
|
+
"tsup": "8.5.0",
|
|
24
|
+
"unified": "^11.0.5",
|
|
25
|
+
"vitest": "^3.2.4",
|
|
20
26
|
"@rethinkhealth/tsconfig": "0.0.1"
|
|
21
27
|
},
|
|
22
28
|
"repository": "rethinkhealth/hl7v2.git",
|