fastify-hl7 3.2.0 → 3.3.0
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/lib/esm/types.d.ts +4 -1
- package/lib/types/types.d.ts +4 -1
- package/package.json +21 -20
package/lib/esm/types.d.ts
CHANGED
|
@@ -8,7 +8,10 @@ declare module "fastify" {
|
|
|
8
8
|
/** Build HL7 Batch
|
|
9
9
|
* @since 1.0.0 */
|
|
10
10
|
buildBatch: (props?: ClientBuilderOptions) => Batch;
|
|
11
|
-
/**
|
|
11
|
+
/** Build Date
|
|
12
|
+
* @remarks Build a date string based off HL7 Standards
|
|
13
|
+
* @param date
|
|
14
|
+
* @param length Options are 8, 12, or 14 (default)
|
|
12
15
|
* @since 2.1.0
|
|
13
16
|
*/
|
|
14
17
|
buildDate: (date: Date, length?: string) => string;
|
package/lib/types/types.d.ts
CHANGED
|
@@ -8,7 +8,10 @@ declare module "fastify" {
|
|
|
8
8
|
/** Build HL7 Batch
|
|
9
9
|
* @since 1.0.0 */
|
|
10
10
|
buildBatch: (props?: ClientBuilderOptions) => Batch;
|
|
11
|
-
/**
|
|
11
|
+
/** Build Date
|
|
12
|
+
* @remarks Build a date string based off HL7 Standards
|
|
13
|
+
* @param date
|
|
14
|
+
* @param length Options are 8, 12, or 14 (default)
|
|
12
15
|
* @since 2.1.0
|
|
13
16
|
*/
|
|
14
17
|
buildDate: (date: Date, length?: string) => string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fastify-hl7",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "A Fastify HL7 Plugin Developed in Pure TypeScript.",
|
|
5
5
|
"module": "./lib/esm/index.js",
|
|
6
6
|
"main": "./lib/cjs/index.js",
|
|
@@ -59,37 +59,38 @@
|
|
|
59
59
|
},
|
|
60
60
|
"homepage": "https://github.com/Bugs5382/fastify-hl7#readme",
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@fastify/error": "^4.
|
|
62
|
+
"@fastify/error": "^4.1.0",
|
|
63
63
|
"fastify-plugin": "^5.0.1",
|
|
64
64
|
"node-hl7-client": "^3.0.0",
|
|
65
|
-
"node-hl7-server": "^3.
|
|
65
|
+
"node-hl7-server": "^3.2.3"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@eslint/js": "^9.
|
|
69
|
-
"@shipgirl/typedoc-plugin-versions": "^0.2.8",
|
|
68
|
+
"@eslint/js": "^9.19.0",
|
|
70
69
|
"@types/eslint__js": "^8.42.3",
|
|
71
|
-
"@
|
|
70
|
+
"@shipgirl/typedoc-plugin-versions": "^0.3.0",
|
|
71
|
+
"@types/node": "^22.13.11",
|
|
72
72
|
"@types/tcp-port-used": "^1.0.4",
|
|
73
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
74
|
-
"@typescript-eslint/parser": "^8.
|
|
75
|
-
"@vitest/coverage-v8": "^
|
|
76
|
-
"@vitest/ui": "^
|
|
77
|
-
"eslint": "^9.
|
|
78
|
-
"eslint-config-prettier": "^
|
|
79
|
-
"eslint-plugin-prettier": "^5.2.
|
|
80
|
-
"fastify": "^5.1
|
|
81
|
-
"npm-check-updates": "^17.1.
|
|
73
|
+
"@typescript-eslint/eslint-plugin": "^8.27.0",
|
|
74
|
+
"@typescript-eslint/parser": "^8.27.0",
|
|
75
|
+
"@vitest/coverage-v8": "^3.0.9",
|
|
76
|
+
"@vitest/ui": "^3.0.9",
|
|
77
|
+
"eslint": "^9.23.0",
|
|
78
|
+
"eslint-config-prettier": "^10.1.1",
|
|
79
|
+
"eslint-plugin-prettier": "^5.2.3",
|
|
80
|
+
"fastify": "^5.2.1",
|
|
81
|
+
"npm-check-updates": "^17.1.14",
|
|
82
82
|
"npm-package-json-lint": "^8.0.0",
|
|
83
|
-
"
|
|
83
|
+
"npm-package-json-lint-config-default": "^7.0.1",
|
|
84
|
+
"portfinder": "^1.0.35",
|
|
84
85
|
"pre-commit": "^1.2.2",
|
|
85
86
|
"snazzy": "^9.0.0",
|
|
86
87
|
"tcp-port-used": "^1.0.2",
|
|
87
88
|
"ts-node": "^10.9.2",
|
|
88
89
|
"tsd": "^0.31.2",
|
|
89
|
-
"typedoc": "^0.
|
|
90
|
-
"typescript": "^5.
|
|
91
|
-
"typescript-eslint": "^8.
|
|
92
|
-
"vitest": "^
|
|
90
|
+
"typedoc": "^0.28.1",
|
|
91
|
+
"typescript": "^5.8.2",
|
|
92
|
+
"typescript-eslint": "^8.27.0",
|
|
93
|
+
"vitest": "^3.0.9"
|
|
93
94
|
},
|
|
94
95
|
"precommit": [
|
|
95
96
|
"format",
|