@twin.org/engine-server-types 0.0.3-next.9 → 0.9.0

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