@twin.org/entity-storage-service 0.0.3-next.3 → 0.0.3-next.31

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 (45) hide show
  1. package/README.md +2 -2
  2. package/dist/es/entities/schemaVersion.js +39 -0
  3. package/dist/es/entities/schemaVersion.js.map +1 -0
  4. package/dist/es/entityStorageRoutes.js +176 -4
  5. package/dist/es/entityStorageRoutes.js.map +1 -1
  6. package/dist/es/entityStorageService.js +44 -49
  7. package/dist/es/entityStorageService.js.map +1 -1
  8. package/dist/es/index.js +6 -1
  9. package/dist/es/index.js.map +1 -1
  10. package/dist/es/models/IEntityStorageRoutesExamples.js.map +1 -1
  11. package/dist/es/models/ISchemaVersionServiceConfig.js +4 -0
  12. package/dist/es/models/ISchemaVersionServiceConfig.js.map +1 -0
  13. package/dist/es/models/ISchemaVersionServiceConstructorOptions.js +2 -0
  14. package/dist/es/models/ISchemaVersionServiceConstructorOptions.js.map +1 -0
  15. package/dist/es/schema.js +11 -0
  16. package/dist/es/schema.js.map +1 -0
  17. package/dist/es/schemaVersionService.js +356 -0
  18. package/dist/es/schemaVersionService.js.map +1 -0
  19. package/dist/types/entities/schemaVersion.d.ts +19 -0
  20. package/dist/types/entityStorageRoutes.d.ts +33 -1
  21. package/dist/types/entityStorageService.d.ts +38 -3
  22. package/dist/types/index.d.ts +6 -1
  23. package/dist/types/models/IEntityStorageRoutesExamples.d.ts +8 -1
  24. package/dist/types/models/ISchemaVersionServiceConfig.d.ts +9 -0
  25. package/dist/types/models/ISchemaVersionServiceConstructorOptions.d.ts +15 -0
  26. package/dist/types/schema.d.ts +4 -0
  27. package/dist/types/schemaVersionService.d.ts +52 -0
  28. package/docs/changelog.md +567 -47
  29. package/docs/examples.md +77 -1
  30. package/docs/open-api/spec.json +447 -37
  31. package/docs/reference/classes/EntityStorageService.md +123 -9
  32. package/docs/reference/classes/SchemaVersion.md +39 -0
  33. package/docs/reference/classes/SchemaVersionService.md +103 -0
  34. package/docs/reference/functions/entityStorageCount.md +31 -0
  35. package/docs/reference/functions/entityStorageEmpty.md +31 -0
  36. package/docs/reference/functions/entityStorageRemoveBatch.md +31 -0
  37. package/docs/reference/functions/entityStorageSetBatch.md +31 -0
  38. package/docs/reference/functions/initSchema.md +9 -0
  39. package/docs/reference/index.md +9 -0
  40. package/docs/reference/interfaces/IEntityStorageRoutesExamples.md +24 -8
  41. package/docs/reference/interfaces/IEntityStorageServiceConstructorOptions.md +3 -3
  42. package/docs/reference/interfaces/ISchemaVersionServiceConfig.md +11 -0
  43. package/docs/reference/interfaces/ISchemaVersionServiceConstructorOptions.md +25 -0
  44. package/locales/en.json +17 -2
  45. package/package.json +6 -5
package/docs/changelog.md CHANGED
@@ -1,6 +1,526 @@
1
- # @twin.org/entity-storage-service - Changelog
1
+ # Changelog
2
2
 
3
- ## [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)
3
+ ## [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)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **entity-storage-service:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.30 to 0.0.3-next.31
16
+ * devDependencies
17
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.30 to 0.0.3-next.31
18
+
19
+ ## [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)
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
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
45
+ * tests ([5e79bf4](https://github.com/iotaledger/twin-entity-storage/commit/5e79bf4aa1bf9ad0161c8c94f1a1968f947705a8))
46
+
47
+
48
+ ### Dependencies
49
+
50
+ * The following workspace dependencies were updated
51
+ * dependencies
52
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.29 to 0.0.3-next.30
53
+ * devDependencies
54
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.29 to 0.0.3-next.30
55
+
56
+ ## [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)
57
+
58
+
59
+ ### Miscellaneous Chores
60
+
61
+ * **entity-storage-service:** Synchronize repo versions
62
+
63
+
64
+ ### Dependencies
65
+
66
+ * The following workspace dependencies were updated
67
+ * dependencies
68
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.28 to 0.0.3-next.29
69
+ * devDependencies
70
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.28 to 0.0.3-next.29
71
+
72
+ ## [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)
73
+
74
+
75
+ ### Miscellaneous Chores
76
+
77
+ * **entity-storage-service:** Synchronize repo versions
78
+
79
+
80
+ ### Dependencies
81
+
82
+ * The following workspace dependencies were updated
83
+ * dependencies
84
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.27 to 0.0.3-next.28
85
+ * devDependencies
86
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.27 to 0.0.3-next.28
87
+
88
+ ## [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)
89
+
90
+
91
+ ### Miscellaneous Chores
92
+
93
+ * **entity-storage-service:** Synchronize repo versions
94
+
95
+
96
+ ### Dependencies
97
+
98
+ * The following workspace dependencies were updated
99
+ * dependencies
100
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.26 to 0.0.3-next.27
101
+ * devDependencies
102
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.26 to 0.0.3-next.27
103
+
104
+ ## [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)
105
+
106
+
107
+ ### Miscellaneous Chores
108
+
109
+ * **entity-storage-service:** Synchronize repo versions
110
+
111
+
112
+ ### Dependencies
113
+
114
+ * The following workspace dependencies were updated
115
+ * dependencies
116
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.25 to 0.0.3-next.26
117
+ * devDependencies
118
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.25 to 0.0.3-next.26
119
+
120
+ ## [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)
121
+
122
+
123
+ ### Features
124
+
125
+ * migration progress ([#121](https://github.com/iotaledger/twin-entity-storage/issues/121)) ([d032162](https://github.com/iotaledger/twin-entity-storage/commit/d032162768b6b7d4ccca7e39b80f8bc3ba46440e))
126
+
127
+
128
+ ### Dependencies
129
+
130
+ * The following workspace dependencies were updated
131
+ * dependencies
132
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.24 to 0.0.3-next.25
133
+ * devDependencies
134
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.24 to 0.0.3-next.25
135
+
136
+ ## [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)
137
+
138
+
139
+ ### Features
140
+
141
+ * 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))
142
+
143
+
144
+ ### Dependencies
145
+
146
+ * The following workspace dependencies were updated
147
+ * dependencies
148
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.23 to 0.0.3-next.24
149
+ * devDependencies
150
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.23 to 0.0.3-next.24
151
+
152
+ ## [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)
153
+
154
+
155
+ ### Miscellaneous Chores
156
+
157
+ * **entity-storage-service:** Synchronize repo versions
158
+
159
+
160
+ ### Dependencies
161
+
162
+ * The following workspace dependencies were updated
163
+ * dependencies
164
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.22 to 0.0.3-next.23
165
+ * devDependencies
166
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.22 to 0.0.3-next.23
167
+
168
+ ## [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)
169
+
170
+
171
+ ### Features
172
+
173
+ * 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))
174
+
175
+
176
+ ### Dependencies
177
+
178
+ * The following workspace dependencies were updated
179
+ * dependencies
180
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.21 to 0.0.3-next.22
181
+ * devDependencies
182
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.21 to 0.0.3-next.22
183
+
184
+ ## [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)
185
+
186
+
187
+ ### Miscellaneous Chores
188
+
189
+ * **entity-storage-service:** Synchronize repo versions
190
+
191
+
192
+ ### Dependencies
193
+
194
+ * The following workspace dependencies were updated
195
+ * dependencies
196
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.20 to 0.0.3-next.21
197
+ * devDependencies
198
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.20 to 0.0.3-next.21
199
+
200
+ ## [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)
201
+
202
+
203
+ ### Features
204
+
205
+ * add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
206
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
207
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
208
+ * 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))
209
+ * entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
210
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
211
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
212
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
213
+ * typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
214
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
215
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
216
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
217
+
218
+
219
+ ### Bug Fixes
220
+
221
+ * api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
222
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
223
+
224
+
225
+ ### Dependencies
226
+
227
+ * The following workspace dependencies were updated
228
+ * dependencies
229
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.19 to 0.0.3-next.20
230
+ * devDependencies
231
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.19 to 0.0.3-next.20
232
+
233
+ ## [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)
234
+
235
+
236
+ ### Features
237
+
238
+ * add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
239
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
240
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
241
+ * 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))
242
+ * entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
243
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
244
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
245
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
246
+ * typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
247
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
248
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
249
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
250
+
251
+
252
+ ### Bug Fixes
253
+
254
+ * api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
255
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
256
+
257
+
258
+ ### Dependencies
259
+
260
+ * The following workspace dependencies were updated
261
+ * dependencies
262
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.18 to 0.0.3-next.19
263
+ * devDependencies
264
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.18 to 0.0.3-next.19
265
+
266
+ ## [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)
267
+
268
+
269
+ ### Features
270
+
271
+ * add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
272
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
273
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
274
+ * 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))
275
+ * entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
276
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
277
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
278
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
279
+ * typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
280
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
281
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
282
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
283
+
284
+
285
+ ### Bug Fixes
286
+
287
+ * api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
288
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
289
+
290
+
291
+ ### Dependencies
292
+
293
+ * The following workspace dependencies were updated
294
+ * dependencies
295
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.17 to 0.0.3-next.18
296
+ * devDependencies
297
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.17 to 0.0.3-next.18
298
+
299
+ ## [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)
300
+
301
+
302
+ ### Miscellaneous Chores
303
+
304
+ * **entity-storage-service:** Synchronize repo versions
305
+
306
+
307
+ ### Dependencies
308
+
309
+ * The following workspace dependencies were updated
310
+ * dependencies
311
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.16 to 0.0.3-next.17
312
+ * devDependencies
313
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.16 to 0.0.3-next.17
314
+
315
+ ## [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)
316
+
317
+
318
+ ### Miscellaneous Chores
319
+
320
+ * **entity-storage-service:** Synchronize repo versions
321
+
322
+
323
+ ### Dependencies
324
+
325
+ * The following workspace dependencies were updated
326
+ * dependencies
327
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.15 to 0.0.3-next.16
328
+ * devDependencies
329
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.15 to 0.0.3-next.16
330
+
331
+ ## [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)
332
+
333
+
334
+ ### Miscellaneous Chores
335
+
336
+ * **entity-storage-service:** Synchronize repo versions
337
+
338
+
339
+ ### Dependencies
340
+
341
+ * The following workspace dependencies were updated
342
+ * dependencies
343
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.14 to 0.0.3-next.15
344
+ * devDependencies
345
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.14 to 0.0.3-next.15
346
+
347
+ ## [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)
348
+
349
+
350
+ ### Features
351
+
352
+ * 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))
353
+
354
+
355
+ ### Dependencies
356
+
357
+ * The following workspace dependencies were updated
358
+ * dependencies
359
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.13 to 0.0.3-next.14
360
+ * devDependencies
361
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.13 to 0.0.3-next.14
362
+
363
+ ## [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)
364
+
365
+
366
+ ### Miscellaneous Chores
367
+
368
+ * **entity-storage-service:** Synchronize repo versions
369
+
370
+
371
+ ### Dependencies
372
+
373
+ * The following workspace dependencies were updated
374
+ * dependencies
375
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.12 to 0.0.3-next.13
376
+ * devDependencies
377
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.12 to 0.0.3-next.13
378
+
379
+ ## [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)
380
+
381
+
382
+ ### Features
383
+
384
+ * typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
385
+
386
+
387
+ ### Dependencies
388
+
389
+ * The following workspace dependencies were updated
390
+ * dependencies
391
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.11 to 0.0.3-next.12
392
+ * devDependencies
393
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.11 to 0.0.3-next.12
394
+
395
+ ## [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)
396
+
397
+
398
+ ### Miscellaneous Chores
399
+
400
+ * **entity-storage-service:** Synchronize repo versions
401
+
402
+
403
+ ### Dependencies
404
+
405
+ * The following workspace dependencies were updated
406
+ * dependencies
407
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.10 to 0.0.3-next.11
408
+ * devDependencies
409
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.10 to 0.0.3-next.11
410
+
411
+ ## [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)
412
+
413
+
414
+ ### Features
415
+
416
+ * entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
417
+
418
+
419
+ ### Dependencies
420
+
421
+ * The following workspace dependencies were updated
422
+ * dependencies
423
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.9 to 0.0.3-next.10
424
+ * devDependencies
425
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.9 to 0.0.3-next.10
426
+
427
+ ## [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)
428
+
429
+
430
+ ### Miscellaneous Chores
431
+
432
+ * **entity-storage-service:** Synchronize repo versions
433
+
434
+
435
+ ### Dependencies
436
+
437
+ * The following workspace dependencies were updated
438
+ * dependencies
439
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.8 to 0.0.3-next.9
440
+ * devDependencies
441
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.8 to 0.0.3-next.9
442
+
443
+ ## [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)
444
+
445
+
446
+ ### Miscellaneous Chores
447
+
448
+ * **entity-storage-service:** Synchronize repo versions
449
+
450
+
451
+ ### Dependencies
452
+
453
+ * The following workspace dependencies were updated
454
+ * dependencies
455
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.7 to 0.0.3-next.8
456
+ * devDependencies
457
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.7 to 0.0.3-next.8
458
+
459
+ ## [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)
460
+
461
+
462
+ ### Miscellaneous Chores
463
+
464
+ * **entity-storage-service:** Synchronize repo versions
465
+
466
+
467
+ ### Dependencies
468
+
469
+ * The following workspace dependencies were updated
470
+ * dependencies
471
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.6 to 0.0.3-next.7
472
+ * devDependencies
473
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.6 to 0.0.3-next.7
474
+
475
+ ## [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)
476
+
477
+
478
+ ### Miscellaneous Chores
479
+
480
+ * **entity-storage-service:** Synchronize repo versions
481
+
482
+
483
+ ### Dependencies
484
+
485
+ * The following workspace dependencies were updated
486
+ * dependencies
487
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.5 to 0.0.3-next.6
488
+ * devDependencies
489
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.5 to 0.0.3-next.6
490
+
491
+ ## [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)
492
+
493
+
494
+ ### Miscellaneous Chores
495
+
496
+ * **entity-storage-service:** Synchronize repo versions
497
+
498
+
499
+ ### Dependencies
500
+
501
+ * The following workspace dependencies were updated
502
+ * dependencies
503
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.4 to 0.0.3-next.5
504
+ * devDependencies
505
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.4 to 0.0.3-next.5
506
+
507
+ ## [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)
508
+
509
+
510
+ ### Miscellaneous Chores
511
+
512
+ * **entity-storage-service:** Synchronize repo versions
513
+
514
+
515
+ ### Dependencies
516
+
517
+ * The following workspace dependencies were updated
518
+ * dependencies
519
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.3 to 0.0.3-next.4
520
+ * devDependencies
521
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.3 to 0.0.3-next.4
522
+
523
+ ## [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)
4
524
 
5
525
 
6
526
  ### Miscellaneous Chores
@@ -16,12 +536,12 @@
16
536
  * devDependencies
17
537
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.2 to 0.0.3-next.3
18
538
 
19
- ## [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)
539
+ ## [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)
20
540
 
21
541
 
22
542
  ### Bug Fixes
23
543
 
24
- * api docs ([4228736](https://github.com/twinfoundation/entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
544
+ * api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
25
545
 
26
546
 
27
547
  ### Dependencies
@@ -32,25 +552,25 @@
32
552
  * devDependencies
33
553
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.1 to 0.0.3-next.2
34
554
 
35
- ## [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)
555
+ ## [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)
36
556
 
37
557
 
38
558
  ### Features
39
559
 
40
- * add context id features ([#55](https://github.com/twinfoundation/entity-storage/issues/55)) ([99c15a2](https://github.com/twinfoundation/entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
41
- * add production release automation ([1eb4c8e](https://github.com/twinfoundation/entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
42
- * add validate-locales ([e66ef0d](https://github.com/twinfoundation/entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
43
- * eslint migration to flat config ([f033b64](https://github.com/twinfoundation/entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
44
- * remove includeNodeIdentity flag ([d88d1d0](https://github.com/twinfoundation/entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
45
- * synchronised storage ([#44](https://github.com/twinfoundation/entity-storage/issues/44)) ([94e10e2](https://github.com/twinfoundation/entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
46
- * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
47
- * update framework core ([b59a380](https://github.com/twinfoundation/entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
48
- * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
560
+ * add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
561
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
562
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
563
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
564
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
565
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
566
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
567
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
568
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
49
569
 
50
570
 
51
571
  ### Bug Fixes
52
572
 
53
- * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
573
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
54
574
 
55
575
 
56
576
  ### Dependencies
@@ -61,12 +581,12 @@
61
581
  * devDependencies
62
582
  * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.0 to 0.0.3-next.1
63
583
 
64
- ## [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)
584
+ ## [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)
65
585
 
66
586
 
67
587
  ### Features
68
588
 
69
- * add validate-locales ([e66ef0d](https://github.com/twinfoundation/entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
589
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
70
590
 
71
591
 
72
592
  ### Dependencies
@@ -77,7 +597,7 @@
77
597
  * devDependencies
78
598
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.9 to 0.0.2-next.10
79
599
 
80
- ## [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)
600
+ ## [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)
81
601
 
82
602
 
83
603
  ### Miscellaneous Chores
@@ -93,12 +613,12 @@
93
613
  * devDependencies
94
614
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.8 to 0.0.2-next.9
95
615
 
96
- ## [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)
616
+ ## [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)
97
617
 
98
618
 
99
619
  ### Features
100
620
 
101
- * eslint migration to flat config ([f033b64](https://github.com/twinfoundation/entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
621
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
102
622
 
103
623
 
104
624
  ### Dependencies
@@ -109,7 +629,7 @@
109
629
  * devDependencies
110
630
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.7 to 0.0.2-next.8
111
631
 
112
- ## [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)
632
+ ## [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)
113
633
 
114
634
 
115
635
  ### Miscellaneous Chores
@@ -125,12 +645,12 @@
125
645
  * devDependencies
126
646
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.6 to 0.0.2-next.7
127
647
 
128
- ## [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)
648
+ ## [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)
129
649
 
130
650
 
131
651
  ### Features
132
652
 
133
- * update framework core ([b59a380](https://github.com/twinfoundation/entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
653
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
134
654
 
135
655
 
136
656
  ### Dependencies
@@ -141,7 +661,7 @@
141
661
  * devDependencies
142
662
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.5 to 0.0.2-next.6
143
663
 
144
- ## [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)
664
+ ## [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)
145
665
 
146
666
 
147
667
  ### Miscellaneous Chores
@@ -157,7 +677,7 @@
157
677
  * devDependencies
158
678
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.4 to 0.0.2-next.5
159
679
 
160
- ## [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)
680
+ ## [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)
161
681
 
162
682
 
163
683
  ### Miscellaneous Chores
@@ -173,7 +693,7 @@
173
693
  * devDependencies
174
694
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.3 to 0.0.2-next.4
175
695
 
176
- ## [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)
696
+ ## [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)
177
697
 
178
698
 
179
699
  ### Miscellaneous Chores
@@ -189,13 +709,13 @@
189
709
  * devDependencies
190
710
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.2 to 0.0.2-next.3
191
711
 
192
- ## [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)
712
+ ## [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)
193
713
 
194
714
 
195
715
  ### Features
196
716
 
197
- * remove includeNodeIdentity flag ([d88d1d0](https://github.com/twinfoundation/entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
198
- * synchronised storage ([#44](https://github.com/twinfoundation/entity-storage/issues/44)) ([94e10e2](https://github.com/twinfoundation/entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
717
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
718
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
199
719
 
200
720
 
201
721
  ### Dependencies
@@ -206,19 +726,19 @@
206
726
  * devDependencies
207
727
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.1 to 0.0.2-next.2
208
728
 
209
- ## [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)
729
+ ## [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)
210
730
 
211
731
 
212
732
  ### Features
213
733
 
214
- * add production release automation ([1eb4c8e](https://github.com/twinfoundation/entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
215
- * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
216
- * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
734
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
735
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
736
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
217
737
 
218
738
 
219
739
  ### Bug Fixes
220
740
 
221
- * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
741
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
222
742
 
223
743
 
224
744
  ### Dependencies
@@ -234,15 +754,15 @@
234
754
 
235
755
  ### Features
236
756
 
237
- * add production release automation ([1eb4c8e](https://github.com/twinfoundation/entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
238
- * release to production ([a309051](https://github.com/twinfoundation/entity-storage/commit/a3090519adebf7943232b4df12e4c6bd5afe7eed))
239
- * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
240
- * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
757
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
758
+ * release to production ([a309051](https://github.com/iotaledger/twin-entity-storage/commit/a3090519adebf7943232b4df12e4c6bd5afe7eed))
759
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
760
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
241
761
 
242
762
 
243
763
  ### Bug Fixes
244
764
 
245
- * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
765
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
246
766
 
247
767
 
248
768
  ### Dependencies
@@ -253,12 +773,12 @@
253
773
  * devDependencies
254
774
  * @twin.org/entity-storage-connector-memory bumped from ^0.0.0 to ^0.0.1
255
775
 
256
- ## [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)
776
+ ## [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)
257
777
 
258
778
 
259
779
  ### Bug Fixes
260
780
 
261
- * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
781
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
262
782
 
263
783
 
264
784
  ### Dependencies
@@ -269,12 +789,12 @@
269
789
  * devDependencies
270
790
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.30 to 0.0.1-next.31
271
791
 
272
- ## [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)
792
+ ## [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)
273
793
 
274
794
 
275
795
  ### Features
276
796
 
277
- * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
797
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
278
798
 
279
799
 
280
800
  ### Dependencies
@@ -285,12 +805,12 @@
285
805
  * devDependencies
286
806
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.29 to 0.0.1-next.30
287
807
 
288
- ## [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)
808
+ ## [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)
289
809
 
290
810
 
291
811
  ### Features
292
812
 
293
- * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
813
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
294
814
 
295
815
 
296
816
  ### Dependencies
@@ -301,7 +821,7 @@
301
821
  * devDependencies
302
822
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.28 to 0.0.1-next.29
303
823
 
304
- ## [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)
824
+ ## [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)
305
825
 
306
826
 
307
827
  ### Miscellaneous Chores
@@ -317,7 +837,7 @@
317
837
  * devDependencies
318
838
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.27 to 0.0.1-next.28
319
839
 
320
- ## [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)
840
+ ## [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)
321
841
 
322
842
 
323
843
  ### Miscellaneous Chores