@twin.org/engine-server-types 0.0.3-next.5 → 0.0.3-next.51

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 (94) 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 +37 -0
  9. package/dist/es/components/authenticationRate.js.map +1 -0
  10. package/dist/es/components/hosting.js +29 -0
  11. package/dist/es/components/hosting.js.map +1 -0
  12. package/dist/es/components/information.js +12 -9
  13. package/dist/es/components/information.js.map +1 -1
  14. package/dist/es/components/mimeTypeProcessor.js +7 -7
  15. package/dist/es/components/mimeTypeProcessor.js.map +1 -1
  16. package/dist/es/components/restRouteProcessor.js +44 -47
  17. package/dist/es/components/restRouteProcessor.js.map +1 -1
  18. package/dist/es/components/socketRouteProcessor.js +43 -43
  19. package/dist/es/components/socketRouteProcessor.js.map +1 -1
  20. package/dist/es/index.js +9 -0
  21. package/dist/es/index.js.map +1 -1
  22. package/dist/es/models/IEngineServerConfig.js.map +1 -1
  23. package/dist/es/models/config/authenticationAuditComponentConfig.js +2 -0
  24. package/dist/es/models/config/authenticationAuditComponentConfig.js.map +1 -0
  25. package/dist/es/models/config/authenticationRateComponentConfig.js +2 -0
  26. package/dist/es/models/config/authenticationRateComponentConfig.js.map +1 -0
  27. package/dist/es/models/config/hostingComponentConfig.js +2 -0
  28. package/dist/es/models/config/hostingComponentConfig.js.map +1 -0
  29. package/dist/es/models/config/restRouteProcessorConfig.js.map +1 -1
  30. package/dist/es/models/config/socketRouteProcessorConfig.js.map +1 -1
  31. package/dist/es/models/types/authenticationAuditComponentType.js +13 -0
  32. package/dist/es/models/types/authenticationAuditComponentType.js.map +1 -0
  33. package/dist/es/models/types/authenticationRateComponentType.js +13 -0
  34. package/dist/es/models/types/authenticationRateComponentType.js.map +1 -0
  35. package/dist/es/models/types/hostingComponentType.js +13 -0
  36. package/dist/es/models/types/hostingComponentType.js.map +1 -0
  37. package/dist/es/models/types/restRouteProcessorType.js +4 -0
  38. package/dist/es/models/types/restRouteProcessorType.js.map +1 -1
  39. package/dist/es/models/types/socketRouteProcessorType.js +4 -0
  40. package/dist/es/models/types/socketRouteProcessorType.js.map +1 -1
  41. package/dist/types/components/authentication.d.ts +3 -7
  42. package/dist/types/components/authenticationAdmin.d.ts +3 -7
  43. package/dist/types/components/authenticationAudit.d.ts +12 -0
  44. package/dist/types/components/authenticationRate.d.ts +12 -0
  45. package/dist/types/components/hosting.d.ts +12 -0
  46. package/dist/types/components/information.d.ts +3 -7
  47. package/dist/types/components/mimeTypeProcessor.d.ts +2 -7
  48. package/dist/types/components/restRouteProcessor.d.ts +2 -7
  49. package/dist/types/components/socketRouteProcessor.d.ts +2 -7
  50. package/dist/types/index.d.ts +9 -0
  51. package/dist/types/models/IEngineServerConfig.d.ts +21 -6
  52. package/dist/types/models/config/authenticationAuditComponentConfig.d.ts +9 -0
  53. package/dist/types/models/config/authenticationRateComponentConfig.d.ts +9 -0
  54. package/dist/types/models/config/hostingComponentConfig.d.ts +9 -0
  55. package/dist/types/models/config/restRouteProcessorConfig.d.ts +4 -5
  56. package/dist/types/models/config/socketRouteProcessorConfig.d.ts +4 -5
  57. package/dist/types/models/types/authenticationAuditComponentType.d.ts +13 -0
  58. package/dist/types/models/types/authenticationRateComponentType.d.ts +13 -0
  59. package/dist/types/models/types/hostingComponentType.d.ts +13 -0
  60. package/dist/types/models/types/restRouteProcessorType.d.ts +4 -0
  61. package/dist/types/models/types/socketRouteProcessorType.d.ts +4 -0
  62. package/docs/changelog.md +906 -119
  63. package/docs/examples.md +64 -1
  64. package/docs/reference/functions/initialiseAuthenticationAdminComponent.md +2 -2
  65. package/docs/reference/functions/initialiseAuthenticationAuditComponent.md +31 -0
  66. package/docs/reference/functions/initialiseAuthenticationComponent.md +2 -2
  67. package/docs/reference/functions/initialiseAuthenticationRateComponent.md +31 -0
  68. package/docs/reference/functions/initialiseHostingComponent.md +31 -0
  69. package/docs/reference/functions/initialiseInformationComponent.md +2 -2
  70. package/docs/reference/functions/initialiseMimeTypeProcessorComponent.md +2 -2
  71. package/docs/reference/functions/initialiseRestRouteProcessorComponent.md +2 -2
  72. package/docs/reference/functions/initialiseSocketRouteProcessorComponent.md +2 -2
  73. package/docs/reference/index.md +12 -0
  74. package/docs/reference/interfaces/IEngineServerConfig.md +509 -15
  75. package/docs/reference/type-aliases/AuthenticationAdminComponentConfig.md +3 -3
  76. package/docs/reference/type-aliases/AuthenticationAuditComponentConfig.md +17 -0
  77. package/docs/reference/type-aliases/AuthenticationAuditComponentType.md +5 -0
  78. package/docs/reference/type-aliases/AuthenticationRateComponentConfig.md +17 -0
  79. package/docs/reference/type-aliases/AuthenticationRateComponentType.md +5 -0
  80. package/docs/reference/type-aliases/HostingComponentConfig.md +17 -0
  81. package/docs/reference/type-aliases/HostingComponentType.md +5 -0
  82. package/docs/reference/type-aliases/MimeTypeProcessorConfig.md +3 -3
  83. package/docs/reference/type-aliases/RestRouteProcessorConfig.md +1 -1
  84. package/docs/reference/type-aliases/SocketRouteProcessorConfig.md +1 -1
  85. package/docs/reference/variables/AuthenticationAdminComponentType.md +1 -1
  86. package/docs/reference/variables/AuthenticationAuditComponentType.md +13 -0
  87. package/docs/reference/variables/AuthenticationComponentType.md +2 -2
  88. package/docs/reference/variables/AuthenticationRateComponentType.md +13 -0
  89. package/docs/reference/variables/HostingComponentType.md +13 -0
  90. package/docs/reference/variables/InformationComponentType.md +2 -2
  91. package/docs/reference/variables/MimeTypeProcessorType.md +1 -1
  92. package/docs/reference/variables/RestRouteProcessorType.md +13 -7
  93. package/docs/reference/variables/SocketRouteProcessorType.md +13 -7
  94. package/package.json +6 -7
package/docs/changelog.md CHANGED
@@ -1,6 +1,793 @@
1
- # @twin.org/engine-server-types - Changelog
1
+ # Changelog
2
2
 
3
- ## [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)
3
+ ## [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)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **engine-server-types:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/engine-models bumped from 0.0.3-next.50 to 0.0.3-next.51
16
+ * @twin.org/engine-types bumped from 0.0.3-next.50 to 0.0.3-next.51
17
+
18
+ ## [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)
19
+
20
+
21
+ ### Features
22
+
23
+ * organization identifiers ([#152](https://github.com/iotaledger/twin-engine/issues/152)) ([d8e6d51](https://github.com/iotaledger/twin-engine/commit/d8e6d5147f402f0fe17b445efd8ae97db0c36adb))
24
+
25
+
26
+ ### Dependencies
27
+
28
+ * The following workspace dependencies were updated
29
+ * dependencies
30
+ * @twin.org/engine-models bumped from 0.0.3-next.49 to 0.0.3-next.50
31
+ * @twin.org/engine-types bumped from 0.0.3-next.49 to 0.0.3-next.50
32
+
33
+ ## [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)
34
+
35
+
36
+ ### Miscellaneous Chores
37
+
38
+ * **engine-server-types:** Synchronize repo versions
39
+
40
+
41
+ ### Dependencies
42
+
43
+ * The following workspace dependencies were updated
44
+ * dependencies
45
+ * @twin.org/engine-models bumped from 0.0.3-next.48 to 0.0.3-next.49
46
+ * @twin.org/engine-types bumped from 0.0.3-next.48 to 0.0.3-next.49
47
+
48
+ ## [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)
49
+
50
+
51
+ ### Miscellaneous Chores
52
+
53
+ * **engine-server-types:** Synchronize repo versions
54
+
55
+
56
+ ### Dependencies
57
+
58
+ * The following workspace dependencies were updated
59
+ * dependencies
60
+ * @twin.org/engine-models bumped from 0.0.3-next.47 to 0.0.3-next.48
61
+ * @twin.org/engine-types bumped from 0.0.3-next.47 to 0.0.3-next.48
62
+
63
+ ## [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)
64
+
65
+
66
+ ### Miscellaneous Chores
67
+
68
+ * **engine-server-types:** Synchronize repo versions
69
+
70
+
71
+ ### Dependencies
72
+
73
+ * The following workspace dependencies were updated
74
+ * dependencies
75
+ * @twin.org/engine-models bumped from 0.0.3-next.46 to 0.0.3-next.47
76
+ * @twin.org/engine-types bumped from 0.0.3-next.46 to 0.0.3-next.47
77
+
78
+ ## [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)
79
+
80
+
81
+ ### Features
82
+
83
+ * add tenant component ([#138](https://github.com/iotaledger/twin-engine/issues/138)) ([ebbcb8f](https://github.com/iotaledger/twin-engine/commit/ebbcb8fa3fee05048ddad2891c6ada66bd29e7bd))
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.45 to 0.0.3-next.46
91
+ * @twin.org/engine-types bumped from 0.0.3-next.45 to 0.0.3-next.46
92
+
93
+ ## [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)
94
+
95
+
96
+ ### Features
97
+
98
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
99
+ * add authentication rate and audit services ([#95](https://github.com/iotaledger/twin-engine/issues/95)) ([55e2b08](https://github.com/iotaledger/twin-engine/commit/55e2b089661529e0556115817cc435cc6e4292cc))
100
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
101
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
102
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
103
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
104
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
105
+ * add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
106
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
107
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
108
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
109
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
110
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
111
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
112
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
113
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
114
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
115
+ * additional component wiring ([#133](https://github.com/iotaledger/twin-engine/issues/133)) ([a32bce1](https://github.com/iotaledger/twin-engine/commit/a32bce169ab3a47fd566eb089c6b01ba147ea1da))
116
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
117
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
118
+ * 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))
119
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
120
+ * remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
121
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
122
+ * remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
123
+ * 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))
124
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
125
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
126
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
127
+ * typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
128
+ * update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
129
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
130
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
131
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
132
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
133
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
134
+
135
+
136
+ ### Bug Fixes
137
+
138
+ * constructing TenantProcessor ([4dad604](https://github.com/iotaledger/twin-engine/commit/4dad604c0e424a3ffa65f3d6cef173058b21ec76))
139
+
140
+
141
+ ### Dependencies
142
+
143
+ * The following workspace dependencies were updated
144
+ * dependencies
145
+ * @twin.org/engine-models bumped from 0.0.3-next.44 to 0.0.3-next.45
146
+ * @twin.org/engine-types bumped from 0.0.3-next.44 to 0.0.3-next.45
147
+
148
+ ## [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)
149
+
150
+
151
+ ### Features
152
+
153
+ * additional component wiring ([#133](https://github.com/iotaledger/twin-engine/issues/133)) ([a32bce1](https://github.com/iotaledger/twin-engine/commit/a32bce169ab3a47fd566eb089c6b01ba147ea1da))
154
+
155
+
156
+ ### Dependencies
157
+
158
+ * The following workspace dependencies were updated
159
+ * dependencies
160
+ * @twin.org/engine-models bumped from 0.0.3-next.43 to 0.0.3-next.44
161
+ * @twin.org/engine-types bumped from 0.0.3-next.43 to 0.0.3-next.44
162
+
163
+ ## [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)
164
+
165
+
166
+ ### Miscellaneous Chores
167
+
168
+ * **engine-server-types:** Synchronize repo versions
169
+
170
+
171
+ ### Dependencies
172
+
173
+ * The following workspace dependencies were updated
174
+ * dependencies
175
+ * @twin.org/engine-models bumped from 0.0.3-next.42 to 0.0.3-next.43
176
+ * @twin.org/engine-types bumped from 0.0.3-next.42 to 0.0.3-next.43
177
+
178
+ ## [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)
179
+
180
+
181
+ ### Miscellaneous Chores
182
+
183
+ * **engine-server-types:** Synchronize repo versions
184
+
185
+
186
+ ### Dependencies
187
+
188
+ * The following workspace dependencies were updated
189
+ * dependencies
190
+ * @twin.org/engine-models bumped from 0.0.3-next.41 to 0.0.3-next.42
191
+ * @twin.org/engine-types bumped from 0.0.3-next.41 to 0.0.3-next.42
192
+
193
+ ## [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)
194
+
195
+
196
+ ### Miscellaneous Chores
197
+
198
+ * **engine-server-types:** Synchronize repo versions
199
+
200
+
201
+ ### Dependencies
202
+
203
+ * The following workspace dependencies were updated
204
+ * dependencies
205
+ * @twin.org/engine-models bumped from 0.0.3-next.40 to 0.0.3-next.41
206
+ * @twin.org/engine-types bumped from 0.0.3-next.40 to 0.0.3-next.41
207
+
208
+ ## [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)
209
+
210
+
211
+ ### Miscellaneous Chores
212
+
213
+ * **engine-server-types:** Synchronize repo versions
214
+
215
+
216
+ ### Dependencies
217
+
218
+ * The following workspace dependencies were updated
219
+ * dependencies
220
+ * @twin.org/engine-models bumped from 0.0.3-next.39 to 0.0.3-next.40
221
+ * @twin.org/engine-types bumped from 0.0.3-next.39 to 0.0.3-next.40
222
+
223
+ ## [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)
224
+
225
+
226
+ ### Miscellaneous Chores
227
+
228
+ * **engine-server-types:** Synchronize repo versions
229
+
230
+
231
+ ### Dependencies
232
+
233
+ * The following workspace dependencies were updated
234
+ * dependencies
235
+ * @twin.org/engine-models bumped from 0.0.3-next.38 to 0.0.3-next.39
236
+ * @twin.org/engine-types bumped from 0.0.3-next.38 to 0.0.3-next.39
237
+
238
+ ## [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)
239
+
240
+
241
+ ### Miscellaneous Chores
242
+
243
+ * **engine-server-types:** Synchronize repo versions
244
+
245
+
246
+ ### Dependencies
247
+
248
+ * The following workspace dependencies were updated
249
+ * dependencies
250
+ * @twin.org/engine-models bumped from 0.0.3-next.37 to 0.0.3-next.38
251
+ * @twin.org/engine-types bumped from 0.0.3-next.37 to 0.0.3-next.38
252
+
253
+ ## [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)
254
+
255
+
256
+ ### Features
257
+
258
+ * typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
259
+
260
+
261
+ ### Dependencies
262
+
263
+ * The following workspace dependencies were updated
264
+ * dependencies
265
+ * @twin.org/engine-models bumped from 0.0.3-next.36 to 0.0.3-next.37
266
+ * @twin.org/engine-types bumped from 0.0.3-next.36 to 0.0.3-next.37
267
+
268
+ ## [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)
269
+
270
+
271
+ ### Miscellaneous Chores
272
+
273
+ * **engine-server-types:** Synchronize repo versions
274
+
275
+
276
+ ### Dependencies
277
+
278
+ * The following workspace dependencies were updated
279
+ * dependencies
280
+ * @twin.org/engine-models bumped from 0.0.3-next.35 to 0.0.3-next.36
281
+ * @twin.org/engine-types bumped from 0.0.3-next.35 to 0.0.3-next.36
282
+
283
+ ## [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)
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.34 to 0.0.3-next.35
296
+ * @twin.org/engine-types bumped from 0.0.3-next.34 to 0.0.3-next.35
297
+
298
+ ## [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)
299
+
300
+
301
+ ### Miscellaneous Chores
302
+
303
+ * **engine-server-types:** Synchronize repo versions
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.33 to 0.0.3-next.34
311
+ * @twin.org/engine-types bumped from 0.0.3-next.33 to 0.0.3-next.34
312
+
313
+ ## [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)
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.32 to 0.0.3-next.33
326
+ * @twin.org/engine-types bumped from 0.0.3-next.32 to 0.0.3-next.33
327
+
328
+ ## [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)
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.31 to 0.0.3-next.32
341
+ * @twin.org/engine-types bumped from 0.0.3-next.31 to 0.0.3-next.32
342
+
343
+ ## [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)
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.30 to 0.0.3-next.31
356
+ * @twin.org/engine-types bumped from 0.0.3-next.30 to 0.0.3-next.31
357
+
358
+ ## [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)
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.29 to 0.0.3-next.30
371
+ * @twin.org/engine-types bumped from 0.0.3-next.29 to 0.0.3-next.30
372
+
373
+ ## [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)
374
+
375
+
376
+ ### Features
377
+
378
+ * add authentication rate and audit services ([#95](https://github.com/iotaledger/twin-engine/issues/95)) ([55e2b08](https://github.com/iotaledger/twin-engine/commit/55e2b089661529e0556115817cc435cc6e4292cc))
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.28 to 0.0.3-next.29
386
+ * @twin.org/engine-types bumped from 0.0.3-next.28 to 0.0.3-next.29
387
+
388
+ ## [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)
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.27 to 0.0.3-next.28
401
+ * @twin.org/engine-types bumped from 0.0.3-next.27 to 0.0.3-next.28
402
+
403
+ ## [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)
404
+
405
+
406
+ ### Features
407
+
408
+ * update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
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.26 to 0.0.3-next.27
416
+ * @twin.org/engine-types bumped from 0.0.3-next.26 to 0.0.3-next.27
417
+
418
+ ## [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)
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.25 to 0.0.3-next.26
431
+ * @twin.org/engine-types bumped from 0.0.3-next.25 to 0.0.3-next.26
432
+
433
+ ## [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)
434
+
435
+
436
+ ### Features
437
+
438
+ * 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))
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.24 to 0.0.3-next.25
446
+ * @twin.org/engine-types bumped from 0.0.3-next.24 to 0.0.3-next.25
447
+
448
+ ## [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)
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.23 to 0.0.3-next.24
461
+ * @twin.org/engine-types bumped from 0.0.3-next.23 to 0.0.3-next.24
462
+
463
+ ## [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)
464
+
465
+
466
+ ### Features
467
+
468
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
469
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
470
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
471
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
472
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
473
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
474
+ * add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
475
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
476
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
477
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
478
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
479
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
480
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
481
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
482
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
483
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
484
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
485
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
486
+ * 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))
487
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
488
+ * remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
489
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
490
+ * remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
491
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
492
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
493
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
494
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
495
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
496
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
497
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
498
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
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.22 to 0.0.3-next.23
506
+ * @twin.org/engine-types bumped from 0.0.3-next.22 to 0.0.3-next.23
507
+
508
+ ## [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)
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.21 to 0.0.3-next.22
521
+ * @twin.org/engine-types bumped from 0.0.3-next.21 to 0.0.3-next.22
522
+
523
+ ## [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)
524
+
525
+
526
+ ### Features
527
+
528
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
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.20 to 0.0.3-next.21
536
+ * @twin.org/engine-types bumped from 0.0.3-next.20 to 0.0.3-next.21
537
+
538
+ ## [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)
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.19 to 0.0.3-next.20
551
+ * @twin.org/engine-types bumped from 0.0.3-next.19 to 0.0.3-next.20
552
+
553
+ ## [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)
554
+
555
+
556
+ ### Miscellaneous Chores
557
+
558
+ * **engine-server-types:** Synchronize repo versions
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.18 to 0.0.3-next.19
566
+ * @twin.org/engine-types bumped from 0.0.3-next.18 to 0.0.3-next.19
567
+
568
+ ## [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)
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.17 to 0.0.3-next.18
581
+ * @twin.org/engine-types bumped from 0.0.3-next.17 to 0.0.3-next.18
582
+
583
+ ## [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)
584
+
585
+
586
+ ### Miscellaneous Chores
587
+
588
+ * **engine-server-types:** Synchronize repo versions
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.16 to 0.0.3-next.17
596
+ * @twin.org/engine-types bumped from 0.0.3-next.16 to 0.0.3-next.17
597
+
598
+ ## [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)
599
+
600
+
601
+ ### Features
602
+
603
+ * remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
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.15 to 0.0.3-next.16
611
+ * @twin.org/engine-types bumped from 0.0.3-next.15 to 0.0.3-next.16
612
+
613
+ ## [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)
614
+
615
+
616
+ ### Features
617
+
618
+ * add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
619
+
620
+
621
+ ### Dependencies
622
+
623
+ * The following workspace dependencies were updated
624
+ * dependencies
625
+ * @twin.org/engine-models bumped from 0.0.3-next.14 to 0.0.3-next.15
626
+ * @twin.org/engine-types bumped from 0.0.3-next.14 to 0.0.3-next.15
627
+
628
+ ## [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)
629
+
630
+
631
+ ### Features
632
+
633
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
634
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
635
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
636
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
637
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
638
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
639
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
640
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
641
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
642
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
643
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
644
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
645
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
646
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
647
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
648
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
649
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
650
+ * 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))
651
+ * remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
652
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
653
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
654
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
655
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
656
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
657
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
658
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
659
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
660
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
661
+
662
+
663
+ ### Dependencies
664
+
665
+ * The following workspace dependencies were updated
666
+ * dependencies
667
+ * @twin.org/engine-models bumped from 0.0.3-next.13 to 0.0.3-next.14
668
+ * @twin.org/engine-types bumped from 0.0.3-next.13 to 0.0.3-next.14
669
+
670
+ ## [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)
671
+
672
+
673
+ ### Features
674
+
675
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
676
+
677
+
678
+ ### Dependencies
679
+
680
+ * The following workspace dependencies were updated
681
+ * dependencies
682
+ * @twin.org/engine-models bumped from 0.0.3-next.12 to 0.0.3-next.13
683
+ * @twin.org/engine-types bumped from 0.0.3-next.12 to 0.0.3-next.13
684
+
685
+ ## [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)
686
+
687
+
688
+ ### Miscellaneous Chores
689
+
690
+ * **engine-server-types:** Synchronize repo versions
691
+
692
+
693
+ ### Dependencies
694
+
695
+ * The following workspace dependencies were updated
696
+ * dependencies
697
+ * @twin.org/engine-models bumped from 0.0.3-next.11 to 0.0.3-next.12
698
+ * @twin.org/engine-types bumped from 0.0.3-next.11 to 0.0.3-next.12
699
+
700
+ ## [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)
701
+
702
+
703
+ ### Miscellaneous Chores
704
+
705
+ * **engine-server-types:** Synchronize repo versions
706
+
707
+
708
+ ### Dependencies
709
+
710
+ * The following workspace dependencies were updated
711
+ * dependencies
712
+ * @twin.org/engine-models bumped from 0.0.3-next.10 to 0.0.3-next.11
713
+ * @twin.org/engine-types bumped from 0.0.3-next.10 to 0.0.3-next.11
714
+
715
+ ## [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)
716
+
717
+
718
+ ### Miscellaneous Chores
719
+
720
+ * **engine-server-types:** Synchronize repo versions
721
+
722
+
723
+ ### Dependencies
724
+
725
+ * The following workspace dependencies were updated
726
+ * dependencies
727
+ * @twin.org/engine-models bumped from 0.0.3-next.9 to 0.0.3-next.10
728
+ * @twin.org/engine-types bumped from 0.0.3-next.9 to 0.0.3-next.10
729
+
730
+ ## [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)
731
+
732
+
733
+ ### Miscellaneous Chores
734
+
735
+ * **engine-server-types:** Synchronize repo versions
736
+
737
+
738
+ ### Dependencies
739
+
740
+ * The following workspace dependencies were updated
741
+ * dependencies
742
+ * @twin.org/engine-models bumped from 0.0.3-next.8 to 0.0.3-next.9
743
+ * @twin.org/engine-types bumped from 0.0.3-next.8 to 0.0.3-next.9
744
+
745
+ ## [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)
746
+
747
+
748
+ ### Miscellaneous Chores
749
+
750
+ * **engine-server-types:** Synchronize repo versions
751
+
752
+
753
+ ### Dependencies
754
+
755
+ * The following workspace dependencies were updated
756
+ * dependencies
757
+ * @twin.org/engine-models bumped from 0.0.3-next.7 to 0.0.3-next.8
758
+ * @twin.org/engine-types bumped from 0.0.3-next.7 to 0.0.3-next.8
759
+
760
+ ## [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)
761
+
762
+
763
+ ### Features
764
+
765
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
766
+
767
+
768
+ ### Dependencies
769
+
770
+ * The following workspace dependencies were updated
771
+ * dependencies
772
+ * @twin.org/engine-models bumped from 0.0.3-next.6 to 0.0.3-next.7
773
+ * @twin.org/engine-types bumped from 0.0.3-next.6 to 0.0.3-next.7
774
+
775
+ ## [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)
776
+
777
+
778
+ ### Features
779
+
780
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
781
+
782
+
783
+ ### Dependencies
784
+
785
+ * The following workspace dependencies were updated
786
+ * dependencies
787
+ * @twin.org/engine-models bumped from 0.0.3-next.5 to 0.0.3-next.6
788
+ * @twin.org/engine-types bumped from 0.0.3-next.5 to 0.0.3-next.6
789
+
790
+ ## [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)
4
791
 
5
792
 
6
793
  ### Miscellaneous Chores
@@ -15,12 +802,12 @@
15
802
  * @twin.org/engine-models bumped from 0.0.3-next.4 to 0.0.3-next.5
16
803
  * @twin.org/engine-types bumped from 0.0.3-next.4 to 0.0.3-next.5
17
804
 
18
- ## [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)
805
+ ## [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)
19
806
 
20
807
 
21
808
  ### Features
22
809
 
23
- * context id handlers repopulated after engine clone ([9712e32](https://github.com/twinfoundation/engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
810
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
24
811
 
25
812
 
26
813
  ### Dependencies
@@ -30,7 +817,7 @@
30
817
  * @twin.org/engine-models bumped from 0.0.3-next.3 to 0.0.3-next.4
31
818
  * @twin.org/engine-types bumped from 0.0.3-next.3 to 0.0.3-next.4
32
819
 
33
- ## [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)
820
+ ## [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)
34
821
 
35
822
 
36
823
  ### Miscellaneous Chores
@@ -45,7 +832,7 @@
45
832
  * @twin.org/engine-models bumped from 0.0.3-next.2 to 0.0.3-next.3
46
833
  * @twin.org/engine-types bumped from 0.0.3-next.2 to 0.0.3-next.3
47
834
 
48
- ## [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)
835
+ ## [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)
49
836
 
50
837
 
51
838
  ### Miscellaneous Chores
@@ -60,34 +847,34 @@
60
847
  * @twin.org/engine-models bumped from 0.0.3-next.1 to 0.0.3-next.2
61
848
  * @twin.org/engine-types bumped from 0.0.3-next.1 to 0.0.3-next.2
62
849
 
63
- ## [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)
850
+ ## [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)
64
851
 
65
852
 
66
853
  ### Features
67
854
 
68
- * add auth admin component ([201cd06](https://github.com/twinfoundation/engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
69
- * add context id features ([#51](https://github.com/twinfoundation/engine/issues/51)) ([eaef180](https://github.com/twinfoundation/engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
70
- * add data space connector ([a824d99](https://github.com/twinfoundation/engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
71
- * add default logging component for web server ([8ad94f0](https://github.com/twinfoundation/engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
72
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
73
- * add latest rights management components ([2d305c8](https://github.com/twinfoundation/engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
74
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
75
- * add rest clients as components ([c6f956a](https://github.com/twinfoundation/engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
76
- * add rights management modules ([e02cadc](https://github.com/twinfoundation/engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
77
- * add rights management negotiation ([84ef46b](https://github.com/twinfoundation/engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
78
- * add synchronised storage support ([5142e34](https://github.com/twinfoundation/engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
79
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
80
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
81
- * eslint migration to flat config ([6b978da](https://github.com/twinfoundation/engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
82
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
83
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
84
- * standardised engine logging naming ([0dbf857](https://github.com/twinfoundation/engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
85
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
86
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
87
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
88
- * update rights management and add authentication generators ([f728a1e](https://github.com/twinfoundation/engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
89
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
90
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
855
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
856
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
857
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
858
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
859
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
860
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
861
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
862
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
863
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
864
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
865
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
866
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
867
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
868
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
869
+ * 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))
870
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
871
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
872
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
873
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
874
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
875
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
876
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
877
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
91
878
 
92
879
 
93
880
  ### Dependencies
@@ -97,7 +884,7 @@
97
884
  * @twin.org/engine-models bumped from 0.0.3-next.0 to 0.0.3-next.1
98
885
  * @twin.org/engine-types bumped from 0.0.3-next.0 to 0.0.3-next.1
99
886
 
100
- ## [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)
887
+ ## [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)
101
888
 
102
889
 
103
890
  ### Miscellaneous Chores
@@ -112,12 +899,12 @@
112
899
  * @twin.org/engine-models bumped from 0.0.2-next.25 to 0.0.2-next.26
113
900
  * @twin.org/engine-types bumped from 0.0.2-next.25 to 0.0.2-next.26
114
901
 
115
- ## [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)
902
+ ## [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)
116
903
 
117
904
 
118
905
  ### Features
119
906
 
120
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
907
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
121
908
 
122
909
 
123
910
  ### Dependencies
@@ -127,7 +914,7 @@
127
914
  * @twin.org/engine-models bumped from 0.0.2-next.24 to 0.0.2-next.25
128
915
  * @twin.org/engine-types bumped from 0.0.2-next.24 to 0.0.2-next.25
129
916
 
130
- ## [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)
917
+ ## [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)
131
918
 
132
919
 
133
920
  ### Miscellaneous Chores
@@ -142,7 +929,7 @@
142
929
  * @twin.org/engine-models bumped from 0.0.2-next.23 to 0.0.2-next.24
143
930
  * @twin.org/engine-types bumped from 0.0.2-next.23 to 0.0.2-next.24
144
931
 
145
- ## [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)
932
+ ## [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)
146
933
 
147
934
 
148
935
  ### Miscellaneous Chores
@@ -157,7 +944,7 @@
157
944
  * @twin.org/engine-models bumped from 0.0.2-next.22 to 0.0.2-next.23
158
945
  * @twin.org/engine-types bumped from 0.0.2-next.22 to 0.0.2-next.23
159
946
 
160
- ## [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)
947
+ ## [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)
161
948
 
162
949
 
163
950
  ### Miscellaneous Chores
@@ -172,7 +959,7 @@
172
959
  * @twin.org/engine-models bumped from 0.0.2-next.21 to 0.0.2-next.22
173
960
  * @twin.org/engine-types bumped from 0.0.2-next.21 to 0.0.2-next.22
174
961
 
175
- ## [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)
962
+ ## [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)
176
963
 
177
964
 
178
965
  ### Miscellaneous Chores
@@ -187,12 +974,12 @@
187
974
  * @twin.org/engine-models bumped from 0.0.2-next.20 to 0.0.2-next.21
188
975
  * @twin.org/engine-types bumped from 0.0.2-next.20 to 0.0.2-next.21
189
976
 
190
- ## [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)
977
+ ## [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)
191
978
 
192
979
 
193
980
  ### Features
194
981
 
195
- * standardised engine logging naming ([0dbf857](https://github.com/twinfoundation/engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
982
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
196
983
 
197
984
 
198
985
  ### Dependencies
@@ -202,12 +989,12 @@
202
989
  * @twin.org/engine-models bumped from 0.0.2-next.19 to 0.0.2-next.20
203
990
  * @twin.org/engine-types bumped from 0.0.2-next.19 to 0.0.2-next.20
204
991
 
205
- ## [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)
992
+ ## [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)
206
993
 
207
994
 
208
995
  ### Features
209
996
 
210
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
997
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
211
998
 
212
999
 
213
1000
  ### Dependencies
@@ -217,12 +1004,12 @@
217
1004
  * @twin.org/engine-models bumped from 0.0.2-next.18 to 0.0.2-next.19
218
1005
  * @twin.org/engine-types bumped from 0.0.2-next.18 to 0.0.2-next.19
219
1006
 
220
- ## [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)
1007
+ ## [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)
221
1008
 
222
1009
 
223
1010
  ### Features
224
1011
 
225
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
1012
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
226
1013
 
227
1014
 
228
1015
  ### Dependencies
@@ -232,7 +1019,7 @@
232
1019
  * @twin.org/engine-models bumped from 0.0.2-next.17 to 0.0.2-next.18
233
1020
  * @twin.org/engine-types bumped from 0.0.2-next.17 to 0.0.2-next.18
234
1021
 
235
- ## [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)
1022
+ ## [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)
236
1023
 
237
1024
 
238
1025
  ### Miscellaneous Chores
@@ -247,7 +1034,7 @@
247
1034
  * @twin.org/engine-models bumped from 0.0.2-next.16 to 0.0.2-next.17
248
1035
  * @twin.org/engine-types bumped from 0.0.2-next.16 to 0.0.2-next.17
249
1036
 
250
- ## [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)
1037
+ ## [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)
251
1038
 
252
1039
 
253
1040
  ### Miscellaneous Chores
@@ -262,12 +1049,12 @@
262
1049
  * @twin.org/engine-models bumped from 0.0.2-next.15 to 0.0.2-next.16
263
1050
  * @twin.org/engine-types bumped from 0.0.2-next.15 to 0.0.2-next.16
264
1051
 
265
- ## [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)
1052
+ ## [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)
266
1053
 
267
1054
 
268
1055
  ### Features
269
1056
 
270
- * update rights management and add authentication generators ([f728a1e](https://github.com/twinfoundation/engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
1057
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
271
1058
 
272
1059
 
273
1060
  ### Dependencies
@@ -277,12 +1064,12 @@
277
1064
  * @twin.org/engine-models bumped from 0.0.2-next.14 to 0.0.2-next.15
278
1065
  * @twin.org/engine-types bumped from 0.0.2-next.14 to 0.0.2-next.15
279
1066
 
280
- ## [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)
1067
+ ## [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)
281
1068
 
282
1069
 
283
1070
  ### Features
284
1071
 
285
- * add latest rights management components ([2d305c8](https://github.com/twinfoundation/engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
1072
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
286
1073
 
287
1074
 
288
1075
  ### Dependencies
@@ -292,7 +1079,7 @@
292
1079
  * @twin.org/engine-models bumped from 0.0.2-next.13 to 0.0.2-next.14
293
1080
  * @twin.org/engine-types bumped from 0.0.2-next.13 to 0.0.2-next.14
294
1081
 
295
- ## [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)
1082
+ ## [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)
296
1083
 
297
1084
 
298
1085
  ### Miscellaneous Chores
@@ -307,12 +1094,12 @@
307
1094
  * @twin.org/engine-models bumped from 0.0.2-next.12 to 0.0.2-next.13
308
1095
  * @twin.org/engine-types bumped from 0.0.2-next.12 to 0.0.2-next.13
309
1096
 
310
- ## [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)
1097
+ ## [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)
311
1098
 
312
1099
 
313
1100
  ### Features
314
1101
 
315
- * add rights management negotiation ([84ef46b](https://github.com/twinfoundation/engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
1102
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
316
1103
 
317
1104
 
318
1105
  ### Dependencies
@@ -322,12 +1109,12 @@
322
1109
  * @twin.org/engine-models bumped from 0.0.2-next.11 to 0.0.2-next.12
323
1110
  * @twin.org/engine-types bumped from 0.0.2-next.11 to 0.0.2-next.12
324
1111
 
325
- ## [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)
1112
+ ## [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)
326
1113
 
327
1114
 
328
1115
  ### Features
329
1116
 
330
- * eslint migration to flat config ([6b978da](https://github.com/twinfoundation/engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
1117
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
331
1118
 
332
1119
 
333
1120
  ### Dependencies
@@ -337,12 +1124,12 @@
337
1124
  * @twin.org/engine-models bumped from 0.0.2-next.10 to 0.0.2-next.11
338
1125
  * @twin.org/engine-types bumped from 0.0.2-next.10 to 0.0.2-next.11
339
1126
 
340
- ## [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)
1127
+ ## [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)
341
1128
 
342
1129
 
343
1130
  ### Features
344
1131
 
345
- * add data space connector ([a824d99](https://github.com/twinfoundation/engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
1132
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
346
1133
 
347
1134
 
348
1135
  ### Dependencies
@@ -352,7 +1139,7 @@
352
1139
  * @twin.org/engine-models bumped from 0.0.2-next.9 to 0.0.2-next.10
353
1140
  * @twin.org/engine-types bumped from 0.0.2-next.9 to 0.0.2-next.10
354
1141
 
355
- ## [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)
1142
+ ## [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)
356
1143
 
357
1144
 
358
1145
  ### Miscellaneous Chores
@@ -367,12 +1154,12 @@
367
1154
  * @twin.org/engine-models bumped from 0.0.2-next.8 to 0.0.2-next.9
368
1155
  * @twin.org/engine-types bumped from 0.0.2-next.8 to 0.0.2-next.9
369
1156
 
370
- ## [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)
1157
+ ## [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)
371
1158
 
372
1159
 
373
1160
  ### Features
374
1161
 
375
- * add rights management modules ([e02cadc](https://github.com/twinfoundation/engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
1162
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
376
1163
 
377
1164
 
378
1165
  ### Dependencies
@@ -382,7 +1169,7 @@
382
1169
  * @twin.org/engine-models bumped from 0.0.2-next.7 to 0.0.2-next.8
383
1170
  * @twin.org/engine-types bumped from 0.0.2-next.7 to 0.0.2-next.8
384
1171
 
385
- ## [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)
1172
+ ## [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)
386
1173
 
387
1174
 
388
1175
  ### Miscellaneous Chores
@@ -397,12 +1184,12 @@
397
1184
  * @twin.org/engine-models bumped from 0.0.2-next.6 to 0.0.2-next.7
398
1185
  * @twin.org/engine-types bumped from 0.0.2-next.6 to 0.0.2-next.7
399
1186
 
400
- ## [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)
1187
+ ## [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)
401
1188
 
402
1189
 
403
1190
  ### Features
404
1191
 
405
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
1192
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
406
1193
 
407
1194
 
408
1195
  ### Dependencies
@@ -412,12 +1199,12 @@
412
1199
  * @twin.org/engine-models bumped from 0.0.2-next.5 to 0.0.2-next.6
413
1200
  * @twin.org/engine-types bumped from 0.0.2-next.5 to 0.0.2-next.6
414
1201
 
415
- ## [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)
1202
+ ## [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)
416
1203
 
417
1204
 
418
1205
  ### Features
419
1206
 
420
- * add synchronised storage support ([5142e34](https://github.com/twinfoundation/engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
1207
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
421
1208
 
422
1209
 
423
1210
  ### Dependencies
@@ -427,12 +1214,12 @@
427
1214
  * @twin.org/engine-models bumped from 0.0.2-next.4 to 0.0.2-next.5
428
1215
  * @twin.org/engine-types bumped from 0.0.2-next.4 to 0.0.2-next.5
429
1216
 
430
- ## [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)
1217
+ ## [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)
431
1218
 
432
1219
 
433
1220
  ### Features
434
1221
 
435
- * add default logging component for web server ([8ad94f0](https://github.com/twinfoundation/engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
1222
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
436
1223
 
437
1224
 
438
1225
  ### Dependencies
@@ -442,7 +1229,7 @@
442
1229
  * @twin.org/engine-models bumped from 0.0.2-next.3 to 0.0.2-next.4
443
1230
  * @twin.org/engine-types bumped from 0.0.2-next.3 to 0.0.2-next.4
444
1231
 
445
- ## [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)
1232
+ ## [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)
446
1233
 
447
1234
 
448
1235
  ### Miscellaneous Chores
@@ -457,12 +1244,12 @@
457
1244
  * @twin.org/engine-models bumped from 0.0.2-next.2 to 0.0.2-next.3
458
1245
  * @twin.org/engine-types bumped from 0.0.2-next.2 to 0.0.2-next.3
459
1246
 
460
- ## [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)
1247
+ ## [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)
461
1248
 
462
1249
 
463
1250
  ### Features
464
1251
 
465
- * add rest clients as components ([c6f956a](https://github.com/twinfoundation/engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
1252
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
466
1253
 
467
1254
 
468
1255
  ### Dependencies
@@ -472,19 +1259,19 @@
472
1259
  * @twin.org/engine-models bumped from 0.0.2-next.1 to 0.0.2-next.2
473
1260
  * @twin.org/engine-types bumped from 0.0.2-next.1 to 0.0.2-next.2
474
1261
 
475
- ## [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)
1262
+ ## [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)
476
1263
 
477
1264
 
478
1265
  ### Features
479
1266
 
480
- * add auth admin component ([201cd06](https://github.com/twinfoundation/engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
481
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
482
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
483
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
484
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
485
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
486
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
487
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
1267
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
1268
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1269
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1270
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1271
+ * 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))
1272
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
1273
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1274
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
488
1275
 
489
1276
 
490
1277
  ### Dependencies
@@ -499,15 +1286,15 @@
499
1286
 
500
1287
  ### Features
501
1288
 
502
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
503
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
504
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
505
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
506
- * release to production ([3a4acd1](https://github.com/twinfoundation/engine/commit/3a4acd1f6c66b841d80b6fd3bc1a439a77148fa5))
507
- * release to production ([5559958](https://github.com/twinfoundation/engine/commit/5559958e2128e6ec3a81e779d1ebd3f370bbb081))
508
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
509
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
510
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
1289
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1290
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1291
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1292
+ * 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))
1293
+ * release to production ([3a4acd1](https://github.com/iotaledger/twin-engine/commit/3a4acd1f6c66b841d80b6fd3bc1a439a77148fa5))
1294
+ * release to production ([5559958](https://github.com/iotaledger/twin-engine/commit/5559958e2128e6ec3a81e779d1ebd3f370bbb081))
1295
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
1296
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1297
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
511
1298
 
512
1299
 
513
1300
  ### Dependencies
@@ -517,7 +1304,7 @@
517
1304
  * @twin.org/engine-models bumped from 0.0.1-next.84 to 0.0.1
518
1305
  * @twin.org/engine-types bumped from 0.0.1-next.84 to 0.0.1
519
1306
 
520
- ## [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)
1307
+ ## [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)
521
1308
 
522
1309
 
523
1310
  ### Miscellaneous Chores
@@ -532,18 +1319,18 @@
532
1319
  * @twin.org/engine-models bumped from 0.0.1-next.83 to 0.0.1-next.84
533
1320
  * @twin.org/engine-types bumped from 0.0.1-next.83 to 0.0.1-next.84
534
1321
 
535
- ## [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)
1322
+ ## [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)
536
1323
 
537
1324
 
538
1325
  ### Features
539
1326
 
540
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
541
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
542
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
543
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
544
- * switch to devDeps ([32832ac](https://github.com/twinfoundation/engine/commit/32832acd934e1e5569474281a527c9b118d30732))
545
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
546
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
1327
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1328
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1329
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1330
+ * 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))
1331
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
1332
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1333
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
547
1334
 
548
1335
 
549
1336
  ### Dependencies
@@ -553,7 +1340,7 @@
553
1340
  * @twin.org/engine-models bumped from 0.0.1-next.81 to 0.0.1-next.83
554
1341
  * @twin.org/engine-types bumped from 0.0.1-next.81 to 0.0.1-next.83
555
1342
 
556
- ## [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)
1343
+ ## [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)
557
1344
 
558
1345
 
559
1346
  ### Miscellaneous Chores
@@ -568,12 +1355,12 @@
568
1355
  * @twin.org/engine-models bumped from 0.0.1-next.80 to 0.0.1-next.81
569
1356
  * @twin.org/engine-types bumped from 0.0.1-next.80 to 0.0.1-next.81
570
1357
 
571
- ## [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)
1358
+ ## [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)
572
1359
 
573
1360
 
574
1361
  ### Features
575
1362
 
576
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1363
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
577
1364
 
578
1365
 
579
1366
  ### Dependencies
@@ -583,7 +1370,7 @@
583
1370
  * @twin.org/engine-models bumped from 0.0.1-next.79 to 0.0.1-next.80
584
1371
  * @twin.org/engine-types bumped from 0.0.1-next.79 to 0.0.1-next.80
585
1372
 
586
- ## [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)
1373
+ ## [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)
587
1374
 
588
1375
 
589
1376
  ### Miscellaneous Chores
@@ -598,7 +1385,7 @@
598
1385
  * @twin.org/engine-models bumped from 0.0.1-next.78 to 0.0.1-next.79
599
1386
  * @twin.org/engine-types bumped from 0.0.1-next.78 to 0.0.1-next.79
600
1387
 
601
- ## [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)
1388
+ ## [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)
602
1389
 
603
1390
 
604
1391
  ### Miscellaneous Chores
@@ -613,7 +1400,7 @@
613
1400
  * @twin.org/engine-models bumped from 0.0.1-next.77 to 0.0.1-next.78
614
1401
  * @twin.org/engine-types bumped from 0.0.1-next.77 to 0.0.1-next.78
615
1402
 
616
- ## [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)
1403
+ ## [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)
617
1404
 
618
1405
 
619
1406
  ### Miscellaneous Chores
@@ -628,12 +1415,12 @@
628
1415
  * @twin.org/engine-models bumped from 0.0.1-next.76 to 0.0.1-next.77
629
1416
  * @twin.org/engine-types bumped from 0.0.1-next.76 to 0.0.1-next.77
630
1417
 
631
- ## [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)
1418
+ ## [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)
632
1419
 
633
1420
 
634
1421
  ### Features
635
1422
 
636
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1423
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
637
1424
 
638
1425
 
639
1426
  ### Dependencies
@@ -643,12 +1430,12 @@
643
1430
  * @twin.org/engine-models bumped from 0.0.1-next.75 to 0.0.1-next.76
644
1431
  * @twin.org/engine-types bumped from 0.0.1-next.75 to 0.0.1-next.76
645
1432
 
646
- ## [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)
1433
+ ## [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)
647
1434
 
648
1435
 
649
1436
  ### Features
650
1437
 
651
- * modifying the engine to run the new services ([#10](https://github.com/twinfoundation/engine/issues/10)) ([6f7141f](https://github.com/twinfoundation/engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
1438
+ * 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))
652
1439
 
653
1440
 
654
1441
  ### Dependencies
@@ -658,12 +1445,12 @@
658
1445
  * @twin.org/engine-models bumped from 0.0.1-next.74 to 0.0.1-next.75
659
1446
  * @twin.org/engine-types bumped from 0.0.1-next.74 to 0.0.1-next.75
660
1447
 
661
- ## [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)
1448
+ ## [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)
662
1449
 
663
1450
 
664
1451
  ### Features
665
1452
 
666
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1453
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
667
1454
 
668
1455
 
669
1456
  ### Dependencies
@@ -673,7 +1460,7 @@
673
1460
  * @twin.org/engine-models bumped from 0.0.1-next.73 to 0.0.1-next.74
674
1461
  * @twin.org/engine-types bumped from 0.0.1-next.73 to 0.0.1-next.74
675
1462
 
676
- ## [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)
1463
+ ## [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)
677
1464
 
678
1465
 
679
1466
  ### Miscellaneous Chores
@@ -688,13 +1475,13 @@
688
1475
  * @twin.org/engine-models bumped from 0.0.1-next.72 to 0.0.1-next.73
689
1476
  * @twin.org/engine-types bumped from 0.0.1-next.72 to 0.0.1-next.73
690
1477
 
691
- ## [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)
1478
+ ## [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)
692
1479
 
693
1480
 
694
1481
  ### Features
695
1482
 
696
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
697
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
1483
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1484
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
698
1485
 
699
1486
 
700
1487
  ### Dependencies
@@ -704,7 +1491,7 @@
704
1491
  * @twin.org/engine-models bumped from 0.0.1-next.71 to 0.0.1-next.72
705
1492
  * @twin.org/engine-types bumped from 0.0.1-next.71 to 0.0.1-next.72
706
1493
 
707
- ## [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)
1494
+ ## [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)
708
1495
 
709
1496
 
710
1497
  ### Miscellaneous Chores
@@ -719,7 +1506,7 @@
719
1506
  * @twin.org/engine-models bumped from 0.0.1-next.70 to 0.0.1-next.71
720
1507
  * @twin.org/engine-types bumped from 0.0.1-next.70 to 0.0.1-next.71
721
1508
 
722
- ## [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)
1509
+ ## [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)
723
1510
 
724
1511
 
725
1512
  ### Miscellaneous Chores
@@ -734,7 +1521,7 @@
734
1521
  * @twin.org/engine-models bumped from 0.0.1-next.69 to 0.0.1-next.70
735
1522
  * @twin.org/engine-types bumped from 0.0.1-next.69 to 0.0.1-next.70
736
1523
 
737
- ## [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)
1524
+ ## [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)
738
1525
 
739
1526
 
740
1527
  ### Miscellaneous Chores
@@ -749,12 +1536,12 @@
749
1536
  * @twin.org/engine-models bumped from 0.0.1-next.68 to 0.0.1-next.69
750
1537
  * @twin.org/engine-types bumped from 0.0.1-next.68 to 0.0.1-next.69
751
1538
 
752
- ## [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)
1539
+ ## [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)
753
1540
 
754
1541
 
755
1542
  ### Features
756
1543
 
757
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
1544
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
758
1545
 
759
1546
 
760
1547
  ### Dependencies
@@ -764,12 +1551,12 @@
764
1551
  * @twin.org/engine-models bumped from 0.0.1-next.67 to 0.0.1-next.68
765
1552
  * @twin.org/engine-types bumped from 0.0.1-next.67 to 0.0.1-next.68
766
1553
 
767
- ## [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)
1554
+ ## [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)
768
1555
 
769
1556
 
770
1557
  ### Features
771
1558
 
772
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1559
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
773
1560
 
774
1561
 
775
1562
  ### Dependencies