fastify-hl7 3.3.0 → 4.0.1
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/CHANGELOG.md +316 -0
- package/README.md +535 -60
- package/dist/api.d.ts +5 -0
- package/{lib/types → dist}/class/hL7Client.d.ts +49 -13
- package/{lib/esm → dist}/class/hL7Server.d.ts +2 -2
- package/dist/index.cjs +403 -0
- package/dist/index.cjs.map +1 -0
- package/{lib/types → dist}/index.d.ts +3 -3
- package/dist/index.mjs +377 -0
- package/dist/index.mjs.map +1 -0
- package/{lib/esm → dist}/types.d.ts +26 -20
- package/dist/validation.d.ts +6 -0
- package/package.json +44 -50
- package/lib/cjs/api.js +0 -13
- package/lib/cjs/class/hL7Client.js +0 -238
- package/lib/cjs/class/hL7Server.js +0 -81
- package/lib/cjs/decorate.js +0 -2
- package/lib/cjs/errors.js +0 -13
- package/lib/cjs/index.js +0 -144
- package/lib/cjs/package.json +0 -3
- package/lib/cjs/types.js +0 -2
- package/lib/cjs/validation.js +0 -15
- package/lib/esm/api.d.ts +0 -7
- package/lib/esm/api.js +0 -5
- package/lib/esm/class/hL7Client.d.ts +0 -99
- package/lib/esm/class/hL7Client.js +0 -201
- package/lib/esm/class/hL7Server.js +0 -77
- package/lib/esm/decorate.js +0 -1
- package/lib/esm/errors.js +0 -7
- package/lib/esm/index.d.ts +0 -5
- package/lib/esm/index.js +0 -125
- package/lib/esm/package.json +0 -3
- package/lib/esm/types.js +0 -1
- package/lib/esm/validation.d.ts +0 -6
- package/lib/esm/validation.js +0 -11
- package/lib/types/api.d.ts +0 -7
- package/lib/types/class/hL7Server.d.ts +0 -38
- package/lib/types/decorate.d.ts +0 -38
- package/lib/types/errors.d.ts +0 -10
- package/lib/types/types.d.ts +0 -69
- package/lib/types/validation.d.ts +0 -6
- package/{lib/esm → dist}/decorate.d.ts +16 -16
- /package/{lib/esm → dist}/errors.d.ts +0 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
# Fastify HL7
|
|
2
|
+
|
|
3
|
+
## v4.0.1 - 2026-08-11
|
|
4
|
+
|
|
5
|
+
### What Changed 👀
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fixes
|
|
8
|
+
|
|
9
|
+
- fix(deps): raise the node-hl7 floor to 4.1.1 @Bugs5382 (#136)
|
|
10
|
+
|
|
11
|
+
#### 📄 Documentation
|
|
12
|
+
|
|
13
|
+
- docs(changelog): put every release in the release-drafter format @Bugs5382 (#138)
|
|
14
|
+
- docs: add encapsulation recipe for a user plugin that streamlines sending HL7 @Bugs5382 (#128)
|
|
15
|
+
|
|
16
|
+
#### 🧩 Dependency Updates
|
|
17
|
+
|
|
18
|
+
- chore(deps): bump the github-actions group with 9 updates @[dependabot[bot]](https://github.com/apps/dependabot) (#125)
|
|
19
|
+
- chore(deps): bump the production-dependencies group with 2 updates @[dependabot[bot]](https://github.com/apps/dependabot) (#123)
|
|
20
|
+
- chore(deps-dev): bump the development-dependencies group with 2 updates @[dependabot[bot]](https://github.com/apps/dependabot) (#124)
|
|
21
|
+
|
|
22
|
+
### Extra
|
|
23
|
+
|
|
24
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v4.0.0...v4.0.1
|
|
25
|
+
|
|
26
|
+
## v4.0.0 - 2026-06-08
|
|
27
|
+
|
|
28
|
+
### What Changed 👀
|
|
29
|
+
|
|
30
|
+
- fix(ci): skip PR Body check for Dependabot @Bugs5382 (#105)
|
|
31
|
+
|
|
32
|
+
#### 💥 Breaking Changes
|
|
33
|
+
|
|
34
|
+
- feat!: upgrade to node-hl7 v4.0.0 @Bugs5382 (#88)
|
|
35
|
+
|
|
36
|
+
#### 🚀 Features
|
|
37
|
+
|
|
38
|
+
- feat(api): verified message builder (createBuilder) + v4.0.0 docs @Bugs5382 (#107)
|
|
39
|
+
|
|
40
|
+
#### 🧩 Dependency Updates
|
|
41
|
+
|
|
42
|
+
- chore(deps-dev): bump the development-dependencies group across 1 directory with 15 updates @[dependabot[bot]](https://github.com/apps/dependabot) (#97)
|
|
43
|
+
|
|
44
|
+
### Extra
|
|
45
|
+
|
|
46
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v3.3.0...v4.0.0
|
|
47
|
+
|
|
48
|
+
## v3.3.0 - 2025-03-25
|
|
49
|
+
|
|
50
|
+
### What Changed 👀
|
|
51
|
+
|
|
52
|
+
#### 🧩 Dependency Updates
|
|
53
|
+
|
|
54
|
+
- feat: update dependencies @Bugs5382 (#84)
|
|
55
|
+
|
|
56
|
+
### Extra
|
|
57
|
+
|
|
58
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v3.2.0...v3.3.0
|
|
59
|
+
|
|
60
|
+
## v3.2.0 - 2024-12-18
|
|
61
|
+
|
|
62
|
+
### What Changed 👀
|
|
63
|
+
|
|
64
|
+
#### 🚀 Features
|
|
65
|
+
|
|
66
|
+
- feat: hl7 startup message @Bugs5382 (#83)
|
|
67
|
+
|
|
68
|
+
### Extra
|
|
69
|
+
|
|
70
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v3.1.0...v3.2.0
|
|
71
|
+
|
|
72
|
+
## v3.1.0 - 2024-11-16
|
|
73
|
+
|
|
74
|
+
### What Changed 👀
|
|
75
|
+
|
|
76
|
+
#### 🚀 Features
|
|
77
|
+
|
|
78
|
+
- feat: updated packages @Bugs5382 (#81)
|
|
79
|
+
|
|
80
|
+
### Extra
|
|
81
|
+
|
|
82
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v3.0.0...v3.1.0
|
|
83
|
+
|
|
84
|
+
## v3.0.0 - 2024-10-31
|
|
85
|
+
|
|
86
|
+
### What Changed 👀
|
|
87
|
+
|
|
88
|
+
#### 💥 Breaking Changes
|
|
89
|
+
|
|
90
|
+
- update node-hl7-server package to 3.0.0 which has a breaking change
|
|
91
|
+
|
|
92
|
+
#### 🚀 Features
|
|
93
|
+
|
|
94
|
+
- feat: 3.0.0 @Bugs5382 (#78)
|
|
95
|
+
- feat: update typedoc plugin @Bugs5382 (#79)
|
|
96
|
+
- updated packages @Bugs5382 ([743e34c](https://github.com/Bugs5382/fastify-hl7/commit/743e34c40ce44ef1a04a48fb22c52f197a2a0497))
|
|
97
|
+
|
|
98
|
+
### Extra
|
|
99
|
+
|
|
100
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v2.2.0...v3.0.0
|
|
101
|
+
|
|
102
|
+
## v2.2.0 - 2024-06-25
|
|
103
|
+
|
|
104
|
+
### What Changed 👀
|
|
105
|
+
|
|
106
|
+
#### 🚀 Features
|
|
107
|
+
|
|
108
|
+
- feat: updates packages @Bugs5382 (#43)
|
|
109
|
+
|
|
110
|
+
### Extra
|
|
111
|
+
|
|
112
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v2.1.0...v2.2.0
|
|
113
|
+
|
|
114
|
+
## v2.1.0 - 2024-02-22
|
|
115
|
+
|
|
116
|
+
### What Changed 👀
|
|
117
|
+
|
|
118
|
+
#### 🚀 Features
|
|
119
|
+
|
|
120
|
+
- feat: added buildDate @Bugs5382 (#29)
|
|
121
|
+
- feat: added new features in @Bugs5382 (#30)
|
|
122
|
+
|
|
123
|
+
### Extra
|
|
124
|
+
|
|
125
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v2.0.0...v2.1.0
|
|
126
|
+
|
|
127
|
+
## v2.0.0 - 2024-02-04
|
|
128
|
+
|
|
129
|
+
### What Changed 👀
|
|
130
|
+
|
|
131
|
+
#### 💥 Breaking Changes
|
|
132
|
+
|
|
133
|
+
- node 20
|
|
134
|
+
|
|
135
|
+
#### 🚀 Features
|
|
136
|
+
|
|
137
|
+
- feat: first batch of changes @Bugs5382 (#19)
|
|
138
|
+
- feat: v2.0.0 @Bugs5382 (#20)
|
|
139
|
+
|
|
140
|
+
#### 🐛 Bug Fixes
|
|
141
|
+
|
|
142
|
+
- fix: ci actions @Bugs5382 (#22)
|
|
143
|
+
|
|
144
|
+
### Extra
|
|
145
|
+
|
|
146
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v1.2.0...v2.0.0
|
|
147
|
+
|
|
148
|
+
## v1.2.0 - 2024-01-18
|
|
149
|
+
|
|
150
|
+
### What Changed 👀
|
|
151
|
+
|
|
152
|
+
#### 🚀 Features
|
|
153
|
+
|
|
154
|
+
- feat: update server package @Bugs5382 (#17)
|
|
155
|
+
- update server version @Bugs5382 ([f0548d6](https://github.com/Bugs5382/fastify-hl7/commit/f0548d63649546f3b67d4c3d9e9a993e2a4dbced))
|
|
156
|
+
|
|
157
|
+
### Extra
|
|
158
|
+
|
|
159
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v1.1.4...v1.2.0
|
|
160
|
+
|
|
161
|
+
## v1.1.4 - 2024-01-18
|
|
162
|
+
|
|
163
|
+
### What Changed 👀
|
|
164
|
+
|
|
165
|
+
#### 🐛 Bug Fixes
|
|
166
|
+
|
|
167
|
+
- fix: import for ESM @Bugs5382 (#14)
|
|
168
|
+
- update import with .js @Bugs5382 ([4527548](https://github.com/Bugs5382/fastify-hl7/commit/4527548796647c2af74116b8b18273d331bda92b))
|
|
169
|
+
- fix: update import with .js @Bugs5382 (#13)
|
|
170
|
+
|
|
171
|
+
### Extra
|
|
172
|
+
|
|
173
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v1.1.3...v1.1.4
|
|
174
|
+
|
|
175
|
+
## v1.1.3 - 2024-01-18
|
|
176
|
+
|
|
177
|
+
### What Changed 👀
|
|
178
|
+
|
|
179
|
+
#### 🐛 Bug Fixes
|
|
180
|
+
|
|
181
|
+
- fix: added export of FastifyHL7Options @Bugs5382 (#10)
|
|
182
|
+
- fix: export of FastifyHL7Options @Bugs5382 (#11)
|
|
183
|
+
|
|
184
|
+
### Extra
|
|
185
|
+
|
|
186
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v1.1.2...v1.1.3
|
|
187
|
+
|
|
188
|
+
## v1.1.2 - 2024-01-11
|
|
189
|
+
|
|
190
|
+
### What Changed 👀
|
|
191
|
+
|
|
192
|
+
#### 🐛 Bug Fixes
|
|
193
|
+
|
|
194
|
+
- fix: update packages @Bugs5382 (#7)
|
|
195
|
+
|
|
196
|
+
### Extra
|
|
197
|
+
|
|
198
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v1.1.1...v1.1.2
|
|
199
|
+
|
|
200
|
+
## v1.1.1 - 2024-01-10
|
|
201
|
+
|
|
202
|
+
### What Changed 👀
|
|
203
|
+
|
|
204
|
+
#### 🐛 Bug Fixes
|
|
205
|
+
|
|
206
|
+
- fix: update packages @Bugs5382 (#6)
|
|
207
|
+
|
|
208
|
+
### Extra
|
|
209
|
+
|
|
210
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v1.1.0...v1.1.1
|
|
211
|
+
|
|
212
|
+
## v1.1.1-beta.1 - 2024-01-10
|
|
213
|
+
|
|
214
|
+
### What Changed 👀
|
|
215
|
+
|
|
216
|
+
#### 🐛 Bug Fixes
|
|
217
|
+
|
|
218
|
+
- update packages @Bugs5382 ([62dc1ec](https://github.com/Bugs5382/fastify-hl7/commit/62dc1ec5e1735c59f7417df7b102b17404d90030))
|
|
219
|
+
|
|
220
|
+
### Extra
|
|
221
|
+
|
|
222
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v1.1.0...v1.1.1-beta.1
|
|
223
|
+
|
|
224
|
+
## v1.0.0-beta.3 - 2024-01-10
|
|
225
|
+
|
|
226
|
+
### What Changed 👀
|
|
227
|
+
|
|
228
|
+
#### 🐛 Bug Fixes
|
|
229
|
+
|
|
230
|
+
- update packages @Bugs5382 ([62dc1ec](https://github.com/Bugs5382/fastify-hl7/commit/62dc1ec5e1735c59f7417df7b102b17404d90030))
|
|
231
|
+
|
|
232
|
+
### Extra
|
|
233
|
+
|
|
234
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v1.0.0-beta.2...v1.0.0-beta.3
|
|
235
|
+
|
|
236
|
+
## v1.1.0 - 2023-12-31
|
|
237
|
+
|
|
238
|
+
### What Changed 👀
|
|
239
|
+
|
|
240
|
+
#### 🚀 Features
|
|
241
|
+
|
|
242
|
+
- feat: updated packages @Bugs5382 (#5)
|
|
243
|
+
|
|
244
|
+
### Extra
|
|
245
|
+
|
|
246
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v1.0.0...v1.1.0
|
|
247
|
+
|
|
248
|
+
## v1.0.0 - 2023-12-30
|
|
249
|
+
|
|
250
|
+
### What Changed 👀
|
|
251
|
+
|
|
252
|
+
#### 🚀 Features
|
|
253
|
+
|
|
254
|
+
- feat: added functions that get @Bugs5382 (#3)
|
|
255
|
+
- added in @Bugs5382 ([3c340d5](https://github.com/Bugs5382/fastify-hl7/commit/3c340d59ac2861bbf58c90acb28615914410b3ca))
|
|
256
|
+
- buildMessage, publishMessage @Bugs5382 ([fc1d7db](https://github.com/Bugs5382/fastify-hl7/commit/fc1d7db9968030247c518817ce5a6c8f231fa91d))
|
|
257
|
+
- client stuff done @Bugs5382 ([bd6cb46](https://github.com/Bugs5382/fastify-hl7/commit/bd6cb464ad45833b0c3df2623db22ff5737a36ba))
|
|
258
|
+
- develop branch for release @Bugs5382 ([28c5f30](https://github.com/Bugs5382/fastify-hl7/commit/28c5f30f01a88cbec9b04b37b1aadf7ed959a369))
|
|
259
|
+
- first working version @Bugs5382 ([f9d3ffd](https://github.com/Bugs5382/fastify-hl7/commit/f9d3ffd660c9802778adb9732d6e3587be109139))
|
|
260
|
+
- fixed client connections @Bugs5382 ([c421328](https://github.com/Bugs5382/fastify-hl7/commit/c4213281c43f8ee7655f4e6c88cf0d0ad15e8d3b))
|
|
261
|
+
- full example @Bugs5382 ([7c36b2d](https://github.com/Bugs5382/fastify-hl7/commit/7c36b2d02c65a05050ec44889f8745a2c61ede62))
|
|
262
|
+
- initial build @Bugs5382 ([36b35d9](https://github.com/Bugs5382/fastify-hl7/commit/36b35d904231507b6a6004bda4a5f07c2d224233))
|
|
263
|
+
- new design, again. @Bugs5382 ([2113ca3](https://github.com/Bugs5382/fastify-hl7/commit/2113ca3183d91a085791a067e2af6fc69d305aba))
|
|
264
|
+
- registration working @Bugs5382 ([6f54019](https://github.com/Bugs5382/fastify-hl7/commit/6f54019a66aa5c24ec1d7ce3130475ef6b602426))
|
|
265
|
+
- release branch for release @Bugs5382 ([c85e0be](https://github.com/Bugs5382/fastify-hl7/commit/c85e0bec4fbb6019d460e0b5743292e58097cb41))
|
|
266
|
+
- feat: standardized project @Bugs5382 (#1)
|
|
267
|
+
- update server signatures @Bugs5382 ([d1fc0da](https://github.com/Bugs5382/fastify-hl7/commit/d1fc0dad4c3ca5dbfa40b4850cd092f43a82e3d8))
|
|
268
|
+
- feat: v1.0.0 @Bugs5382 (#4)
|
|
269
|
+
|
|
270
|
+
#### 🐛 Bug Fixes
|
|
271
|
+
|
|
272
|
+
- removed .npmignore @Bugs5382 ([bd788da](https://github.com/Bugs5382/fastify-hl7/commit/bd788dad661f7f4e271458d5b633280a9d561fef))
|
|
273
|
+
|
|
274
|
+
### Extra
|
|
275
|
+
|
|
276
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/releases/tag/v1.0.0
|
|
277
|
+
|
|
278
|
+
## v1.0.0-beta.2 - 2023-12-30
|
|
279
|
+
|
|
280
|
+
### What Changed 👀
|
|
281
|
+
|
|
282
|
+
#### 🚀 Features
|
|
283
|
+
|
|
284
|
+
- feat: added functions that get @Bugs5382 (#3)
|
|
285
|
+
|
|
286
|
+
### Extra
|
|
287
|
+
|
|
288
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/compare/v1.0.0-beta.1...v1.0.0-beta.2
|
|
289
|
+
|
|
290
|
+
## v1.0.0-beta.1 - 2023-12-29
|
|
291
|
+
|
|
292
|
+
### What Changed 👀
|
|
293
|
+
|
|
294
|
+
#### 🚀 Features
|
|
295
|
+
|
|
296
|
+
- added in @Bugs5382 ([3c340d5](https://github.com/Bugs5382/fastify-hl7/commit/3c340d59ac2861bbf58c90acb28615914410b3ca))
|
|
297
|
+
- buildMessage, publishMessage @Bugs5382 ([fc1d7db](https://github.com/Bugs5382/fastify-hl7/commit/fc1d7db9968030247c518817ce5a6c8f231fa91d))
|
|
298
|
+
- client stuff done @Bugs5382 ([bd6cb46](https://github.com/Bugs5382/fastify-hl7/commit/bd6cb464ad45833b0c3df2623db22ff5737a36ba))
|
|
299
|
+
- develop branch for release @Bugs5382 ([28c5f30](https://github.com/Bugs5382/fastify-hl7/commit/28c5f30f01a88cbec9b04b37b1aadf7ed959a369))
|
|
300
|
+
- first working version @Bugs5382 ([f9d3ffd](https://github.com/Bugs5382/fastify-hl7/commit/f9d3ffd660c9802778adb9732d6e3587be109139))
|
|
301
|
+
- fixed client connections @Bugs5382 ([c421328](https://github.com/Bugs5382/fastify-hl7/commit/c4213281c43f8ee7655f4e6c88cf0d0ad15e8d3b))
|
|
302
|
+
- full example @Bugs5382 ([7c36b2d](https://github.com/Bugs5382/fastify-hl7/commit/7c36b2d02c65a05050ec44889f8745a2c61ede62))
|
|
303
|
+
- initial build @Bugs5382 ([36b35d9](https://github.com/Bugs5382/fastify-hl7/commit/36b35d904231507b6a6004bda4a5f07c2d224233))
|
|
304
|
+
- new design, again. @Bugs5382 ([2113ca3](https://github.com/Bugs5382/fastify-hl7/commit/2113ca3183d91a085791a067e2af6fc69d305aba))
|
|
305
|
+
- registration working @Bugs5382 ([6f54019](https://github.com/Bugs5382/fastify-hl7/commit/6f54019a66aa5c24ec1d7ce3130475ef6b602426))
|
|
306
|
+
- release branch for release @Bugs5382 ([c85e0be](https://github.com/Bugs5382/fastify-hl7/commit/c85e0bec4fbb6019d460e0b5743292e58097cb41))
|
|
307
|
+
- feat: standardized project @Bugs5382 (#1)
|
|
308
|
+
- update server signatures @Bugs5382 ([d1fc0da](https://github.com/Bugs5382/fastify-hl7/commit/d1fc0dad4c3ca5dbfa40b4850cd092f43a82e3d8))
|
|
309
|
+
|
|
310
|
+
#### 🐛 Bug Fixes
|
|
311
|
+
|
|
312
|
+
- removed .npmignore @Bugs5382 ([bd788da](https://github.com/Bugs5382/fastify-hl7/commit/bd788dad661f7f4e271458d5b633280a9d561fef))
|
|
313
|
+
|
|
314
|
+
### Extra
|
|
315
|
+
|
|
316
|
+
**Full Changelog**: https://github.com/Bugs5382/fastify-hl7/releases/tag/v1.0.0-beta.1
|