@twin.org/entity 0.0.3-next.4 → 0.0.3-next.40

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 +8 -0
  13. package/dist/es/utils/entityConditions.js.map +1 -1
  14. package/dist/es/utils/entitySchemaDiff.js +67 -0
  15. package/dist/es/utils/entitySchemaDiff.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 +35 -0
  20. package/dist/types/utils/decoratorHelper.d.ts +1 -0
  21. package/dist/types/utils/entitySchemaDiff.d.ts +22 -0
  22. package/docs/changelog.md +783 -84
  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/EntitySchemaHelper.md +6 -6
  27. package/docs/reference/classes/EntitySorter.md +4 -4
  28. package/docs/reference/functions/entitySchemaDiff.md +38 -0
  29. package/docs/reference/functions/isEmptyDiff.md +25 -0
  30. package/docs/reference/index.md +3 -0
  31. package/docs/reference/interfaces/IComparator.md +3 -3
  32. package/docs/reference/interfaces/IComparatorGroup.md +3 -3
  33. package/docs/reference/interfaces/IEntitySchema.md +5 -5
  34. package/docs/reference/interfaces/IEntitySchemaDiff.md +53 -0
  35. package/docs/reference/interfaces/IEntitySchemaOptions.md +2 -2
  36. package/docs/reference/interfaces/IEntitySchemaProperty.md +20 -20
  37. package/docs/reference/interfaces/IEntitySort.md +3 -3
  38. package/docs/reference/variables/ComparisonOperator.md +9 -9
  39. package/docs/reference/variables/EntitySchemaPropertyFormat.md +17 -17
  40. package/docs/reference/variables/EntitySchemaPropertyType.md +6 -6
  41. package/docs/reference/variables/LogicalOperator.md +2 -2
  42. package/docs/reference/variables/SortDirection.md +2 -2
  43. package/package.json +7 -6
package/docs/changelog.md CHANGED
@@ -1,6 +1,705 @@
1
- # @twin.org/entity - Changelog
1
+ # Changelog
2
2
 
3
- ## [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)
3
+ ## [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)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **entity:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/nameof bumped from 0.0.3-next.39 to 0.0.3-next.40
16
+ * @twin.org/core bumped from 0.0.3-next.39 to 0.0.3-next.40
17
+ * devDependencies
18
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.39 to 0.0.3-next.40
19
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.39 to 0.0.3-next.40
20
+ * @twin.org/validate-locales bumped from 0.0.3-next.39 to 0.0.3-next.40
21
+
22
+ ## [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)
23
+
24
+
25
+ ### Miscellaneous Chores
26
+
27
+ * **entity:** Synchronize repo versions
28
+
29
+
30
+ ### Dependencies
31
+
32
+ * The following workspace dependencies were updated
33
+ * dependencies
34
+ * @twin.org/nameof bumped from 0.0.3-next.38 to 0.0.3-next.39
35
+ * @twin.org/core bumped from 0.0.3-next.38 to 0.0.3-next.39
36
+ * devDependencies
37
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.38 to 0.0.3-next.39
38
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.38 to 0.0.3-next.39
39
+ * @twin.org/validate-locales bumped from 0.0.3-next.38 to 0.0.3-next.39
40
+
41
+ ## [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)
42
+
43
+
44
+ ### Features
45
+
46
+ * typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
47
+
48
+
49
+ ### Dependencies
50
+
51
+ * The following workspace dependencies were updated
52
+ * dependencies
53
+ * @twin.org/nameof bumped from 0.0.3-next.37 to 0.0.3-next.38
54
+ * @twin.org/core bumped from 0.0.3-next.37 to 0.0.3-next.38
55
+ * devDependencies
56
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.37 to 0.0.3-next.38
57
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.37 to 0.0.3-next.38
58
+ * @twin.org/validate-locales bumped from 0.0.3-next.37 to 0.0.3-next.38
59
+
60
+ ## [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)
61
+
62
+
63
+ ### Features
64
+
65
+ * add IEntitySchemaDiff and entitySchemaDiff utility ([#282](https://github.com/iotaledger/twin-framework/issues/282)) ([9d63e94](https://github.com/iotaledger/twin-framework/commit/9d63e94021ee2ffc138004ee68cf53d08a6b17f9))
66
+
67
+
68
+ ### Dependencies
69
+
70
+ * The following workspace dependencies were updated
71
+ * dependencies
72
+ * @twin.org/nameof bumped from 0.0.3-next.36 to 0.0.3-next.37
73
+ * @twin.org/core bumped from 0.0.3-next.36 to 0.0.3-next.37
74
+ * devDependencies
75
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.36 to 0.0.3-next.37
76
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.36 to 0.0.3-next.37
77
+ * @twin.org/validate-locales bumped from 0.0.3-next.36 to 0.0.3-next.37
78
+
79
+ ## [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)
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.35 to 0.0.3-next.36
92
+ * @twin.org/core bumped from 0.0.3-next.35 to 0.0.3-next.36
93
+ * devDependencies
94
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.35 to 0.0.3-next.36
95
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.35 to 0.0.3-next.36
96
+ * @twin.org/validate-locales bumped from 0.0.3-next.35 to 0.0.3-next.36
97
+
98
+ ## [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)
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.34 to 0.0.3-next.35
111
+ * @twin.org/core bumped from 0.0.3-next.34 to 0.0.3-next.35
112
+ * devDependencies
113
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.34 to 0.0.3-next.35
114
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.34 to 0.0.3-next.35
115
+ * @twin.org/validate-locales bumped from 0.0.3-next.34 to 0.0.3-next.35
116
+
117
+ ## [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)
118
+
119
+
120
+ ### Miscellaneous Chores
121
+
122
+ * **entity:** Synchronize repo versions
123
+
124
+
125
+ ### Dependencies
126
+
127
+ * The following workspace dependencies were updated
128
+ * dependencies
129
+ * @twin.org/nameof bumped from 0.0.3-next.33 to 0.0.3-next.34
130
+ * @twin.org/core bumped from 0.0.3-next.33 to 0.0.3-next.34
131
+ * devDependencies
132
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.33 to 0.0.3-next.34
133
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.33 to 0.0.3-next.34
134
+ * @twin.org/validate-locales bumped from 0.0.3-next.33 to 0.0.3-next.34
135
+
136
+ ## [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)
137
+
138
+
139
+ ### Miscellaneous Chores
140
+
141
+ * **entity:** Synchronize repo versions
142
+
143
+
144
+ ### Dependencies
145
+
146
+ * The following workspace dependencies were updated
147
+ * dependencies
148
+ * @twin.org/nameof bumped from 0.0.3-next.32 to 0.0.3-next.33
149
+ * @twin.org/core bumped from 0.0.3-next.32 to 0.0.3-next.33
150
+ * devDependencies
151
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.32 to 0.0.3-next.33
152
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.32 to 0.0.3-next.33
153
+ * @twin.org/validate-locales bumped from 0.0.3-next.32 to 0.0.3-next.33
154
+
155
+ ## [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)
156
+
157
+
158
+ ### Miscellaneous Chores
159
+
160
+ * **entity:** Synchronize repo versions
161
+
162
+
163
+ ### Dependencies
164
+
165
+ * The following workspace dependencies were updated
166
+ * dependencies
167
+ * @twin.org/nameof bumped from 0.0.3-next.31 to 0.0.3-next.32
168
+ * @twin.org/core bumped from 0.0.3-next.31 to 0.0.3-next.32
169
+ * devDependencies
170
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.31 to 0.0.3-next.32
171
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.31 to 0.0.3-next.32
172
+ * @twin.org/validate-locales bumped from 0.0.3-next.31 to 0.0.3-next.32
173
+
174
+ ## [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)
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.30 to 0.0.3-next.31
187
+ * @twin.org/core bumped from 0.0.3-next.30 to 0.0.3-next.31
188
+ * devDependencies
189
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.30 to 0.0.3-next.31
190
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.30 to 0.0.3-next.31
191
+ * @twin.org/validate-locales bumped from 0.0.3-next.30 to 0.0.3-next.31
192
+
193
+ ## [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)
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.29 to 0.0.3-next.30
206
+ * @twin.org/core bumped from 0.0.3-next.29 to 0.0.3-next.30
207
+ * devDependencies
208
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
209
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
210
+ * @twin.org/validate-locales bumped from 0.0.3-next.29 to 0.0.3-next.30
211
+
212
+ ## [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)
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.28 to 0.0.3-next.29
225
+ * @twin.org/core bumped from 0.0.3-next.28 to 0.0.3-next.29
226
+ * devDependencies
227
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
228
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
229
+ * @twin.org/validate-locales bumped from 0.0.3-next.28 to 0.0.3-next.29
230
+
231
+ ## [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)
232
+
233
+
234
+ ### Bug Fixes
235
+
236
+ * update copyright year ([#260](https://github.com/iotaledger/twin-framework/issues/260)) ([c4ad930](https://github.com/iotaledger/twin-framework/commit/c4ad930fcc84ba6b5447a8074574329870b4c3f5))
237
+
238
+
239
+ ### Dependencies
240
+
241
+ * The following workspace dependencies were updated
242
+ * dependencies
243
+ * @twin.org/nameof bumped from 0.0.3-next.27 to 0.0.3-next.28
244
+ * @twin.org/core bumped from 0.0.3-next.27 to 0.0.3-next.28
245
+ * devDependencies
246
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
247
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
248
+ * @twin.org/validate-locales bumped from 0.0.3-next.27 to 0.0.3-next.28
249
+
250
+ ## [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)
251
+
252
+
253
+ ### Miscellaneous Chores
254
+
255
+ * **entity:** Synchronize repo versions
256
+
257
+
258
+ ### Dependencies
259
+
260
+ * The following workspace dependencies were updated
261
+ * dependencies
262
+ * @twin.org/nameof bumped from 0.0.3-next.26 to 0.0.3-next.27
263
+ * @twin.org/core bumped from 0.0.3-next.26 to 0.0.3-next.27
264
+ * devDependencies
265
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
266
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
267
+ * @twin.org/validate-locales bumped from 0.0.3-next.26 to 0.0.3-next.27
268
+
269
+ ## [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)
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.25 to 0.0.3-next.26
282
+ * @twin.org/core bumped from 0.0.3-next.25 to 0.0.3-next.26
283
+ * devDependencies
284
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
285
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
286
+ * @twin.org/validate-locales bumped from 0.0.3-next.25 to 0.0.3-next.26
287
+
288
+ ## [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)
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.24 to 0.0.3-next.25
301
+ * @twin.org/core bumped from 0.0.3-next.24 to 0.0.3-next.25
302
+ * devDependencies
303
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
304
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
305
+ * @twin.org/validate-locales bumped from 0.0.3-next.24 to 0.0.3-next.25
306
+
307
+ ## [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)
308
+
309
+
310
+ ### Bug Fixes
311
+
312
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
313
+
314
+
315
+ ### Dependencies
316
+
317
+ * The following workspace dependencies were updated
318
+ * dependencies
319
+ * @twin.org/nameof bumped from 0.0.3-next.23 to 0.0.3-next.24
320
+ * @twin.org/core bumped from 0.0.3-next.23 to 0.0.3-next.24
321
+ * devDependencies
322
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
323
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
324
+ * @twin.org/validate-locales bumped from 0.0.3-next.23 to 0.0.3-next.24
325
+
326
+ ## [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)
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.22 to 0.0.3-next.23
339
+ * @twin.org/core bumped from 0.0.3-next.22 to 0.0.3-next.23
340
+ * devDependencies
341
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
342
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
343
+ * @twin.org/validate-locales bumped from 0.0.3-next.22 to 0.0.3-next.23
344
+
345
+ ## [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)
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.21 to 0.0.3-next.22
358
+ * @twin.org/core bumped from 0.0.3-next.21 to 0.0.3-next.22
359
+ * devDependencies
360
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
361
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
362
+ * @twin.org/validate-locales bumped from 0.0.3-next.21 to 0.0.3-next.22
363
+
364
+ ## [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)
365
+
366
+
367
+ ### Features
368
+
369
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
370
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
371
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
372
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
373
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
374
+ * support for object comparisons in entity conditions ([edae91d](https://github.com/iotaledger/twin-framework/commit/edae91d3205524080188a35e0ab04da036fa4f39))
375
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
376
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
377
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
378
+
379
+
380
+ ### Dependencies
381
+
382
+ * The following workspace dependencies were updated
383
+ * dependencies
384
+ * @twin.org/nameof bumped from 0.0.3-next.20 to 0.0.3-next.21
385
+ * @twin.org/core bumped from 0.0.3-next.20 to 0.0.3-next.21
386
+ * devDependencies
387
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
388
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
389
+ * @twin.org/validate-locales bumped from 0.0.3-next.20 to 0.0.3-next.21
390
+
391
+ ## [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)
392
+
393
+
394
+ ### Miscellaneous Chores
395
+
396
+ * **entity:** Synchronize repo versions
397
+
398
+
399
+ ### Dependencies
400
+
401
+ * The following workspace dependencies were updated
402
+ * dependencies
403
+ * @twin.org/nameof bumped from 0.0.3-next.19 to 0.0.3-next.20
404
+ * @twin.org/core bumped from 0.0.3-next.19 to 0.0.3-next.20
405
+ * devDependencies
406
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
407
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
408
+ * @twin.org/validate-locales bumped from 0.0.3-next.19 to 0.0.3-next.20
409
+
410
+ ## [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)
411
+
412
+
413
+ ### Miscellaneous Chores
414
+
415
+ * **entity:** Synchronize repo versions
416
+
417
+
418
+ ### Dependencies
419
+
420
+ * The following workspace dependencies were updated
421
+ * dependencies
422
+ * @twin.org/nameof bumped from 0.0.3-next.18 to 0.0.3-next.19
423
+ * @twin.org/core bumped from 0.0.3-next.18 to 0.0.3-next.19
424
+ * devDependencies
425
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
426
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
427
+ * @twin.org/validate-locales bumped from 0.0.3-next.18 to 0.0.3-next.19
428
+
429
+ ## [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)
430
+
431
+
432
+ ### Miscellaneous Chores
433
+
434
+ * **entity:** Synchronize repo versions
435
+
436
+
437
+ ### Dependencies
438
+
439
+ * The following workspace dependencies were updated
440
+ * dependencies
441
+ * @twin.org/nameof bumped from 0.0.3-next.17 to 0.0.3-next.18
442
+ * @twin.org/core bumped from 0.0.3-next.17 to 0.0.3-next.18
443
+ * devDependencies
444
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
445
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
446
+ * @twin.org/validate-locales bumped from 0.0.3-next.17 to 0.0.3-next.18
447
+
448
+ ## [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)
449
+
450
+
451
+ ### Miscellaneous Chores
452
+
453
+ * **entity:** Synchronize repo versions
454
+
455
+
456
+ ### Dependencies
457
+
458
+ * The following workspace dependencies were updated
459
+ * dependencies
460
+ * @twin.org/nameof bumped from 0.0.3-next.16 to 0.0.3-next.17
461
+ * @twin.org/core bumped from 0.0.3-next.16 to 0.0.3-next.17
462
+ * devDependencies
463
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
464
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
465
+ * @twin.org/validate-locales bumped from 0.0.3-next.16 to 0.0.3-next.17
466
+
467
+ ## [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)
468
+
469
+
470
+ ### Miscellaneous Chores
471
+
472
+ * **entity:** Synchronize repo versions
473
+
474
+
475
+ ### Dependencies
476
+
477
+ * The following workspace dependencies were updated
478
+ * dependencies
479
+ * @twin.org/nameof bumped from 0.0.3-next.15 to 0.0.3-next.16
480
+ * @twin.org/core bumped from 0.0.3-next.15 to 0.0.3-next.16
481
+ * devDependencies
482
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
483
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
484
+ * @twin.org/validate-locales bumped from 0.0.3-next.15 to 0.0.3-next.16
485
+
486
+ ## [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)
487
+
488
+
489
+ ### Miscellaneous Chores
490
+
491
+ * **entity:** Synchronize repo versions
492
+
493
+
494
+ ### Dependencies
495
+
496
+ * The following workspace dependencies were updated
497
+ * dependencies
498
+ * @twin.org/nameof bumped from 0.0.3-next.14 to 0.0.3-next.15
499
+ * @twin.org/core bumped from 0.0.3-next.14 to 0.0.3-next.15
500
+ * devDependencies
501
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
502
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
503
+ * @twin.org/validate-locales bumped from 0.0.3-next.14 to 0.0.3-next.15
504
+
505
+ ## [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)
506
+
507
+
508
+ ### Miscellaneous Chores
509
+
510
+ * **entity:** Synchronize repo versions
511
+
512
+
513
+ ### Dependencies
514
+
515
+ * The following workspace dependencies were updated
516
+ * dependencies
517
+ * @twin.org/nameof bumped from 0.0.3-next.13 to 0.0.3-next.14
518
+ * @twin.org/core bumped from 0.0.3-next.13 to 0.0.3-next.14
519
+ * devDependencies
520
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
521
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
522
+ * @twin.org/validate-locales bumped from 0.0.3-next.13 to 0.0.3-next.14
523
+
524
+ ## [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)
525
+
526
+
527
+ ### Miscellaneous Chores
528
+
529
+ * **entity:** Synchronize repo versions
530
+
531
+
532
+ ### Dependencies
533
+
534
+ * The following workspace dependencies were updated
535
+ * dependencies
536
+ * @twin.org/nameof bumped from 0.0.3-next.12 to 0.0.3-next.13
537
+ * @twin.org/core bumped from 0.0.3-next.12 to 0.0.3-next.13
538
+ * devDependencies
539
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
540
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
541
+ * @twin.org/validate-locales bumped from 0.0.3-next.12 to 0.0.3-next.13
542
+
543
+ ## [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)
544
+
545
+
546
+ ### Miscellaneous Chores
547
+
548
+ * **entity:** Synchronize repo versions
549
+
550
+
551
+ ### Dependencies
552
+
553
+ * The following workspace dependencies were updated
554
+ * dependencies
555
+ * @twin.org/nameof bumped from 0.0.3-next.11 to 0.0.3-next.12
556
+ * @twin.org/core bumped from 0.0.3-next.11 to 0.0.3-next.12
557
+ * devDependencies
558
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
559
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
560
+ * @twin.org/validate-locales bumped from 0.0.3-next.11 to 0.0.3-next.12
561
+
562
+ ## [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)
563
+
564
+
565
+ ### Miscellaneous Chores
566
+
567
+ * **entity:** Synchronize repo versions
568
+
569
+
570
+ ### Dependencies
571
+
572
+ * The following workspace dependencies were updated
573
+ * dependencies
574
+ * @twin.org/nameof bumped from 0.0.3-next.10 to 0.0.3-next.11
575
+ * @twin.org/core bumped from 0.0.3-next.10 to 0.0.3-next.11
576
+ * devDependencies
577
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
578
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
579
+ * @twin.org/validate-locales bumped from 0.0.3-next.10 to 0.0.3-next.11
580
+
581
+ ## [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)
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.9 to 0.0.3-next.10
594
+ * @twin.org/core bumped from 0.0.3-next.9 to 0.0.3-next.10
595
+ * devDependencies
596
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
597
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
598
+ * @twin.org/validate-locales bumped from 0.0.3-next.9 to 0.0.3-next.10
599
+
600
+ ## [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)
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.8 to 0.0.3-next.9
613
+ * @twin.org/core bumped from 0.0.3-next.8 to 0.0.3-next.9
614
+ * devDependencies
615
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
616
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
617
+ * @twin.org/validate-locales bumped from 0.0.3-next.8 to 0.0.3-next.9
618
+
619
+ ## [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)
620
+
621
+
622
+ ### Features
623
+
624
+ * support for object comparisons in entity conditions ([edae91d](https://github.com/iotaledger/twin-framework/commit/edae91d3205524080188a35e0ab04da036fa4f39))
625
+
626
+
627
+ ### Dependencies
628
+
629
+ * The following workspace dependencies were updated
630
+ * dependencies
631
+ * @twin.org/nameof bumped from 0.0.3-next.7 to 0.0.3-next.8
632
+ * @twin.org/core bumped from 0.0.3-next.7 to 0.0.3-next.8
633
+ * devDependencies
634
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
635
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
636
+ * @twin.org/validate-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
637
+
638
+ ## [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)
639
+
640
+
641
+ ### Features
642
+
643
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
644
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
645
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
646
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
647
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
648
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
649
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
650
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
651
+
652
+
653
+ ### Dependencies
654
+
655
+ * The following workspace dependencies were updated
656
+ * dependencies
657
+ * @twin.org/nameof bumped from 0.0.3-next.6 to 0.0.3-next.7
658
+ * @twin.org/core bumped from 0.0.3-next.6 to 0.0.3-next.7
659
+ * devDependencies
660
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
661
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
662
+ * @twin.org/validate-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
663
+
664
+ ## [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)
665
+
666
+
667
+ ### Miscellaneous Chores
668
+
669
+ * **entity:** Synchronize repo versions
670
+
671
+
672
+ ### Dependencies
673
+
674
+ * The following workspace dependencies were updated
675
+ * dependencies
676
+ * @twin.org/nameof bumped from 0.0.3-next.5 to 0.0.3-next.6
677
+ * @twin.org/core bumped from 0.0.3-next.5 to 0.0.3-next.6
678
+ * devDependencies
679
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
680
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
681
+ * @twin.org/validate-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
682
+
683
+ ## [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)
684
+
685
+
686
+ ### Miscellaneous Chores
687
+
688
+ * **entity:** Synchronize repo versions
689
+
690
+
691
+ ### Dependencies
692
+
693
+ * The following workspace dependencies were updated
694
+ * dependencies
695
+ * @twin.org/nameof bumped from 0.0.3-next.4 to 0.0.3-next.5
696
+ * @twin.org/core bumped from 0.0.3-next.4 to 0.0.3-next.5
697
+ * devDependencies
698
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.4 to 0.0.3-next.5
699
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
700
+ * @twin.org/validate-locales bumped from 0.0.3-next.4 to 0.0.3-next.5
701
+
702
+ ## [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)
4
703
 
5
704
 
6
705
  ### Miscellaneous Chores
@@ -19,7 +718,7 @@
19
718
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
20
719
  * @twin.org/validate-locales bumped from 0.0.3-next.3 to 0.0.3-next.4
21
720
 
22
- ## [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)
721
+ ## [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)
23
722
 
24
723
 
25
724
  ### Miscellaneous Chores
@@ -38,7 +737,7 @@
38
737
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.2 to 0.0.3-next.3
39
738
  * @twin.org/validate-locales bumped from 0.0.3-next.2 to 0.0.3-next.3
40
739
 
41
- ## [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)
740
+ ## [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)
42
741
 
43
742
 
44
743
  ### Miscellaneous Chores
@@ -57,19 +756,19 @@
57
756
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.1 to 0.0.3-next.2
58
757
  * @twin.org/validate-locales bumped from 0.0.3-next.1 to 0.0.3-next.2
59
758
 
60
- ## [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)
759
+ ## [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)
61
760
 
62
761
 
63
762
  ### Features
64
763
 
65
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
66
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
67
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
68
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
69
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
70
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
71
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
72
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
764
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
765
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
766
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
767
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
768
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
769
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
770
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
771
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
73
772
 
74
773
 
75
774
  ### Dependencies
@@ -83,7 +782,7 @@
83
782
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.0 to 0.0.3-next.1
84
783
  * @twin.org/validate-locales bumped from 0.0.3-next.0 to 0.0.3-next.1
85
784
 
86
- ## [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)
785
+ ## [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)
87
786
 
88
787
 
89
788
  ### Miscellaneous Chores
@@ -102,12 +801,12 @@
102
801
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.21 to 0.0.2-next.22
103
802
  * @twin.org/validate-locales bumped from 0.0.2-next.21 to 0.0.2-next.22
104
803
 
105
- ## [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)
804
+ ## [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)
106
805
 
107
806
 
108
807
  ### Features
109
808
 
110
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
809
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
111
810
 
112
811
 
113
812
  ### Dependencies
@@ -121,7 +820,7 @@
121
820
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.20 to 0.0.2-next.21
122
821
  * @twin.org/validate-locales bumped from 0.0.2-next.20 to 0.0.2-next.21
123
822
 
124
- ## [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)
823
+ ## [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)
125
824
 
126
825
 
127
826
  ### Miscellaneous Chores
@@ -139,7 +838,7 @@
139
838
  * @twin.org/nameof-transformer bumped from 0.0.2-next.19 to 0.0.2-next.20
140
839
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.19 to 0.0.2-next.20
141
840
 
142
- ## [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)
841
+ ## [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)
143
842
 
144
843
 
145
844
  ### Miscellaneous Chores
@@ -157,7 +856,7 @@
157
856
  * @twin.org/nameof-transformer bumped from 0.0.2-next.18 to 0.0.2-next.19
158
857
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.18 to 0.0.2-next.19
159
858
 
160
- ## [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)
859
+ ## [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)
161
860
 
162
861
 
163
862
  ### Miscellaneous Chores
@@ -175,7 +874,7 @@
175
874
  * @twin.org/nameof-transformer bumped from 0.0.2-next.17 to 0.0.2-next.18
176
875
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.17 to 0.0.2-next.18
177
876
 
178
- ## [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)
877
+ ## [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)
179
878
 
180
879
 
181
880
  ### Miscellaneous Chores
@@ -193,7 +892,7 @@
193
892
  * @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
194
893
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.16 to 0.0.2-next.17
195
894
 
196
- ## [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)
895
+ ## [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)
197
896
 
198
897
 
199
898
  ### Miscellaneous Chores
@@ -211,7 +910,7 @@
211
910
  * @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
212
911
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.15 to 0.0.2-next.16
213
912
 
214
- ## [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)
913
+ ## [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)
215
914
 
216
915
 
217
916
  ### Miscellaneous Chores
@@ -229,7 +928,7 @@
229
928
  * @twin.org/nameof-transformer bumped from 0.0.2-next.14 to 0.0.2-next.15
230
929
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.14 to 0.0.2-next.15
231
930
 
232
- ## [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)
931
+ ## [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)
233
932
 
234
933
 
235
934
  ### Miscellaneous Chores
@@ -247,7 +946,7 @@
247
946
  * @twin.org/nameof-transformer bumped from 0.0.2-next.13 to 0.0.2-next.14
248
947
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.13 to 0.0.2-next.14
249
948
 
250
- ## [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)
949
+ ## [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)
251
950
 
252
951
 
253
952
  ### Miscellaneous Chores
@@ -265,7 +964,7 @@
265
964
  * @twin.org/nameof-transformer bumped from 0.0.2-next.12 to 0.0.2-next.13
266
965
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.12 to 0.0.2-next.13
267
966
 
268
- ## [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)
967
+ ## [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)
269
968
 
270
969
 
271
970
  ### Miscellaneous Chores
@@ -283,7 +982,7 @@
283
982
  * @twin.org/nameof-transformer bumped from 0.0.2-next.11 to 0.0.2-next.12
284
983
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.11 to 0.0.2-next.12
285
984
 
286
- ## [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)
985
+ ## [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)
287
986
 
288
987
 
289
988
  ### Miscellaneous Chores
@@ -301,7 +1000,7 @@
301
1000
  * @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
302
1001
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.10 to 0.0.2-next.11
303
1002
 
304
- ## [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)
1003
+ ## [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)
305
1004
 
306
1005
 
307
1006
  ### Miscellaneous Chores
@@ -319,7 +1018,7 @@
319
1018
  * @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
320
1019
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.9 to 0.0.2-next.10
321
1020
 
322
- ## [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)
1021
+ ## [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)
323
1022
 
324
1023
 
325
1024
  ### Miscellaneous Chores
@@ -337,7 +1036,7 @@
337
1036
  * @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
338
1037
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.8 to 0.0.2-next.9
339
1038
 
340
- ## [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)
1039
+ ## [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)
341
1040
 
342
1041
 
343
1042
  ### Miscellaneous Chores
@@ -355,12 +1054,12 @@
355
1054
  * @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
356
1055
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.7 to 0.0.2-next.8
357
1056
 
358
- ## [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)
1057
+ ## [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)
359
1058
 
360
1059
 
361
1060
  ### Features
362
1061
 
363
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
1062
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
364
1063
 
365
1064
 
366
1065
  ### Dependencies
@@ -373,7 +1072,7 @@
373
1072
  * @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
374
1073
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
375
1074
 
376
- ## [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)
1075
+ ## [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)
377
1076
 
378
1077
 
379
1078
  ### Miscellaneous Chores
@@ -391,12 +1090,12 @@
391
1090
  * @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
392
1091
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
393
1092
 
394
- ## [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)
1093
+ ## [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)
395
1094
 
396
1095
 
397
1096
  ### Features
398
1097
 
399
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
1098
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
400
1099
 
401
1100
 
402
1101
  ### Dependencies
@@ -409,7 +1108,7 @@
409
1108
  * @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
410
1109
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
411
1110
 
412
- ## [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)
1111
+ ## [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)
413
1112
 
414
1113
 
415
1114
  ### Miscellaneous Chores
@@ -427,15 +1126,15 @@
427
1126
  * @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
428
1127
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.3 to 0.0.2-next.4
429
1128
 
430
- ## [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)
1129
+ ## [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)
431
1130
 
432
1131
 
433
1132
  ### Features
434
1133
 
435
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
436
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
437
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
438
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1134
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1135
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1136
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1137
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
439
1138
 
440
1139
 
441
1140
  ### Dependencies
@@ -448,15 +1147,15 @@
448
1147
  * @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
449
1148
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
450
1149
 
451
- ## [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)
1150
+ ## [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)
452
1151
 
453
1152
 
454
1153
  ### Features
455
1154
 
456
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
457
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
458
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
459
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1155
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1156
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1157
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1158
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
460
1159
 
461
1160
 
462
1161
  ### Dependencies
@@ -469,15 +1168,15 @@
469
1168
  * @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
470
1169
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
471
1170
 
472
- ## [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)
1171
+ ## [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)
473
1172
 
474
1173
 
475
1174
  ### Features
476
1175
 
477
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
478
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
479
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
480
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1176
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1177
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1178
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1179
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
481
1180
 
482
1181
 
483
1182
  ### Dependencies
@@ -495,8 +1194,8 @@
495
1194
 
496
1195
  ### Features
497
1196
 
498
- * release to production ([829d53d](https://github.com/twinfoundation/framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
499
- * release to production ([5cf3a76](https://github.com/twinfoundation/framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
1197
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
1198
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
500
1199
 
501
1200
 
502
1201
  ### Dependencies
@@ -509,14 +1208,14 @@
509
1208
  * @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
510
1209
  * @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
511
1210
 
512
- ## [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)
1211
+ ## [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)
513
1212
 
514
1213
 
515
1214
  ### Features
516
1215
 
517
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
518
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
519
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1216
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1217
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1218
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
520
1219
 
521
1220
 
522
1221
  ### Dependencies
@@ -529,14 +1228,14 @@
529
1228
  * @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
530
1229
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
531
1230
 
532
- ## [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)
1231
+ ## [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)
533
1232
 
534
1233
 
535
1234
  ### Features
536
1235
 
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
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1236
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1237
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1238
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
540
1239
 
541
1240
 
542
1241
  ### Dependencies
@@ -549,12 +1248,12 @@
549
1248
  * @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
550
1249
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
551
1250
 
552
- ## [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)
1251
+ ## [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)
553
1252
 
554
1253
 
555
1254
  ### Features
556
1255
 
557
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1256
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
558
1257
 
559
1258
 
560
1259
  ### Dependencies
@@ -567,7 +1266,7 @@
567
1266
  * @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
568
1267
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
569
1268
 
570
- ## [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)
1269
+ ## [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)
571
1270
 
572
1271
 
573
1272
  ### Miscellaneous Chores
@@ -581,7 +1280,7 @@
581
1280
  * dependencies
582
1281
  * @twin.org/core bumped from 0.0.1-next.66 to 0.0.1-next.67
583
1282
 
584
- ## [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)
1283
+ ## [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)
585
1284
 
586
1285
 
587
1286
  ### Miscellaneous Chores
@@ -595,7 +1294,7 @@
595
1294
  * dependencies
596
1295
  * @twin.org/core bumped from 0.0.1-next.65 to 0.0.1-next.66
597
1296
 
598
- ## [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)
1297
+ ## [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)
599
1298
 
600
1299
 
601
1300
  ### Miscellaneous Chores
@@ -609,7 +1308,7 @@
609
1308
  * dependencies
610
1309
  * @twin.org/core bumped from 0.0.1-next.64 to 0.0.1-next.65
611
1310
 
612
- ## [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)
1311
+ ## [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)
613
1312
 
614
1313
 
615
1314
  ### Miscellaneous Chores
@@ -623,7 +1322,7 @@
623
1322
  * dependencies
624
1323
  * @twin.org/core bumped from 0.0.1-next.63 to 0.0.1-next.64
625
1324
 
626
- ## [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)
1325
+ ## [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)
627
1326
 
628
1327
 
629
1328
  ### Miscellaneous Chores
@@ -637,13 +1336,13 @@
637
1336
  * dependencies
638
1337
  * @twin.org/core bumped from 0.0.1-next.62 to 0.0.1-next.63
639
1338
 
640
- ## [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)
1339
+ ## [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)
641
1340
 
642
1341
 
643
1342
  ### Features
644
1343
 
645
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
646
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1344
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1345
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
647
1346
 
648
1347
 
649
1348
  ### Dependencies
@@ -652,7 +1351,7 @@
652
1351
  * dependencies
653
1352
  * @twin.org/core bumped from 0.0.1-next.61 to 0.0.1-next.62
654
1353
 
655
- ## [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)
1354
+ ## [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)
656
1355
 
657
1356
 
658
1357
  ### Miscellaneous Chores
@@ -666,7 +1365,7 @@
666
1365
  * dependencies
667
1366
  * @twin.org/core bumped from 0.0.1-next.60 to 0.0.1-next.61
668
1367
 
669
- ## [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)
1368
+ ## [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)
670
1369
 
671
1370
 
672
1371
  ### Miscellaneous Chores
@@ -680,7 +1379,7 @@
680
1379
  * dependencies
681
1380
  * @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
682
1381
 
683
- ## [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)
1382
+ ## [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)
684
1383
 
685
1384
 
686
1385
  ### Miscellaneous Chores
@@ -694,7 +1393,7 @@
694
1393
  * dependencies
695
1394
  * @twin.org/core bumped from 0.0.1-next.58 to 0.0.1-next.59
696
1395
 
697
- ## [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)
1396
+ ## [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)
698
1397
 
699
1398
 
700
1399
  ### Miscellaneous Chores
@@ -708,12 +1407,12 @@
708
1407
  * dependencies
709
1408
  * @twin.org/core bumped from 0.0.1-next.57 to 0.0.1-next.58
710
1409
 
711
- ## [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)
1410
+ ## [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)
712
1411
 
713
1412
 
714
1413
  ### Features
715
1414
 
716
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1415
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
717
1416
 
718
1417
 
719
1418
  ### Dependencies
@@ -722,7 +1421,7 @@
722
1421
  * dependencies
723
1422
  * @twin.org/core bumped from 0.0.1-next.56 to 0.0.1-next.57
724
1423
 
725
- ## [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)
1424
+ ## [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)
726
1425
 
727
1426
 
728
1427
  ### Miscellaneous Chores
@@ -736,7 +1435,7 @@
736
1435
  * dependencies
737
1436
  * @twin.org/core bumped from 0.0.1-next.55 to 0.0.1-next.56
738
1437
 
739
- ## [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)
1438
+ ## [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)
740
1439
 
741
1440
 
742
1441
  ### Miscellaneous Chores
@@ -750,7 +1449,7 @@
750
1449
  * dependencies
751
1450
  * @twin.org/core bumped from 0.0.1-next.54 to 0.0.1-next.55
752
1451
 
753
- ## [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)
1452
+ ## [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)
754
1453
 
755
1454
 
756
1455
  ### Miscellaneous Chores
@@ -764,7 +1463,7 @@
764
1463
  * dependencies
765
1464
  * @twin.org/core bumped from 0.0.1-next.53 to 0.0.1-next.54
766
1465
 
767
- ## [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)
1466
+ ## [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)
768
1467
 
769
1468
 
770
1469
  ### Miscellaneous Chores
@@ -778,12 +1477,12 @@
778
1477
  * dependencies
779
1478
  * @twin.org/core bumped from 0.0.1-next.52 to 0.0.1-next.53
780
1479
 
781
- ## [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)
1480
+ ## [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)
782
1481
 
783
1482
 
784
1483
  ### Features
785
1484
 
786
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1485
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
787
1486
 
788
1487
 
789
1488
  ### Dependencies
@@ -792,7 +1491,7 @@
792
1491
  * dependencies
793
1492
  * @twin.org/core bumped from 0.0.1-next.51 to 0.0.1-next.52
794
1493
 
795
- ## [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)
1494
+ ## [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)
796
1495
 
797
1496
 
798
1497
  ### Miscellaneous Chores
@@ -806,7 +1505,7 @@
806
1505
  * dependencies
807
1506
  * @twin.org/core bumped from 0.0.1-next.50 to 0.0.1-next.51
808
1507
 
809
- ## [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)
1508
+ ## [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)
810
1509
 
811
1510
 
812
1511
  ### Miscellaneous Chores