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

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 +891 -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,778 @@
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.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)
4
+
5
+
6
+ ### Features
7
+
8
+ * organization identifiers ([#152](https://github.com/iotaledger/twin-engine/issues/152)) ([d8e6d51](https://github.com/iotaledger/twin-engine/commit/d8e6d5147f402f0fe17b445efd8ae97db0c36adb))
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.49 to 0.0.3-next.50
16
+ * @twin.org/engine-types bumped from 0.0.3-next.49 to 0.0.3-next.50
17
+
18
+ ## [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)
19
+
20
+
21
+ ### Miscellaneous Chores
22
+
23
+ * **engine-server-types:** Synchronize repo versions
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.48 to 0.0.3-next.49
31
+ * @twin.org/engine-types bumped from 0.0.3-next.48 to 0.0.3-next.49
32
+
33
+ ## [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)
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.47 to 0.0.3-next.48
46
+ * @twin.org/engine-types bumped from 0.0.3-next.47 to 0.0.3-next.48
47
+
48
+ ## [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)
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.46 to 0.0.3-next.47
61
+ * @twin.org/engine-types bumped from 0.0.3-next.46 to 0.0.3-next.47
62
+
63
+ ## [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)
64
+
65
+
66
+ ### Features
67
+
68
+ * add tenant component ([#138](https://github.com/iotaledger/twin-engine/issues/138)) ([ebbcb8f](https://github.com/iotaledger/twin-engine/commit/ebbcb8fa3fee05048ddad2891c6ada66bd29e7bd))
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.45 to 0.0.3-next.46
76
+ * @twin.org/engine-types bumped from 0.0.3-next.45 to 0.0.3-next.46
77
+
78
+ ## [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)
79
+
80
+
81
+ ### Features
82
+
83
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
84
+ * add authentication rate and audit services ([#95](https://github.com/iotaledger/twin-engine/issues/95)) ([55e2b08](https://github.com/iotaledger/twin-engine/commit/55e2b089661529e0556115817cc435cc6e4292cc))
85
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
86
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
87
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
88
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
89
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
90
+ * add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
91
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
92
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
93
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
94
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
95
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
96
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
97
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
98
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
99
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
100
+ * additional component wiring ([#133](https://github.com/iotaledger/twin-engine/issues/133)) ([a32bce1](https://github.com/iotaledger/twin-engine/commit/a32bce169ab3a47fd566eb089c6b01ba147ea1da))
101
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
102
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
103
+ * 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))
104
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
105
+ * remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
106
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
107
+ * remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
108
+ * 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))
109
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
110
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
111
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
112
+ * typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
113
+ * update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
114
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
115
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
116
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
117
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
118
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
119
+
120
+
121
+ ### Bug Fixes
122
+
123
+ * constructing TenantProcessor ([4dad604](https://github.com/iotaledger/twin-engine/commit/4dad604c0e424a3ffa65f3d6cef173058b21ec76))
124
+
125
+
126
+ ### Dependencies
127
+
128
+ * The following workspace dependencies were updated
129
+ * dependencies
130
+ * @twin.org/engine-models bumped from 0.0.3-next.44 to 0.0.3-next.45
131
+ * @twin.org/engine-types bumped from 0.0.3-next.44 to 0.0.3-next.45
132
+
133
+ ## [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)
134
+
135
+
136
+ ### Features
137
+
138
+ * additional component wiring ([#133](https://github.com/iotaledger/twin-engine/issues/133)) ([a32bce1](https://github.com/iotaledger/twin-engine/commit/a32bce169ab3a47fd566eb089c6b01ba147ea1da))
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.43 to 0.0.3-next.44
146
+ * @twin.org/engine-types bumped from 0.0.3-next.43 to 0.0.3-next.44
147
+
148
+ ## [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)
149
+
150
+
151
+ ### Miscellaneous Chores
152
+
153
+ * **engine-server-types:** Synchronize repo versions
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.42 to 0.0.3-next.43
161
+ * @twin.org/engine-types bumped from 0.0.3-next.42 to 0.0.3-next.43
162
+
163
+ ## [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)
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.41 to 0.0.3-next.42
176
+ * @twin.org/engine-types bumped from 0.0.3-next.41 to 0.0.3-next.42
177
+
178
+ ## [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)
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.40 to 0.0.3-next.41
191
+ * @twin.org/engine-types bumped from 0.0.3-next.40 to 0.0.3-next.41
192
+
193
+ ## [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)
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.39 to 0.0.3-next.40
206
+ * @twin.org/engine-types bumped from 0.0.3-next.39 to 0.0.3-next.40
207
+
208
+ ## [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)
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.38 to 0.0.3-next.39
221
+ * @twin.org/engine-types bumped from 0.0.3-next.38 to 0.0.3-next.39
222
+
223
+ ## [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)
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.37 to 0.0.3-next.38
236
+ * @twin.org/engine-types bumped from 0.0.3-next.37 to 0.0.3-next.38
237
+
238
+ ## [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)
239
+
240
+
241
+ ### Features
242
+
243
+ * typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
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.36 to 0.0.3-next.37
251
+ * @twin.org/engine-types bumped from 0.0.3-next.36 to 0.0.3-next.37
252
+
253
+ ## [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)
254
+
255
+
256
+ ### Miscellaneous Chores
257
+
258
+ * **engine-server-types:** Synchronize repo versions
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.35 to 0.0.3-next.36
266
+ * @twin.org/engine-types bumped from 0.0.3-next.35 to 0.0.3-next.36
267
+
268
+ ## [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)
269
+
270
+
271
+ ### Bug Fixes
272
+
273
+ * constructing TenantProcessor ([4dad604](https://github.com/iotaledger/twin-engine/commit/4dad604c0e424a3ffa65f3d6cef173058b21ec76))
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.34 to 0.0.3-next.35
281
+ * @twin.org/engine-types bumped from 0.0.3-next.34 to 0.0.3-next.35
282
+
283
+ ## [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)
284
+
285
+
286
+ ### Miscellaneous Chores
287
+
288
+ * **engine-server-types:** Synchronize repo versions
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.33 to 0.0.3-next.34
296
+ * @twin.org/engine-types bumped from 0.0.3-next.33 to 0.0.3-next.34
297
+
298
+ ## [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)
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.32 to 0.0.3-next.33
311
+ * @twin.org/engine-types bumped from 0.0.3-next.32 to 0.0.3-next.33
312
+
313
+ ## [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)
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.31 to 0.0.3-next.32
326
+ * @twin.org/engine-types bumped from 0.0.3-next.31 to 0.0.3-next.32
327
+
328
+ ## [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)
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.30 to 0.0.3-next.31
341
+ * @twin.org/engine-types bumped from 0.0.3-next.30 to 0.0.3-next.31
342
+
343
+ ## [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)
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.29 to 0.0.3-next.30
356
+ * @twin.org/engine-types bumped from 0.0.3-next.29 to 0.0.3-next.30
357
+
358
+ ## [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)
359
+
360
+
361
+ ### Features
362
+
363
+ * add authentication rate and audit services ([#95](https://github.com/iotaledger/twin-engine/issues/95)) ([55e2b08](https://github.com/iotaledger/twin-engine/commit/55e2b089661529e0556115817cc435cc6e4292cc))
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.28 to 0.0.3-next.29
371
+ * @twin.org/engine-types bumped from 0.0.3-next.28 to 0.0.3-next.29
372
+
373
+ ## [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)
374
+
375
+
376
+ ### Miscellaneous Chores
377
+
378
+ * **engine-server-types:** Synchronize repo versions
379
+
380
+
381
+ ### Dependencies
382
+
383
+ * The following workspace dependencies were updated
384
+ * dependencies
385
+ * @twin.org/engine-models bumped from 0.0.3-next.27 to 0.0.3-next.28
386
+ * @twin.org/engine-types bumped from 0.0.3-next.27 to 0.0.3-next.28
387
+
388
+ ## [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)
389
+
390
+
391
+ ### Features
392
+
393
+ * update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
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.26 to 0.0.3-next.27
401
+ * @twin.org/engine-types bumped from 0.0.3-next.26 to 0.0.3-next.27
402
+
403
+ ## [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)
404
+
405
+
406
+ ### Miscellaneous Chores
407
+
408
+ * **engine-server-types:** Synchronize repo versions
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.25 to 0.0.3-next.26
416
+ * @twin.org/engine-types bumped from 0.0.3-next.25 to 0.0.3-next.26
417
+
418
+ ## [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)
419
+
420
+
421
+ ### Features
422
+
423
+ * 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))
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.24 to 0.0.3-next.25
431
+ * @twin.org/engine-types bumped from 0.0.3-next.24 to 0.0.3-next.25
432
+
433
+ ## [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)
434
+
435
+
436
+ ### Miscellaneous Chores
437
+
438
+ * **engine-server-types:** Synchronize repo versions
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.23 to 0.0.3-next.24
446
+ * @twin.org/engine-types bumped from 0.0.3-next.23 to 0.0.3-next.24
447
+
448
+ ## [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)
449
+
450
+
451
+ ### Features
452
+
453
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
454
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
455
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
456
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
457
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
458
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
459
+ * add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
460
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
461
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
462
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
463
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
464
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
465
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
466
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
467
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
468
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
469
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
470
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
471
+ * 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))
472
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
473
+ * remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
474
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
475
+ * remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
476
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
477
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
478
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
479
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
480
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
481
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
482
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
483
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
484
+
485
+
486
+ ### Dependencies
487
+
488
+ * The following workspace dependencies were updated
489
+ * dependencies
490
+ * @twin.org/engine-models bumped from 0.0.3-next.22 to 0.0.3-next.23
491
+ * @twin.org/engine-types bumped from 0.0.3-next.22 to 0.0.3-next.23
492
+
493
+ ## [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)
494
+
495
+
496
+ ### Miscellaneous Chores
497
+
498
+ * **engine-server-types:** Synchronize repo versions
499
+
500
+
501
+ ### Dependencies
502
+
503
+ * The following workspace dependencies were updated
504
+ * dependencies
505
+ * @twin.org/engine-models bumped from 0.0.3-next.21 to 0.0.3-next.22
506
+ * @twin.org/engine-types bumped from 0.0.3-next.21 to 0.0.3-next.22
507
+
508
+ ## [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)
509
+
510
+
511
+ ### Features
512
+
513
+ * multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
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.20 to 0.0.3-next.21
521
+ * @twin.org/engine-types bumped from 0.0.3-next.20 to 0.0.3-next.21
522
+
523
+ ## [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)
524
+
525
+
526
+ ### Miscellaneous Chores
527
+
528
+ * **engine-server-types:** Synchronize repo versions
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.19 to 0.0.3-next.20
536
+ * @twin.org/engine-types bumped from 0.0.3-next.19 to 0.0.3-next.20
537
+
538
+ ## [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)
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.18 to 0.0.3-next.19
551
+ * @twin.org/engine-types bumped from 0.0.3-next.18 to 0.0.3-next.19
552
+
553
+ ## [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)
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.17 to 0.0.3-next.18
566
+ * @twin.org/engine-types bumped from 0.0.3-next.17 to 0.0.3-next.18
567
+
568
+ ## [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)
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.16 to 0.0.3-next.17
581
+ * @twin.org/engine-types bumped from 0.0.3-next.16 to 0.0.3-next.17
582
+
583
+ ## [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)
584
+
585
+
586
+ ### Features
587
+
588
+ * remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
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.15 to 0.0.3-next.16
596
+ * @twin.org/engine-types bumped from 0.0.3-next.15 to 0.0.3-next.16
597
+
598
+ ## [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)
599
+
600
+
601
+ ### Features
602
+
603
+ * add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
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.14 to 0.0.3-next.15
611
+ * @twin.org/engine-types bumped from 0.0.3-next.14 to 0.0.3-next.15
612
+
613
+ ## [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)
614
+
615
+
616
+ ### Features
617
+
618
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
619
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
620
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
621
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
622
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
623
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
624
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
625
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
626
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
627
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
628
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
629
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
630
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
631
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
632
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
633
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
634
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
635
+ * 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))
636
+ * remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
637
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
638
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
639
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
640
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
641
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
642
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
643
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
644
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
645
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
646
+
647
+
648
+ ### Dependencies
649
+
650
+ * The following workspace dependencies were updated
651
+ * dependencies
652
+ * @twin.org/engine-models bumped from 0.0.3-next.13 to 0.0.3-next.14
653
+ * @twin.org/engine-types bumped from 0.0.3-next.13 to 0.0.3-next.14
654
+
655
+ ## [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)
656
+
657
+
658
+ ### Features
659
+
660
+ * remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
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.12 to 0.0.3-next.13
668
+ * @twin.org/engine-types bumped from 0.0.3-next.12 to 0.0.3-next.13
669
+
670
+ ## [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)
671
+
672
+
673
+ ### Miscellaneous Chores
674
+
675
+ * **engine-server-types:** Synchronize repo versions
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.11 to 0.0.3-next.12
683
+ * @twin.org/engine-types bumped from 0.0.3-next.11 to 0.0.3-next.12
684
+
685
+ ## [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)
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.10 to 0.0.3-next.11
698
+ * @twin.org/engine-types bumped from 0.0.3-next.10 to 0.0.3-next.11
699
+
700
+ ## [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)
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.9 to 0.0.3-next.10
713
+ * @twin.org/engine-types bumped from 0.0.3-next.9 to 0.0.3-next.10
714
+
715
+ ## [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)
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.8 to 0.0.3-next.9
728
+ * @twin.org/engine-types bumped from 0.0.3-next.8 to 0.0.3-next.9
729
+
730
+ ## [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)
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.7 to 0.0.3-next.8
743
+ * @twin.org/engine-types bumped from 0.0.3-next.7 to 0.0.3-next.8
744
+
745
+ ## [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)
746
+
747
+
748
+ ### Features
749
+
750
+ * add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
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.6 to 0.0.3-next.7
758
+ * @twin.org/engine-types bumped from 0.0.3-next.6 to 0.0.3-next.7
759
+
760
+ ## [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)
761
+
762
+
763
+ ### Features
764
+
765
+ * add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
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.5 to 0.0.3-next.6
773
+ * @twin.org/engine-types bumped from 0.0.3-next.5 to 0.0.3-next.6
774
+
775
+ ## [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
776
 
5
777
 
6
778
  ### Miscellaneous Chores
@@ -15,12 +787,12 @@
15
787
  * @twin.org/engine-models bumped from 0.0.3-next.4 to 0.0.3-next.5
16
788
  * @twin.org/engine-types bumped from 0.0.3-next.4 to 0.0.3-next.5
17
789
 
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)
790
+ ## [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
791
 
20
792
 
21
793
  ### Features
22
794
 
23
- * context id handlers repopulated after engine clone ([9712e32](https://github.com/twinfoundation/engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
795
+ * context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
24
796
 
25
797
 
26
798
  ### Dependencies
@@ -30,7 +802,7 @@
30
802
  * @twin.org/engine-models bumped from 0.0.3-next.3 to 0.0.3-next.4
31
803
  * @twin.org/engine-types bumped from 0.0.3-next.3 to 0.0.3-next.4
32
804
 
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)
805
+ ## [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
806
 
35
807
 
36
808
  ### Miscellaneous Chores
@@ -45,7 +817,7 @@
45
817
  * @twin.org/engine-models bumped from 0.0.3-next.2 to 0.0.3-next.3
46
818
  * @twin.org/engine-types bumped from 0.0.3-next.2 to 0.0.3-next.3
47
819
 
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)
820
+ ## [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
821
 
50
822
 
51
823
  ### Miscellaneous Chores
@@ -60,34 +832,34 @@
60
832
  * @twin.org/engine-models bumped from 0.0.3-next.1 to 0.0.3-next.2
61
833
  * @twin.org/engine-types bumped from 0.0.3-next.1 to 0.0.3-next.2
62
834
 
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)
835
+ ## [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
836
 
65
837
 
66
838
  ### Features
67
839
 
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))
840
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
841
+ * add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
842
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
843
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
844
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
845
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
846
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
847
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
848
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
849
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
850
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
851
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
852
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
853
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
854
+ * 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))
855
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
856
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
857
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
858
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
859
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
860
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
861
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
862
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
91
863
 
92
864
 
93
865
  ### Dependencies
@@ -97,7 +869,7 @@
97
869
  * @twin.org/engine-models bumped from 0.0.3-next.0 to 0.0.3-next.1
98
870
  * @twin.org/engine-types bumped from 0.0.3-next.0 to 0.0.3-next.1
99
871
 
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)
872
+ ## [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
873
 
102
874
 
103
875
  ### Miscellaneous Chores
@@ -112,12 +884,12 @@
112
884
  * @twin.org/engine-models bumped from 0.0.2-next.25 to 0.0.2-next.26
113
885
  * @twin.org/engine-types bumped from 0.0.2-next.25 to 0.0.2-next.26
114
886
 
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)
887
+ ## [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
888
 
117
889
 
118
890
  ### Features
119
891
 
120
- * add validate-locales ([b92ea09](https://github.com/twinfoundation/engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
892
+ * add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
121
893
 
122
894
 
123
895
  ### Dependencies
@@ -127,7 +899,7 @@
127
899
  * @twin.org/engine-models bumped from 0.0.2-next.24 to 0.0.2-next.25
128
900
  * @twin.org/engine-types bumped from 0.0.2-next.24 to 0.0.2-next.25
129
901
 
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)
902
+ ## [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
903
 
132
904
 
133
905
  ### Miscellaneous Chores
@@ -142,7 +914,7 @@
142
914
  * @twin.org/engine-models bumped from 0.0.2-next.23 to 0.0.2-next.24
143
915
  * @twin.org/engine-types bumped from 0.0.2-next.23 to 0.0.2-next.24
144
916
 
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)
917
+ ## [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
918
 
147
919
 
148
920
  ### Miscellaneous Chores
@@ -157,7 +929,7 @@
157
929
  * @twin.org/engine-models bumped from 0.0.2-next.22 to 0.0.2-next.23
158
930
  * @twin.org/engine-types bumped from 0.0.2-next.22 to 0.0.2-next.23
159
931
 
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)
932
+ ## [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
933
 
162
934
 
163
935
  ### Miscellaneous Chores
@@ -172,7 +944,7 @@
172
944
  * @twin.org/engine-models bumped from 0.0.2-next.21 to 0.0.2-next.22
173
945
  * @twin.org/engine-types bumped from 0.0.2-next.21 to 0.0.2-next.22
174
946
 
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)
947
+ ## [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
948
 
177
949
 
178
950
  ### Miscellaneous Chores
@@ -187,12 +959,12 @@
187
959
  * @twin.org/engine-models bumped from 0.0.2-next.20 to 0.0.2-next.21
188
960
  * @twin.org/engine-types bumped from 0.0.2-next.20 to 0.0.2-next.21
189
961
 
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)
962
+ ## [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
963
 
192
964
 
193
965
  ### Features
194
966
 
195
- * standardised engine logging naming ([0dbf857](https://github.com/twinfoundation/engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
967
+ * standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
196
968
 
197
969
 
198
970
  ### Dependencies
@@ -202,12 +974,12 @@
202
974
  * @twin.org/engine-models bumped from 0.0.2-next.19 to 0.0.2-next.20
203
975
  * @twin.org/engine-types bumped from 0.0.2-next.19 to 0.0.2-next.20
204
976
 
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)
977
+ ## [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
978
 
207
979
 
208
980
  ### Features
209
981
 
210
- * simplify config building ([732c871](https://github.com/twinfoundation/engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
982
+ * simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
211
983
 
212
984
 
213
985
  ### Dependencies
@@ -217,12 +989,12 @@
217
989
  * @twin.org/engine-models bumped from 0.0.2-next.18 to 0.0.2-next.19
218
990
  * @twin.org/engine-types bumped from 0.0.2-next.18 to 0.0.2-next.19
219
991
 
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)
992
+ ## [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
993
 
222
994
 
223
995
  ### Features
224
996
 
225
- * upgrade framework components ([efd52e8](https://github.com/twinfoundation/engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
997
+ * upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
226
998
 
227
999
 
228
1000
  ### Dependencies
@@ -232,7 +1004,7 @@
232
1004
  * @twin.org/engine-models bumped from 0.0.2-next.17 to 0.0.2-next.18
233
1005
  * @twin.org/engine-types bumped from 0.0.2-next.17 to 0.0.2-next.18
234
1006
 
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)
1007
+ ## [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
1008
 
237
1009
 
238
1010
  ### Miscellaneous Chores
@@ -247,7 +1019,7 @@
247
1019
  * @twin.org/engine-models bumped from 0.0.2-next.16 to 0.0.2-next.17
248
1020
  * @twin.org/engine-types bumped from 0.0.2-next.16 to 0.0.2-next.17
249
1021
 
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)
1022
+ ## [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
1023
 
252
1024
 
253
1025
  ### Miscellaneous Chores
@@ -262,12 +1034,12 @@
262
1034
  * @twin.org/engine-models bumped from 0.0.2-next.15 to 0.0.2-next.16
263
1035
  * @twin.org/engine-types bumped from 0.0.2-next.15 to 0.0.2-next.16
264
1036
 
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)
1037
+ ## [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
1038
 
267
1039
 
268
1040
  ### Features
269
1041
 
270
- * update rights management and add authentication generators ([f728a1e](https://github.com/twinfoundation/engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
1042
+ * update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
271
1043
 
272
1044
 
273
1045
  ### Dependencies
@@ -277,12 +1049,12 @@
277
1049
  * @twin.org/engine-models bumped from 0.0.2-next.14 to 0.0.2-next.15
278
1050
  * @twin.org/engine-types bumped from 0.0.2-next.14 to 0.0.2-next.15
279
1051
 
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)
1052
+ ## [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
1053
 
282
1054
 
283
1055
  ### Features
284
1056
 
285
- * add latest rights management components ([2d305c8](https://github.com/twinfoundation/engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
1057
+ * add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
286
1058
 
287
1059
 
288
1060
  ### Dependencies
@@ -292,7 +1064,7 @@
292
1064
  * @twin.org/engine-models bumped from 0.0.2-next.13 to 0.0.2-next.14
293
1065
  * @twin.org/engine-types bumped from 0.0.2-next.13 to 0.0.2-next.14
294
1066
 
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)
1067
+ ## [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
1068
 
297
1069
 
298
1070
  ### Miscellaneous Chores
@@ -307,12 +1079,12 @@
307
1079
  * @twin.org/engine-models bumped from 0.0.2-next.12 to 0.0.2-next.13
308
1080
  * @twin.org/engine-types bumped from 0.0.2-next.12 to 0.0.2-next.13
309
1081
 
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)
1082
+ ## [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
1083
 
312
1084
 
313
1085
  ### Features
314
1086
 
315
- * add rights management negotiation ([84ef46b](https://github.com/twinfoundation/engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
1087
+ * add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
316
1088
 
317
1089
 
318
1090
  ### Dependencies
@@ -322,12 +1094,12 @@
322
1094
  * @twin.org/engine-models bumped from 0.0.2-next.11 to 0.0.2-next.12
323
1095
  * @twin.org/engine-types bumped from 0.0.2-next.11 to 0.0.2-next.12
324
1096
 
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)
1097
+ ## [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
1098
 
327
1099
 
328
1100
  ### Features
329
1101
 
330
- * eslint migration to flat config ([6b978da](https://github.com/twinfoundation/engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
1102
+ * eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
331
1103
 
332
1104
 
333
1105
  ### Dependencies
@@ -337,12 +1109,12 @@
337
1109
  * @twin.org/engine-models bumped from 0.0.2-next.10 to 0.0.2-next.11
338
1110
  * @twin.org/engine-types bumped from 0.0.2-next.10 to 0.0.2-next.11
339
1111
 
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)
1112
+ ## [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
1113
 
342
1114
 
343
1115
  ### Features
344
1116
 
345
- * add data space connector ([a824d99](https://github.com/twinfoundation/engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
1117
+ * add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
346
1118
 
347
1119
 
348
1120
  ### Dependencies
@@ -352,7 +1124,7 @@
352
1124
  * @twin.org/engine-models bumped from 0.0.2-next.9 to 0.0.2-next.10
353
1125
  * @twin.org/engine-types bumped from 0.0.2-next.9 to 0.0.2-next.10
354
1126
 
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)
1127
+ ## [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
1128
 
357
1129
 
358
1130
  ### Miscellaneous Chores
@@ -367,12 +1139,12 @@
367
1139
  * @twin.org/engine-models bumped from 0.0.2-next.8 to 0.0.2-next.9
368
1140
  * @twin.org/engine-types bumped from 0.0.2-next.8 to 0.0.2-next.9
369
1141
 
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)
1142
+ ## [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
1143
 
372
1144
 
373
1145
  ### Features
374
1146
 
375
- * add rights management modules ([e02cadc](https://github.com/twinfoundation/engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
1147
+ * add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
376
1148
 
377
1149
 
378
1150
  ### Dependencies
@@ -382,7 +1154,7 @@
382
1154
  * @twin.org/engine-models bumped from 0.0.2-next.7 to 0.0.2-next.8
383
1155
  * @twin.org/engine-types bumped from 0.0.2-next.7 to 0.0.2-next.8
384
1156
 
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)
1157
+ ## [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
1158
 
387
1159
 
388
1160
  ### Miscellaneous Chores
@@ -397,12 +1169,12 @@
397
1169
  * @twin.org/engine-models bumped from 0.0.2-next.6 to 0.0.2-next.7
398
1170
  * @twin.org/engine-types bumped from 0.0.2-next.6 to 0.0.2-next.7
399
1171
 
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)
1172
+ ## [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
1173
 
402
1174
 
403
1175
  ### Features
404
1176
 
405
- * update framework core ([acc0f8d](https://github.com/twinfoundation/engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
1177
+ * update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
406
1178
 
407
1179
 
408
1180
  ### Dependencies
@@ -412,12 +1184,12 @@
412
1184
  * @twin.org/engine-models bumped from 0.0.2-next.5 to 0.0.2-next.6
413
1185
  * @twin.org/engine-types bumped from 0.0.2-next.5 to 0.0.2-next.6
414
1186
 
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)
1187
+ ## [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
1188
 
417
1189
 
418
1190
  ### Features
419
1191
 
420
- * add synchronised storage support ([5142e34](https://github.com/twinfoundation/engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
1192
+ * add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
421
1193
 
422
1194
 
423
1195
  ### Dependencies
@@ -427,12 +1199,12 @@
427
1199
  * @twin.org/engine-models bumped from 0.0.2-next.4 to 0.0.2-next.5
428
1200
  * @twin.org/engine-types bumped from 0.0.2-next.4 to 0.0.2-next.5
429
1201
 
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)
1202
+ ## [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
1203
 
432
1204
 
433
1205
  ### Features
434
1206
 
435
- * add default logging component for web server ([8ad94f0](https://github.com/twinfoundation/engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
1207
+ * add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
436
1208
 
437
1209
 
438
1210
  ### Dependencies
@@ -442,7 +1214,7 @@
442
1214
  * @twin.org/engine-models bumped from 0.0.2-next.3 to 0.0.2-next.4
443
1215
  * @twin.org/engine-types bumped from 0.0.2-next.3 to 0.0.2-next.4
444
1216
 
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)
1217
+ ## [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
1218
 
447
1219
 
448
1220
  ### Miscellaneous Chores
@@ -457,12 +1229,12 @@
457
1229
  * @twin.org/engine-models bumped from 0.0.2-next.2 to 0.0.2-next.3
458
1230
  * @twin.org/engine-types bumped from 0.0.2-next.2 to 0.0.2-next.3
459
1231
 
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)
1232
+ ## [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
1233
 
462
1234
 
463
1235
  ### Features
464
1236
 
465
- * add rest clients as components ([c6f956a](https://github.com/twinfoundation/engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
1237
+ * add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
466
1238
 
467
1239
 
468
1240
  ### Dependencies
@@ -472,19 +1244,19 @@
472
1244
  * @twin.org/engine-models bumped from 0.0.2-next.1 to 0.0.2-next.2
473
1245
  * @twin.org/engine-types bumped from 0.0.2-next.1 to 0.0.2-next.2
474
1246
 
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)
1247
+ ## [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
1248
 
477
1249
 
478
1250
  ### Features
479
1251
 
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))
1252
+ * add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
1253
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1254
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1255
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1256
+ * 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))
1257
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
1258
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1259
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
488
1260
 
489
1261
 
490
1262
  ### Dependencies
@@ -499,15 +1271,15 @@
499
1271
 
500
1272
  ### Features
501
1273
 
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))
1274
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1275
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1276
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1277
+ * 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))
1278
+ * release to production ([3a4acd1](https://github.com/iotaledger/twin-engine/commit/3a4acd1f6c66b841d80b6fd3bc1a439a77148fa5))
1279
+ * release to production ([5559958](https://github.com/iotaledger/twin-engine/commit/5559958e2128e6ec3a81e779d1ebd3f370bbb081))
1280
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
1281
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1282
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
511
1283
 
512
1284
 
513
1285
  ### Dependencies
@@ -517,7 +1289,7 @@
517
1289
  * @twin.org/engine-models bumped from 0.0.1-next.84 to 0.0.1
518
1290
  * @twin.org/engine-types bumped from 0.0.1-next.84 to 0.0.1
519
1291
 
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)
1292
+ ## [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
1293
 
522
1294
 
523
1295
  ### Miscellaneous Chores
@@ -532,18 +1304,18 @@
532
1304
  * @twin.org/engine-models bumped from 0.0.1-next.83 to 0.0.1-next.84
533
1305
  * @twin.org/engine-types bumped from 0.0.1-next.83 to 0.0.1-next.84
534
1306
 
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)
1307
+ ## [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
1308
 
537
1309
 
538
1310
  ### Features
539
1311
 
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))
1312
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1313
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1314
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1315
+ * 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))
1316
+ * switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
1317
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1318
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
547
1319
 
548
1320
 
549
1321
  ### Dependencies
@@ -553,7 +1325,7 @@
553
1325
  * @twin.org/engine-models bumped from 0.0.1-next.81 to 0.0.1-next.83
554
1326
  * @twin.org/engine-types bumped from 0.0.1-next.81 to 0.0.1-next.83
555
1327
 
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)
1328
+ ## [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
1329
 
558
1330
 
559
1331
  ### Miscellaneous Chores
@@ -568,12 +1340,12 @@
568
1340
  * @twin.org/engine-models bumped from 0.0.1-next.80 to 0.0.1-next.81
569
1341
  * @twin.org/engine-types bumped from 0.0.1-next.80 to 0.0.1-next.81
570
1342
 
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)
1343
+ ## [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
1344
 
573
1345
 
574
1346
  ### Features
575
1347
 
576
- * add task scheduler ([0951107](https://github.com/twinfoundation/engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
1348
+ * add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
577
1349
 
578
1350
 
579
1351
  ### Dependencies
@@ -583,7 +1355,7 @@
583
1355
  * @twin.org/engine-models bumped from 0.0.1-next.79 to 0.0.1-next.80
584
1356
  * @twin.org/engine-types bumped from 0.0.1-next.79 to 0.0.1-next.80
585
1357
 
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)
1358
+ ## [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
1359
 
588
1360
 
589
1361
  ### Miscellaneous Chores
@@ -598,7 +1370,7 @@
598
1370
  * @twin.org/engine-models bumped from 0.0.1-next.78 to 0.0.1-next.79
599
1371
  * @twin.org/engine-types bumped from 0.0.1-next.78 to 0.0.1-next.79
600
1372
 
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)
1373
+ ## [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
1374
 
603
1375
 
604
1376
  ### Miscellaneous Chores
@@ -613,7 +1385,7 @@
613
1385
  * @twin.org/engine-models bumped from 0.0.1-next.77 to 0.0.1-next.78
614
1386
  * @twin.org/engine-types bumped from 0.0.1-next.77 to 0.0.1-next.78
615
1387
 
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)
1388
+ ## [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
1389
 
618
1390
 
619
1391
  ### Miscellaneous Chores
@@ -628,12 +1400,12 @@
628
1400
  * @twin.org/engine-models bumped from 0.0.1-next.76 to 0.0.1-next.77
629
1401
  * @twin.org/engine-types bumped from 0.0.1-next.76 to 0.0.1-next.77
630
1402
 
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)
1403
+ ## [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
1404
 
633
1405
 
634
1406
  ### Features
635
1407
 
636
- * update dependencies ([97c9f64](https://github.com/twinfoundation/engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
1408
+ * update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
637
1409
 
638
1410
 
639
1411
  ### Dependencies
@@ -643,12 +1415,12 @@
643
1415
  * @twin.org/engine-models bumped from 0.0.1-next.75 to 0.0.1-next.76
644
1416
  * @twin.org/engine-types bumped from 0.0.1-next.75 to 0.0.1-next.76
645
1417
 
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)
1418
+ ## [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
1419
 
648
1420
 
649
1421
  ### Features
650
1422
 
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))
1423
+ * 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
1424
 
653
1425
 
654
1426
  ### Dependencies
@@ -658,12 +1430,12 @@
658
1430
  * @twin.org/engine-models bumped from 0.0.1-next.74 to 0.0.1-next.75
659
1431
  * @twin.org/engine-types bumped from 0.0.1-next.74 to 0.0.1-next.75
660
1432
 
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)
1433
+ ## [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
1434
 
663
1435
 
664
1436
  ### Features
665
1437
 
666
- * add federated catalogue ([1b15dd0](https://github.com/twinfoundation/engine/commit/1b15dd059a11446457651c411a73145fab37f025))
1438
+ * add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
667
1439
 
668
1440
 
669
1441
  ### Dependencies
@@ -673,7 +1445,7 @@
673
1445
  * @twin.org/engine-models bumped from 0.0.1-next.73 to 0.0.1-next.74
674
1446
  * @twin.org/engine-types bumped from 0.0.1-next.73 to 0.0.1-next.74
675
1447
 
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)
1448
+ ## [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
1449
 
678
1450
 
679
1451
  ### Miscellaneous Chores
@@ -688,13 +1460,13 @@
688
1460
  * @twin.org/engine-models bumped from 0.0.1-next.72 to 0.0.1-next.73
689
1461
  * @twin.org/engine-types bumped from 0.0.1-next.72 to 0.0.1-next.73
690
1462
 
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)
1463
+ ## [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
1464
 
693
1465
 
694
1466
  ### Features
695
1467
 
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))
1468
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1469
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
698
1470
 
699
1471
 
700
1472
  ### Dependencies
@@ -704,7 +1476,7 @@
704
1476
  * @twin.org/engine-models bumped from 0.0.1-next.71 to 0.0.1-next.72
705
1477
  * @twin.org/engine-types bumped from 0.0.1-next.71 to 0.0.1-next.72
706
1478
 
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)
1479
+ ## [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
1480
 
709
1481
 
710
1482
  ### Miscellaneous Chores
@@ -719,7 +1491,7 @@
719
1491
  * @twin.org/engine-models bumped from 0.0.1-next.70 to 0.0.1-next.71
720
1492
  * @twin.org/engine-types bumped from 0.0.1-next.70 to 0.0.1-next.71
721
1493
 
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)
1494
+ ## [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
1495
 
724
1496
 
725
1497
  ### Miscellaneous Chores
@@ -734,7 +1506,7 @@
734
1506
  * @twin.org/engine-models bumped from 0.0.1-next.69 to 0.0.1-next.70
735
1507
  * @twin.org/engine-types bumped from 0.0.1-next.69 to 0.0.1-next.70
736
1508
 
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)
1509
+ ## [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
1510
 
739
1511
 
740
1512
  ### Miscellaneous Chores
@@ -749,12 +1521,12 @@
749
1521
  * @twin.org/engine-models bumped from 0.0.1-next.68 to 0.0.1-next.69
750
1522
  * @twin.org/engine-types bumped from 0.0.1-next.68 to 0.0.1-next.69
751
1523
 
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)
1524
+ ## [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
1525
 
754
1526
 
755
1527
  ### Features
756
1528
 
757
- * use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
1529
+ * use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
758
1530
 
759
1531
 
760
1532
  ### Dependencies
@@ -764,12 +1536,12 @@
764
1536
  * @twin.org/engine-models bumped from 0.0.1-next.67 to 0.0.1-next.68
765
1537
  * @twin.org/engine-types bumped from 0.0.1-next.67 to 0.0.1-next.68
766
1538
 
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)
1539
+ ## [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
1540
 
769
1541
 
770
1542
  ### Features
771
1543
 
772
- * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
1544
+ * add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
773
1545
 
774
1546
 
775
1547
  ### Dependencies