@twin.org/engine-server-types 0.0.3-next.9 → 0.9.0-next.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.
Files changed (81) hide show
  1. package/README.md +1 -1
  2. package/dist/es/components/authentication.js +24 -19
  3. package/dist/es/components/authentication.js.map +1 -1
  4. package/dist/es/components/authenticationAdmin.js +19 -15
  5. package/dist/es/components/authenticationAdmin.js.map +1 -1
  6. package/dist/es/components/authenticationAudit.js +35 -0
  7. package/dist/es/components/authenticationAudit.js.map +1 -0
  8. package/dist/es/components/authenticationRate.js +38 -0
  9. package/dist/es/components/authenticationRate.js.map +1 -0
  10. package/dist/es/components/information.js +12 -9
  11. package/dist/es/components/information.js.map +1 -1
  12. package/dist/es/components/mimeTypeProcessor.js +7 -7
  13. package/dist/es/components/mimeTypeProcessor.js.map +1 -1
  14. package/dist/es/components/restRouteProcessor.js +44 -47
  15. package/dist/es/components/restRouteProcessor.js.map +1 -1
  16. package/dist/es/components/socketRouteProcessor.js +43 -43
  17. package/dist/es/components/socketRouteProcessor.js.map +1 -1
  18. package/dist/es/index.js +6 -0
  19. package/dist/es/index.js.map +1 -1
  20. package/dist/es/models/IEngineServerConfig.js.map +1 -1
  21. package/dist/es/models/config/authenticationAuditComponentConfig.js +2 -0
  22. package/dist/es/models/config/authenticationAuditComponentConfig.js.map +1 -0
  23. package/dist/es/models/config/authenticationRateComponentConfig.js +2 -0
  24. package/dist/es/models/config/authenticationRateComponentConfig.js.map +1 -0
  25. package/dist/es/models/config/restRouteProcessorConfig.js.map +1 -1
  26. package/dist/es/models/config/socketRouteProcessorConfig.js.map +1 -1
  27. package/dist/es/models/types/authenticationAuditComponentType.js +13 -0
  28. package/dist/es/models/types/authenticationAuditComponentType.js.map +1 -0
  29. package/dist/es/models/types/authenticationRateComponentType.js +13 -0
  30. package/dist/es/models/types/authenticationRateComponentType.js.map +1 -0
  31. package/dist/es/models/types/restRouteProcessorType.js +4 -0
  32. package/dist/es/models/types/restRouteProcessorType.js.map +1 -1
  33. package/dist/es/models/types/socketRouteProcessorType.js +4 -0
  34. package/dist/es/models/types/socketRouteProcessorType.js.map +1 -1
  35. package/dist/types/components/authentication.d.ts +3 -7
  36. package/dist/types/components/authenticationAdmin.d.ts +3 -7
  37. package/dist/types/components/authenticationAudit.d.ts +12 -0
  38. package/dist/types/components/authenticationRate.d.ts +12 -0
  39. package/dist/types/components/information.d.ts +3 -7
  40. package/dist/types/components/mimeTypeProcessor.d.ts +2 -7
  41. package/dist/types/components/restRouteProcessor.d.ts +2 -7
  42. package/dist/types/components/socketRouteProcessor.d.ts +2 -7
  43. package/dist/types/index.d.ts +6 -0
  44. package/dist/types/models/IEngineServerConfig.d.ts +16 -6
  45. package/dist/types/models/config/authenticationAuditComponentConfig.d.ts +9 -0
  46. package/dist/types/models/config/authenticationRateComponentConfig.d.ts +9 -0
  47. package/dist/types/models/config/restRouteProcessorConfig.d.ts +4 -5
  48. package/dist/types/models/config/socketRouteProcessorConfig.d.ts +4 -5
  49. package/dist/types/models/types/authenticationAuditComponentType.d.ts +13 -0
  50. package/dist/types/models/types/authenticationRateComponentType.d.ts +13 -0
  51. package/dist/types/models/types/restRouteProcessorType.d.ts +4 -0
  52. package/dist/types/models/types/socketRouteProcessorType.d.ts +4 -0
  53. package/docs/changelog.md +986 -125
  54. package/docs/examples.md +64 -1
  55. package/docs/reference/functions/initialiseAuthenticationAdminComponent.md +2 -2
  56. package/docs/reference/functions/initialiseAuthenticationAuditComponent.md +31 -0
  57. package/docs/reference/functions/initialiseAuthenticationComponent.md +2 -2
  58. package/docs/reference/functions/initialiseAuthenticationRateComponent.md +31 -0
  59. package/docs/reference/functions/initialiseInformationComponent.md +2 -2
  60. package/docs/reference/functions/initialiseMimeTypeProcessorComponent.md +2 -2
  61. package/docs/reference/functions/initialiseRestRouteProcessorComponent.md +2 -2
  62. package/docs/reference/functions/initialiseSocketRouteProcessorComponent.md +2 -2
  63. package/docs/reference/index.md +8 -0
  64. package/docs/reference/interfaces/IEngineServerConfig.md +503 -15
  65. package/docs/reference/type-aliases/AuthenticationAdminComponentConfig.md +3 -3
  66. package/docs/reference/type-aliases/AuthenticationAuditComponentConfig.md +17 -0
  67. package/docs/reference/type-aliases/AuthenticationAuditComponentType.md +5 -0
  68. package/docs/reference/type-aliases/AuthenticationRateComponentConfig.md +17 -0
  69. package/docs/reference/type-aliases/AuthenticationRateComponentType.md +5 -0
  70. package/docs/reference/type-aliases/MimeTypeProcessorConfig.md +3 -3
  71. package/docs/reference/type-aliases/RestRouteProcessorConfig.md +1 -1
  72. package/docs/reference/type-aliases/SocketRouteProcessorConfig.md +1 -1
  73. package/docs/reference/variables/AuthenticationAdminComponentType.md +1 -1
  74. package/docs/reference/variables/AuthenticationAuditComponentType.md +13 -0
  75. package/docs/reference/variables/AuthenticationComponentType.md +2 -2
  76. package/docs/reference/variables/AuthenticationRateComponentType.md +13 -0
  77. package/docs/reference/variables/InformationComponentType.md +2 -2
  78. package/docs/reference/variables/MimeTypeProcessorType.md +1 -1
  79. package/docs/reference/variables/RestRouteProcessorType.md +13 -7
  80. package/docs/reference/variables/SocketRouteProcessorType.md +13 -7
  81. package/package.json +19 -20
package/docs/changelog.md CHANGED
@@ -1,6 +1,867 @@
1
- # @twin.org/engine-server-types - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.9](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.3-next.8...engine-server-types-v0.0.3-next.9) (2026-01-07)
3
+ ## [0.9.0-next.1](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.9.0-next.0...engine-server-types-v0.9.0-next.1) (2026-06-24)
4
+
5
+
6
+ ### Features
7
+
8
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
9
+ * add authentication rate and audit services ([#95](https://github.com/iotaledger/twin-engine/issues/95)) ([55e2b08](https://github.com/iotaledger/twin-engine/commit/55e2b089661529e0556115817cc435cc6e4292cc))
10
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
11
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
12
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
13
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
14
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
15
+ * add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
16
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
17
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
18
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
19
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
20
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
21
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
22
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
23
+ * add tenant component ([#138](https://github.com/iotaledger/twin-engine/issues/138)) ([ebbcb8f](https://github.com/iotaledger/twin-engine/commit/ebbcb8fa3fee05048ddad2891c6ada66bd29e7bd))
24
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
25
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
26
+ * additional component wiring ([#133](https://github.com/iotaledger/twin-engine/issues/133)) ([a32bce1](https://github.com/iotaledger/twin-engine/commit/a32bce169ab3a47fd566eb089c6b01ba147ea1da))
27
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
28
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
29
+ * modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
30
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
31
+ * organization identifiers ([#152](https://github.com/iotaledger/twin-engine/issues/152)) ([d8e6d51](https://github.com/iotaledger/twin-engine/commit/d8e6d5147f402f0fe17b445efd8ae97db0c36adb))
32
+ * platform component for authentication rate ([319f0b9](https://github.com/iotaledger/twin-engine/commit/319f0b91528195765fca03871e79772f861eba37))
33
+ * remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
34
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
35
+ * remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
36
+ * remove hosting component ([#159](https://github.com/iotaledger/twin-engine/issues/159)) ([bf304ad](https://github.com/iotaledger/twin-engine/commit/bf304ad97b2b94a77169d9ea2730ee5d750d8996))
37
+ * replace unified data space connector with control plane and data plane components ([#78](https://github.com/iotaledger/twin-engine/issues/78)) ([a6ebace](https://github.com/iotaledger/twin-engine/commit/a6ebace389dafe754a3ca0827999966b5a101a59))
38
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
39
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
40
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
41
+ * typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
42
+ * update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
43
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
44
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
45
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
46
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
47
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
48
+
49
+
50
+ ### Bug Fixes
51
+
52
+ * constructing TenantProcessor ([4dad604](https://github.com/iotaledger/twin-engine/commit/4dad604c0e424a3ffa65f3d6cef173058b21ec76))
53
+
54
+
55
+ ### Dependencies
56
+
57
+ * The following workspace dependencies were updated
58
+ * dependencies
59
+ * @twin.org/engine-models bumped from 0.9.0-next.0 to 0.9.0-next.1
60
+ * @twin.org/engine-types bumped from 0.9.0-next.0 to 0.9.0-next.1
61
+
62
+ ## [0.0.3-next.56](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.55...engine-server-types-v0.0.3-next.56) (2026-06-23)
63
+
64
+
65
+ ### Features
66
+
67
+ * platform component for authentication rate ([319f0b9](https://github.com/iotaledger/twin-engine/commit/319f0b91528195765fca03871e79772f861eba37))
68
+
69
+
70
+ ### Dependencies
71
+
72
+ * The following workspace dependencies were updated
73
+ * dependencies
74
+ * @twin.org/engine-models bumped from 0.0.3-next.55 to 0.0.3-next.56
75
+ * @twin.org/engine-types bumped from 0.0.3-next.55 to 0.0.3-next.56
76
+
77
+ ## [0.0.3-next.55](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.54...engine-server-types-v0.0.3-next.55) (2026-06-19)
78
+
79
+
80
+ ### Miscellaneous Chores
81
+
82
+ * **engine-server-types:** Synchronize repo versions
83
+
84
+
85
+ ### Dependencies
86
+
87
+ * The following workspace dependencies were updated
88
+ * dependencies
89
+ * @twin.org/engine-models bumped from 0.0.3-next.54 to 0.0.3-next.55
90
+ * @twin.org/engine-types bumped from 0.0.3-next.54 to 0.0.3-next.55
91
+
92
+ ## [0.0.3-next.54](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.53...engine-server-types-v0.0.3-next.54) (2026-06-19)
93
+
94
+
95
+ ### Miscellaneous Chores
96
+
97
+ * **engine-server-types:** Synchronize repo versions
98
+
99
+
100
+ ### Dependencies
101
+
102
+ * The following workspace dependencies were updated
103
+ * dependencies
104
+ * @twin.org/engine-models bumped from 0.0.3-next.53 to 0.0.3-next.54
105
+ * @twin.org/engine-types bumped from 0.0.3-next.53 to 0.0.3-next.54
106
+
107
+ ## [0.0.3-next.53](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.52...engine-server-types-v0.0.3-next.53) (2026-06-18)
108
+
109
+
110
+ ### Features
111
+
112
+ * remove hosting component ([#159](https://github.com/iotaledger/twin-engine/issues/159)) ([bf304ad](https://github.com/iotaledger/twin-engine/commit/bf304ad97b2b94a77169d9ea2730ee5d750d8996))
113
+
114
+
115
+ ### Dependencies
116
+
117
+ * The following workspace dependencies were updated
118
+ * dependencies
119
+ * @twin.org/engine-models bumped from 0.0.3-next.52 to 0.0.3-next.53
120
+ * @twin.org/engine-types bumped from 0.0.3-next.52 to 0.0.3-next.53
121
+
122
+ ## [0.0.3-next.52](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.51...engine-server-types-v0.0.3-next.52) (2026-06-16)
123
+
124
+
125
+ ### Miscellaneous Chores
126
+
127
+ * **engine-server-types:** Synchronize repo versions
128
+
129
+
130
+ ### Dependencies
131
+
132
+ * The following workspace dependencies were updated
133
+ * dependencies
134
+ * @twin.org/engine-models bumped from 0.0.3-next.51 to 0.0.3-next.52
135
+ * @twin.org/engine-types bumped from 0.0.3-next.51 to 0.0.3-next.52
136
+
137
+ ## [0.0.3-next.51](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.50...engine-server-types-v0.0.3-next.51) (2026-06-15)
138
+
139
+
140
+ ### Miscellaneous Chores
141
+
142
+ * **engine-server-types:** Synchronize repo versions
143
+
144
+
145
+ ### Dependencies
146
+
147
+ * The following workspace dependencies were updated
148
+ * dependencies
149
+ * @twin.org/engine-models bumped from 0.0.3-next.50 to 0.0.3-next.51
150
+ * @twin.org/engine-types bumped from 0.0.3-next.50 to 0.0.3-next.51
151
+
152
+ ## [0.0.3-next.50](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.49...engine-server-types-v0.0.3-next.50) (2026-06-11)
153
+
154
+
155
+ ### Features
156
+
157
+ * organization identifiers ([#152](https://github.com/iotaledger/twin-engine/issues/152)) ([d8e6d51](https://github.com/iotaledger/twin-engine/commit/d8e6d5147f402f0fe17b445efd8ae97db0c36adb))
158
+
159
+
160
+ ### Dependencies
161
+
162
+ * The following workspace dependencies were updated
163
+ * dependencies
164
+ * @twin.org/engine-models bumped from 0.0.3-next.49 to 0.0.3-next.50
165
+ * @twin.org/engine-types bumped from 0.0.3-next.49 to 0.0.3-next.50
166
+
167
+ ## [0.0.3-next.49](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.48...engine-server-types-v0.0.3-next.49) (2026-06-09)
168
+
169
+
170
+ ### Miscellaneous Chores
171
+
172
+ * **engine-server-types:** Synchronize repo versions
173
+
174
+
175
+ ### Dependencies
176
+
177
+ * The following workspace dependencies were updated
178
+ * dependencies
179
+ * @twin.org/engine-models bumped from 0.0.3-next.48 to 0.0.3-next.49
180
+ * @twin.org/engine-types bumped from 0.0.3-next.48 to 0.0.3-next.49
181
+
182
+ ## [0.0.3-next.48](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.47...engine-server-types-v0.0.3-next.48) (2026-06-08)
183
+
184
+
185
+ ### Miscellaneous Chores
186
+
187
+ * **engine-server-types:** Synchronize repo versions
188
+
189
+
190
+ ### Dependencies
191
+
192
+ * The following workspace dependencies were updated
193
+ * dependencies
194
+ * @twin.org/engine-models bumped from 0.0.3-next.47 to 0.0.3-next.48
195
+ * @twin.org/engine-types bumped from 0.0.3-next.47 to 0.0.3-next.48
196
+
197
+ ## [0.0.3-next.47](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.46...engine-server-types-v0.0.3-next.47) (2026-06-08)
198
+
199
+
200
+ ### Miscellaneous Chores
201
+
202
+ * **engine-server-types:** Synchronize repo versions
203
+
204
+
205
+ ### Dependencies
206
+
207
+ * The following workspace dependencies were updated
208
+ * dependencies
209
+ * @twin.org/engine-models bumped from 0.0.3-next.46 to 0.0.3-next.47
210
+ * @twin.org/engine-types bumped from 0.0.3-next.46 to 0.0.3-next.47
211
+
212
+ ## [0.0.3-next.46](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.45...engine-server-types-v0.0.3-next.46) (2026-06-04)
213
+
214
+
215
+ ### Features
216
+
217
+ * add tenant component ([#138](https://github.com/iotaledger/twin-engine/issues/138)) ([ebbcb8f](https://github.com/iotaledger/twin-engine/commit/ebbcb8fa3fee05048ddad2891c6ada66bd29e7bd))
218
+
219
+
220
+ ### Dependencies
221
+
222
+ * The following workspace dependencies were updated
223
+ * dependencies
224
+ * @twin.org/engine-models bumped from 0.0.3-next.45 to 0.0.3-next.46
225
+ * @twin.org/engine-types bumped from 0.0.3-next.45 to 0.0.3-next.46
226
+
227
+ ## [0.0.3-next.45](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.44...engine-server-types-v0.0.3-next.45) (2026-06-02)
228
+
229
+
230
+ ### Features
231
+
232
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
233
+ * add authentication rate and audit services ([#95](https://github.com/iotaledger/twin-engine/issues/95)) ([55e2b08](https://github.com/iotaledger/twin-engine/commit/55e2b089661529e0556115817cc435cc6e4292cc))
234
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
235
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
236
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
237
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
238
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
239
+ * add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
240
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
241
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
242
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
243
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
244
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
245
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
246
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
247
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
248
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
249
+ * additional component wiring ([#133](https://github.com/iotaledger/twin-engine/issues/133)) ([a32bce1](https://github.com/iotaledger/twin-engine/commit/a32bce169ab3a47fd566eb089c6b01ba147ea1da))
250
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
251
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
252
+ * modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
253
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
254
+ * remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
255
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
256
+ * remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
257
+ * replace unified data space connector with control plane and data plane components ([#78](https://github.com/iotaledger/twin-engine/issues/78)) ([a6ebace](https://github.com/iotaledger/twin-engine/commit/a6ebace389dafe754a3ca0827999966b5a101a59))
258
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
259
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
260
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
261
+ * typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
262
+ * update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
263
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
264
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
265
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
266
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
267
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
268
+
269
+
270
+ ### Bug Fixes
271
+
272
+ * constructing TenantProcessor ([4dad604](https://github.com/iotaledger/twin-engine/commit/4dad604c0e424a3ffa65f3d6cef173058b21ec76))
273
+
274
+
275
+ ### Dependencies
276
+
277
+ * The following workspace dependencies were updated
278
+ * dependencies
279
+ * @twin.org/engine-models bumped from 0.0.3-next.44 to 0.0.3-next.45
280
+ * @twin.org/engine-types bumped from 0.0.3-next.44 to 0.0.3-next.45
281
+
282
+ ## [0.0.3-next.44](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.43...engine-server-types-v0.0.3-next.44) (2026-06-02)
283
+
284
+
285
+ ### Features
286
+
287
+ * additional component wiring ([#133](https://github.com/iotaledger/twin-engine/issues/133)) ([a32bce1](https://github.com/iotaledger/twin-engine/commit/a32bce169ab3a47fd566eb089c6b01ba147ea1da))
288
+
289
+
290
+ ### Dependencies
291
+
292
+ * The following workspace dependencies were updated
293
+ * dependencies
294
+ * @twin.org/engine-models bumped from 0.0.3-next.43 to 0.0.3-next.44
295
+ * @twin.org/engine-types bumped from 0.0.3-next.43 to 0.0.3-next.44
296
+
297
+ ## [0.0.3-next.43](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.42...engine-server-types-v0.0.3-next.43) (2026-05-29)
298
+
299
+
300
+ ### Miscellaneous Chores
301
+
302
+ * **engine-server-types:** Synchronize repo versions
303
+
304
+
305
+ ### Dependencies
306
+
307
+ * The following workspace dependencies were updated
308
+ * dependencies
309
+ * @twin.org/engine-models bumped from 0.0.3-next.42 to 0.0.3-next.43
310
+ * @twin.org/engine-types bumped from 0.0.3-next.42 to 0.0.3-next.43
311
+
312
+ ## [0.0.3-next.42](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.41...engine-server-types-v0.0.3-next.42) (2026-05-28)
313
+
314
+
315
+ ### Miscellaneous Chores
316
+
317
+ * **engine-server-types:** Synchronize repo versions
318
+
319
+
320
+ ### Dependencies
321
+
322
+ * The following workspace dependencies were updated
323
+ * dependencies
324
+ * @twin.org/engine-models bumped from 0.0.3-next.41 to 0.0.3-next.42
325
+ * @twin.org/engine-types bumped from 0.0.3-next.41 to 0.0.3-next.42
326
+
327
+ ## [0.0.3-next.41](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.40...engine-server-types-v0.0.3-next.41) (2026-05-26)
328
+
329
+
330
+ ### Miscellaneous Chores
331
+
332
+ * **engine-server-types:** Synchronize repo versions
333
+
334
+
335
+ ### Dependencies
336
+
337
+ * The following workspace dependencies were updated
338
+ * dependencies
339
+ * @twin.org/engine-models bumped from 0.0.3-next.40 to 0.0.3-next.41
340
+ * @twin.org/engine-types bumped from 0.0.3-next.40 to 0.0.3-next.41
341
+
342
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.39...engine-server-types-v0.0.3-next.40) (2026-05-22)
343
+
344
+
345
+ ### Miscellaneous Chores
346
+
347
+ * **engine-server-types:** Synchronize repo versions
348
+
349
+
350
+ ### Dependencies
351
+
352
+ * The following workspace dependencies were updated
353
+ * dependencies
354
+ * @twin.org/engine-models bumped from 0.0.3-next.39 to 0.0.3-next.40
355
+ * @twin.org/engine-types bumped from 0.0.3-next.39 to 0.0.3-next.40
356
+
357
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.38...engine-server-types-v0.0.3-next.39) (2026-05-21)
358
+
359
+
360
+ ### Miscellaneous Chores
361
+
362
+ * **engine-server-types:** Synchronize repo versions
363
+
364
+
365
+ ### Dependencies
366
+
367
+ * The following workspace dependencies were updated
368
+ * dependencies
369
+ * @twin.org/engine-models bumped from 0.0.3-next.38 to 0.0.3-next.39
370
+ * @twin.org/engine-types bumped from 0.0.3-next.38 to 0.0.3-next.39
371
+
372
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.37...engine-server-types-v0.0.3-next.38) (2026-05-20)
373
+
374
+
375
+ ### Miscellaneous Chores
376
+
377
+ * **engine-server-types:** Synchronize repo versions
378
+
379
+
380
+ ### Dependencies
381
+
382
+ * The following workspace dependencies were updated
383
+ * dependencies
384
+ * @twin.org/engine-models bumped from 0.0.3-next.37 to 0.0.3-next.38
385
+ * @twin.org/engine-types bumped from 0.0.3-next.37 to 0.0.3-next.38
386
+
387
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.36...engine-server-types-v0.0.3-next.37) (2026-05-12)
388
+
389
+
390
+ ### Features
391
+
392
+ * typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
393
+
394
+
395
+ ### Dependencies
396
+
397
+ * The following workspace dependencies were updated
398
+ * dependencies
399
+ * @twin.org/engine-models bumped from 0.0.3-next.36 to 0.0.3-next.37
400
+ * @twin.org/engine-types bumped from 0.0.3-next.36 to 0.0.3-next.37
401
+
402
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.35...engine-server-types-v0.0.3-next.36) (2026-05-08)
403
+
404
+
405
+ ### Miscellaneous Chores
406
+
407
+ * **engine-server-types:** Synchronize repo versions
408
+
409
+
410
+ ### Dependencies
411
+
412
+ * The following workspace dependencies were updated
413
+ * dependencies
414
+ * @twin.org/engine-models bumped from 0.0.3-next.35 to 0.0.3-next.36
415
+ * @twin.org/engine-types bumped from 0.0.3-next.35 to 0.0.3-next.36
416
+
417
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.34...engine-server-types-v0.0.3-next.35) (2026-05-05)
418
+
419
+
420
+ ### Bug Fixes
421
+
422
+ * constructing TenantProcessor ([4dad604](https://github.com/iotaledger/twin-engine/commit/4dad604c0e424a3ffa65f3d6cef173058b21ec76))
423
+
424
+
425
+ ### Dependencies
426
+
427
+ * The following workspace dependencies were updated
428
+ * dependencies
429
+ * @twin.org/engine-models bumped from 0.0.3-next.34 to 0.0.3-next.35
430
+ * @twin.org/engine-types bumped from 0.0.3-next.34 to 0.0.3-next.35
431
+
432
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.33...engine-server-types-v0.0.3-next.34) (2026-05-05)
433
+
434
+
435
+ ### Miscellaneous Chores
436
+
437
+ * **engine-server-types:** Synchronize repo versions
438
+
439
+
440
+ ### Dependencies
441
+
442
+ * The following workspace dependencies were updated
443
+ * dependencies
444
+ * @twin.org/engine-models bumped from 0.0.3-next.33 to 0.0.3-next.34
445
+ * @twin.org/engine-types bumped from 0.0.3-next.33 to 0.0.3-next.34
446
+
447
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.32...engine-server-types-v0.0.3-next.33) (2026-05-05)
448
+
449
+
450
+ ### Miscellaneous Chores
451
+
452
+ * **engine-server-types:** Synchronize repo versions
453
+
454
+
455
+ ### Dependencies
456
+
457
+ * The following workspace dependencies were updated
458
+ * dependencies
459
+ * @twin.org/engine-models bumped from 0.0.3-next.32 to 0.0.3-next.33
460
+ * @twin.org/engine-types bumped from 0.0.3-next.32 to 0.0.3-next.33
461
+
462
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.31...engine-server-types-v0.0.3-next.32) (2026-04-24)
463
+
464
+
465
+ ### Miscellaneous Chores
466
+
467
+ * **engine-server-types:** Synchronize repo versions
468
+
469
+
470
+ ### Dependencies
471
+
472
+ * The following workspace dependencies were updated
473
+ * dependencies
474
+ * @twin.org/engine-models bumped from 0.0.3-next.31 to 0.0.3-next.32
475
+ * @twin.org/engine-types bumped from 0.0.3-next.31 to 0.0.3-next.32
476
+
477
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.30...engine-server-types-v0.0.3-next.31) (2026-04-22)
478
+
479
+
480
+ ### Miscellaneous Chores
481
+
482
+ * **engine-server-types:** Synchronize repo versions
483
+
484
+
485
+ ### Dependencies
486
+
487
+ * The following workspace dependencies were updated
488
+ * dependencies
489
+ * @twin.org/engine-models bumped from 0.0.3-next.30 to 0.0.3-next.31
490
+ * @twin.org/engine-types bumped from 0.0.3-next.30 to 0.0.3-next.31
491
+
492
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.29...engine-server-types-v0.0.3-next.30) (2026-04-16)
493
+
494
+
495
+ ### Miscellaneous Chores
496
+
497
+ * **engine-server-types:** Synchronize repo versions
498
+
499
+
500
+ ### Dependencies
501
+
502
+ * The following workspace dependencies were updated
503
+ * dependencies
504
+ * @twin.org/engine-models bumped from 0.0.3-next.29 to 0.0.3-next.30
505
+ * @twin.org/engine-types bumped from 0.0.3-next.29 to 0.0.3-next.30
506
+
507
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.28...engine-server-types-v0.0.3-next.29) (2026-04-14)
508
+
509
+
510
+ ### Features
511
+
512
+ * add authentication rate and audit services ([#95](https://github.com/iotaledger/twin-engine/issues/95)) ([55e2b08](https://github.com/iotaledger/twin-engine/commit/55e2b089661529e0556115817cc435cc6e4292cc))
513
+
514
+
515
+ ### Dependencies
516
+
517
+ * The following workspace dependencies were updated
518
+ * dependencies
519
+ * @twin.org/engine-models bumped from 0.0.3-next.28 to 0.0.3-next.29
520
+ * @twin.org/engine-types bumped from 0.0.3-next.28 to 0.0.3-next.29
521
+
522
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.27...engine-server-types-v0.0.3-next.28) (2026-04-10)
523
+
524
+
525
+ ### Miscellaneous Chores
526
+
527
+ * **engine-server-types:** Synchronize repo versions
528
+
529
+
530
+ ### Dependencies
531
+
532
+ * The following workspace dependencies were updated
533
+ * dependencies
534
+ * @twin.org/engine-models bumped from 0.0.3-next.27 to 0.0.3-next.28
535
+ * @twin.org/engine-types bumped from 0.0.3-next.27 to 0.0.3-next.28
536
+
537
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.26...engine-server-types-v0.0.3-next.27) (2026-03-20)
538
+
539
+
540
+ ### Features
541
+
542
+ * update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
543
+
544
+
545
+ ### Dependencies
546
+
547
+ * The following workspace dependencies were updated
548
+ * dependencies
549
+ * @twin.org/engine-models bumped from 0.0.3-next.26 to 0.0.3-next.27
550
+ * @twin.org/engine-types bumped from 0.0.3-next.26 to 0.0.3-next.27
551
+
552
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.25...engine-server-types-v0.0.3-next.26) (2026-03-05)
553
+
554
+
555
+ ### Miscellaneous Chores
556
+
557
+ * **engine-server-types:** Synchronize repo versions
558
+
559
+
560
+ ### Dependencies
561
+
562
+ * The following workspace dependencies were updated
563
+ * dependencies
564
+ * @twin.org/engine-models bumped from 0.0.3-next.25 to 0.0.3-next.26
565
+ * @twin.org/engine-types bumped from 0.0.3-next.25 to 0.0.3-next.26
566
+
567
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.24...engine-server-types-v0.0.3-next.25) (2026-03-02)
568
+
569
+
570
+ ### Features
571
+
572
+ * replace unified data space connector with control plane and data plane components ([#78](https://github.com/iotaledger/twin-engine/issues/78)) ([a6ebace](https://github.com/iotaledger/twin-engine/commit/a6ebace389dafe754a3ca0827999966b5a101a59))
573
+
574
+
575
+ ### Dependencies
576
+
577
+ * The following workspace dependencies were updated
578
+ * dependencies
579
+ * @twin.org/engine-models bumped from 0.0.3-next.24 to 0.0.3-next.25
580
+ * @twin.org/engine-types bumped from 0.0.3-next.24 to 0.0.3-next.25
581
+
582
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.23...engine-server-types-v0.0.3-next.24) (2026-02-26)
583
+
584
+
585
+ ### Miscellaneous Chores
586
+
587
+ * **engine-server-types:** Synchronize repo versions
588
+
589
+
590
+ ### Dependencies
591
+
592
+ * The following workspace dependencies were updated
593
+ * dependencies
594
+ * @twin.org/engine-models bumped from 0.0.3-next.23 to 0.0.3-next.24
595
+ * @twin.org/engine-types bumped from 0.0.3-next.23 to 0.0.3-next.24
596
+
597
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.22...engine-server-types-v0.0.3-next.23) (2026-02-23)
598
+
599
+
600
+ ### Features
601
+
602
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
603
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
604
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
605
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
606
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
607
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
608
+ * add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
609
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
610
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
611
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
612
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
613
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
614
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
615
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
616
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
617
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
618
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
619
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
620
+ * modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
621
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
622
+ * remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
623
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
624
+ * remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
625
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
626
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
627
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
628
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
629
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
630
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
631
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
632
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
633
+
634
+
635
+ ### Dependencies
636
+
637
+ * The following workspace dependencies were updated
638
+ * dependencies
639
+ * @twin.org/engine-models bumped from 0.0.3-next.22 to 0.0.3-next.23
640
+ * @twin.org/engine-types bumped from 0.0.3-next.22 to 0.0.3-next.23
641
+
642
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.21...engine-server-types-v0.0.3-next.22) (2026-02-23)
643
+
644
+
645
+ ### Miscellaneous Chores
646
+
647
+ * **engine-server-types:** Synchronize repo versions
648
+
649
+
650
+ ### Dependencies
651
+
652
+ * The following workspace dependencies were updated
653
+ * dependencies
654
+ * @twin.org/engine-models bumped from 0.0.3-next.21 to 0.0.3-next.22
655
+ * @twin.org/engine-types bumped from 0.0.3-next.21 to 0.0.3-next.22
656
+
657
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.20...engine-server-types-v0.0.3-next.21) (2026-02-13)
658
+
659
+
660
+ ### Features
661
+
662
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
663
+
664
+
665
+ ### Dependencies
666
+
667
+ * The following workspace dependencies were updated
668
+ * dependencies
669
+ * @twin.org/engine-models bumped from 0.0.3-next.20 to 0.0.3-next.21
670
+ * @twin.org/engine-types bumped from 0.0.3-next.20 to 0.0.3-next.21
671
+
672
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.19...engine-server-types-v0.0.3-next.20) (2026-02-06)
673
+
674
+
675
+ ### Miscellaneous Chores
676
+
677
+ * **engine-server-types:** Synchronize repo versions
678
+
679
+
680
+ ### Dependencies
681
+
682
+ * The following workspace dependencies were updated
683
+ * dependencies
684
+ * @twin.org/engine-models bumped from 0.0.3-next.19 to 0.0.3-next.20
685
+ * @twin.org/engine-types bumped from 0.0.3-next.19 to 0.0.3-next.20
686
+
687
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.18...engine-server-types-v0.0.3-next.19) (2026-02-05)
688
+
689
+
690
+ ### Miscellaneous Chores
691
+
692
+ * **engine-server-types:** Synchronize repo versions
693
+
694
+
695
+ ### Dependencies
696
+
697
+ * The following workspace dependencies were updated
698
+ * dependencies
699
+ * @twin.org/engine-models bumped from 0.0.3-next.18 to 0.0.3-next.19
700
+ * @twin.org/engine-types bumped from 0.0.3-next.18 to 0.0.3-next.19
701
+
702
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.17...engine-server-types-v0.0.3-next.18) (2026-02-04)
703
+
704
+
705
+ ### Miscellaneous Chores
706
+
707
+ * **engine-server-types:** Synchronize repo versions
708
+
709
+
710
+ ### Dependencies
711
+
712
+ * The following workspace dependencies were updated
713
+ * dependencies
714
+ * @twin.org/engine-models bumped from 0.0.3-next.17 to 0.0.3-next.18
715
+ * @twin.org/engine-types bumped from 0.0.3-next.17 to 0.0.3-next.18
716
+
717
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.16...engine-server-types-v0.0.3-next.17) (2026-02-02)
718
+
719
+
720
+ ### Miscellaneous Chores
721
+
722
+ * **engine-server-types:** Synchronize repo versions
723
+
724
+
725
+ ### Dependencies
726
+
727
+ * The following workspace dependencies were updated
728
+ * dependencies
729
+ * @twin.org/engine-models bumped from 0.0.3-next.16 to 0.0.3-next.17
730
+ * @twin.org/engine-types bumped from 0.0.3-next.16 to 0.0.3-next.17
731
+
732
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.15...engine-server-types-v0.0.3-next.16) (2026-01-28)
733
+
734
+
735
+ ### Features
736
+
737
+ * remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
738
+
739
+
740
+ ### Dependencies
741
+
742
+ * The following workspace dependencies were updated
743
+ * dependencies
744
+ * @twin.org/engine-models bumped from 0.0.3-next.15 to 0.0.3-next.16
745
+ * @twin.org/engine-types bumped from 0.0.3-next.15 to 0.0.3-next.16
746
+
747
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.14...engine-server-types-v0.0.3-next.15) (2026-01-26)
748
+
749
+
750
+ ### Features
751
+
752
+ * add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
753
+
754
+
755
+ ### Dependencies
756
+
757
+ * The following workspace dependencies were updated
758
+ * dependencies
759
+ * @twin.org/engine-models bumped from 0.0.3-next.14 to 0.0.3-next.15
760
+ * @twin.org/engine-types bumped from 0.0.3-next.14 to 0.0.3-next.15
761
+
762
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.13...engine-server-types-v0.0.3-next.14) (2026-01-19)
763
+
764
+
765
+ ### Features
766
+
767
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
768
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
769
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
770
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
771
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
772
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
773
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
774
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
775
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
776
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
777
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
778
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
779
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
780
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
781
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
782
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
783
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
784
+ * modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
785
+ * remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
786
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
787
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
788
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
789
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
790
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
791
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
792
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
793
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
794
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
795
+
796
+
797
+ ### Dependencies
798
+
799
+ * The following workspace dependencies were updated
800
+ * dependencies
801
+ * @twin.org/engine-models bumped from 0.0.3-next.13 to 0.0.3-next.14
802
+ * @twin.org/engine-types bumped from 0.0.3-next.13 to 0.0.3-next.14
803
+
804
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.12...engine-server-types-v0.0.3-next.13) (2026-01-19)
805
+
806
+
807
+ ### Features
808
+
809
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
810
+
811
+
812
+ ### Dependencies
813
+
814
+ * The following workspace dependencies were updated
815
+ * dependencies
816
+ * @twin.org/engine-models bumped from 0.0.3-next.12 to 0.0.3-next.13
817
+ * @twin.org/engine-types bumped from 0.0.3-next.12 to 0.0.3-next.13
818
+
819
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.11...engine-server-types-v0.0.3-next.12) (2026-01-19)
820
+
821
+
822
+ ### Miscellaneous Chores
823
+
824
+ * **engine-server-types:** Synchronize repo versions
825
+
826
+
827
+ ### Dependencies
828
+
829
+ * The following workspace dependencies were updated
830
+ * dependencies
831
+ * @twin.org/engine-models bumped from 0.0.3-next.11 to 0.0.3-next.12
832
+ * @twin.org/engine-types bumped from 0.0.3-next.11 to 0.0.3-next.12
833
+
834
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.10...engine-server-types-v0.0.3-next.11) (2026-01-16)
835
+
836
+
837
+ ### Miscellaneous Chores
838
+
839
+ * **engine-server-types:** Synchronize repo versions
840
+
841
+
842
+ ### Dependencies
843
+
844
+ * The following workspace dependencies were updated
845
+ * dependencies
846
+ * @twin.org/engine-models bumped from 0.0.3-next.10 to 0.0.3-next.11
847
+ * @twin.org/engine-types bumped from 0.0.3-next.10 to 0.0.3-next.11
848
+
849
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.9...engine-server-types-v0.0.3-next.10) (2026-01-13)
850
+
851
+
852
+ ### Miscellaneous Chores
853
+
854
+ * **engine-server-types:** Synchronize repo versions
855
+
856
+
857
+ ### Dependencies
858
+
859
+ * The following workspace dependencies were updated
860
+ * dependencies
861
+ * @twin.org/engine-models bumped from 0.0.3-next.9 to 0.0.3-next.10
862
+ * @twin.org/engine-types bumped from 0.0.3-next.9 to 0.0.3-next.10
863
+
864
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.8...engine-server-types-v0.0.3-next.9) (2026-01-07)
4
865
 
5
866
 
6
867
  ### Miscellaneous Chores
@@ -15,7 +876,7 @@
15
876
  * @twin.org/engine-models bumped from 0.0.3-next.8 to 0.0.3-next.9
16
877
  * @twin.org/engine-types bumped from 0.0.3-next.8 to 0.0.3-next.9
17
878
 
18
- ## [0.0.3-next.8](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.3-next.7...engine-server-types-v0.0.3-next.8) (2026-01-06)
879
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.7...engine-server-types-v0.0.3-next.8) (2026-01-06)
19
880
 
20
881
 
21
882
  ### Miscellaneous Chores
@@ -30,12 +891,12 @@
30
891
  * @twin.org/engine-models bumped from 0.0.3-next.7 to 0.0.3-next.8
31
892
  * @twin.org/engine-types bumped from 0.0.3-next.7 to 0.0.3-next.8
32
893
 
33
- ## [0.0.3-next.7](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.3-next.6...engine-server-types-v0.0.3-next.7) (2025-12-04)
894
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.6...engine-server-types-v0.0.3-next.7) (2025-12-04)
34
895
 
35
896
 
36
897
  ### Features
37
898
 
38
- * add trust and rights management plugins ([eea0807](https://github.com/twinfoundation/engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
899
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
39
900
 
40
901
 
41
902
  ### Dependencies
@@ -45,12 +906,12 @@
45
906
  * @twin.org/engine-models bumped from 0.0.3-next.6 to 0.0.3-next.7
46
907
  * @twin.org/engine-types bumped from 0.0.3-next.6 to 0.0.3-next.7
47
908
 
48
- ## [0.0.3-next.6](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.3-next.5...engine-server-types-v0.0.3-next.6) (2025-11-28)
909
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.5...engine-server-types-v0.0.3-next.6) (2025-11-28)
49
910
 
50
911
 
51
912
  ### Features
52
913
 
53
- * add fed cat filters ([a52cbf1](https://github.com/twinfoundation/engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
914
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
54
915
 
55
916
 
56
917
  ### Dependencies
@@ -60,7 +921,7 @@
60
921
  * @twin.org/engine-models bumped from 0.0.3-next.5 to 0.0.3-next.6
61
922
  * @twin.org/engine-types bumped from 0.0.3-next.5 to 0.0.3-next.6
62
923
 
63
- ## [0.0.3-next.5](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.3-next.4...engine-server-types-v0.0.3-next.5) (2025-11-20)
924
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.4...engine-server-types-v0.0.3-next.5) (2025-11-20)
64
925
 
65
926
 
66
927
  ### Miscellaneous Chores
@@ -75,12 +936,12 @@
75
936
  * @twin.org/engine-models bumped from 0.0.3-next.4 to 0.0.3-next.5
76
937
  * @twin.org/engine-types bumped from 0.0.3-next.4 to 0.0.3-next.5
77
938
 
78
- ## [0.0.3-next.4](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.3-next.3...engine-server-types-v0.0.3-next.4) (2025-11-20)
939
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.3...engine-server-types-v0.0.3-next.4) (2025-11-20)
79
940
 
80
941
 
81
942
  ### Features
82
943
 
83
- * context id handlers repopulated after engine clone ([9712e32](https://github.com/twinfoundation/engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
944
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
84
945
 
85
946
 
86
947
  ### Dependencies
@@ -90,7 +951,7 @@
90
951
  * @twin.org/engine-models bumped from 0.0.3-next.3 to 0.0.3-next.4
91
952
  * @twin.org/engine-types bumped from 0.0.3-next.3 to 0.0.3-next.4
92
953
 
93
- ## [0.0.3-next.3](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.3-next.2...engine-server-types-v0.0.3-next.3) (2025-11-14)
954
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.2...engine-server-types-v0.0.3-next.3) (2025-11-14)
94
955
 
95
956
 
96
957
  ### Miscellaneous Chores
@@ -105,7 +966,7 @@
105
966
  * @twin.org/engine-models bumped from 0.0.3-next.2 to 0.0.3-next.3
106
967
  * @twin.org/engine-types bumped from 0.0.3-next.2 to 0.0.3-next.3
107
968
 
108
- ## [0.0.3-next.2](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.3-next.1...engine-server-types-v0.0.3-next.2) (2025-11-13)
969
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.1...engine-server-types-v0.0.3-next.2) (2025-11-13)
109
970
 
110
971
 
111
972
  ### Miscellaneous Chores
@@ -120,34 +981,34 @@
120
981
  * @twin.org/engine-models bumped from 0.0.3-next.1 to 0.0.3-next.2
121
982
  * @twin.org/engine-types bumped from 0.0.3-next.1 to 0.0.3-next.2
122
983
 
123
- ## [0.0.3-next.1](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.3-next.0...engine-server-types-v0.0.3-next.1) (2025-11-13)
984
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.0...engine-server-types-v0.0.3-next.1) (2025-11-13)
124
985
 
125
986
 
126
987
  ### Features
127
988
 
128
- * add auth admin component ([201cd06](https://github.com/twinfoundation/engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
129
- * add context id features ([#51](https://github.com/twinfoundation/engine/issues/51)) ([eaef180](https://github.com/twinfoundation/engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
130
- * add data space connector ([a824d99](https://github.com/twinfoundation/engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
131
- * add default logging component for web server ([8ad94f0](https://github.com/twinfoundation/engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
132
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
133
- * add latest rights management components ([2d305c8](https://github.com/twinfoundation/engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
134
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
135
- * add rest clients as components ([c6f956a](https://github.com/twinfoundation/engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
136
- * add rights management modules ([e02cadc](https://github.com/twinfoundation/engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
137
- * add rights management negotiation ([84ef46b](https://github.com/twinfoundation/engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
138
- * add synchronised storage support ([5142e34](https://github.com/twinfoundation/engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
139
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
140
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
141
- * eslint migration to flat config ([6b978da](https://github.com/twinfoundation/engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
142
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
143
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
144
- * standardised engine logging naming ([0dbf857](https://github.com/twinfoundation/engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
145
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
146
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
147
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
148
- * update rights management and add authentication generators ([f728a1e](https://github.com/twinfoundation/engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
149
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
150
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
989
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
990
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
991
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
992
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
993
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
994
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
995
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
996
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
997
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
998
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
999
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
1000
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1001
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
1002
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
1003
+ * modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
1004
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
1005
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
1006
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
1007
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1008
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
1009
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
1010
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
1011
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
151
1012
 
152
1013
 
153
1014
  ### Dependencies
@@ -157,7 +1018,7 @@
157
1018
  * @twin.org/engine-models bumped from 0.0.3-next.0 to 0.0.3-next.1
158
1019
  * @twin.org/engine-types bumped from 0.0.3-next.0 to 0.0.3-next.1
159
1020
 
160
- ## [0.0.2-next.26](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.25...engine-server-types-v0.0.2-next.26) (2025-10-09)
1021
+ ## [0.0.2-next.26](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.25...engine-server-types-v0.0.2-next.26) (2025-10-09)
161
1022
 
162
1023
 
163
1024
  ### Miscellaneous Chores
@@ -172,12 +1033,12 @@
172
1033
  * @twin.org/engine-models bumped from 0.0.2-next.25 to 0.0.2-next.26
173
1034
  * @twin.org/engine-types bumped from 0.0.2-next.25 to 0.0.2-next.26
174
1035
 
175
- ## [0.0.2-next.25](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.24...engine-server-types-v0.0.2-next.25) (2025-10-09)
1036
+ ## [0.0.2-next.25](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.24...engine-server-types-v0.0.2-next.25) (2025-10-09)
176
1037
 
177
1038
 
178
1039
  ### Features
179
1040
 
180
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
1041
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
181
1042
 
182
1043
 
183
1044
  ### Dependencies
@@ -187,7 +1048,7 @@
187
1048
  * @twin.org/engine-models bumped from 0.0.2-next.24 to 0.0.2-next.25
188
1049
  * @twin.org/engine-types bumped from 0.0.2-next.24 to 0.0.2-next.25
189
1050
 
190
- ## [0.0.2-next.24](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.23...engine-server-types-v0.0.2-next.24) (2025-10-08)
1051
+ ## [0.0.2-next.24](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.23...engine-server-types-v0.0.2-next.24) (2025-10-08)
191
1052
 
192
1053
 
193
1054
  ### Miscellaneous Chores
@@ -202,7 +1063,7 @@
202
1063
  * @twin.org/engine-models bumped from 0.0.2-next.23 to 0.0.2-next.24
203
1064
  * @twin.org/engine-types bumped from 0.0.2-next.23 to 0.0.2-next.24
204
1065
 
205
- ## [0.0.2-next.23](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.22...engine-server-types-v0.0.2-next.23) (2025-10-07)
1066
+ ## [0.0.2-next.23](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.22...engine-server-types-v0.0.2-next.23) (2025-10-07)
206
1067
 
207
1068
 
208
1069
  ### Miscellaneous Chores
@@ -217,7 +1078,7 @@
217
1078
  * @twin.org/engine-models bumped from 0.0.2-next.22 to 0.0.2-next.23
218
1079
  * @twin.org/engine-types bumped from 0.0.2-next.22 to 0.0.2-next.23
219
1080
 
220
- ## [0.0.2-next.22](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.21...engine-server-types-v0.0.2-next.22) (2025-10-07)
1081
+ ## [0.0.2-next.22](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.21...engine-server-types-v0.0.2-next.22) (2025-10-07)
221
1082
 
222
1083
 
223
1084
  ### Miscellaneous Chores
@@ -232,7 +1093,7 @@
232
1093
  * @twin.org/engine-models bumped from 0.0.2-next.21 to 0.0.2-next.22
233
1094
  * @twin.org/engine-types bumped from 0.0.2-next.21 to 0.0.2-next.22
234
1095
 
235
- ## [0.0.2-next.21](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.20...engine-server-types-v0.0.2-next.21) (2025-10-07)
1096
+ ## [0.0.2-next.21](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.20...engine-server-types-v0.0.2-next.21) (2025-10-07)
236
1097
 
237
1098
 
238
1099
  ### Miscellaneous Chores
@@ -247,12 +1108,12 @@
247
1108
  * @twin.org/engine-models bumped from 0.0.2-next.20 to 0.0.2-next.21
248
1109
  * @twin.org/engine-types bumped from 0.0.2-next.20 to 0.0.2-next.21
249
1110
 
250
- ## [0.0.2-next.20](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.19...engine-server-types-v0.0.2-next.20) (2025-10-06)
1111
+ ## [0.0.2-next.20](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.19...engine-server-types-v0.0.2-next.20) (2025-10-06)
251
1112
 
252
1113
 
253
1114
  ### Features
254
1115
 
255
- * standardised engine logging naming ([0dbf857](https://github.com/twinfoundation/engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
1116
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
256
1117
 
257
1118
 
258
1119
  ### Dependencies
@@ -262,12 +1123,12 @@
262
1123
  * @twin.org/engine-models bumped from 0.0.2-next.19 to 0.0.2-next.20
263
1124
  * @twin.org/engine-types bumped from 0.0.2-next.19 to 0.0.2-next.20
264
1125
 
265
- ## [0.0.2-next.19](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.18...engine-server-types-v0.0.2-next.19) (2025-10-02)
1126
+ ## [0.0.2-next.19](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.18...engine-server-types-v0.0.2-next.19) (2025-10-02)
266
1127
 
267
1128
 
268
1129
  ### Features
269
1130
 
270
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
1131
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
271
1132
 
272
1133
 
273
1134
  ### Dependencies
@@ -277,12 +1138,12 @@
277
1138
  * @twin.org/engine-models bumped from 0.0.2-next.18 to 0.0.2-next.19
278
1139
  * @twin.org/engine-types bumped from 0.0.2-next.18 to 0.0.2-next.19
279
1140
 
280
- ## [0.0.2-next.18](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.17...engine-server-types-v0.0.2-next.18) (2025-09-29)
1141
+ ## [0.0.2-next.18](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.17...engine-server-types-v0.0.2-next.18) (2025-09-29)
281
1142
 
282
1143
 
283
1144
  ### Features
284
1145
 
285
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
1146
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
286
1147
 
287
1148
 
288
1149
  ### Dependencies
@@ -292,7 +1153,7 @@
292
1153
  * @twin.org/engine-models bumped from 0.0.2-next.17 to 0.0.2-next.18
293
1154
  * @twin.org/engine-types bumped from 0.0.2-next.17 to 0.0.2-next.18
294
1155
 
295
- ## [0.0.2-next.17](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.16...engine-server-types-v0.0.2-next.17) (2025-09-26)
1156
+ ## [0.0.2-next.17](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.16...engine-server-types-v0.0.2-next.17) (2025-09-26)
296
1157
 
297
1158
 
298
1159
  ### Miscellaneous Chores
@@ -307,7 +1168,7 @@
307
1168
  * @twin.org/engine-models bumped from 0.0.2-next.16 to 0.0.2-next.17
308
1169
  * @twin.org/engine-types bumped from 0.0.2-next.16 to 0.0.2-next.17
309
1170
 
310
- ## [0.0.2-next.16](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.15...engine-server-types-v0.0.2-next.16) (2025-09-25)
1171
+ ## [0.0.2-next.16](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.15...engine-server-types-v0.0.2-next.16) (2025-09-25)
311
1172
 
312
1173
 
313
1174
  ### Miscellaneous Chores
@@ -322,12 +1183,12 @@
322
1183
  * @twin.org/engine-models bumped from 0.0.2-next.15 to 0.0.2-next.16
323
1184
  * @twin.org/engine-types bumped from 0.0.2-next.15 to 0.0.2-next.16
324
1185
 
325
- ## [0.0.2-next.15](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.14...engine-server-types-v0.0.2-next.15) (2025-09-24)
1186
+ ## [0.0.2-next.15](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.14...engine-server-types-v0.0.2-next.15) (2025-09-24)
326
1187
 
327
1188
 
328
1189
  ### Features
329
1190
 
330
- * update rights management and add authentication generators ([f728a1e](https://github.com/twinfoundation/engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
1191
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
331
1192
 
332
1193
 
333
1194
  ### Dependencies
@@ -337,12 +1198,12 @@
337
1198
  * @twin.org/engine-models bumped from 0.0.2-next.14 to 0.0.2-next.15
338
1199
  * @twin.org/engine-types bumped from 0.0.2-next.14 to 0.0.2-next.15
339
1200
 
340
- ## [0.0.2-next.14](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.13...engine-server-types-v0.0.2-next.14) (2025-09-19)
1201
+ ## [0.0.2-next.14](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.13...engine-server-types-v0.0.2-next.14) (2025-09-19)
341
1202
 
342
1203
 
343
1204
  ### Features
344
1205
 
345
- * add latest rights management components ([2d305c8](https://github.com/twinfoundation/engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
1206
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
346
1207
 
347
1208
 
348
1209
  ### Dependencies
@@ -352,7 +1213,7 @@
352
1213
  * @twin.org/engine-models bumped from 0.0.2-next.13 to 0.0.2-next.14
353
1214
  * @twin.org/engine-types bumped from 0.0.2-next.13 to 0.0.2-next.14
354
1215
 
355
- ## [0.0.2-next.13](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.12...engine-server-types-v0.0.2-next.13) (2025-09-08)
1216
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.12...engine-server-types-v0.0.2-next.13) (2025-09-08)
356
1217
 
357
1218
 
358
1219
  ### Miscellaneous Chores
@@ -367,12 +1228,12 @@
367
1228
  * @twin.org/engine-models bumped from 0.0.2-next.12 to 0.0.2-next.13
368
1229
  * @twin.org/engine-types bumped from 0.0.2-next.12 to 0.0.2-next.13
369
1230
 
370
- ## [0.0.2-next.12](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.11...engine-server-types-v0.0.2-next.12) (2025-09-05)
1231
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.11...engine-server-types-v0.0.2-next.12) (2025-09-05)
371
1232
 
372
1233
 
373
1234
  ### Features
374
1235
 
375
- * add rights management negotiation ([84ef46b](https://github.com/twinfoundation/engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
1236
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
376
1237
 
377
1238
 
378
1239
  ### Dependencies
@@ -382,12 +1243,12 @@
382
1243
  * @twin.org/engine-models bumped from 0.0.2-next.11 to 0.0.2-next.12
383
1244
  * @twin.org/engine-types bumped from 0.0.2-next.11 to 0.0.2-next.12
384
1245
 
385
- ## [0.0.2-next.11](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.10...engine-server-types-v0.0.2-next.11) (2025-08-29)
1246
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.10...engine-server-types-v0.0.2-next.11) (2025-08-29)
386
1247
 
387
1248
 
388
1249
  ### Features
389
1250
 
390
- * eslint migration to flat config ([6b978da](https://github.com/twinfoundation/engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
1251
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
391
1252
 
392
1253
 
393
1254
  ### Dependencies
@@ -397,12 +1258,12 @@
397
1258
  * @twin.org/engine-models bumped from 0.0.2-next.10 to 0.0.2-next.11
398
1259
  * @twin.org/engine-types bumped from 0.0.2-next.10 to 0.0.2-next.11
399
1260
 
400
- ## [0.0.2-next.10](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.9...engine-server-types-v0.0.2-next.10) (2025-08-26)
1261
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.9...engine-server-types-v0.0.2-next.10) (2025-08-26)
401
1262
 
402
1263
 
403
1264
  ### Features
404
1265
 
405
- * add data space connector ([a824d99](https://github.com/twinfoundation/engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
1266
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
406
1267
 
407
1268
 
408
1269
  ### Dependencies
@@ -412,7 +1273,7 @@
412
1273
  * @twin.org/engine-models bumped from 0.0.2-next.9 to 0.0.2-next.10
413
1274
  * @twin.org/engine-types bumped from 0.0.2-next.9 to 0.0.2-next.10
414
1275
 
415
- ## [0.0.2-next.9](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.8...engine-server-types-v0.0.2-next.9) (2025-08-25)
1276
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.8...engine-server-types-v0.0.2-next.9) (2025-08-25)
416
1277
 
417
1278
 
418
1279
  ### Miscellaneous Chores
@@ -427,12 +1288,12 @@
427
1288
  * @twin.org/engine-models bumped from 0.0.2-next.8 to 0.0.2-next.9
428
1289
  * @twin.org/engine-types bumped from 0.0.2-next.8 to 0.0.2-next.9
429
1290
 
430
- ## [0.0.2-next.8](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.7...engine-server-types-v0.0.2-next.8) (2025-08-22)
1291
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.7...engine-server-types-v0.0.2-next.8) (2025-08-22)
431
1292
 
432
1293
 
433
1294
  ### Features
434
1295
 
435
- * add rights management modules ([e02cadc](https://github.com/twinfoundation/engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
1296
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
436
1297
 
437
1298
 
438
1299
  ### Dependencies
@@ -442,7 +1303,7 @@
442
1303
  * @twin.org/engine-models bumped from 0.0.2-next.7 to 0.0.2-next.8
443
1304
  * @twin.org/engine-types bumped from 0.0.2-next.7 to 0.0.2-next.8
444
1305
 
445
- ## [0.0.2-next.7](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.6...engine-server-types-v0.0.2-next.7) (2025-08-22)
1306
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.6...engine-server-types-v0.0.2-next.7) (2025-08-22)
446
1307
 
447
1308
 
448
1309
  ### Miscellaneous Chores
@@ -457,12 +1318,12 @@
457
1318
  * @twin.org/engine-models bumped from 0.0.2-next.6 to 0.0.2-next.7
458
1319
  * @twin.org/engine-types bumped from 0.0.2-next.6 to 0.0.2-next.7
459
1320
 
460
- ## [0.0.2-next.6](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.5...engine-server-types-v0.0.2-next.6) (2025-08-21)
1321
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.5...engine-server-types-v0.0.2-next.6) (2025-08-21)
461
1322
 
462
1323
 
463
1324
  ### Features
464
1325
 
465
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
1326
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
466
1327
 
467
1328
 
468
1329
  ### Dependencies
@@ -472,12 +1333,12 @@
472
1333
  * @twin.org/engine-models bumped from 0.0.2-next.5 to 0.0.2-next.6
473
1334
  * @twin.org/engine-types bumped from 0.0.2-next.5 to 0.0.2-next.6
474
1335
 
475
- ## [0.0.2-next.5](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.4...engine-server-types-v0.0.2-next.5) (2025-08-14)
1336
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.4...engine-server-types-v0.0.2-next.5) (2025-08-14)
476
1337
 
477
1338
 
478
1339
  ### Features
479
1340
 
480
- * add synchronised storage support ([5142e34](https://github.com/twinfoundation/engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
1341
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
481
1342
 
482
1343
 
483
1344
  ### Dependencies
@@ -487,12 +1348,12 @@
487
1348
  * @twin.org/engine-models bumped from 0.0.2-next.4 to 0.0.2-next.5
488
1349
  * @twin.org/engine-types bumped from 0.0.2-next.4 to 0.0.2-next.5
489
1350
 
490
- ## [0.0.2-next.4](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.3...engine-server-types-v0.0.2-next.4) (2025-07-25)
1351
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.3...engine-server-types-v0.0.2-next.4) (2025-07-25)
491
1352
 
492
1353
 
493
1354
  ### Features
494
1355
 
495
- * add default logging component for web server ([8ad94f0](https://github.com/twinfoundation/engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
1356
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
496
1357
 
497
1358
 
498
1359
  ### Dependencies
@@ -502,7 +1363,7 @@
502
1363
  * @twin.org/engine-models bumped from 0.0.2-next.3 to 0.0.2-next.4
503
1364
  * @twin.org/engine-types bumped from 0.0.2-next.3 to 0.0.2-next.4
504
1365
 
505
- ## [0.0.2-next.3](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.2...engine-server-types-v0.0.2-next.3) (2025-07-24)
1366
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.2...engine-server-types-v0.0.2-next.3) (2025-07-24)
506
1367
 
507
1368
 
508
1369
  ### Miscellaneous Chores
@@ -517,12 +1378,12 @@
517
1378
  * @twin.org/engine-models bumped from 0.0.2-next.2 to 0.0.2-next.3
518
1379
  * @twin.org/engine-types bumped from 0.0.2-next.2 to 0.0.2-next.3
519
1380
 
520
- ## [0.0.2-next.2](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.1...engine-server-types-v0.0.2-next.2) (2025-07-21)
1381
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.1...engine-server-types-v0.0.2-next.2) (2025-07-21)
521
1382
 
522
1383
 
523
1384
  ### Features
524
1385
 
525
- * add rest clients as components ([c6f956a](https://github.com/twinfoundation/engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
1386
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
526
1387
 
527
1388
 
528
1389
  ### Dependencies
@@ -532,19 +1393,19 @@
532
1393
  * @twin.org/engine-models bumped from 0.0.2-next.1 to 0.0.2-next.2
533
1394
  * @twin.org/engine-types bumped from 0.0.2-next.1 to 0.0.2-next.2
534
1395
 
535
- ## [0.0.2-next.1](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.0...engine-server-types-v0.0.2-next.1) (2025-07-11)
1396
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.0...engine-server-types-v0.0.2-next.1) (2025-07-11)
536
1397
 
537
1398
 
538
1399
  ### Features
539
1400
 
540
- * add auth admin component ([201cd06](https://github.com/twinfoundation/engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
541
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
542
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
543
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
544
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
545
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
546
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
547
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
1401
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
1402
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1403
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1404
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1405
+ * modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
1406
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
1407
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1408
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
548
1409
 
549
1410
 
550
1411
  ### Dependencies
@@ -559,15 +1420,15 @@
559
1420
 
560
1421
  ### Features
561
1422
 
562
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
563
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
564
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
565
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
566
- * release to production ([3a4acd1](https://github.com/twinfoundation/engine/commit/3a4acd1f6c66b841d80b6fd3bc1a439a77148fa5))
567
- * release to production ([5559958](https://github.com/twinfoundation/engine/commit/5559958e2128e6ec3a81e779d1ebd3f370bbb081))
568
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
569
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
570
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
1423
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1424
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1425
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1426
+ * modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
1427
+ * release to production ([3a4acd1](https://github.com/iotaledger/twin-engine/commit/3a4acd1f6c66b841d80b6fd3bc1a439a77148fa5))
1428
+ * release to production ([5559958](https://github.com/iotaledger/twin-engine/commit/5559958e2128e6ec3a81e779d1ebd3f370bbb081))
1429
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
1430
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1431
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
571
1432
 
572
1433
 
573
1434
  ### Dependencies
@@ -577,7 +1438,7 @@
577
1438
  * @twin.org/engine-models bumped from 0.0.1-next.84 to 0.0.1
578
1439
  * @twin.org/engine-types bumped from 0.0.1-next.84 to 0.0.1
579
1440
 
580
- ## [0.0.1-next.84](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.83...engine-server-types-v0.0.1-next.84) (2025-07-11)
1441
+ ## [0.0.1-next.84](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.83...engine-server-types-v0.0.1-next.84) (2025-07-11)
581
1442
 
582
1443
 
583
1444
  ### Miscellaneous Chores
@@ -592,18 +1453,18 @@
592
1453
  * @twin.org/engine-models bumped from 0.0.1-next.83 to 0.0.1-next.84
593
1454
  * @twin.org/engine-types bumped from 0.0.1-next.83 to 0.0.1-next.84
594
1455
 
595
- ## [0.0.1-next.83](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.82...engine-server-types-v0.0.1-next.83) (2025-07-10)
1456
+ ## [0.0.1-next.83](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.82...engine-server-types-v0.0.1-next.83) (2025-07-10)
596
1457
 
597
1458
 
598
1459
  ### Features
599
1460
 
600
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
601
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
602
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
603
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
604
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
605
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
606
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
1461
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1462
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1463
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1464
+ * modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
1465
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
1466
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1467
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
607
1468
 
608
1469
 
609
1470
  ### Dependencies
@@ -613,7 +1474,7 @@
613
1474
  * @twin.org/engine-models bumped from 0.0.1-next.81 to 0.0.1-next.83
614
1475
  * @twin.org/engine-types bumped from 0.0.1-next.81 to 0.0.1-next.83
615
1476
 
616
- ## [0.0.1-next.81](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.80...engine-server-types-v0.0.1-next.81) (2025-07-07)
1477
+ ## [0.0.1-next.81](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.80...engine-server-types-v0.0.1-next.81) (2025-07-07)
617
1478
 
618
1479
 
619
1480
  ### Miscellaneous Chores
@@ -628,12 +1489,12 @@
628
1489
  * @twin.org/engine-models bumped from 0.0.1-next.80 to 0.0.1-next.81
629
1490
  * @twin.org/engine-types bumped from 0.0.1-next.80 to 0.0.1-next.81
630
1491
 
631
- ## [0.0.1-next.80](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.79...engine-server-types-v0.0.1-next.80) (2025-06-23)
1492
+ ## [0.0.1-next.80](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.79...engine-server-types-v0.0.1-next.80) (2025-06-23)
632
1493
 
633
1494
 
634
1495
  ### Features
635
1496
 
636
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1497
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
637
1498
 
638
1499
 
639
1500
  ### Dependencies
@@ -643,7 +1504,7 @@
643
1504
  * @twin.org/engine-models bumped from 0.0.1-next.79 to 0.0.1-next.80
644
1505
  * @twin.org/engine-types bumped from 0.0.1-next.79 to 0.0.1-next.80
645
1506
 
646
- ## [0.0.1-next.79](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.78...engine-server-types-v0.0.1-next.79) (2025-06-18)
1507
+ ## [0.0.1-next.79](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.78...engine-server-types-v0.0.1-next.79) (2025-06-18)
647
1508
 
648
1509
 
649
1510
  ### Miscellaneous Chores
@@ -658,7 +1519,7 @@
658
1519
  * @twin.org/engine-models bumped from 0.0.1-next.78 to 0.0.1-next.79
659
1520
  * @twin.org/engine-types bumped from 0.0.1-next.78 to 0.0.1-next.79
660
1521
 
661
- ## [0.0.1-next.78](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.77...engine-server-types-v0.0.1-next.78) (2025-06-18)
1522
+ ## [0.0.1-next.78](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.77...engine-server-types-v0.0.1-next.78) (2025-06-18)
662
1523
 
663
1524
 
664
1525
  ### Miscellaneous Chores
@@ -673,7 +1534,7 @@
673
1534
  * @twin.org/engine-models bumped from 0.0.1-next.77 to 0.0.1-next.78
674
1535
  * @twin.org/engine-types bumped from 0.0.1-next.77 to 0.0.1-next.78
675
1536
 
676
- ## [0.0.1-next.77](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.76...engine-server-types-v0.0.1-next.77) (2025-06-18)
1537
+ ## [0.0.1-next.77](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.76...engine-server-types-v0.0.1-next.77) (2025-06-18)
677
1538
 
678
1539
 
679
1540
  ### Miscellaneous Chores
@@ -688,12 +1549,12 @@
688
1549
  * @twin.org/engine-models bumped from 0.0.1-next.76 to 0.0.1-next.77
689
1550
  * @twin.org/engine-types bumped from 0.0.1-next.76 to 0.0.1-next.77
690
1551
 
691
- ## [0.0.1-next.76](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.75...engine-server-types-v0.0.1-next.76) (2025-06-12)
1552
+ ## [0.0.1-next.76](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.75...engine-server-types-v0.0.1-next.76) (2025-06-12)
692
1553
 
693
1554
 
694
1555
  ### Features
695
1556
 
696
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1557
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
697
1558
 
698
1559
 
699
1560
  ### Dependencies
@@ -703,12 +1564,12 @@
703
1564
  * @twin.org/engine-models bumped from 0.0.1-next.75 to 0.0.1-next.76
704
1565
  * @twin.org/engine-types bumped from 0.0.1-next.75 to 0.0.1-next.76
705
1566
 
706
- ## [0.0.1-next.75](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.74...engine-server-types-v0.0.1-next.75) (2025-05-29)
1567
+ ## [0.0.1-next.75](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.74...engine-server-types-v0.0.1-next.75) (2025-05-29)
707
1568
 
708
1569
 
709
1570
  ### Features
710
1571
 
711
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
1572
+ * modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
712
1573
 
713
1574
 
714
1575
  ### Dependencies
@@ -718,12 +1579,12 @@
718
1579
  * @twin.org/engine-models bumped from 0.0.1-next.74 to 0.0.1-next.75
719
1580
  * @twin.org/engine-types bumped from 0.0.1-next.74 to 0.0.1-next.75
720
1581
 
721
- ## [0.0.1-next.74](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.73...engine-server-types-v0.0.1-next.74) (2025-05-23)
1582
+ ## [0.0.1-next.74](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.73...engine-server-types-v0.0.1-next.74) (2025-05-23)
722
1583
 
723
1584
 
724
1585
  ### Features
725
1586
 
726
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1587
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
727
1588
 
728
1589
 
729
1590
  ### Dependencies
@@ -733,7 +1594,7 @@
733
1594
  * @twin.org/engine-models bumped from 0.0.1-next.73 to 0.0.1-next.74
734
1595
  * @twin.org/engine-types bumped from 0.0.1-next.73 to 0.0.1-next.74
735
1596
 
736
- ## [0.0.1-next.73](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.72...engine-server-types-v0.0.1-next.73) (2025-05-22)
1597
+ ## [0.0.1-next.73](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.72...engine-server-types-v0.0.1-next.73) (2025-05-22)
737
1598
 
738
1599
 
739
1600
  ### Miscellaneous Chores
@@ -748,13 +1609,13 @@
748
1609
  * @twin.org/engine-models bumped from 0.0.1-next.72 to 0.0.1-next.73
749
1610
  * @twin.org/engine-types bumped from 0.0.1-next.72 to 0.0.1-next.73
750
1611
 
751
- ## [0.0.1-next.72](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.71...engine-server-types-v0.0.1-next.72) (2025-05-06)
1612
+ ## [0.0.1-next.72](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.71...engine-server-types-v0.0.1-next.72) (2025-05-06)
752
1613
 
753
1614
 
754
1615
  ### Features
755
1616
 
756
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
757
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
1617
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1618
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
758
1619
 
759
1620
 
760
1621
  ### Dependencies
@@ -764,7 +1625,7 @@
764
1625
  * @twin.org/engine-models bumped from 0.0.1-next.71 to 0.0.1-next.72
765
1626
  * @twin.org/engine-types bumped from 0.0.1-next.71 to 0.0.1-next.72
766
1627
 
767
- ## [0.0.1-next.71](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.70...engine-server-types-v0.0.1-next.71) (2025-05-06)
1628
+ ## [0.0.1-next.71](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.70...engine-server-types-v0.0.1-next.71) (2025-05-06)
768
1629
 
769
1630
 
770
1631
  ### Miscellaneous Chores
@@ -779,7 +1640,7 @@
779
1640
  * @twin.org/engine-models bumped from 0.0.1-next.70 to 0.0.1-next.71
780
1641
  * @twin.org/engine-types bumped from 0.0.1-next.70 to 0.0.1-next.71
781
1642
 
782
- ## [0.0.1-next.70](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.69...engine-server-types-v0.0.1-next.70) (2025-04-28)
1643
+ ## [0.0.1-next.70](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.69...engine-server-types-v0.0.1-next.70) (2025-04-28)
783
1644
 
784
1645
 
785
1646
  ### Miscellaneous Chores
@@ -794,7 +1655,7 @@
794
1655
  * @twin.org/engine-models bumped from 0.0.1-next.69 to 0.0.1-next.70
795
1656
  * @twin.org/engine-types bumped from 0.0.1-next.69 to 0.0.1-next.70
796
1657
 
797
- ## [0.0.1-next.69](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.68...engine-server-types-v0.0.1-next.69) (2025-04-25)
1658
+ ## [0.0.1-next.69](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.68...engine-server-types-v0.0.1-next.69) (2025-04-25)
798
1659
 
799
1660
 
800
1661
  ### Miscellaneous Chores
@@ -809,12 +1670,12 @@
809
1670
  * @twin.org/engine-models bumped from 0.0.1-next.68 to 0.0.1-next.69
810
1671
  * @twin.org/engine-types bumped from 0.0.1-next.68 to 0.0.1-next.69
811
1672
 
812
- ## [0.0.1-next.68](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.67...engine-server-types-v0.0.1-next.68) (2025-04-17)
1673
+ ## [0.0.1-next.68](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.67...engine-server-types-v0.0.1-next.68) (2025-04-17)
813
1674
 
814
1675
 
815
1676
  ### Features
816
1677
 
817
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
1678
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
818
1679
 
819
1680
 
820
1681
  ### Dependencies
@@ -824,12 +1685,12 @@
824
1685
  * @twin.org/engine-models bumped from 0.0.1-next.67 to 0.0.1-next.68
825
1686
  * @twin.org/engine-types bumped from 0.0.1-next.67 to 0.0.1-next.68
826
1687
 
827
- ## [0.0.1-next.67](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.1-next.66...engine-server-types-v0.0.1-next.67) (2025-03-28)
1688
+ ## [0.0.1-next.67](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.66...engine-server-types-v0.0.1-next.67) (2025-03-28)
828
1689
 
829
1690
 
830
1691
  ### Features
831
1692
 
832
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1693
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
833
1694
 
834
1695
 
835
1696
  ### Dependencies