@rethinkhealth/hl7v2-lint-required-message-header 0.2.8 → 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/dist/index.d.ts +4 -1
- package/dist/index.d.ts.map +1 -1
- package/package.json +13 -13
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,9 @@ import type { Node } from '@rethinkhealth/hl7v2-ast';
|
|
|
5
5
|
* This rule is useful for ensuring that all messages start with a message
|
|
6
6
|
* header segment.
|
|
7
7
|
*/
|
|
8
|
-
declare const hl7v2LintSegmentRequiredMessageHeader:
|
|
8
|
+
declare const hl7v2LintSegmentRequiredMessageHeader: {
|
|
9
|
+
(config?: import("node_modules/unified-lint-rule/lib").Label | import("node_modules/unified-lint-rule/lib").Severity | [level: import("node_modules/unified-lint-rule/lib").Label | import("node_modules/unified-lint-rule/lib").Severity, option?: undefined] | undefined): ((tree: Node, file: import("node_modules/unified-lint-rule/lib").VFile, next: import("unified").TransformCallback<Node>) => undefined) | undefined;
|
|
10
|
+
readonly name: string;
|
|
11
|
+
};
|
|
9
12
|
export default hl7v2LintSegmentRequiredMessageHeader;
|
|
10
13
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAiB,MAAM,0BAA0B,CAAC;AAIpE;;;;;GAKG;AACH,QAAA,MAAM,qCAAqC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAiB,MAAM,0BAA0B,CAAC;AAIpE;;;;;GAKG;AACH,QAAA,MAAM,qCAAqC;;;CA2B1C,CAAC;AAEF,eAAe,qCAAqC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rethinkhealth/hl7v2-lint-required-message-header",
|
|
3
3
|
"description": "hl7v2-lint rule to warn when message header segment is missing",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.9",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Melek Somai",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"unified": "11.0.1",
|
|
20
|
-
"unified-lint-rule": "
|
|
21
|
-
"unist-util-visit-parents": "
|
|
20
|
+
"unified-lint-rule": "3.0.0",
|
|
21
|
+
"unist-util-visit-parents": "6.0.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/node": "22.15.31",
|
|
@@ -29,25 +29,25 @@
|
|
|
29
29
|
"typescript": "^5.8.3",
|
|
30
30
|
"vfile-reporter": "^8.1.1",
|
|
31
31
|
"vitest": "^3.2.4",
|
|
32
|
-
"@rethinkhealth/hl7v2": "0.2.
|
|
33
|
-
"@rethinkhealth/
|
|
34
|
-
"@rethinkhealth/
|
|
35
|
-
"@rethinkhealth/tsconfig": "0.0.
|
|
32
|
+
"@rethinkhealth/hl7v2": "0.2.9",
|
|
33
|
+
"@rethinkhealth/hl7v2-ast": "0.2.9",
|
|
34
|
+
"@rethinkhealth/testing": "0.0.1",
|
|
35
|
+
"@rethinkhealth/tsconfig": "0.0.1"
|
|
36
36
|
},
|
|
37
37
|
"repository": "rethinkhealth/hl7v2.git",
|
|
38
38
|
"homepage": "https://www.rethinkhealth.io/hl7v2/docs",
|
|
39
39
|
"keywords": [
|
|
40
|
+
"definition",
|
|
40
41
|
"hl7",
|
|
41
42
|
"hl7v2",
|
|
42
|
-
"nodejs",
|
|
43
|
-
"typescript",
|
|
44
|
-
"definition",
|
|
45
|
-
"lint",
|
|
46
43
|
"hl7v2-lint",
|
|
47
44
|
"hl7v2-lint-rule",
|
|
48
|
-
"
|
|
45
|
+
"lint",
|
|
46
|
+
"nodejs",
|
|
47
|
+
"rule",
|
|
48
|
+
"typescript"
|
|
49
49
|
],
|
|
50
|
-
"packageManager": "pnpm@10.
|
|
50
|
+
"packageManager": "pnpm@10.14.0",
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|