@twin.org/entity-storage-service 0.0.3-next.9 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/es/entities/schemaVersion.js +39 -0
  2. package/dist/es/entities/schemaVersion.js.map +1 -0
  3. package/dist/es/entityStorageRoutes.js +176 -4
  4. package/dist/es/entityStorageRoutes.js.map +1 -1
  5. package/dist/es/entityStorageService.js +44 -49
  6. package/dist/es/entityStorageService.js.map +1 -1
  7. package/dist/es/index.js +6 -1
  8. package/dist/es/index.js.map +1 -1
  9. package/dist/es/models/IEntityStorageRoutesExamples.js.map +1 -1
  10. package/dist/es/models/ISchemaVersionServiceConfig.js +4 -0
  11. package/dist/es/models/ISchemaVersionServiceConfig.js.map +1 -0
  12. package/dist/es/models/ISchemaVersionServiceConstructorOptions.js +2 -0
  13. package/dist/es/models/ISchemaVersionServiceConstructorOptions.js.map +1 -0
  14. package/dist/es/schema.js +11 -0
  15. package/dist/es/schema.js.map +1 -0
  16. package/dist/es/schemaVersionService.js +356 -0
  17. package/dist/es/schemaVersionService.js.map +1 -0
  18. package/dist/types/entities/schemaVersion.d.ts +19 -0
  19. package/dist/types/entityStorageRoutes.d.ts +33 -1
  20. package/dist/types/entityStorageService.d.ts +38 -3
  21. package/dist/types/index.d.ts +6 -1
  22. package/dist/types/models/IEntityStorageRoutesExamples.d.ts +8 -1
  23. package/dist/types/models/ISchemaVersionServiceConfig.d.ts +9 -0
  24. package/dist/types/models/ISchemaVersionServiceConstructorOptions.d.ts +15 -0
  25. package/dist/types/schema.d.ts +4 -0
  26. package/dist/types/schemaVersionService.d.ts +52 -0
  27. package/docs/changelog.md +562 -52
  28. package/docs/open-api/spec.json +439 -1
  29. package/docs/reference/classes/EntityStorageService.md +117 -3
  30. package/docs/reference/classes/SchemaVersion.md +39 -0
  31. package/docs/reference/classes/SchemaVersionService.md +103 -0
  32. package/docs/reference/functions/entityStorageCount.md +31 -0
  33. package/docs/reference/functions/entityStorageEmpty.md +31 -0
  34. package/docs/reference/functions/entityStorageRemoveBatch.md +31 -0
  35. package/docs/reference/functions/entityStorageSetBatch.md +31 -0
  36. package/docs/reference/functions/initSchema.md +9 -0
  37. package/docs/reference/index.md +9 -0
  38. package/docs/reference/interfaces/IEntityStorageRoutesExamples.md +16 -0
  39. package/docs/reference/interfaces/ISchemaVersionServiceConfig.md +11 -0
  40. package/docs/reference/interfaces/ISchemaVersionServiceConstructorOptions.md +25 -0
  41. package/locales/en.json +17 -2
  42. package/package.json +10 -9
package/docs/changelog.md CHANGED
@@ -1,6 +1,516 @@
1
1
  # Changelog
2
2
 
3
- ## [0.0.3-next.9](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.8...entity-storage-service-v0.0.3-next.9) (2026-04-22)
3
+ ## [0.9.0](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.9.0...entity-storage-service-v0.9.0) (2026-06-24)
4
+
5
+
6
+ ### Features
7
+
8
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
9
+ * release to production ([a309051](https://github.com/iotaledger/twin-entity-storage/commit/a3090519adebf7943232b4df12e4c6bd5afe7eed))
10
+ * release to production ([#150](https://github.com/iotaledger/twin-entity-storage/issues/150)) ([4275601](https://github.com/iotaledger/twin-entity-storage/commit/42756015e853a837240f8aafdb0a8ebce2d836c1))
11
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
12
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
18
+
19
+ ## [0.9.0-next.1](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.9.0-next.0...entity-storage-service-v0.9.0-next.1) (2026-06-23)
20
+
21
+
22
+ ### Features
23
+
24
+ * add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
25
+ * add ISchemaMigration chain, SchemaVersionMigrator runner and version store ([#110](https://github.com/iotaledger/twin-entity-storage/issues/110)) ([2dac924](https://github.com/iotaledger/twin-entity-storage/commit/2dac9244a752cb58304d1649ff03c3a2469783dd))
26
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
27
+ * add SchemaVersionService for automatic schema migrations ([#118](https://github.com/iotaledger/twin-entity-storage/issues/118)) ([b2ad843](https://github.com/iotaledger/twin-entity-storage/commit/b2ad8435185c53304aca99eb4d98582009b3902d))
28
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
29
+ * adding schema migration functionality to all the connectors ([#85](https://github.com/iotaledger/twin-entity-storage/issues/85)) ([fd1555a](https://github.com/iotaledger/twin-entity-storage/commit/fd1555a34380158214a577586dafae821e72a578))
30
+ * entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
31
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
32
+ * migration progress ([#121](https://github.com/iotaledger/twin-entity-storage/issues/121)) ([d032162](https://github.com/iotaledger/twin-entity-storage/commit/d032162768b6b7d4ccca7e39b80f8bc3ba46440e))
33
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
34
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
35
+ * typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
36
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
37
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
38
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
39
+
40
+
41
+ ### Bug Fixes
42
+
43
+ * api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
44
+ * memory entity storage storageKey for uniqueness ([6fe8663](https://github.com/iotaledger/twin-entity-storage/commit/6fe8663e97cf0a151fd26b8fea0c4ef4b971f694))
45
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
46
+ * tests ([5e79bf4](https://github.com/iotaledger/twin-entity-storage/commit/5e79bf4aa1bf9ad0161c8c94f1a1968f947705a8))
47
+
48
+
49
+ ### Dependencies
50
+
51
+ * The following workspace dependencies were updated
52
+ * dependencies
53
+ * @twin.org/entity-storage-models bumped from 0.9.0-next.0 to 0.9.0-next.1
54
+ * devDependencies
55
+ * @twin.org/entity-storage-connector-memory bumped from 0.9.0-next.0 to 0.9.0-next.1
56
+
57
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.32...entity-storage-service-v0.0.3-next.33) (2026-06-19)
58
+
59
+
60
+ ### Miscellaneous Chores
61
+
62
+ * **entity-storage-service:** Synchronize repo versions
63
+
64
+
65
+ ### Dependencies
66
+
67
+ * The following workspace dependencies were updated
68
+ * dependencies
69
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.32 to 0.0.3-next.33
70
+ * devDependencies
71
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.32 to 0.0.3-next.33
72
+
73
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.31...entity-storage-service-v0.0.3-next.32) (2026-06-16)
74
+
75
+
76
+ ### Bug Fixes
77
+
78
+ * memory entity storage storageKey for uniqueness ([6fe8663](https://github.com/iotaledger/twin-entity-storage/commit/6fe8663e97cf0a151fd26b8fea0c4ef4b971f694))
79
+
80
+
81
+ ### Dependencies
82
+
83
+ * The following workspace dependencies were updated
84
+ * dependencies
85
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.31 to 0.0.3-next.32
86
+ * devDependencies
87
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.31 to 0.0.3-next.32
88
+
89
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.30...entity-storage-service-v0.0.3-next.31) (2026-06-15)
90
+
91
+
92
+ ### Miscellaneous Chores
93
+
94
+ * **entity-storage-service:** Synchronize repo versions
95
+
96
+
97
+ ### Dependencies
98
+
99
+ * The following workspace dependencies were updated
100
+ * dependencies
101
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.30 to 0.0.3-next.31
102
+ * devDependencies
103
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.30 to 0.0.3-next.31
104
+
105
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.29...entity-storage-service-v0.0.3-next.30) (2026-06-15)
106
+
107
+
108
+ ### Features
109
+
110
+ * add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
111
+ * add ISchemaMigration chain, SchemaVersionMigrator runner and version store ([#110](https://github.com/iotaledger/twin-entity-storage/issues/110)) ([2dac924](https://github.com/iotaledger/twin-entity-storage/commit/2dac9244a752cb58304d1649ff03c3a2469783dd))
112
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
113
+ * add SchemaVersionService for automatic schema migrations ([#118](https://github.com/iotaledger/twin-entity-storage/issues/118)) ([b2ad843](https://github.com/iotaledger/twin-entity-storage/commit/b2ad8435185c53304aca99eb4d98582009b3902d))
114
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
115
+ * adding schema migration functionality to all the connectors ([#85](https://github.com/iotaledger/twin-entity-storage/issues/85)) ([fd1555a](https://github.com/iotaledger/twin-entity-storage/commit/fd1555a34380158214a577586dafae821e72a578))
116
+ * entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
117
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
118
+ * migration progress ([#121](https://github.com/iotaledger/twin-entity-storage/issues/121)) ([d032162](https://github.com/iotaledger/twin-entity-storage/commit/d032162768b6b7d4ccca7e39b80f8bc3ba46440e))
119
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
120
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
121
+ * typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
122
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
123
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
124
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
125
+
126
+
127
+ ### Bug Fixes
128
+
129
+ * api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
130
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
131
+ * tests ([5e79bf4](https://github.com/iotaledger/twin-entity-storage/commit/5e79bf4aa1bf9ad0161c8c94f1a1968f947705a8))
132
+
133
+
134
+ ### Dependencies
135
+
136
+ * The following workspace dependencies were updated
137
+ * dependencies
138
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.29 to 0.0.3-next.30
139
+ * devDependencies
140
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.29 to 0.0.3-next.30
141
+
142
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.28...entity-storage-service-v0.0.3-next.29) (2026-06-15)
143
+
144
+
145
+ ### Miscellaneous Chores
146
+
147
+ * **entity-storage-service:** Synchronize repo versions
148
+
149
+
150
+ ### Dependencies
151
+
152
+ * The following workspace dependencies were updated
153
+ * dependencies
154
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.28 to 0.0.3-next.29
155
+ * devDependencies
156
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.28 to 0.0.3-next.29
157
+
158
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.27...entity-storage-service-v0.0.3-next.28) (2026-06-12)
159
+
160
+
161
+ ### Miscellaneous Chores
162
+
163
+ * **entity-storage-service:** Synchronize repo versions
164
+
165
+
166
+ ### Dependencies
167
+
168
+ * The following workspace dependencies were updated
169
+ * dependencies
170
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.27 to 0.0.3-next.28
171
+ * devDependencies
172
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.27 to 0.0.3-next.28
173
+
174
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.26...entity-storage-service-v0.0.3-next.27) (2026-06-11)
175
+
176
+
177
+ ### Miscellaneous Chores
178
+
179
+ * **entity-storage-service:** Synchronize repo versions
180
+
181
+
182
+ ### Dependencies
183
+
184
+ * The following workspace dependencies were updated
185
+ * dependencies
186
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.26 to 0.0.3-next.27
187
+ * devDependencies
188
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.26 to 0.0.3-next.27
189
+
190
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.25...entity-storage-service-v0.0.3-next.26) (2026-06-11)
191
+
192
+
193
+ ### Miscellaneous Chores
194
+
195
+ * **entity-storage-service:** Synchronize repo versions
196
+
197
+
198
+ ### Dependencies
199
+
200
+ * The following workspace dependencies were updated
201
+ * dependencies
202
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.25 to 0.0.3-next.26
203
+ * devDependencies
204
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.25 to 0.0.3-next.26
205
+
206
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.24...entity-storage-service-v0.0.3-next.25) (2026-06-09)
207
+
208
+
209
+ ### Features
210
+
211
+ * migration progress ([#121](https://github.com/iotaledger/twin-entity-storage/issues/121)) ([d032162](https://github.com/iotaledger/twin-entity-storage/commit/d032162768b6b7d4ccca7e39b80f8bc3ba46440e))
212
+
213
+
214
+ ### Dependencies
215
+
216
+ * The following workspace dependencies were updated
217
+ * dependencies
218
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.24 to 0.0.3-next.25
219
+ * devDependencies
220
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.24 to 0.0.3-next.25
221
+
222
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.23...entity-storage-service-v0.0.3-next.24) (2026-06-08)
223
+
224
+
225
+ ### Features
226
+
227
+ * add SchemaVersionService for automatic schema migrations ([#118](https://github.com/iotaledger/twin-entity-storage/issues/118)) ([b2ad843](https://github.com/iotaledger/twin-entity-storage/commit/b2ad8435185c53304aca99eb4d98582009b3902d))
228
+
229
+
230
+ ### Dependencies
231
+
232
+ * The following workspace dependencies were updated
233
+ * dependencies
234
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.23 to 0.0.3-next.24
235
+ * devDependencies
236
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.23 to 0.0.3-next.24
237
+
238
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.22...entity-storage-service-v0.0.3-next.23) (2026-06-08)
239
+
240
+
241
+ ### Miscellaneous Chores
242
+
243
+ * **entity-storage-service:** Synchronize repo versions
244
+
245
+
246
+ ### Dependencies
247
+
248
+ * The following workspace dependencies were updated
249
+ * dependencies
250
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.22 to 0.0.3-next.23
251
+ * devDependencies
252
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.22 to 0.0.3-next.23
253
+
254
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.21...entity-storage-service-v0.0.3-next.22) (2026-06-08)
255
+
256
+
257
+ ### Features
258
+
259
+ * add ISchemaMigration chain, SchemaVersionMigrator runner and version store ([#110](https://github.com/iotaledger/twin-entity-storage/issues/110)) ([2dac924](https://github.com/iotaledger/twin-entity-storage/commit/2dac9244a752cb58304d1649ff03c3a2469783dd))
260
+
261
+
262
+ ### Dependencies
263
+
264
+ * The following workspace dependencies were updated
265
+ * dependencies
266
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.21 to 0.0.3-next.22
267
+ * devDependencies
268
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.21 to 0.0.3-next.22
269
+
270
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.20...entity-storage-service-v0.0.3-next.21) (2026-06-01)
271
+
272
+
273
+ ### Miscellaneous Chores
274
+
275
+ * **entity-storage-service:** Synchronize repo versions
276
+
277
+
278
+ ### Dependencies
279
+
280
+ * The following workspace dependencies were updated
281
+ * dependencies
282
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.20 to 0.0.3-next.21
283
+ * devDependencies
284
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.20 to 0.0.3-next.21
285
+
286
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.19...entity-storage-service-v0.0.3-next.20) (2026-06-01)
287
+
288
+
289
+ ### Features
290
+
291
+ * add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
292
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
293
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
294
+ * adding schema migration functionality to all the connectors ([#85](https://github.com/iotaledger/twin-entity-storage/issues/85)) ([fd1555a](https://github.com/iotaledger/twin-entity-storage/commit/fd1555a34380158214a577586dafae821e72a578))
295
+ * entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
296
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
297
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
298
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
299
+ * typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
300
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
301
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
302
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
303
+
304
+
305
+ ### Bug Fixes
306
+
307
+ * api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
308
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
309
+
310
+
311
+ ### Dependencies
312
+
313
+ * The following workspace dependencies were updated
314
+ * dependencies
315
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.19 to 0.0.3-next.20
316
+ * devDependencies
317
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.19 to 0.0.3-next.20
318
+
319
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.18...entity-storage-service-v0.0.3-next.19) (2026-06-01)
320
+
321
+
322
+ ### Features
323
+
324
+ * add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
325
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
326
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
327
+ * adding schema migration functionality to all the connectors ([#85](https://github.com/iotaledger/twin-entity-storage/issues/85)) ([fd1555a](https://github.com/iotaledger/twin-entity-storage/commit/fd1555a34380158214a577586dafae821e72a578))
328
+ * entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
329
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
330
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
331
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
332
+ * typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
333
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
334
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
335
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
336
+
337
+
338
+ ### Bug Fixes
339
+
340
+ * api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
341
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
342
+
343
+
344
+ ### Dependencies
345
+
346
+ * The following workspace dependencies were updated
347
+ * dependencies
348
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.18 to 0.0.3-next.19
349
+ * devDependencies
350
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.18 to 0.0.3-next.19
351
+
352
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.17...entity-storage-service-v0.0.3-next.18) (2026-06-01)
353
+
354
+
355
+ ### Features
356
+
357
+ * add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
358
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
359
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
360
+ * adding schema migration functionality to all the connectors ([#85](https://github.com/iotaledger/twin-entity-storage/issues/85)) ([fd1555a](https://github.com/iotaledger/twin-entity-storage/commit/fd1555a34380158214a577586dafae821e72a578))
361
+ * entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
362
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
363
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
364
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
365
+ * typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
366
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
367
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
368
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
369
+
370
+
371
+ ### Bug Fixes
372
+
373
+ * api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
374
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
375
+
376
+
377
+ ### Dependencies
378
+
379
+ * The following workspace dependencies were updated
380
+ * dependencies
381
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.17 to 0.0.3-next.18
382
+ * devDependencies
383
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.17 to 0.0.3-next.18
384
+
385
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.16...entity-storage-service-v0.0.3-next.17) (2026-06-01)
386
+
387
+
388
+ ### Miscellaneous Chores
389
+
390
+ * **entity-storage-service:** Synchronize repo versions
391
+
392
+
393
+ ### Dependencies
394
+
395
+ * The following workspace dependencies were updated
396
+ * dependencies
397
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.16 to 0.0.3-next.17
398
+ * devDependencies
399
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.16 to 0.0.3-next.17
400
+
401
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.15...entity-storage-service-v0.0.3-next.16) (2026-05-20)
402
+
403
+
404
+ ### Miscellaneous Chores
405
+
406
+ * **entity-storage-service:** Synchronize repo versions
407
+
408
+
409
+ ### Dependencies
410
+
411
+ * The following workspace dependencies were updated
412
+ * dependencies
413
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.15 to 0.0.3-next.16
414
+ * devDependencies
415
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.15 to 0.0.3-next.16
416
+
417
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.14...entity-storage-service-v0.0.3-next.15) (2026-05-19)
418
+
419
+
420
+ ### Miscellaneous Chores
421
+
422
+ * **entity-storage-service:** Synchronize repo versions
423
+
424
+
425
+ ### Dependencies
426
+
427
+ * The following workspace dependencies were updated
428
+ * dependencies
429
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.14 to 0.0.3-next.15
430
+ * devDependencies
431
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.14 to 0.0.3-next.15
432
+
433
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.13...entity-storage-service-v0.0.3-next.14) (2026-05-19)
434
+
435
+
436
+ ### Features
437
+
438
+ * adding schema migration functionality to all the connectors ([#85](https://github.com/iotaledger/twin-entity-storage/issues/85)) ([fd1555a](https://github.com/iotaledger/twin-entity-storage/commit/fd1555a34380158214a577586dafae821e72a578))
439
+
440
+
441
+ ### Dependencies
442
+
443
+ * The following workspace dependencies were updated
444
+ * dependencies
445
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.13 to 0.0.3-next.14
446
+ * devDependencies
447
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.13 to 0.0.3-next.14
448
+
449
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.12...entity-storage-service-v0.0.3-next.13) (2026-05-13)
450
+
451
+
452
+ ### Miscellaneous Chores
453
+
454
+ * **entity-storage-service:** Synchronize repo versions
455
+
456
+
457
+ ### Dependencies
458
+
459
+ * The following workspace dependencies were updated
460
+ * dependencies
461
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.12 to 0.0.3-next.13
462
+ * devDependencies
463
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.12 to 0.0.3-next.13
464
+
465
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.11...entity-storage-service-v0.0.3-next.12) (2026-05-11)
466
+
467
+
468
+ ### Features
469
+
470
+ * typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
471
+
472
+
473
+ ### Dependencies
474
+
475
+ * The following workspace dependencies were updated
476
+ * dependencies
477
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.11 to 0.0.3-next.12
478
+ * devDependencies
479
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.11 to 0.0.3-next.12
480
+
481
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.10...entity-storage-service-v0.0.3-next.11) (2026-05-07)
482
+
483
+
484
+ ### Miscellaneous Chores
485
+
486
+ * **entity-storage-service:** Synchronize repo versions
487
+
488
+
489
+ ### Dependencies
490
+
491
+ * The following workspace dependencies were updated
492
+ * dependencies
493
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.10 to 0.0.3-next.11
494
+ * devDependencies
495
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.10 to 0.0.3-next.11
496
+
497
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.9...entity-storage-service-v0.0.3-next.10) (2026-05-07)
498
+
499
+
500
+ ### Features
501
+
502
+ * entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
503
+
504
+
505
+ ### Dependencies
506
+
507
+ * The following workspace dependencies were updated
508
+ * dependencies
509
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.9 to 0.0.3-next.10
510
+ * devDependencies
511
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.9 to 0.0.3-next.10
512
+
513
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.8...entity-storage-service-v0.0.3-next.9) (2026-04-22)
4
514
 
5
515
 
6
516
  ### Miscellaneous Chores
@@ -16,7 +526,7 @@
16
526
  * devDependencies
17
527
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.8 to 0.0.3-next.9
18
528
 
19
- ## [0.0.3-next.8](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.7...entity-storage-service-v0.0.3-next.8) (2026-03-20)
529
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.7...entity-storage-service-v0.0.3-next.8) (2026-03-20)
20
530
 
21
531
 
22
532
  ### Miscellaneous Chores
@@ -32,7 +542,7 @@
32
542
  * devDependencies
33
543
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.7 to 0.0.3-next.8
34
544
 
35
- ## [0.0.3-next.7](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.6...entity-storage-service-v0.0.3-next.7) (2026-03-13)
545
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.6...entity-storage-service-v0.0.3-next.7) (2026-03-13)
36
546
 
37
547
 
38
548
  ### Miscellaneous Chores
@@ -48,7 +558,7 @@
48
558
  * devDependencies
49
559
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.6 to 0.0.3-next.7
50
560
 
51
- ## [0.0.3-next.6](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.5...entity-storage-service-v0.0.3-next.6) (2026-01-21)
561
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.5...entity-storage-service-v0.0.3-next.6) (2026-01-21)
52
562
 
53
563
 
54
564
  ### Miscellaneous Chores
@@ -64,7 +574,7 @@
64
574
  * devDependencies
65
575
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.5 to 0.0.3-next.6
66
576
 
67
- ## [0.0.3-next.5](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.4...entity-storage-service-v0.0.3-next.5) (2026-01-06)
577
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.4...entity-storage-service-v0.0.3-next.5) (2026-01-06)
68
578
 
69
579
 
70
580
  ### Miscellaneous Chores
@@ -80,7 +590,7 @@
80
590
  * devDependencies
81
591
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.4 to 0.0.3-next.5
82
592
 
83
- ## [0.0.3-next.4](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.3...entity-storage-service-v0.0.3-next.4) (2025-12-03)
593
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.3...entity-storage-service-v0.0.3-next.4) (2025-12-03)
84
594
 
85
595
 
86
596
  ### Miscellaneous Chores
@@ -96,7 +606,7 @@
96
606
  * devDependencies
97
607
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.3 to 0.0.3-next.4
98
608
 
99
- ## [0.0.3-next.3](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.2...entity-storage-service-v0.0.3-next.3) (2025-11-26)
609
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.2...entity-storage-service-v0.0.3-next.3) (2025-11-26)
100
610
 
101
611
 
102
612
  ### Miscellaneous Chores
@@ -112,12 +622,12 @@
112
622
  * devDependencies
113
623
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.2 to 0.0.3-next.3
114
624
 
115
- ## [0.0.3-next.2](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.1...entity-storage-service-v0.0.3-next.2) (2025-11-13)
625
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.1...entity-storage-service-v0.0.3-next.2) (2025-11-13)
116
626
 
117
627
 
118
628
  ### Bug Fixes
119
629
 
120
- * api docs ([4228736](https://github.com/twinfoundation/entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
630
+ * api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
121
631
 
122
632
 
123
633
  ### Dependencies
@@ -128,25 +638,25 @@
128
638
  * devDependencies
129
639
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.1 to 0.0.3-next.2
130
640
 
131
- ## [0.0.3-next.1](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.3-next.0...entity-storage-service-v0.0.3-next.1) (2025-11-10)
641
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.0...entity-storage-service-v0.0.3-next.1) (2025-11-10)
132
642
 
133
643
 
134
644
  ### Features
135
645
 
136
- * add context id features ([#55](https://github.com/twinfoundation/entity-storage/issues/55)) ([99c15a2](https://github.com/twinfoundation/entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
137
- * add production release automation ([1eb4c8e](https://github.com/twinfoundation/entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
138
- * add validate-locales ([e66ef0d](https://github.com/twinfoundation/entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
139
- * eslint migration to flat config ([f033b64](https://github.com/twinfoundation/entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
140
- * remove includeNodeIdentity flag ([d88d1d0](https://github.com/twinfoundation/entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
141
- * synchronised storage ([#44](https://github.com/twinfoundation/entity-storage/issues/44)) ([94e10e2](https://github.com/twinfoundation/entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
142
- * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
143
- * update framework core ([b59a380](https://github.com/twinfoundation/entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
144
- * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
646
+ * add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
647
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
648
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
649
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
650
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
651
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
652
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
653
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
654
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
145
655
 
146
656
 
147
657
  ### Bug Fixes
148
658
 
149
- * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
659
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
150
660
 
151
661
 
152
662
  ### Dependencies
@@ -157,12 +667,12 @@
157
667
  * devDependencies
158
668
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.0 to 0.0.3-next.1
159
669
 
160
- ## [0.0.2-next.10](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.9...entity-storage-service-v0.0.2-next.10) (2025-10-09)
670
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.9...entity-storage-service-v0.0.2-next.10) (2025-10-09)
161
671
 
162
672
 
163
673
  ### Features
164
674
 
165
- * add validate-locales ([e66ef0d](https://github.com/twinfoundation/entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
675
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
166
676
 
167
677
 
168
678
  ### Dependencies
@@ -173,7 +683,7 @@
173
683
  * devDependencies
174
684
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.9 to 0.0.2-next.10
175
685
 
176
- ## [0.0.2-next.9](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.8...entity-storage-service-v0.0.2-next.9) (2025-10-02)
686
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.8...entity-storage-service-v0.0.2-next.9) (2025-10-02)
177
687
 
178
688
 
179
689
  ### Miscellaneous Chores
@@ -189,12 +699,12 @@
189
699
  * devDependencies
190
700
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.8 to 0.0.2-next.9
191
701
 
192
- ## [0.0.2-next.8](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.7...entity-storage-service-v0.0.2-next.8) (2025-08-29)
702
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.7...entity-storage-service-v0.0.2-next.8) (2025-08-29)
193
703
 
194
704
 
195
705
  ### Features
196
706
 
197
- * eslint migration to flat config ([f033b64](https://github.com/twinfoundation/entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
707
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
198
708
 
199
709
 
200
710
  ### Dependencies
@@ -205,7 +715,7 @@
205
715
  * devDependencies
206
716
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.7 to 0.0.2-next.8
207
717
 
208
- ## [0.0.2-next.7](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.6...entity-storage-service-v0.0.2-next.7) (2025-08-20)
718
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.6...entity-storage-service-v0.0.2-next.7) (2025-08-20)
209
719
 
210
720
 
211
721
  ### Miscellaneous Chores
@@ -221,12 +731,12 @@
221
731
  * devDependencies
222
732
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.6 to 0.0.2-next.7
223
733
 
224
- ## [0.0.2-next.6](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.5...entity-storage-service-v0.0.2-next.6) (2025-08-19)
734
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.5...entity-storage-service-v0.0.2-next.6) (2025-08-19)
225
735
 
226
736
 
227
737
  ### Features
228
738
 
229
- * update framework core ([b59a380](https://github.com/twinfoundation/entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
739
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
230
740
 
231
741
 
232
742
  ### Dependencies
@@ -237,7 +747,7 @@
237
747
  * devDependencies
238
748
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.5 to 0.0.2-next.6
239
749
 
240
- ## [0.0.2-next.5](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.4...entity-storage-service-v0.0.2-next.5) (2025-08-11)
750
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.4...entity-storage-service-v0.0.2-next.5) (2025-08-11)
241
751
 
242
752
 
243
753
  ### Miscellaneous Chores
@@ -253,7 +763,7 @@
253
763
  * devDependencies
254
764
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.4 to 0.0.2-next.5
255
765
 
256
- ## [0.0.2-next.4](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.3...entity-storage-service-v0.0.2-next.4) (2025-08-08)
766
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.3...entity-storage-service-v0.0.2-next.4) (2025-08-08)
257
767
 
258
768
 
259
769
  ### Miscellaneous Chores
@@ -269,7 +779,7 @@
269
779
  * devDependencies
270
780
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.3 to 0.0.2-next.4
271
781
 
272
- ## [0.0.2-next.3](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.2...entity-storage-service-v0.0.2-next.3) (2025-07-25)
782
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.2...entity-storage-service-v0.0.2-next.3) (2025-07-25)
273
783
 
274
784
 
275
785
  ### Miscellaneous Chores
@@ -285,13 +795,13 @@
285
795
  * devDependencies
286
796
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.2 to 0.0.2-next.3
287
797
 
288
- ## [0.0.2-next.2](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.1...entity-storage-service-v0.0.2-next.2) (2025-07-24)
798
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.1...entity-storage-service-v0.0.2-next.2) (2025-07-24)
289
799
 
290
800
 
291
801
  ### Features
292
802
 
293
- * remove includeNodeIdentity flag ([d88d1d0](https://github.com/twinfoundation/entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
294
- * synchronised storage ([#44](https://github.com/twinfoundation/entity-storage/issues/44)) ([94e10e2](https://github.com/twinfoundation/entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
803
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
804
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
295
805
 
296
806
 
297
807
  ### Dependencies
@@ -302,19 +812,19 @@
302
812
  * devDependencies
303
813
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.1 to 0.0.2-next.2
304
814
 
305
- ## [0.0.2-next.1](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.0...entity-storage-service-v0.0.2-next.1) (2025-07-17)
815
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.0...entity-storage-service-v0.0.2-next.1) (2025-07-17)
306
816
 
307
817
 
308
818
  ### Features
309
819
 
310
- * add production release automation ([1eb4c8e](https://github.com/twinfoundation/entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
311
- * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
312
- * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
820
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
821
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
822
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
313
823
 
314
824
 
315
825
  ### Bug Fixes
316
826
 
317
- * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
827
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
318
828
 
319
829
 
320
830
  ### Dependencies
@@ -330,15 +840,15 @@
330
840
 
331
841
  ### Features
332
842
 
333
- * add production release automation ([1eb4c8e](https://github.com/twinfoundation/entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
334
- * release to production ([a309051](https://github.com/twinfoundation/entity-storage/commit/a3090519adebf7943232b4df12e4c6bd5afe7eed))
335
- * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
336
- * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
843
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
844
+ * release to production ([a309051](https://github.com/iotaledger/twin-entity-storage/commit/a3090519adebf7943232b4df12e4c6bd5afe7eed))
845
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
846
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
337
847
 
338
848
 
339
849
  ### Bug Fixes
340
850
 
341
- * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
851
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
342
852
 
343
853
 
344
854
  ### Dependencies
@@ -349,12 +859,12 @@
349
859
  * devDependencies
350
860
  * @twin.org/entity-storage-connector-memory bumped from ^0.0.0 to ^0.0.1
351
861
 
352
- ## [0.0.1-next.31](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.1-next.30...entity-storage-service-v0.0.1-next.31) (2025-06-20)
862
+ ## [0.0.1-next.31](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.1-next.30...entity-storage-service-v0.0.1-next.31) (2025-06-20)
353
863
 
354
864
 
355
865
  ### Bug Fixes
356
866
 
357
- * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
867
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
358
868
 
359
869
 
360
870
  ### Dependencies
@@ -365,12 +875,12 @@
365
875
  * devDependencies
366
876
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.30 to 0.0.1-next.31
367
877
 
368
- ## [0.0.1-next.30](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.1-next.29...entity-storage-service-v0.0.1-next.30) (2025-06-12)
878
+ ## [0.0.1-next.30](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.1-next.29...entity-storage-service-v0.0.1-next.30) (2025-06-12)
369
879
 
370
880
 
371
881
  ### Features
372
882
 
373
- * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
883
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
374
884
 
375
885
 
376
886
  ### Dependencies
@@ -381,12 +891,12 @@
381
891
  * devDependencies
382
892
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.29 to 0.0.1-next.30
383
893
 
384
- ## [0.0.1-next.29](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.1-next.28...entity-storage-service-v0.0.1-next.29) (2025-04-17)
894
+ ## [0.0.1-next.29](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.1-next.28...entity-storage-service-v0.0.1-next.29) (2025-04-17)
385
895
 
386
896
 
387
897
  ### Features
388
898
 
389
- * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
899
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
390
900
 
391
901
 
392
902
  ### Dependencies
@@ -397,7 +907,7 @@
397
907
  * devDependencies
398
908
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.28 to 0.0.1-next.29
399
909
 
400
- ## [0.0.1-next.28](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.1-next.27...entity-storage-service-v0.0.1-next.28) (2025-04-09)
910
+ ## [0.0.1-next.28](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.1-next.27...entity-storage-service-v0.0.1-next.28) (2025-04-09)
401
911
 
402
912
 
403
913
  ### Miscellaneous Chores
@@ -413,7 +923,7 @@
413
923
  * devDependencies
414
924
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.27 to 0.0.1-next.28
415
925
 
416
- ## [0.0.1-next.27](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.1-next.26...entity-storage-service-v0.0.1-next.27) (2025-03-28)
926
+ ## [0.0.1-next.27](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.1-next.26...entity-storage-service-v0.0.1-next.27) (2025-03-28)
417
927
 
418
928
 
419
929
  ### Miscellaneous Chores