fastify-hl7 1.0.0-beta.2 → 1.1.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/types/decorate.d.ts +9 -0
- package/package.json +4 -4
package/lib/types/decorate.d.ts
CHANGED
|
@@ -12,15 +12,24 @@ export interface FastifyHL7Options {
|
|
|
12
12
|
* @default From node-hl7-server */
|
|
13
13
|
serverOptions?: ServerOptions;
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* @since 1.0.0
|
|
17
|
+
*/
|
|
15
18
|
interface AClientPorts {
|
|
16
19
|
port: string;
|
|
17
20
|
connection: HL7Outbound;
|
|
18
21
|
}
|
|
22
|
+
/**
|
|
23
|
+
* @since 1.0.0
|
|
24
|
+
*/
|
|
19
25
|
export interface AClients {
|
|
20
26
|
name: string;
|
|
21
27
|
client: Client;
|
|
22
28
|
ports: AClientPorts[];
|
|
23
29
|
}
|
|
30
|
+
/**
|
|
31
|
+
* @since 1.0.0
|
|
32
|
+
*/
|
|
24
33
|
export interface AServers {
|
|
25
34
|
name: string;
|
|
26
35
|
port: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fastify-hl7",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.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",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@fastify/error": "^3.4.1",
|
|
62
62
|
"fastify-plugin": "^4.5.1",
|
|
63
|
-
"node-hl7-client": "^1.1.0
|
|
64
|
-
"node-hl7-server": "^1.
|
|
63
|
+
"node-hl7-client": "^1.1.0",
|
|
64
|
+
"node-hl7-server": "^1.1.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@semantic-release/changelog": "^6.0.3",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@semantic-release/release-notes-generator": "^12.1.0",
|
|
71
71
|
"@the-rabbit-hole/semantic-release-config": "^1.4.0",
|
|
72
72
|
"@types/jest": "^29.5.11",
|
|
73
|
-
"@types/node": "^20.10.
|
|
73
|
+
"@types/node": "^20.10.6",
|
|
74
74
|
"@types/randomstring": "^1.1.11",
|
|
75
75
|
"@types/tcp-port-used": "^1.0.4",
|
|
76
76
|
"@typescript-eslint/parser": "^6.16.0",
|