@twin.org/entity 0.0.3-next.9 → 0.0.4-next.1

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 (43) hide show
  1. package/README.md +1 -5
  2. package/dist/es/decorators/entityDecorator.js +2 -1
  3. package/dist/es/decorators/entityDecorator.js.map +1 -1
  4. package/dist/es/decorators/propertyDecorator.js +1 -0
  5. package/dist/es/decorators/propertyDecorator.js.map +1 -1
  6. package/dist/es/index.js +2 -0
  7. package/dist/es/index.js.map +1 -1
  8. package/dist/es/models/IEntitySchemaDiff.js +2 -0
  9. package/dist/es/models/IEntitySchemaDiff.js.map +1 -0
  10. package/dist/es/utils/decoratorHelper.js +1 -0
  11. package/dist/es/utils/decoratorHelper.js.map +1 -1
  12. package/dist/es/utils/entityConditions.js +10 -0
  13. package/dist/es/utils/entityConditions.js.map +1 -1
  14. package/dist/es/utils/entitySchemaDiffHelper.js +139 -0
  15. package/dist/es/utils/entitySchemaDiffHelper.js.map +1 -0
  16. package/dist/types/decorators/entityDecorator.d.ts +1 -0
  17. package/dist/types/decorators/propertyDecorator.d.ts +1 -0
  18. package/dist/types/index.d.ts +2 -0
  19. package/dist/types/models/IEntitySchemaDiff.d.ts +33 -0
  20. package/dist/types/utils/decoratorHelper.d.ts +1 -0
  21. package/dist/types/utils/entitySchemaDiffHelper.d.ts +44 -0
  22. package/docs/changelog.md +885 -98
  23. package/docs/examples.md +70 -1
  24. package/docs/reference/classes/DecoratorHelper.md +2 -2
  25. package/docs/reference/classes/EntityConditions.md +2 -2
  26. package/docs/reference/classes/EntitySchemaDiffHelper.md +147 -0
  27. package/docs/reference/classes/EntitySchemaHelper.md +6 -6
  28. package/docs/reference/classes/EntitySorter.md +4 -4
  29. package/docs/reference/index.md +2 -0
  30. package/docs/reference/interfaces/IComparator.md +3 -3
  31. package/docs/reference/interfaces/IComparatorGroup.md +3 -3
  32. package/docs/reference/interfaces/IEntitySchema.md +5 -5
  33. package/docs/reference/interfaces/IEntitySchemaDiff.md +59 -0
  34. package/docs/reference/interfaces/IEntitySchemaOptions.md +2 -2
  35. package/docs/reference/interfaces/IEntitySchemaProperty.md +20 -20
  36. package/docs/reference/interfaces/IEntitySort.md +3 -3
  37. package/docs/reference/variables/ComparisonOperator.md +9 -9
  38. package/docs/reference/variables/EntitySchemaPropertyFormat.md +17 -17
  39. package/docs/reference/variables/EntitySchemaPropertyType.md +6 -6
  40. package/docs/reference/variables/LogicalOperator.md +2 -2
  41. package/docs/reference/variables/SortDirection.md +2 -2
  42. package/locales/en.json +4 -0
  43. package/package.json +7 -6
package/docs/changelog.md CHANGED
@@ -1,6 +1,793 @@
1
- # @twin.org/entity - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.9](https://github.com/twinfoundation/framework/compare/entity-v0.0.3-next.8...entity-v0.0.3-next.9) (2026-01-05)
3
+ ## [0.0.4-next.1](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.4-next.0...entity-v0.0.4-next.1) (2026-05-27)
4
+
5
+
6
+ ### Features
7
+
8
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
9
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
10
+ * add IEntitySchemaDiff and entitySchemaDiff utility ([#282](https://github.com/iotaledger/twin-framework/issues/282)) ([9d63e94](https://github.com/iotaledger/twin-framework/commit/9d63e94021ee2ffc138004ee68cf53d08a6b17f9))
11
+ * add support for null in EntityConditions.compare ([922c4ba](https://github.com/iotaledger/twin-framework/commit/922c4ba8af578b4e7eaaf21b3c37a9d788941487))
12
+ * entity schema diff updates ([#294](https://github.com/iotaledger/twin-framework/issues/294)) ([7a7a94d](https://github.com/iotaledger/twin-framework/commit/7a7a94d14ea5e785dd68fd6de1c5a84941721d28))
13
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
14
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
15
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
16
+ * support for object comparisons in entity conditions ([edae91d](https://github.com/iotaledger/twin-framework/commit/edae91d3205524080188a35e0ab04da036fa4f39))
17
+ * typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
18
+ * update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
19
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
20
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
21
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
27
+ * update copyright year ([#260](https://github.com/iotaledger/twin-framework/issues/260)) ([c4ad930](https://github.com/iotaledger/twin-framework/commit/c4ad930fcc84ba6b5447a8074574329870b4c3f5))
28
+
29
+
30
+ ### Dependencies
31
+
32
+ * The following workspace dependencies were updated
33
+ * dependencies
34
+ * @twin.org/nameof bumped from 0.0.4-next.0 to 0.0.4-next.1
35
+ * @twin.org/core bumped from 0.0.4-next.0 to 0.0.4-next.1
36
+ * devDependencies
37
+ * @twin.org/nameof-transformer bumped from 0.0.4-next.0 to 0.0.4-next.1
38
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.4-next.0 to 0.0.4-next.1
39
+ * @twin.org/validate-locales bumped from 0.0.4-next.0 to 0.0.4-next.1
40
+
41
+ ## [0.0.3](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3...entity-v0.0.3) (2026-05-27)
42
+
43
+
44
+ ### Features
45
+
46
+ * release to production ([b24cba1](https://github.com/iotaledger/twin-framework/commit/b24cba1b6a969278d638e632590602ec881e49fb))
47
+ * release to production ([787287d](https://github.com/iotaledger/twin-framework/commit/787287d06ea8319657401589d61fff369310c422))
48
+ * release to production ([53f4843](https://github.com/iotaledger/twin-framework/commit/53f484326b2851d7a506d2620db24c4a65cee7b3))
49
+ * release to production ([56cda4d](https://github.com/iotaledger/twin-framework/commit/56cda4da93e978c5be19ec7cfd421ae2a7fe4147))
50
+ * release to production ([f7c6586](https://github.com/iotaledger/twin-framework/commit/f7c6586f6976b903b647b4c5ac5ad9421e0c9051))
51
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
52
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
53
+ * release to production ([#330](https://github.com/iotaledger/twin-framework/issues/330)) ([d73f565](https://github.com/iotaledger/twin-framework/commit/d73f565588d156d23ef49b2a5718973756f7a696))
54
+
55
+
56
+ ### Miscellaneous Chores
57
+
58
+ * release to production ([63cae24](https://github.com/iotaledger/twin-framework/commit/63cae2401f6c11f93b2a01260b665064e8bd28e0))
59
+
60
+ ## [0.0.3-next.47](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.46...entity-v0.0.3-next.47) (2026-05-25)
61
+
62
+
63
+ ### Miscellaneous Chores
64
+
65
+ * **entity:** Synchronize repo versions
66
+
67
+
68
+ ### Dependencies
69
+
70
+ * The following workspace dependencies were updated
71
+ * dependencies
72
+ * @twin.org/nameof bumped from 0.0.3-next.46 to 0.0.3-next.47
73
+ * @twin.org/core bumped from 0.0.3-next.46 to 0.0.3-next.47
74
+ * devDependencies
75
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.46 to 0.0.3-next.47
76
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.46 to 0.0.3-next.47
77
+ * @twin.org/validate-locales bumped from 0.0.3-next.46 to 0.0.3-next.47
78
+
79
+ ## [0.0.3-next.46](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.45...entity-v0.0.3-next.46) (2026-05-22)
80
+
81
+
82
+ ### Miscellaneous Chores
83
+
84
+ * **entity:** Synchronize repo versions
85
+
86
+
87
+ ### Dependencies
88
+
89
+ * The following workspace dependencies were updated
90
+ * dependencies
91
+ * @twin.org/nameof bumped from 0.0.3-next.45 to 0.0.3-next.46
92
+ * @twin.org/core bumped from 0.0.3-next.45 to 0.0.3-next.46
93
+ * devDependencies
94
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.45 to 0.0.3-next.46
95
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.45 to 0.0.3-next.46
96
+ * @twin.org/validate-locales bumped from 0.0.3-next.45 to 0.0.3-next.46
97
+
98
+ ## [0.0.3-next.45](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.44...entity-v0.0.3-next.45) (2026-05-21)
99
+
100
+
101
+ ### Miscellaneous Chores
102
+
103
+ * **entity:** Synchronize repo versions
104
+
105
+
106
+ ### Dependencies
107
+
108
+ * The following workspace dependencies were updated
109
+ * dependencies
110
+ * @twin.org/nameof bumped from 0.0.3-next.44 to 0.0.3-next.45
111
+ * @twin.org/core bumped from 0.0.3-next.44 to 0.0.3-next.45
112
+ * devDependencies
113
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.44 to 0.0.3-next.45
114
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.44 to 0.0.3-next.45
115
+ * @twin.org/validate-locales bumped from 0.0.3-next.44 to 0.0.3-next.45
116
+
117
+ ## [0.0.3-next.44](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.43...entity-v0.0.3-next.44) (2026-05-19)
118
+
119
+
120
+ ### Features
121
+
122
+ * update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
123
+
124
+
125
+ ### Dependencies
126
+
127
+ * The following workspace dependencies were updated
128
+ * dependencies
129
+ * @twin.org/nameof bumped from 0.0.3-next.43 to 0.0.3-next.44
130
+ * @twin.org/core bumped from 0.0.3-next.43 to 0.0.3-next.44
131
+ * devDependencies
132
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.43 to 0.0.3-next.44
133
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.43 to 0.0.3-next.44
134
+ * @twin.org/validate-locales bumped from 0.0.3-next.43 to 0.0.3-next.44
135
+
136
+ ## [0.0.3-next.43](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.42...entity-v0.0.3-next.43) (2026-05-18)
137
+
138
+
139
+ ### Features
140
+
141
+ * add support for null in EntityConditions.compare ([922c4ba](https://github.com/iotaledger/twin-framework/commit/922c4ba8af578b4e7eaaf21b3c37a9d788941487))
142
+
143
+
144
+ ### Dependencies
145
+
146
+ * The following workspace dependencies were updated
147
+ * dependencies
148
+ * @twin.org/nameof bumped from 0.0.3-next.42 to 0.0.3-next.43
149
+ * @twin.org/core bumped from 0.0.3-next.42 to 0.0.3-next.43
150
+ * devDependencies
151
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.42 to 0.0.3-next.43
152
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.42 to 0.0.3-next.43
153
+ * @twin.org/validate-locales bumped from 0.0.3-next.42 to 0.0.3-next.43
154
+
155
+ ## [0.0.3-next.42](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.41...entity-v0.0.3-next.42) (2026-05-15)
156
+
157
+
158
+ ### Features
159
+
160
+ * entity schema diff updates ([#294](https://github.com/iotaledger/twin-framework/issues/294)) ([7a7a94d](https://github.com/iotaledger/twin-framework/commit/7a7a94d14ea5e785dd68fd6de1c5a84941721d28))
161
+
162
+
163
+ ### Dependencies
164
+
165
+ * The following workspace dependencies were updated
166
+ * dependencies
167
+ * @twin.org/nameof bumped from 0.0.3-next.41 to 0.0.3-next.42
168
+ * @twin.org/core bumped from 0.0.3-next.41 to 0.0.3-next.42
169
+ * devDependencies
170
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.41 to 0.0.3-next.42
171
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.41 to 0.0.3-next.42
172
+ * @twin.org/validate-locales bumped from 0.0.3-next.41 to 0.0.3-next.42
173
+
174
+ ## [0.0.3-next.41](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.40...entity-v0.0.3-next.41) (2026-05-13)
175
+
176
+
177
+ ### Miscellaneous Chores
178
+
179
+ * **entity:** Synchronize repo versions
180
+
181
+
182
+ ### Dependencies
183
+
184
+ * The following workspace dependencies were updated
185
+ * dependencies
186
+ * @twin.org/nameof bumped from 0.0.3-next.40 to 0.0.3-next.41
187
+ * @twin.org/core bumped from 0.0.3-next.40 to 0.0.3-next.41
188
+ * devDependencies
189
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.40 to 0.0.3-next.41
190
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.40 to 0.0.3-next.41
191
+ * @twin.org/validate-locales bumped from 0.0.3-next.40 to 0.0.3-next.41
192
+
193
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.39...entity-v0.0.3-next.40) (2026-05-13)
194
+
195
+
196
+ ### Miscellaneous Chores
197
+
198
+ * **entity:** Synchronize repo versions
199
+
200
+
201
+ ### Dependencies
202
+
203
+ * The following workspace dependencies were updated
204
+ * dependencies
205
+ * @twin.org/nameof bumped from 0.0.3-next.39 to 0.0.3-next.40
206
+ * @twin.org/core bumped from 0.0.3-next.39 to 0.0.3-next.40
207
+ * devDependencies
208
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.39 to 0.0.3-next.40
209
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.39 to 0.0.3-next.40
210
+ * @twin.org/validate-locales bumped from 0.0.3-next.39 to 0.0.3-next.40
211
+
212
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.38...entity-v0.0.3-next.39) (2026-05-13)
213
+
214
+
215
+ ### Miscellaneous Chores
216
+
217
+ * **entity:** Synchronize repo versions
218
+
219
+
220
+ ### Dependencies
221
+
222
+ * The following workspace dependencies were updated
223
+ * dependencies
224
+ * @twin.org/nameof bumped from 0.0.3-next.38 to 0.0.3-next.39
225
+ * @twin.org/core bumped from 0.0.3-next.38 to 0.0.3-next.39
226
+ * devDependencies
227
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.38 to 0.0.3-next.39
228
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.38 to 0.0.3-next.39
229
+ * @twin.org/validate-locales bumped from 0.0.3-next.38 to 0.0.3-next.39
230
+
231
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.37...entity-v0.0.3-next.38) (2026-05-11)
232
+
233
+
234
+ ### Features
235
+
236
+ * typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
237
+
238
+
239
+ ### Dependencies
240
+
241
+ * The following workspace dependencies were updated
242
+ * dependencies
243
+ * @twin.org/nameof bumped from 0.0.3-next.37 to 0.0.3-next.38
244
+ * @twin.org/core bumped from 0.0.3-next.37 to 0.0.3-next.38
245
+ * devDependencies
246
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.37 to 0.0.3-next.38
247
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.37 to 0.0.3-next.38
248
+ * @twin.org/validate-locales bumped from 0.0.3-next.37 to 0.0.3-next.38
249
+
250
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.36...entity-v0.0.3-next.37) (2026-05-07)
251
+
252
+
253
+ ### Features
254
+
255
+ * add IEntitySchemaDiff and entitySchemaDiff utility ([#282](https://github.com/iotaledger/twin-framework/issues/282)) ([9d63e94](https://github.com/iotaledger/twin-framework/commit/9d63e94021ee2ffc138004ee68cf53d08a6b17f9))
256
+
257
+
258
+ ### Dependencies
259
+
260
+ * The following workspace dependencies were updated
261
+ * dependencies
262
+ * @twin.org/nameof bumped from 0.0.3-next.36 to 0.0.3-next.37
263
+ * @twin.org/core bumped from 0.0.3-next.36 to 0.0.3-next.37
264
+ * devDependencies
265
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.36 to 0.0.3-next.37
266
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.36 to 0.0.3-next.37
267
+ * @twin.org/validate-locales bumped from 0.0.3-next.36 to 0.0.3-next.37
268
+
269
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.35...entity-v0.0.3-next.36) (2026-05-07)
270
+
271
+
272
+ ### Miscellaneous Chores
273
+
274
+ * **entity:** Synchronize repo versions
275
+
276
+
277
+ ### Dependencies
278
+
279
+ * The following workspace dependencies were updated
280
+ * dependencies
281
+ * @twin.org/nameof bumped from 0.0.3-next.35 to 0.0.3-next.36
282
+ * @twin.org/core bumped from 0.0.3-next.35 to 0.0.3-next.36
283
+ * devDependencies
284
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.35 to 0.0.3-next.36
285
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.35 to 0.0.3-next.36
286
+ * @twin.org/validate-locales bumped from 0.0.3-next.35 to 0.0.3-next.36
287
+
288
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.34...entity-v0.0.3-next.35) (2026-05-06)
289
+
290
+
291
+ ### Miscellaneous Chores
292
+
293
+ * **entity:** Synchronize repo versions
294
+
295
+
296
+ ### Dependencies
297
+
298
+ * The following workspace dependencies were updated
299
+ * dependencies
300
+ * @twin.org/nameof bumped from 0.0.3-next.34 to 0.0.3-next.35
301
+ * @twin.org/core bumped from 0.0.3-next.34 to 0.0.3-next.35
302
+ * devDependencies
303
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.34 to 0.0.3-next.35
304
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.34 to 0.0.3-next.35
305
+ * @twin.org/validate-locales bumped from 0.0.3-next.34 to 0.0.3-next.35
306
+
307
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.33...entity-v0.0.3-next.34) (2026-05-06)
308
+
309
+
310
+ ### Miscellaneous Chores
311
+
312
+ * **entity:** Synchronize repo versions
313
+
314
+
315
+ ### Dependencies
316
+
317
+ * The following workspace dependencies were updated
318
+ * dependencies
319
+ * @twin.org/nameof bumped from 0.0.3-next.33 to 0.0.3-next.34
320
+ * @twin.org/core bumped from 0.0.3-next.33 to 0.0.3-next.34
321
+ * devDependencies
322
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.33 to 0.0.3-next.34
323
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.33 to 0.0.3-next.34
324
+ * @twin.org/validate-locales bumped from 0.0.3-next.33 to 0.0.3-next.34
325
+
326
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.32...entity-v0.0.3-next.33) (2026-05-05)
327
+
328
+
329
+ ### Miscellaneous Chores
330
+
331
+ * **entity:** Synchronize repo versions
332
+
333
+
334
+ ### Dependencies
335
+
336
+ * The following workspace dependencies were updated
337
+ * dependencies
338
+ * @twin.org/nameof bumped from 0.0.3-next.32 to 0.0.3-next.33
339
+ * @twin.org/core bumped from 0.0.3-next.32 to 0.0.3-next.33
340
+ * devDependencies
341
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.32 to 0.0.3-next.33
342
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.32 to 0.0.3-next.33
343
+ * @twin.org/validate-locales bumped from 0.0.3-next.32 to 0.0.3-next.33
344
+
345
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.31...entity-v0.0.3-next.32) (2026-04-30)
346
+
347
+
348
+ ### Miscellaneous Chores
349
+
350
+ * **entity:** Synchronize repo versions
351
+
352
+
353
+ ### Dependencies
354
+
355
+ * The following workspace dependencies were updated
356
+ * dependencies
357
+ * @twin.org/nameof bumped from 0.0.3-next.31 to 0.0.3-next.32
358
+ * @twin.org/core bumped from 0.0.3-next.31 to 0.0.3-next.32
359
+ * devDependencies
360
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.31 to 0.0.3-next.32
361
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.31 to 0.0.3-next.32
362
+ * @twin.org/validate-locales bumped from 0.0.3-next.31 to 0.0.3-next.32
363
+
364
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.30...entity-v0.0.3-next.31) (2026-04-14)
365
+
366
+
367
+ ### Miscellaneous Chores
368
+
369
+ * **entity:** Synchronize repo versions
370
+
371
+
372
+ ### Dependencies
373
+
374
+ * The following workspace dependencies were updated
375
+ * dependencies
376
+ * @twin.org/nameof bumped from 0.0.3-next.30 to 0.0.3-next.31
377
+ * @twin.org/core bumped from 0.0.3-next.30 to 0.0.3-next.31
378
+ * devDependencies
379
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.30 to 0.0.3-next.31
380
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.30 to 0.0.3-next.31
381
+ * @twin.org/validate-locales bumped from 0.0.3-next.30 to 0.0.3-next.31
382
+
383
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.29...entity-v0.0.3-next.30) (2026-04-14)
384
+
385
+
386
+ ### Miscellaneous Chores
387
+
388
+ * **entity:** Synchronize repo versions
389
+
390
+
391
+ ### Dependencies
392
+
393
+ * The following workspace dependencies were updated
394
+ * dependencies
395
+ * @twin.org/nameof bumped from 0.0.3-next.29 to 0.0.3-next.30
396
+ * @twin.org/core bumped from 0.0.3-next.29 to 0.0.3-next.30
397
+ * devDependencies
398
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
399
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
400
+ * @twin.org/validate-locales bumped from 0.0.3-next.29 to 0.0.3-next.30
401
+
402
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.28...entity-v0.0.3-next.29) (2026-04-14)
403
+
404
+
405
+ ### Miscellaneous Chores
406
+
407
+ * **entity:** Synchronize repo versions
408
+
409
+
410
+ ### Dependencies
411
+
412
+ * The following workspace dependencies were updated
413
+ * dependencies
414
+ * @twin.org/nameof bumped from 0.0.3-next.28 to 0.0.3-next.29
415
+ * @twin.org/core bumped from 0.0.3-next.28 to 0.0.3-next.29
416
+ * devDependencies
417
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
418
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
419
+ * @twin.org/validate-locales bumped from 0.0.3-next.28 to 0.0.3-next.29
420
+
421
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.27...entity-v0.0.3-next.28) (2026-03-27)
422
+
423
+
424
+ ### Bug Fixes
425
+
426
+ * update copyright year ([#260](https://github.com/iotaledger/twin-framework/issues/260)) ([c4ad930](https://github.com/iotaledger/twin-framework/commit/c4ad930fcc84ba6b5447a8074574329870b4c3f5))
427
+
428
+
429
+ ### Dependencies
430
+
431
+ * The following workspace dependencies were updated
432
+ * dependencies
433
+ * @twin.org/nameof bumped from 0.0.3-next.27 to 0.0.3-next.28
434
+ * @twin.org/core bumped from 0.0.3-next.27 to 0.0.3-next.28
435
+ * devDependencies
436
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
437
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
438
+ * @twin.org/validate-locales bumped from 0.0.3-next.27 to 0.0.3-next.28
439
+
440
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.26...entity-v0.0.3-next.27) (2026-03-27)
441
+
442
+
443
+ ### Miscellaneous Chores
444
+
445
+ * **entity:** Synchronize repo versions
446
+
447
+
448
+ ### Dependencies
449
+
450
+ * The following workspace dependencies were updated
451
+ * dependencies
452
+ * @twin.org/nameof bumped from 0.0.3-next.26 to 0.0.3-next.27
453
+ * @twin.org/core bumped from 0.0.3-next.26 to 0.0.3-next.27
454
+ * devDependencies
455
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
456
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
457
+ * @twin.org/validate-locales bumped from 0.0.3-next.26 to 0.0.3-next.27
458
+
459
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.25...entity-v0.0.3-next.26) (2026-03-24)
460
+
461
+
462
+ ### Miscellaneous Chores
463
+
464
+ * **entity:** Synchronize repo versions
465
+
466
+
467
+ ### Dependencies
468
+
469
+ * The following workspace dependencies were updated
470
+ * dependencies
471
+ * @twin.org/nameof bumped from 0.0.3-next.25 to 0.0.3-next.26
472
+ * @twin.org/core bumped from 0.0.3-next.25 to 0.0.3-next.26
473
+ * devDependencies
474
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
475
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
476
+ * @twin.org/validate-locales bumped from 0.0.3-next.25 to 0.0.3-next.26
477
+
478
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.24...entity-v0.0.3-next.25) (2026-03-23)
479
+
480
+
481
+ ### Miscellaneous Chores
482
+
483
+ * **entity:** Synchronize repo versions
484
+
485
+
486
+ ### Dependencies
487
+
488
+ * The following workspace dependencies were updated
489
+ * dependencies
490
+ * @twin.org/nameof bumped from 0.0.3-next.24 to 0.0.3-next.25
491
+ * @twin.org/core bumped from 0.0.3-next.24 to 0.0.3-next.25
492
+ * devDependencies
493
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
494
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
495
+ * @twin.org/validate-locales bumped from 0.0.3-next.24 to 0.0.3-next.25
496
+
497
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.23...entity-v0.0.3-next.24) (2026-03-19)
498
+
499
+
500
+ ### Bug Fixes
501
+
502
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
503
+
504
+
505
+ ### Dependencies
506
+
507
+ * The following workspace dependencies were updated
508
+ * dependencies
509
+ * @twin.org/nameof bumped from 0.0.3-next.23 to 0.0.3-next.24
510
+ * @twin.org/core bumped from 0.0.3-next.23 to 0.0.3-next.24
511
+ * devDependencies
512
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
513
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
514
+ * @twin.org/validate-locales bumped from 0.0.3-next.23 to 0.0.3-next.24
515
+
516
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.22...entity-v0.0.3-next.23) (2026-03-17)
517
+
518
+
519
+ ### Miscellaneous Chores
520
+
521
+ * **entity:** Synchronize repo versions
522
+
523
+
524
+ ### Dependencies
525
+
526
+ * The following workspace dependencies were updated
527
+ * dependencies
528
+ * @twin.org/nameof bumped from 0.0.3-next.22 to 0.0.3-next.23
529
+ * @twin.org/core bumped from 0.0.3-next.22 to 0.0.3-next.23
530
+ * devDependencies
531
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
532
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
533
+ * @twin.org/validate-locales bumped from 0.0.3-next.22 to 0.0.3-next.23
534
+
535
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.21...entity-v0.0.3-next.22) (2026-02-26)
536
+
537
+
538
+ ### Miscellaneous Chores
539
+
540
+ * **entity:** Synchronize repo versions
541
+
542
+
543
+ ### Dependencies
544
+
545
+ * The following workspace dependencies were updated
546
+ * dependencies
547
+ * @twin.org/nameof bumped from 0.0.3-next.21 to 0.0.3-next.22
548
+ * @twin.org/core bumped from 0.0.3-next.21 to 0.0.3-next.22
549
+ * devDependencies
550
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
551
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
552
+ * @twin.org/validate-locales bumped from 0.0.3-next.21 to 0.0.3-next.22
553
+
554
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.20...entity-v0.0.3-next.21) (2026-02-26)
555
+
556
+
557
+ ### Features
558
+
559
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
560
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
561
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
562
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
563
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
564
+ * support for object comparisons in entity conditions ([edae91d](https://github.com/iotaledger/twin-framework/commit/edae91d3205524080188a35e0ab04da036fa4f39))
565
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
566
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
567
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
568
+
569
+
570
+ ### Dependencies
571
+
572
+ * The following workspace dependencies were updated
573
+ * dependencies
574
+ * @twin.org/nameof bumped from 0.0.3-next.20 to 0.0.3-next.21
575
+ * @twin.org/core bumped from 0.0.3-next.20 to 0.0.3-next.21
576
+ * devDependencies
577
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
578
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
579
+ * @twin.org/validate-locales bumped from 0.0.3-next.20 to 0.0.3-next.21
580
+
581
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.19...entity-v0.0.3-next.20) (2026-02-26)
582
+
583
+
584
+ ### Miscellaneous Chores
585
+
586
+ * **entity:** Synchronize repo versions
587
+
588
+
589
+ ### Dependencies
590
+
591
+ * The following workspace dependencies were updated
592
+ * dependencies
593
+ * @twin.org/nameof bumped from 0.0.3-next.19 to 0.0.3-next.20
594
+ * @twin.org/core bumped from 0.0.3-next.19 to 0.0.3-next.20
595
+ * devDependencies
596
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
597
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
598
+ * @twin.org/validate-locales bumped from 0.0.3-next.19 to 0.0.3-next.20
599
+
600
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.18...entity-v0.0.3-next.19) (2026-02-26)
601
+
602
+
603
+ ### Miscellaneous Chores
604
+
605
+ * **entity:** Synchronize repo versions
606
+
607
+
608
+ ### Dependencies
609
+
610
+ * The following workspace dependencies were updated
611
+ * dependencies
612
+ * @twin.org/nameof bumped from 0.0.3-next.18 to 0.0.3-next.19
613
+ * @twin.org/core bumped from 0.0.3-next.18 to 0.0.3-next.19
614
+ * devDependencies
615
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
616
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
617
+ * @twin.org/validate-locales bumped from 0.0.3-next.18 to 0.0.3-next.19
618
+
619
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.17...entity-v0.0.3-next.18) (2026-02-23)
620
+
621
+
622
+ ### Miscellaneous Chores
623
+
624
+ * **entity:** Synchronize repo versions
625
+
626
+
627
+ ### Dependencies
628
+
629
+ * The following workspace dependencies were updated
630
+ * dependencies
631
+ * @twin.org/nameof bumped from 0.0.3-next.17 to 0.0.3-next.18
632
+ * @twin.org/core bumped from 0.0.3-next.17 to 0.0.3-next.18
633
+ * devDependencies
634
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
635
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
636
+ * @twin.org/validate-locales bumped from 0.0.3-next.17 to 0.0.3-next.18
637
+
638
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.16...entity-v0.0.3-next.17) (2026-02-09)
639
+
640
+
641
+ ### Miscellaneous Chores
642
+
643
+ * **entity:** Synchronize repo versions
644
+
645
+
646
+ ### Dependencies
647
+
648
+ * The following workspace dependencies were updated
649
+ * dependencies
650
+ * @twin.org/nameof bumped from 0.0.3-next.16 to 0.0.3-next.17
651
+ * @twin.org/core bumped from 0.0.3-next.16 to 0.0.3-next.17
652
+ * devDependencies
653
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
654
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
655
+ * @twin.org/validate-locales bumped from 0.0.3-next.16 to 0.0.3-next.17
656
+
657
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.15...entity-v0.0.3-next.16) (2026-02-06)
658
+
659
+
660
+ ### Miscellaneous Chores
661
+
662
+ * **entity:** Synchronize repo versions
663
+
664
+
665
+ ### Dependencies
666
+
667
+ * The following workspace dependencies were updated
668
+ * dependencies
669
+ * @twin.org/nameof bumped from 0.0.3-next.15 to 0.0.3-next.16
670
+ * @twin.org/core bumped from 0.0.3-next.15 to 0.0.3-next.16
671
+ * devDependencies
672
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
673
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
674
+ * @twin.org/validate-locales bumped from 0.0.3-next.15 to 0.0.3-next.16
675
+
676
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.14...entity-v0.0.3-next.15) (2026-01-29)
677
+
678
+
679
+ ### Miscellaneous Chores
680
+
681
+ * **entity:** Synchronize repo versions
682
+
683
+
684
+ ### Dependencies
685
+
686
+ * The following workspace dependencies were updated
687
+ * dependencies
688
+ * @twin.org/nameof bumped from 0.0.3-next.14 to 0.0.3-next.15
689
+ * @twin.org/core bumped from 0.0.3-next.14 to 0.0.3-next.15
690
+ * devDependencies
691
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
692
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
693
+ * @twin.org/validate-locales bumped from 0.0.3-next.14 to 0.0.3-next.15
694
+
695
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.13...entity-v0.0.3-next.14) (2026-01-22)
696
+
697
+
698
+ ### Miscellaneous Chores
699
+
700
+ * **entity:** Synchronize repo versions
701
+
702
+
703
+ ### Dependencies
704
+
705
+ * The following workspace dependencies were updated
706
+ * dependencies
707
+ * @twin.org/nameof bumped from 0.0.3-next.13 to 0.0.3-next.14
708
+ * @twin.org/core bumped from 0.0.3-next.13 to 0.0.3-next.14
709
+ * devDependencies
710
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
711
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
712
+ * @twin.org/validate-locales bumped from 0.0.3-next.13 to 0.0.3-next.14
713
+
714
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.12...entity-v0.0.3-next.13) (2026-01-08)
715
+
716
+
717
+ ### Miscellaneous Chores
718
+
719
+ * **entity:** Synchronize repo versions
720
+
721
+
722
+ ### Dependencies
723
+
724
+ * The following workspace dependencies were updated
725
+ * dependencies
726
+ * @twin.org/nameof bumped from 0.0.3-next.12 to 0.0.3-next.13
727
+ * @twin.org/core bumped from 0.0.3-next.12 to 0.0.3-next.13
728
+ * devDependencies
729
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
730
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
731
+ * @twin.org/validate-locales bumped from 0.0.3-next.12 to 0.0.3-next.13
732
+
733
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.11...entity-v0.0.3-next.12) (2026-01-08)
734
+
735
+
736
+ ### Miscellaneous Chores
737
+
738
+ * **entity:** Synchronize repo versions
739
+
740
+
741
+ ### Dependencies
742
+
743
+ * The following workspace dependencies were updated
744
+ * dependencies
745
+ * @twin.org/nameof bumped from 0.0.3-next.11 to 0.0.3-next.12
746
+ * @twin.org/core bumped from 0.0.3-next.11 to 0.0.3-next.12
747
+ * devDependencies
748
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
749
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
750
+ * @twin.org/validate-locales bumped from 0.0.3-next.11 to 0.0.3-next.12
751
+
752
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.10...entity-v0.0.3-next.11) (2026-01-07)
753
+
754
+
755
+ ### Miscellaneous Chores
756
+
757
+ * **entity:** Synchronize repo versions
758
+
759
+
760
+ ### Dependencies
761
+
762
+ * The following workspace dependencies were updated
763
+ * dependencies
764
+ * @twin.org/nameof bumped from 0.0.3-next.10 to 0.0.3-next.11
765
+ * @twin.org/core bumped from 0.0.3-next.10 to 0.0.3-next.11
766
+ * devDependencies
767
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
768
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
769
+ * @twin.org/validate-locales bumped from 0.0.3-next.10 to 0.0.3-next.11
770
+
771
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.9...entity-v0.0.3-next.10) (2026-01-07)
772
+
773
+
774
+ ### Miscellaneous Chores
775
+
776
+ * **entity:** Synchronize repo versions
777
+
778
+
779
+ ### Dependencies
780
+
781
+ * The following workspace dependencies were updated
782
+ * dependencies
783
+ * @twin.org/nameof bumped from 0.0.3-next.9 to 0.0.3-next.10
784
+ * @twin.org/core bumped from 0.0.3-next.9 to 0.0.3-next.10
785
+ * devDependencies
786
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
787
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
788
+ * @twin.org/validate-locales bumped from 0.0.3-next.9 to 0.0.3-next.10
789
+
790
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.8...entity-v0.0.3-next.9) (2026-01-05)
4
791
 
5
792
 
6
793
  ### Miscellaneous Chores
@@ -19,12 +806,12 @@
19
806
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
20
807
  * @twin.org/validate-locales bumped from 0.0.3-next.8 to 0.0.3-next.9
21
808
 
22
- ## [0.0.3-next.8](https://github.com/twinfoundation/framework/compare/entity-v0.0.3-next.7...entity-v0.0.3-next.8) (2025-11-26)
809
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.7...entity-v0.0.3-next.8) (2025-11-26)
23
810
 
24
811
 
25
812
  ### Features
26
813
 
27
- * support for object comparisons in entity conditions ([edae91d](https://github.com/twinfoundation/framework/commit/edae91d3205524080188a35e0ab04da036fa4f39))
814
+ * support for object comparisons in entity conditions ([edae91d](https://github.com/iotaledger/twin-framework/commit/edae91d3205524080188a35e0ab04da036fa4f39))
28
815
 
29
816
 
30
817
  ### Dependencies
@@ -38,19 +825,19 @@
38
825
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
39
826
  * @twin.org/validate-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
40
827
 
41
- ## [0.0.3-next.7](https://github.com/twinfoundation/framework/compare/entity-v0.0.3-next.6...entity-v0.0.3-next.7) (2025-11-25)
828
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.6...entity-v0.0.3-next.7) (2025-11-25)
42
829
 
43
830
 
44
831
  ### Features
45
832
 
46
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
47
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
48
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
49
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
50
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
51
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
52
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
53
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
833
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
834
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
835
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
836
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
837
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
838
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
839
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
840
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
54
841
 
55
842
 
56
843
  ### Dependencies
@@ -64,7 +851,7 @@
64
851
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
65
852
  * @twin.org/validate-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
66
853
 
67
- ## [0.0.3-next.6](https://github.com/twinfoundation/framework/compare/entity-v0.0.3-next.5...entity-v0.0.3-next.6) (2025-11-25)
854
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.5...entity-v0.0.3-next.6) (2025-11-25)
68
855
 
69
856
 
70
857
  ### Miscellaneous Chores
@@ -83,7 +870,7 @@
83
870
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
84
871
  * @twin.org/validate-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
85
872
 
86
- ## [0.0.3-next.5](https://github.com/twinfoundation/framework/compare/entity-v0.0.3-next.4...entity-v0.0.3-next.5) (2025-11-20)
873
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.4...entity-v0.0.3-next.5) (2025-11-20)
87
874
 
88
875
 
89
876
  ### Miscellaneous Chores
@@ -102,7 +889,7 @@
102
889
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
103
890
  * @twin.org/validate-locales bumped from 0.0.3-next.4 to 0.0.3-next.5
104
891
 
105
- ## [0.0.3-next.4](https://github.com/twinfoundation/framework/compare/entity-v0.0.3-next.3...entity-v0.0.3-next.4) (2025-11-13)
892
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.3...entity-v0.0.3-next.4) (2025-11-13)
106
893
 
107
894
 
108
895
  ### Miscellaneous Chores
@@ -121,7 +908,7 @@
121
908
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
122
909
  * @twin.org/validate-locales bumped from 0.0.3-next.3 to 0.0.3-next.4
123
910
 
124
- ## [0.0.3-next.3](https://github.com/twinfoundation/framework/compare/entity-v0.0.3-next.2...entity-v0.0.3-next.3) (2025-11-12)
911
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.2...entity-v0.0.3-next.3) (2025-11-12)
125
912
 
126
913
 
127
914
  ### Miscellaneous Chores
@@ -140,7 +927,7 @@
140
927
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.2 to 0.0.3-next.3
141
928
  * @twin.org/validate-locales bumped from 0.0.3-next.2 to 0.0.3-next.3
142
929
 
143
- ## [0.0.3-next.2](https://github.com/twinfoundation/framework/compare/entity-v0.0.3-next.1...entity-v0.0.3-next.2) (2025-11-12)
930
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.1...entity-v0.0.3-next.2) (2025-11-12)
144
931
 
145
932
 
146
933
  ### Miscellaneous Chores
@@ -159,19 +946,19 @@
159
946
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.1 to 0.0.3-next.2
160
947
  * @twin.org/validate-locales bumped from 0.0.3-next.1 to 0.0.3-next.2
161
948
 
162
- ## [0.0.3-next.1](https://github.com/twinfoundation/framework/compare/entity-v0.0.3-next.0...entity-v0.0.3-next.1) (2025-11-10)
949
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.3-next.0...entity-v0.0.3-next.1) (2025-11-10)
163
950
 
164
951
 
165
952
  ### Features
166
953
 
167
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
168
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
169
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
170
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
171
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
172
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
173
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
174
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
954
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
955
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
956
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
957
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
958
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
959
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
960
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
961
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
175
962
 
176
963
 
177
964
  ### Dependencies
@@ -185,7 +972,7 @@
185
972
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.0 to 0.0.3-next.1
186
973
  * @twin.org/validate-locales bumped from 0.0.3-next.0 to 0.0.3-next.1
187
974
 
188
- ## [0.0.2-next.22](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.21...entity-v0.0.2-next.22) (2025-10-10)
975
+ ## [0.0.2-next.22](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.21...entity-v0.0.2-next.22) (2025-10-10)
189
976
 
190
977
 
191
978
  ### Miscellaneous Chores
@@ -204,12 +991,12 @@
204
991
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.21 to 0.0.2-next.22
205
992
  * @twin.org/validate-locales bumped from 0.0.2-next.21 to 0.0.2-next.22
206
993
 
207
- ## [0.0.2-next.21](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.20...entity-v0.0.2-next.21) (2025-10-09)
994
+ ## [0.0.2-next.21](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.20...entity-v0.0.2-next.21) (2025-10-09)
208
995
 
209
996
 
210
997
  ### Features
211
998
 
212
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
999
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
213
1000
 
214
1001
 
215
1002
  ### Dependencies
@@ -223,7 +1010,7 @@
223
1010
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.20 to 0.0.2-next.21
224
1011
  * @twin.org/validate-locales bumped from 0.0.2-next.20 to 0.0.2-next.21
225
1012
 
226
- ## [0.0.2-next.20](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.19...entity-v0.0.2-next.20) (2025-10-02)
1013
+ ## [0.0.2-next.20](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.19...entity-v0.0.2-next.20) (2025-10-02)
227
1014
 
228
1015
 
229
1016
  ### Miscellaneous Chores
@@ -241,7 +1028,7 @@
241
1028
  * @twin.org/nameof-transformer bumped from 0.0.2-next.19 to 0.0.2-next.20
242
1029
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.19 to 0.0.2-next.20
243
1030
 
244
- ## [0.0.2-next.19](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.18...entity-v0.0.2-next.19) (2025-09-30)
1031
+ ## [0.0.2-next.19](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.18...entity-v0.0.2-next.19) (2025-09-30)
245
1032
 
246
1033
 
247
1034
  ### Miscellaneous Chores
@@ -259,7 +1046,7 @@
259
1046
  * @twin.org/nameof-transformer bumped from 0.0.2-next.18 to 0.0.2-next.19
260
1047
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.18 to 0.0.2-next.19
261
1048
 
262
- ## [0.0.2-next.18](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.17...entity-v0.0.2-next.18) (2025-09-29)
1049
+ ## [0.0.2-next.18](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.17...entity-v0.0.2-next.18) (2025-09-29)
263
1050
 
264
1051
 
265
1052
  ### Miscellaneous Chores
@@ -277,7 +1064,7 @@
277
1064
  * @twin.org/nameof-transformer bumped from 0.0.2-next.17 to 0.0.2-next.18
278
1065
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.17 to 0.0.2-next.18
279
1066
 
280
- ## [0.0.2-next.17](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.16...entity-v0.0.2-next.17) (2025-09-29)
1067
+ ## [0.0.2-next.17](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.16...entity-v0.0.2-next.17) (2025-09-29)
281
1068
 
282
1069
 
283
1070
  ### Miscellaneous Chores
@@ -295,7 +1082,7 @@
295
1082
  * @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
296
1083
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.16 to 0.0.2-next.17
297
1084
 
298
- ## [0.0.2-next.16](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.15...entity-v0.0.2-next.16) (2025-09-28)
1085
+ ## [0.0.2-next.16](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.15...entity-v0.0.2-next.16) (2025-09-28)
299
1086
 
300
1087
 
301
1088
  ### Miscellaneous Chores
@@ -313,7 +1100,7 @@
313
1100
  * @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
314
1101
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.15 to 0.0.2-next.16
315
1102
 
316
- ## [0.0.2-next.15](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.14...entity-v0.0.2-next.15) (2025-09-22)
1103
+ ## [0.0.2-next.15](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.14...entity-v0.0.2-next.15) (2025-09-22)
317
1104
 
318
1105
 
319
1106
  ### Miscellaneous Chores
@@ -331,7 +1118,7 @@
331
1118
  * @twin.org/nameof-transformer bumped from 0.0.2-next.14 to 0.0.2-next.15
332
1119
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.14 to 0.0.2-next.15
333
1120
 
334
- ## [0.0.2-next.14](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.13...entity-v0.0.2-next.14) (2025-09-22)
1121
+ ## [0.0.2-next.14](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.13...entity-v0.0.2-next.14) (2025-09-22)
335
1122
 
336
1123
 
337
1124
  ### Miscellaneous Chores
@@ -349,7 +1136,7 @@
349
1136
  * @twin.org/nameof-transformer bumped from 0.0.2-next.13 to 0.0.2-next.14
350
1137
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.13 to 0.0.2-next.14
351
1138
 
352
- ## [0.0.2-next.13](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.12...entity-v0.0.2-next.13) (2025-09-22)
1139
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.12...entity-v0.0.2-next.13) (2025-09-22)
353
1140
 
354
1141
 
355
1142
  ### Miscellaneous Chores
@@ -367,7 +1154,7 @@
367
1154
  * @twin.org/nameof-transformer bumped from 0.0.2-next.12 to 0.0.2-next.13
368
1155
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.12 to 0.0.2-next.13
369
1156
 
370
- ## [0.0.2-next.12](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.11...entity-v0.0.2-next.12) (2025-09-15)
1157
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.11...entity-v0.0.2-next.12) (2025-09-15)
371
1158
 
372
1159
 
373
1160
  ### Miscellaneous Chores
@@ -385,7 +1172,7 @@
385
1172
  * @twin.org/nameof-transformer bumped from 0.0.2-next.11 to 0.0.2-next.12
386
1173
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.11 to 0.0.2-next.12
387
1174
 
388
- ## [0.0.2-next.11](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.10...entity-v0.0.2-next.11) (2025-09-15)
1175
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.10...entity-v0.0.2-next.11) (2025-09-15)
389
1176
 
390
1177
 
391
1178
  ### Miscellaneous Chores
@@ -403,7 +1190,7 @@
403
1190
  * @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
404
1191
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.10 to 0.0.2-next.11
405
1192
 
406
- ## [0.0.2-next.10](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.9...entity-v0.0.2-next.10) (2025-09-11)
1193
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.9...entity-v0.0.2-next.10) (2025-09-11)
407
1194
 
408
1195
 
409
1196
  ### Miscellaneous Chores
@@ -421,7 +1208,7 @@
421
1208
  * @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
422
1209
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.9 to 0.0.2-next.10
423
1210
 
424
- ## [0.0.2-next.9](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.8...entity-v0.0.2-next.9) (2025-09-08)
1211
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.8...entity-v0.0.2-next.9) (2025-09-08)
425
1212
 
426
1213
 
427
1214
  ### Miscellaneous Chores
@@ -439,7 +1226,7 @@
439
1226
  * @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
440
1227
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.8 to 0.0.2-next.9
441
1228
 
442
- ## [0.0.2-next.8](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.7...entity-v0.0.2-next.8) (2025-09-05)
1229
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.7...entity-v0.0.2-next.8) (2025-09-05)
443
1230
 
444
1231
 
445
1232
  ### Miscellaneous Chores
@@ -457,12 +1244,12 @@
457
1244
  * @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
458
1245
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.7 to 0.0.2-next.8
459
1246
 
460
- ## [0.0.2-next.7](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.6...entity-v0.0.2-next.7) (2025-08-29)
1247
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.6...entity-v0.0.2-next.7) (2025-08-29)
461
1248
 
462
1249
 
463
1250
  ### Features
464
1251
 
465
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
1252
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
466
1253
 
467
1254
 
468
1255
  ### Dependencies
@@ -475,7 +1262,7 @@
475
1262
  * @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
476
1263
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
477
1264
 
478
- ## [0.0.2-next.6](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.5...entity-v0.0.2-next.6) (2025-08-27)
1265
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.5...entity-v0.0.2-next.6) (2025-08-27)
479
1266
 
480
1267
 
481
1268
  ### Miscellaneous Chores
@@ -493,12 +1280,12 @@
493
1280
  * @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
494
1281
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
495
1282
 
496
- ## [0.0.2-next.5](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.4...entity-v0.0.2-next.5) (2025-08-19)
1283
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.4...entity-v0.0.2-next.5) (2025-08-19)
497
1284
 
498
1285
 
499
1286
  ### Features
500
1287
 
501
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
1288
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
502
1289
 
503
1290
 
504
1291
  ### Dependencies
@@ -511,7 +1298,7 @@
511
1298
  * @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
512
1299
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
513
1300
 
514
- ## [0.0.2-next.4](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.3...entity-v0.0.2-next.4) (2025-08-15)
1301
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.3...entity-v0.0.2-next.4) (2025-08-15)
515
1302
 
516
1303
 
517
1304
  ### Miscellaneous Chores
@@ -529,15 +1316,15 @@
529
1316
  * @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
530
1317
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.3 to 0.0.2-next.4
531
1318
 
532
- ## [0.0.2-next.3](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.2...entity-v0.0.2-next.3) (2025-08-06)
1319
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.2...entity-v0.0.2-next.3) (2025-08-06)
533
1320
 
534
1321
 
535
1322
  ### Features
536
1323
 
537
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
538
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
539
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
540
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1324
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1325
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1326
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1327
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
541
1328
 
542
1329
 
543
1330
  ### Dependencies
@@ -550,15 +1337,15 @@
550
1337
  * @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
551
1338
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
552
1339
 
553
- ## [0.0.2-next.2](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.1...entity-v0.0.2-next.2) (2025-08-06)
1340
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.1...entity-v0.0.2-next.2) (2025-08-06)
554
1341
 
555
1342
 
556
1343
  ### Features
557
1344
 
558
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
559
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
560
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
561
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1345
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1346
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1347
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1348
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
562
1349
 
563
1350
 
564
1351
  ### Dependencies
@@ -571,15 +1358,15 @@
571
1358
  * @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
572
1359
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
573
1360
 
574
- ## [0.0.2-next.1](https://github.com/twinfoundation/framework/compare/entity-v0.0.2-next.0...entity-v0.0.2-next.1) (2025-08-06)
1361
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.2-next.0...entity-v0.0.2-next.1) (2025-08-06)
575
1362
 
576
1363
 
577
1364
  ### Features
578
1365
 
579
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
580
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
581
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
582
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1366
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1367
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1368
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1369
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
583
1370
 
584
1371
 
585
1372
  ### Dependencies
@@ -597,8 +1384,8 @@
597
1384
 
598
1385
  ### Features
599
1386
 
600
- * release to production ([829d53d](https://github.com/twinfoundation/framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
601
- * release to production ([5cf3a76](https://github.com/twinfoundation/framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
1387
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
1388
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
602
1389
 
603
1390
 
604
1391
  ### Dependencies
@@ -611,14 +1398,14 @@
611
1398
  * @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
612
1399
  * @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
613
1400
 
614
- ## [0.0.1-next.70](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.69...entity-v0.0.1-next.70) (2025-07-02)
1401
+ ## [0.0.1-next.70](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.69...entity-v0.0.1-next.70) (2025-07-02)
615
1402
 
616
1403
 
617
1404
  ### Features
618
1405
 
619
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
620
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
621
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1406
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1407
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1408
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
622
1409
 
623
1410
 
624
1411
  ### Dependencies
@@ -631,14 +1418,14 @@
631
1418
  * @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
632
1419
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
633
1420
 
634
- ## [0.0.1-next.69](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.68...entity-v0.0.1-next.69) (2025-07-02)
1421
+ ## [0.0.1-next.69](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.68...entity-v0.0.1-next.69) (2025-07-02)
635
1422
 
636
1423
 
637
1424
  ### Features
638
1425
 
639
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
640
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
641
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1426
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1427
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1428
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
642
1429
 
643
1430
 
644
1431
  ### Dependencies
@@ -651,12 +1438,12 @@
651
1438
  * @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
652
1439
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
653
1440
 
654
- ## [0.0.1-next.68](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.67...entity-v0.0.1-next.68) (2025-07-02)
1441
+ ## [0.0.1-next.68](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.67...entity-v0.0.1-next.68) (2025-07-02)
655
1442
 
656
1443
 
657
1444
  ### Features
658
1445
 
659
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1446
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
660
1447
 
661
1448
 
662
1449
  ### Dependencies
@@ -669,7 +1456,7 @@
669
1456
  * @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
670
1457
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
671
1458
 
672
- ## [0.0.1-next.67](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.66...entity-v0.0.1-next.67) (2025-06-26)
1459
+ ## [0.0.1-next.67](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.66...entity-v0.0.1-next.67) (2025-06-26)
673
1460
 
674
1461
 
675
1462
  ### Miscellaneous Chores
@@ -683,7 +1470,7 @@
683
1470
  * dependencies
684
1471
  * @twin.org/core bumped from 0.0.1-next.66 to 0.0.1-next.67
685
1472
 
686
- ## [0.0.1-next.66](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.65...entity-v0.0.1-next.66) (2025-06-26)
1473
+ ## [0.0.1-next.66](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.65...entity-v0.0.1-next.66) (2025-06-26)
687
1474
 
688
1475
 
689
1476
  ### Miscellaneous Chores
@@ -697,7 +1484,7 @@
697
1484
  * dependencies
698
1485
  * @twin.org/core bumped from 0.0.1-next.65 to 0.0.1-next.66
699
1486
 
700
- ## [0.0.1-next.65](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.64...entity-v0.0.1-next.65) (2025-06-19)
1487
+ ## [0.0.1-next.65](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.64...entity-v0.0.1-next.65) (2025-06-19)
701
1488
 
702
1489
 
703
1490
  ### Miscellaneous Chores
@@ -711,7 +1498,7 @@
711
1498
  * dependencies
712
1499
  * @twin.org/core bumped from 0.0.1-next.64 to 0.0.1-next.65
713
1500
 
714
- ## [0.0.1-next.64](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.63...entity-v0.0.1-next.64) (2025-06-19)
1501
+ ## [0.0.1-next.64](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.63...entity-v0.0.1-next.64) (2025-06-19)
715
1502
 
716
1503
 
717
1504
  ### Miscellaneous Chores
@@ -725,7 +1512,7 @@
725
1512
  * dependencies
726
1513
  * @twin.org/core bumped from 0.0.1-next.63 to 0.0.1-next.64
727
1514
 
728
- ## [0.0.1-next.63](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.62...entity-v0.0.1-next.63) (2025-06-18)
1515
+ ## [0.0.1-next.63](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.62...entity-v0.0.1-next.63) (2025-06-18)
729
1516
 
730
1517
 
731
1518
  ### Miscellaneous Chores
@@ -739,13 +1526,13 @@
739
1526
  * dependencies
740
1527
  * @twin.org/core bumped from 0.0.1-next.62 to 0.0.1-next.63
741
1528
 
742
- ## [0.0.1-next.62](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.61...entity-v0.0.1-next.62) (2025-06-17)
1529
+ ## [0.0.1-next.62](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.61...entity-v0.0.1-next.62) (2025-06-17)
743
1530
 
744
1531
 
745
1532
  ### Features
746
1533
 
747
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
748
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1534
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1535
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
749
1536
 
750
1537
 
751
1538
  ### Dependencies
@@ -754,7 +1541,7 @@
754
1541
  * dependencies
755
1542
  * @twin.org/core bumped from 0.0.1-next.61 to 0.0.1-next.62
756
1543
 
757
- ## [0.0.1-next.61](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.60...entity-v0.0.1-next.61) (2025-06-17)
1544
+ ## [0.0.1-next.61](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.60...entity-v0.0.1-next.61) (2025-06-17)
758
1545
 
759
1546
 
760
1547
  ### Miscellaneous Chores
@@ -768,7 +1555,7 @@
768
1555
  * dependencies
769
1556
  * @twin.org/core bumped from 0.0.1-next.60 to 0.0.1-next.61
770
1557
 
771
- ## [0.0.1-next.60](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.59...entity-v0.0.1-next.60) (2025-06-17)
1558
+ ## [0.0.1-next.60](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.59...entity-v0.0.1-next.60) (2025-06-17)
772
1559
 
773
1560
 
774
1561
  ### Miscellaneous Chores
@@ -782,7 +1569,7 @@
782
1569
  * dependencies
783
1570
  * @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
784
1571
 
785
- ## [0.0.1-next.59](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.58...entity-v0.0.1-next.59) (2025-06-17)
1572
+ ## [0.0.1-next.59](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.58...entity-v0.0.1-next.59) (2025-06-17)
786
1573
 
787
1574
 
788
1575
  ### Miscellaneous Chores
@@ -796,7 +1583,7 @@
796
1583
  * dependencies
797
1584
  * @twin.org/core bumped from 0.0.1-next.58 to 0.0.1-next.59
798
1585
 
799
- ## [0.0.1-next.58](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.57...entity-v0.0.1-next.58) (2025-06-13)
1586
+ ## [0.0.1-next.58](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.57...entity-v0.0.1-next.58) (2025-06-13)
800
1587
 
801
1588
 
802
1589
  ### Miscellaneous Chores
@@ -810,12 +1597,12 @@
810
1597
  * dependencies
811
1598
  * @twin.org/core bumped from 0.0.1-next.57 to 0.0.1-next.58
812
1599
 
813
- ## [0.0.1-next.57](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.56...entity-v0.0.1-next.57) (2025-06-10)
1600
+ ## [0.0.1-next.57](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.56...entity-v0.0.1-next.57) (2025-06-10)
814
1601
 
815
1602
 
816
1603
  ### Features
817
1604
 
818
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1605
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
819
1606
 
820
1607
 
821
1608
  ### Dependencies
@@ -824,7 +1611,7 @@
824
1611
  * dependencies
825
1612
  * @twin.org/core bumped from 0.0.1-next.56 to 0.0.1-next.57
826
1613
 
827
- ## [0.0.1-next.56](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.55...entity-v0.0.1-next.56) (2025-05-08)
1614
+ ## [0.0.1-next.56](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.55...entity-v0.0.1-next.56) (2025-05-08)
828
1615
 
829
1616
 
830
1617
  ### Miscellaneous Chores
@@ -838,7 +1625,7 @@
838
1625
  * dependencies
839
1626
  * @twin.org/core bumped from 0.0.1-next.55 to 0.0.1-next.56
840
1627
 
841
- ## [0.0.1-next.55](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.54...entity-v0.0.1-next.55) (2025-05-07)
1628
+ ## [0.0.1-next.55](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.54...entity-v0.0.1-next.55) (2025-05-07)
842
1629
 
843
1630
 
844
1631
  ### Miscellaneous Chores
@@ -852,7 +1639,7 @@
852
1639
  * dependencies
853
1640
  * @twin.org/core bumped from 0.0.1-next.54 to 0.0.1-next.55
854
1641
 
855
- ## [0.0.1-next.54](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.53...entity-v0.0.1-next.54) (2025-05-06)
1642
+ ## [0.0.1-next.54](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.53...entity-v0.0.1-next.54) (2025-05-06)
856
1643
 
857
1644
 
858
1645
  ### Miscellaneous Chores
@@ -866,7 +1653,7 @@
866
1653
  * dependencies
867
1654
  * @twin.org/core bumped from 0.0.1-next.53 to 0.0.1-next.54
868
1655
 
869
- ## [0.0.1-next.53](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.52...entity-v0.0.1-next.53) (2025-05-01)
1656
+ ## [0.0.1-next.53](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.52...entity-v0.0.1-next.53) (2025-05-01)
870
1657
 
871
1658
 
872
1659
  ### Miscellaneous Chores
@@ -880,12 +1667,12 @@
880
1667
  * dependencies
881
1668
  * @twin.org/core bumped from 0.0.1-next.52 to 0.0.1-next.53
882
1669
 
883
- ## [0.0.1-next.52](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.51...entity-v0.0.1-next.52) (2025-04-17)
1670
+ ## [0.0.1-next.52](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.51...entity-v0.0.1-next.52) (2025-04-17)
884
1671
 
885
1672
 
886
1673
  ### Features
887
1674
 
888
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1675
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
889
1676
 
890
1677
 
891
1678
  ### Dependencies
@@ -894,7 +1681,7 @@
894
1681
  * dependencies
895
1682
  * @twin.org/core bumped from 0.0.1-next.51 to 0.0.1-next.52
896
1683
 
897
- ## [0.0.1-next.51](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.50...entity-v0.0.1-next.51) (2025-03-27)
1684
+ ## [0.0.1-next.51](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.50...entity-v0.0.1-next.51) (2025-03-27)
898
1685
 
899
1686
 
900
1687
  ### Miscellaneous Chores
@@ -908,7 +1695,7 @@
908
1695
  * dependencies
909
1696
  * @twin.org/core bumped from 0.0.1-next.50 to 0.0.1-next.51
910
1697
 
911
- ## [0.0.1-next.50](https://github.com/twinfoundation/framework/compare/entity-v0.0.1-next.49...entity-v0.0.1-next.50) (2025-03-26)
1698
+ ## [0.0.1-next.50](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.1-next.49...entity-v0.0.1-next.50) (2025-03-26)
912
1699
 
913
1700
 
914
1701
  ### Miscellaneous Chores