@twin.org/engine-server-types 0.0.3-next.8 → 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 +1000 -124
  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,882 @@
1
- # @twin.org/engine-server-types - Changelog
1
+ # Changelog
2
2
 
3
- ## [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)
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)
865
+
866
+
867
+ ### Miscellaneous Chores
868
+
869
+ * **engine-server-types:** Synchronize repo versions
870
+
871
+
872
+ ### Dependencies
873
+
874
+ * The following workspace dependencies were updated
875
+ * dependencies
876
+ * @twin.org/engine-models bumped from 0.0.3-next.8 to 0.0.3-next.9
877
+ * @twin.org/engine-types bumped from 0.0.3-next.8 to 0.0.3-next.9
878
+
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)
4
880
 
5
881
 
6
882
  ### Miscellaneous Chores
@@ -15,12 +891,12 @@
15
891
  * @twin.org/engine-models bumped from 0.0.3-next.7 to 0.0.3-next.8
16
892
  * @twin.org/engine-types bumped from 0.0.3-next.7 to 0.0.3-next.8
17
893
 
18
- ## [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)
19
895
 
20
896
 
21
897
  ### Features
22
898
 
23
- * 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))
24
900
 
25
901
 
26
902
  ### Dependencies
@@ -30,12 +906,12 @@
30
906
  * @twin.org/engine-models bumped from 0.0.3-next.6 to 0.0.3-next.7
31
907
  * @twin.org/engine-types bumped from 0.0.3-next.6 to 0.0.3-next.7
32
908
 
33
- ## [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)
34
910
 
35
911
 
36
912
  ### Features
37
913
 
38
- * 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))
39
915
 
40
916
 
41
917
  ### Dependencies
@@ -45,7 +921,7 @@
45
921
  * @twin.org/engine-models bumped from 0.0.3-next.5 to 0.0.3-next.6
46
922
  * @twin.org/engine-types bumped from 0.0.3-next.5 to 0.0.3-next.6
47
923
 
48
- ## [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)
49
925
 
50
926
 
51
927
  ### Miscellaneous Chores
@@ -60,12 +936,12 @@
60
936
  * @twin.org/engine-models bumped from 0.0.3-next.4 to 0.0.3-next.5
61
937
  * @twin.org/engine-types bumped from 0.0.3-next.4 to 0.0.3-next.5
62
938
 
63
- ## [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)
64
940
 
65
941
 
66
942
  ### Features
67
943
 
68
- * 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))
69
945
 
70
946
 
71
947
  ### Dependencies
@@ -75,7 +951,7 @@
75
951
  * @twin.org/engine-models bumped from 0.0.3-next.3 to 0.0.3-next.4
76
952
  * @twin.org/engine-types bumped from 0.0.3-next.3 to 0.0.3-next.4
77
953
 
78
- ## [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)
79
955
 
80
956
 
81
957
  ### Miscellaneous Chores
@@ -90,7 +966,7 @@
90
966
  * @twin.org/engine-models bumped from 0.0.3-next.2 to 0.0.3-next.3
91
967
  * @twin.org/engine-types bumped from 0.0.3-next.2 to 0.0.3-next.3
92
968
 
93
- ## [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)
94
970
 
95
971
 
96
972
  ### Miscellaneous Chores
@@ -105,34 +981,34 @@
105
981
  * @twin.org/engine-models bumped from 0.0.3-next.1 to 0.0.3-next.2
106
982
  * @twin.org/engine-types bumped from 0.0.3-next.1 to 0.0.3-next.2
107
983
 
108
- ## [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)
109
985
 
110
986
 
111
987
  ### Features
112
988
 
113
- * add auth admin component ([201cd06](https://github.com/twinfoundation/engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
114
- * add context id features ([#51](https://github.com/twinfoundation/engine/issues/51)) ([eaef180](https://github.com/twinfoundation/engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
115
- * add data space connector ([a824d99](https://github.com/twinfoundation/engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
116
- * add default logging component for web server ([8ad94f0](https://github.com/twinfoundation/engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
117
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
118
- * add latest rights management components ([2d305c8](https://github.com/twinfoundation/engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
119
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
120
- * add rest clients as components ([c6f956a](https://github.com/twinfoundation/engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
121
- * add rights management modules ([e02cadc](https://github.com/twinfoundation/engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
122
- * add rights management negotiation ([84ef46b](https://github.com/twinfoundation/engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
123
- * add synchronised storage support ([5142e34](https://github.com/twinfoundation/engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
124
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
125
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
126
- * eslint migration to flat config ([6b978da](https://github.com/twinfoundation/engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
127
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
128
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
129
- * standardised engine logging naming ([0dbf857](https://github.com/twinfoundation/engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
130
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
131
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
132
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
133
- * update rights management and add authentication generators ([f728a1e](https://github.com/twinfoundation/engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
134
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
135
- * 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))
136
1012
 
137
1013
 
138
1014
  ### Dependencies
@@ -142,7 +1018,7 @@
142
1018
  * @twin.org/engine-models bumped from 0.0.3-next.0 to 0.0.3-next.1
143
1019
  * @twin.org/engine-types bumped from 0.0.3-next.0 to 0.0.3-next.1
144
1020
 
145
- ## [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)
146
1022
 
147
1023
 
148
1024
  ### Miscellaneous Chores
@@ -157,12 +1033,12 @@
157
1033
  * @twin.org/engine-models bumped from 0.0.2-next.25 to 0.0.2-next.26
158
1034
  * @twin.org/engine-types bumped from 0.0.2-next.25 to 0.0.2-next.26
159
1035
 
160
- ## [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)
161
1037
 
162
1038
 
163
1039
  ### Features
164
1040
 
165
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
1041
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
166
1042
 
167
1043
 
168
1044
  ### Dependencies
@@ -172,7 +1048,7 @@
172
1048
  * @twin.org/engine-models bumped from 0.0.2-next.24 to 0.0.2-next.25
173
1049
  * @twin.org/engine-types bumped from 0.0.2-next.24 to 0.0.2-next.25
174
1050
 
175
- ## [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)
176
1052
 
177
1053
 
178
1054
  ### Miscellaneous Chores
@@ -187,7 +1063,7 @@
187
1063
  * @twin.org/engine-models bumped from 0.0.2-next.23 to 0.0.2-next.24
188
1064
  * @twin.org/engine-types bumped from 0.0.2-next.23 to 0.0.2-next.24
189
1065
 
190
- ## [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)
191
1067
 
192
1068
 
193
1069
  ### Miscellaneous Chores
@@ -202,7 +1078,7 @@
202
1078
  * @twin.org/engine-models bumped from 0.0.2-next.22 to 0.0.2-next.23
203
1079
  * @twin.org/engine-types bumped from 0.0.2-next.22 to 0.0.2-next.23
204
1080
 
205
- ## [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)
206
1082
 
207
1083
 
208
1084
  ### Miscellaneous Chores
@@ -217,7 +1093,7 @@
217
1093
  * @twin.org/engine-models bumped from 0.0.2-next.21 to 0.0.2-next.22
218
1094
  * @twin.org/engine-types bumped from 0.0.2-next.21 to 0.0.2-next.22
219
1095
 
220
- ## [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)
221
1097
 
222
1098
 
223
1099
  ### Miscellaneous Chores
@@ -232,12 +1108,12 @@
232
1108
  * @twin.org/engine-models bumped from 0.0.2-next.20 to 0.0.2-next.21
233
1109
  * @twin.org/engine-types bumped from 0.0.2-next.20 to 0.0.2-next.21
234
1110
 
235
- ## [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)
236
1112
 
237
1113
 
238
1114
  ### Features
239
1115
 
240
- * 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))
241
1117
 
242
1118
 
243
1119
  ### Dependencies
@@ -247,12 +1123,12 @@
247
1123
  * @twin.org/engine-models bumped from 0.0.2-next.19 to 0.0.2-next.20
248
1124
  * @twin.org/engine-types bumped from 0.0.2-next.19 to 0.0.2-next.20
249
1125
 
250
- ## [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)
251
1127
 
252
1128
 
253
1129
  ### Features
254
1130
 
255
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
1131
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
256
1132
 
257
1133
 
258
1134
  ### Dependencies
@@ -262,12 +1138,12 @@
262
1138
  * @twin.org/engine-models bumped from 0.0.2-next.18 to 0.0.2-next.19
263
1139
  * @twin.org/engine-types bumped from 0.0.2-next.18 to 0.0.2-next.19
264
1140
 
265
- ## [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)
266
1142
 
267
1143
 
268
1144
  ### Features
269
1145
 
270
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
1146
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
271
1147
 
272
1148
 
273
1149
  ### Dependencies
@@ -277,7 +1153,7 @@
277
1153
  * @twin.org/engine-models bumped from 0.0.2-next.17 to 0.0.2-next.18
278
1154
  * @twin.org/engine-types bumped from 0.0.2-next.17 to 0.0.2-next.18
279
1155
 
280
- ## [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)
281
1157
 
282
1158
 
283
1159
  ### Miscellaneous Chores
@@ -292,7 +1168,7 @@
292
1168
  * @twin.org/engine-models bumped from 0.0.2-next.16 to 0.0.2-next.17
293
1169
  * @twin.org/engine-types bumped from 0.0.2-next.16 to 0.0.2-next.17
294
1170
 
295
- ## [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)
296
1172
 
297
1173
 
298
1174
  ### Miscellaneous Chores
@@ -307,12 +1183,12 @@
307
1183
  * @twin.org/engine-models bumped from 0.0.2-next.15 to 0.0.2-next.16
308
1184
  * @twin.org/engine-types bumped from 0.0.2-next.15 to 0.0.2-next.16
309
1185
 
310
- ## [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)
311
1187
 
312
1188
 
313
1189
  ### Features
314
1190
 
315
- * 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))
316
1192
 
317
1193
 
318
1194
  ### Dependencies
@@ -322,12 +1198,12 @@
322
1198
  * @twin.org/engine-models bumped from 0.0.2-next.14 to 0.0.2-next.15
323
1199
  * @twin.org/engine-types bumped from 0.0.2-next.14 to 0.0.2-next.15
324
1200
 
325
- ## [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)
326
1202
 
327
1203
 
328
1204
  ### Features
329
1205
 
330
- * 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))
331
1207
 
332
1208
 
333
1209
  ### Dependencies
@@ -337,7 +1213,7 @@
337
1213
  * @twin.org/engine-models bumped from 0.0.2-next.13 to 0.0.2-next.14
338
1214
  * @twin.org/engine-types bumped from 0.0.2-next.13 to 0.0.2-next.14
339
1215
 
340
- ## [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)
341
1217
 
342
1218
 
343
1219
  ### Miscellaneous Chores
@@ -352,12 +1228,12 @@
352
1228
  * @twin.org/engine-models bumped from 0.0.2-next.12 to 0.0.2-next.13
353
1229
  * @twin.org/engine-types bumped from 0.0.2-next.12 to 0.0.2-next.13
354
1230
 
355
- ## [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)
356
1232
 
357
1233
 
358
1234
  ### Features
359
1235
 
360
- * 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))
361
1237
 
362
1238
 
363
1239
  ### Dependencies
@@ -367,12 +1243,12 @@
367
1243
  * @twin.org/engine-models bumped from 0.0.2-next.11 to 0.0.2-next.12
368
1244
  * @twin.org/engine-types bumped from 0.0.2-next.11 to 0.0.2-next.12
369
1245
 
370
- ## [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)
371
1247
 
372
1248
 
373
1249
  ### Features
374
1250
 
375
- * 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))
376
1252
 
377
1253
 
378
1254
  ### Dependencies
@@ -382,12 +1258,12 @@
382
1258
  * @twin.org/engine-models bumped from 0.0.2-next.10 to 0.0.2-next.11
383
1259
  * @twin.org/engine-types bumped from 0.0.2-next.10 to 0.0.2-next.11
384
1260
 
385
- ## [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)
386
1262
 
387
1263
 
388
1264
  ### Features
389
1265
 
390
- * 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))
391
1267
 
392
1268
 
393
1269
  ### Dependencies
@@ -397,7 +1273,7 @@
397
1273
  * @twin.org/engine-models bumped from 0.0.2-next.9 to 0.0.2-next.10
398
1274
  * @twin.org/engine-types bumped from 0.0.2-next.9 to 0.0.2-next.10
399
1275
 
400
- ## [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)
401
1277
 
402
1278
 
403
1279
  ### Miscellaneous Chores
@@ -412,12 +1288,12 @@
412
1288
  * @twin.org/engine-models bumped from 0.0.2-next.8 to 0.0.2-next.9
413
1289
  * @twin.org/engine-types bumped from 0.0.2-next.8 to 0.0.2-next.9
414
1290
 
415
- ## [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)
416
1292
 
417
1293
 
418
1294
  ### Features
419
1295
 
420
- * 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))
421
1297
 
422
1298
 
423
1299
  ### Dependencies
@@ -427,7 +1303,7 @@
427
1303
  * @twin.org/engine-models bumped from 0.0.2-next.7 to 0.0.2-next.8
428
1304
  * @twin.org/engine-types bumped from 0.0.2-next.7 to 0.0.2-next.8
429
1305
 
430
- ## [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)
431
1307
 
432
1308
 
433
1309
  ### Miscellaneous Chores
@@ -442,12 +1318,12 @@
442
1318
  * @twin.org/engine-models bumped from 0.0.2-next.6 to 0.0.2-next.7
443
1319
  * @twin.org/engine-types bumped from 0.0.2-next.6 to 0.0.2-next.7
444
1320
 
445
- ## [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)
446
1322
 
447
1323
 
448
1324
  ### Features
449
1325
 
450
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
1326
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
451
1327
 
452
1328
 
453
1329
  ### Dependencies
@@ -457,12 +1333,12 @@
457
1333
  * @twin.org/engine-models bumped from 0.0.2-next.5 to 0.0.2-next.6
458
1334
  * @twin.org/engine-types bumped from 0.0.2-next.5 to 0.0.2-next.6
459
1335
 
460
- ## [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)
461
1337
 
462
1338
 
463
1339
  ### Features
464
1340
 
465
- * 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))
466
1342
 
467
1343
 
468
1344
  ### Dependencies
@@ -472,12 +1348,12 @@
472
1348
  * @twin.org/engine-models bumped from 0.0.2-next.4 to 0.0.2-next.5
473
1349
  * @twin.org/engine-types bumped from 0.0.2-next.4 to 0.0.2-next.5
474
1350
 
475
- ## [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)
476
1352
 
477
1353
 
478
1354
  ### Features
479
1355
 
480
- * 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))
481
1357
 
482
1358
 
483
1359
  ### Dependencies
@@ -487,7 +1363,7 @@
487
1363
  * @twin.org/engine-models bumped from 0.0.2-next.3 to 0.0.2-next.4
488
1364
  * @twin.org/engine-types bumped from 0.0.2-next.3 to 0.0.2-next.4
489
1365
 
490
- ## [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)
491
1367
 
492
1368
 
493
1369
  ### Miscellaneous Chores
@@ -502,12 +1378,12 @@
502
1378
  * @twin.org/engine-models bumped from 0.0.2-next.2 to 0.0.2-next.3
503
1379
  * @twin.org/engine-types bumped from 0.0.2-next.2 to 0.0.2-next.3
504
1380
 
505
- ## [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)
506
1382
 
507
1383
 
508
1384
  ### Features
509
1385
 
510
- * 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))
511
1387
 
512
1388
 
513
1389
  ### Dependencies
@@ -517,19 +1393,19 @@
517
1393
  * @twin.org/engine-models bumped from 0.0.2-next.1 to 0.0.2-next.2
518
1394
  * @twin.org/engine-types bumped from 0.0.2-next.1 to 0.0.2-next.2
519
1395
 
520
- ## [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)
521
1397
 
522
1398
 
523
1399
  ### Features
524
1400
 
525
- * add auth admin component ([201cd06](https://github.com/twinfoundation/engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
526
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
527
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
528
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
529
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
530
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
531
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
532
- * 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))
533
1409
 
534
1410
 
535
1411
  ### Dependencies
@@ -544,15 +1420,15 @@
544
1420
 
545
1421
  ### Features
546
1422
 
547
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
548
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
549
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
550
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
551
- * release to production ([3a4acd1](https://github.com/twinfoundation/engine/commit/3a4acd1f6c66b841d80b6fd3bc1a439a77148fa5))
552
- * release to production ([5559958](https://github.com/twinfoundation/engine/commit/5559958e2128e6ec3a81e779d1ebd3f370bbb081))
553
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
554
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
555
- * 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))
556
1432
 
557
1433
 
558
1434
  ### Dependencies
@@ -562,7 +1438,7 @@
562
1438
  * @twin.org/engine-models bumped from 0.0.1-next.84 to 0.0.1
563
1439
  * @twin.org/engine-types bumped from 0.0.1-next.84 to 0.0.1
564
1440
 
565
- ## [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)
566
1442
 
567
1443
 
568
1444
  ### Miscellaneous Chores
@@ -577,18 +1453,18 @@
577
1453
  * @twin.org/engine-models bumped from 0.0.1-next.83 to 0.0.1-next.84
578
1454
  * @twin.org/engine-types bumped from 0.0.1-next.83 to 0.0.1-next.84
579
1455
 
580
- ## [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)
581
1457
 
582
1458
 
583
1459
  ### Features
584
1460
 
585
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
586
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
587
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
588
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
589
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
590
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
591
- * 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))
592
1468
 
593
1469
 
594
1470
  ### Dependencies
@@ -598,7 +1474,7 @@
598
1474
  * @twin.org/engine-models bumped from 0.0.1-next.81 to 0.0.1-next.83
599
1475
  * @twin.org/engine-types bumped from 0.0.1-next.81 to 0.0.1-next.83
600
1476
 
601
- ## [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)
602
1478
 
603
1479
 
604
1480
  ### Miscellaneous Chores
@@ -613,12 +1489,12 @@
613
1489
  * @twin.org/engine-models bumped from 0.0.1-next.80 to 0.0.1-next.81
614
1490
  * @twin.org/engine-types bumped from 0.0.1-next.80 to 0.0.1-next.81
615
1491
 
616
- ## [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)
617
1493
 
618
1494
 
619
1495
  ### Features
620
1496
 
621
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1497
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
622
1498
 
623
1499
 
624
1500
  ### Dependencies
@@ -628,7 +1504,7 @@
628
1504
  * @twin.org/engine-models bumped from 0.0.1-next.79 to 0.0.1-next.80
629
1505
  * @twin.org/engine-types bumped from 0.0.1-next.79 to 0.0.1-next.80
630
1506
 
631
- ## [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)
632
1508
 
633
1509
 
634
1510
  ### Miscellaneous Chores
@@ -643,7 +1519,7 @@
643
1519
  * @twin.org/engine-models bumped from 0.0.1-next.78 to 0.0.1-next.79
644
1520
  * @twin.org/engine-types bumped from 0.0.1-next.78 to 0.0.1-next.79
645
1521
 
646
- ## [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)
647
1523
 
648
1524
 
649
1525
  ### Miscellaneous Chores
@@ -658,7 +1534,7 @@
658
1534
  * @twin.org/engine-models bumped from 0.0.1-next.77 to 0.0.1-next.78
659
1535
  * @twin.org/engine-types bumped from 0.0.1-next.77 to 0.0.1-next.78
660
1536
 
661
- ## [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)
662
1538
 
663
1539
 
664
1540
  ### Miscellaneous Chores
@@ -673,12 +1549,12 @@
673
1549
  * @twin.org/engine-models bumped from 0.0.1-next.76 to 0.0.1-next.77
674
1550
  * @twin.org/engine-types bumped from 0.0.1-next.76 to 0.0.1-next.77
675
1551
 
676
- ## [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)
677
1553
 
678
1554
 
679
1555
  ### Features
680
1556
 
681
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1557
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
682
1558
 
683
1559
 
684
1560
  ### Dependencies
@@ -688,12 +1564,12 @@
688
1564
  * @twin.org/engine-models bumped from 0.0.1-next.75 to 0.0.1-next.76
689
1565
  * @twin.org/engine-types bumped from 0.0.1-next.75 to 0.0.1-next.76
690
1566
 
691
- ## [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)
692
1568
 
693
1569
 
694
1570
  ### Features
695
1571
 
696
- * 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))
697
1573
 
698
1574
 
699
1575
  ### Dependencies
@@ -703,12 +1579,12 @@
703
1579
  * @twin.org/engine-models bumped from 0.0.1-next.74 to 0.0.1-next.75
704
1580
  * @twin.org/engine-types bumped from 0.0.1-next.74 to 0.0.1-next.75
705
1581
 
706
- ## [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)
707
1583
 
708
1584
 
709
1585
  ### Features
710
1586
 
711
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1587
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
712
1588
 
713
1589
 
714
1590
  ### Dependencies
@@ -718,7 +1594,7 @@
718
1594
  * @twin.org/engine-models bumped from 0.0.1-next.73 to 0.0.1-next.74
719
1595
  * @twin.org/engine-types bumped from 0.0.1-next.73 to 0.0.1-next.74
720
1596
 
721
- ## [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)
722
1598
 
723
1599
 
724
1600
  ### Miscellaneous Chores
@@ -733,13 +1609,13 @@
733
1609
  * @twin.org/engine-models bumped from 0.0.1-next.72 to 0.0.1-next.73
734
1610
  * @twin.org/engine-types bumped from 0.0.1-next.72 to 0.0.1-next.73
735
1611
 
736
- ## [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)
737
1613
 
738
1614
 
739
1615
  ### Features
740
1616
 
741
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
742
- * 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))
743
1619
 
744
1620
 
745
1621
  ### Dependencies
@@ -749,7 +1625,7 @@
749
1625
  * @twin.org/engine-models bumped from 0.0.1-next.71 to 0.0.1-next.72
750
1626
  * @twin.org/engine-types bumped from 0.0.1-next.71 to 0.0.1-next.72
751
1627
 
752
- ## [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)
753
1629
 
754
1630
 
755
1631
  ### Miscellaneous Chores
@@ -764,7 +1640,7 @@
764
1640
  * @twin.org/engine-models bumped from 0.0.1-next.70 to 0.0.1-next.71
765
1641
  * @twin.org/engine-types bumped from 0.0.1-next.70 to 0.0.1-next.71
766
1642
 
767
- ## [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)
768
1644
 
769
1645
 
770
1646
  ### Miscellaneous Chores
@@ -779,7 +1655,7 @@
779
1655
  * @twin.org/engine-models bumped from 0.0.1-next.69 to 0.0.1-next.70
780
1656
  * @twin.org/engine-types bumped from 0.0.1-next.69 to 0.0.1-next.70
781
1657
 
782
- ## [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)
783
1659
 
784
1660
 
785
1661
  ### Miscellaneous Chores
@@ -794,12 +1670,12 @@
794
1670
  * @twin.org/engine-models bumped from 0.0.1-next.68 to 0.0.1-next.69
795
1671
  * @twin.org/engine-types bumped from 0.0.1-next.68 to 0.0.1-next.69
796
1672
 
797
- ## [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)
798
1674
 
799
1675
 
800
1676
  ### Features
801
1677
 
802
- * 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))
803
1679
 
804
1680
 
805
1681
  ### Dependencies
@@ -809,12 +1685,12 @@
809
1685
  * @twin.org/engine-models bumped from 0.0.1-next.67 to 0.0.1-next.68
810
1686
  * @twin.org/engine-types bumped from 0.0.1-next.67 to 0.0.1-next.68
811
1687
 
812
- ## [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)
813
1689
 
814
1690
 
815
1691
  ### Features
816
1692
 
817
- * 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))
818
1694
 
819
1695
 
820
1696
  ### Dependencies