@rethinkhealth/hl7v2-ast 0.12.0 → 0.13.2
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 +7 -3
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -5,6 +5,12 @@ import type {
|
|
|
5
5
|
Parent as UnistParent,
|
|
6
6
|
} from "unist";
|
|
7
7
|
|
|
8
|
+
declare module "vfile" {
|
|
9
|
+
interface DataMap {
|
|
10
|
+
delimiters: Delimiters;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
8
14
|
/**
|
|
9
15
|
* HL7v2 Delimiters type
|
|
10
16
|
*/
|
|
@@ -157,9 +163,7 @@ export interface Root extends Parent {
|
|
|
157
163
|
/**
|
|
158
164
|
* Info associated with HL7v2 root nodes by the ecosystem.
|
|
159
165
|
*/
|
|
160
|
-
export interface RootData extends Data {
|
|
161
|
-
delimiters?: Delimiters | undefined;
|
|
162
|
-
}
|
|
166
|
+
export interface RootData extends Data {}
|
|
163
167
|
|
|
164
168
|
/**
|
|
165
169
|
* HL7v2 segment.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rethinkhealth/hl7v2-ast",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.2",
|
|
4
4
|
"description": "HL7v2 is a specification for representing HL7v2 messages as an abstract syntax tree. It implements the unist spec.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bin",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@types/node": "^25.5.0",
|
|
28
28
|
"@types/unist": "^3.0.3",
|
|
29
29
|
"@vitest/coverage-v8": "4.1.0",
|
|
30
|
-
"
|
|
30
|
+
"tsdown": "0.21.7",
|
|
31
31
|
"typescript": "^5.9.3",
|
|
32
32
|
"unified": "^11.0.5",
|
|
33
33
|
"unist-builder": "^4.0.0",
|