@rethinkhealth/hl7v2-ast 0.2.7 → 0.2.9
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 +3 -3
package/index.d.ts
CHANGED
|
@@ -126,14 +126,14 @@ export type RootContent = RootContentMap[keyof RootContentMap];
|
|
|
126
126
|
*
|
|
127
127
|
* For a union of all {@link Root} children, see {@link RootContent}.
|
|
128
128
|
*/
|
|
129
|
-
export
|
|
129
|
+
export type RootContentMap = {
|
|
130
130
|
segment: Segment;
|
|
131
131
|
group: Group;
|
|
132
132
|
field: Field;
|
|
133
133
|
fieldRepetition: FieldRepetition;
|
|
134
134
|
component: Component;
|
|
135
135
|
subcomponent: Subcomponent;
|
|
136
|
-
}
|
|
136
|
+
};
|
|
137
137
|
|
|
138
138
|
// ## Concrete nodes
|
|
139
139
|
|
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.9",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Melek Somai",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/node": "22.15.31",
|
|
19
19
|
"typescript": "^5.8.3",
|
|
20
|
-
"@rethinkhealth/tsconfig": "0.0.
|
|
20
|
+
"@rethinkhealth/tsconfig": "0.0.1"
|
|
21
21
|
},
|
|
22
22
|
"repository": "rethinkhealth/hl7v2.git",
|
|
23
23
|
"homepage": "https://www.rethinkhealth.io/hl7v2/docs",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"hl7v2ast",
|
|
29
29
|
"unified"
|
|
30
30
|
],
|
|
31
|
-
"packageManager": "pnpm@10.
|
|
31
|
+
"packageManager": "pnpm@10.14.0",
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|