@twin.org/api-auth-entity-storage-models 0.0.3-next.9 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. package/README.md +2 -2
  2. package/dist/es/index.js +17 -0
  3. package/dist/es/index.js.map +1 -1
  4. package/dist/es/models/IAuthenticationAdminComponent.js.map +1 -1
  5. package/dist/es/models/IAuthenticationAuditComponent.js +2 -0
  6. package/dist/es/models/IAuthenticationAuditComponent.js.map +1 -0
  7. package/dist/es/models/IAuthenticationAuditEntry.js +2 -0
  8. package/dist/es/models/IAuthenticationAuditEntry.js.map +1 -0
  9. package/dist/es/models/IAuthenticationComponent.js.map +1 -1
  10. package/dist/es/models/IAuthenticationRateActionConfig.js +4 -0
  11. package/dist/es/models/IAuthenticationRateActionConfig.js.map +1 -0
  12. package/dist/es/models/IAuthenticationRateComponent.js +2 -0
  13. package/dist/es/models/IAuthenticationRateComponent.js.map +1 -0
  14. package/dist/es/models/IAuthenticationUser.js +4 -0
  15. package/dist/es/models/IAuthenticationUser.js.map +1 -0
  16. package/dist/es/models/IAuthenticationUserSecure.js +2 -0
  17. package/dist/es/models/IAuthenticationUserSecure.js.map +1 -0
  18. package/dist/es/models/api/IAdminUserCreateRequest.js +2 -0
  19. package/dist/es/models/api/IAdminUserCreateRequest.js.map +1 -0
  20. package/dist/es/models/api/IAdminUserGetByIdentityRequest.js +4 -0
  21. package/dist/es/models/api/IAdminUserGetByIdentityRequest.js.map +1 -0
  22. package/dist/es/models/api/IAdminUserGetRequest.js +4 -0
  23. package/dist/es/models/api/IAdminUserGetRequest.js.map +1 -0
  24. package/dist/es/models/api/IAdminUserGetResponse.js +2 -0
  25. package/dist/es/models/api/IAdminUserGetResponse.js.map +1 -0
  26. package/dist/es/models/api/IAdminUserRemoveRequest.js +4 -0
  27. package/dist/es/models/api/IAdminUserRemoveRequest.js.map +1 -0
  28. package/dist/es/models/api/IAdminUserUpdatePasswordRequest.js +4 -0
  29. package/dist/es/models/api/IAdminUserUpdatePasswordRequest.js.map +1 -0
  30. package/dist/es/models/api/IAdminUserUpdateRequest.js +2 -0
  31. package/dist/es/models/api/IAdminUserUpdateRequest.js.map +1 -0
  32. package/dist/es/models/api/IAuditCreateRequest.js +2 -0
  33. package/dist/es/models/api/IAuditCreateRequest.js.map +1 -0
  34. package/dist/es/models/api/IAuditQueryRequest.js +2 -0
  35. package/dist/es/models/api/IAuditQueryRequest.js.map +1 -0
  36. package/dist/es/models/api/IAuditQueryResponse.js +2 -0
  37. package/dist/es/models/api/IAuditQueryResponse.js.map +1 -0
  38. package/dist/es/models/api/ILogoutRequest.js.map +1 -1
  39. package/dist/es/models/api/IRefreshTokenRequest.js.map +1 -1
  40. package/dist/es/models/api/IUpdatePasswordRequest.js.map +1 -1
  41. package/dist/es/models/authAuditEvent.js +49 -0
  42. package/dist/es/models/authAuditEvent.js.map +1 -0
  43. package/dist/types/index.d.ts +17 -0
  44. package/dist/types/models/IAuthenticationAdminComponent.d.ts +27 -9
  45. package/dist/types/models/IAuthenticationAuditComponent.d.ts +40 -0
  46. package/dist/types/models/IAuthenticationAuditEntry.d.ts +50 -0
  47. package/dist/types/models/IAuthenticationComponent.d.ts +3 -4
  48. package/dist/types/models/IAuthenticationRateActionConfig.d.ts +13 -0
  49. package/dist/types/models/IAuthenticationRateComponent.d.ts +46 -0
  50. package/dist/types/models/IAuthenticationUser.d.ts +21 -0
  51. package/dist/types/models/IAuthenticationUserSecure.d.ts +18 -0
  52. package/dist/types/models/api/IAdminUserCreateRequest.d.ts +12 -0
  53. package/dist/types/models/api/IAdminUserGetByIdentityRequest.d.ts +14 -0
  54. package/dist/types/models/api/IAdminUserGetRequest.d.ts +14 -0
  55. package/dist/types/models/api/IAdminUserGetResponse.d.ts +10 -0
  56. package/dist/types/models/api/IAdminUserRemoveRequest.d.ts +14 -0
  57. package/dist/types/models/api/IAdminUserUpdatePasswordRequest.d.ts +27 -0
  58. package/dist/types/models/api/IAdminUserUpdateRequest.d.ts +19 -0
  59. package/dist/types/models/api/IAuditCreateRequest.d.ts +10 -0
  60. package/dist/types/models/api/IAuditQueryRequest.d.ts +47 -0
  61. package/dist/types/models/api/IAuditQueryResponse.d.ts +19 -0
  62. package/dist/types/models/api/ILogoutRequest.d.ts +1 -1
  63. package/dist/types/models/api/IRefreshTokenRequest.d.ts +1 -1
  64. package/dist/types/models/api/IUpdatePasswordRequest.d.ts +1 -10
  65. package/dist/types/models/authAuditEvent.d.ts +49 -0
  66. package/docs/changelog.md +429 -82
  67. package/docs/examples.md +80 -1
  68. package/docs/reference/index.md +24 -0
  69. package/docs/reference/interfaces/IAdminUserCreateRequest.md +17 -0
  70. package/docs/reference/interfaces/IAdminUserGetByIdentityRequest.md +17 -0
  71. package/docs/reference/interfaces/IAdminUserGetRequest.md +17 -0
  72. package/docs/reference/interfaces/IAdminUserGetResponse.md +11 -0
  73. package/docs/reference/interfaces/IAdminUserRemoveRequest.md +17 -0
  74. package/docs/reference/interfaces/IAdminUserUpdatePasswordRequest.md +37 -0
  75. package/docs/reference/interfaces/IAdminUserUpdateRequest.md +25 -0
  76. package/docs/reference/interfaces/IAuditCreateRequest.md +11 -0
  77. package/docs/reference/interfaces/IAuditQueryRequest.md +65 -0
  78. package/docs/reference/interfaces/IAuditQueryResponse.md +23 -0
  79. package/docs/reference/interfaces/IAuthenticationAdminComponent.md +66 -18
  80. package/docs/reference/interfaces/IAuthenticationAuditComponent.md +103 -0
  81. package/docs/reference/interfaces/IAuthenticationAuditEntry.md +91 -0
  82. package/docs/reference/interfaces/IAuthenticationComponent.md +7 -13
  83. package/docs/reference/interfaces/IAuthenticationRateActionConfig.md +19 -0
  84. package/docs/reference/interfaces/IAuthenticationRateComponent.md +165 -0
  85. package/docs/reference/interfaces/IAuthenticationUser.md +39 -0
  86. package/docs/reference/interfaces/IAuthenticationUserSecure.md +79 -0
  87. package/docs/reference/interfaces/ILoginRequest.md +1 -1
  88. package/docs/reference/interfaces/ILoginResponse.md +4 -4
  89. package/docs/reference/interfaces/ILogoutRequest.md +3 -3
  90. package/docs/reference/interfaces/IRefreshTokenRequest.md +3 -3
  91. package/docs/reference/interfaces/IRefreshTokenResponse.md +4 -4
  92. package/docs/reference/interfaces/IUpdatePasswordRequest.md +2 -16
  93. package/docs/reference/type-aliases/AuthAuditEvent.md +5 -0
  94. package/docs/reference/variables/AuthAuditEvent.md +67 -0
  95. package/package.json +7 -7
package/docs/changelog.md CHANGED
@@ -1,239 +1,586 @@
1
- # @twin.org/api-auth-entity-storage-models - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.9](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.3-next.8...api-auth-entity-storage-models-v0.0.3-next.9) (2026-01-05)
3
+ ## [0.9.0](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.9.0...api-auth-entity-storage-models-v0.9.0) (2026-06-24)
4
4
 
5
5
 
6
6
  ### Features
7
7
 
8
- * add context id features ([#42](https://github.com/twinfoundation/api/issues/42)) ([0186055](https://github.com/twinfoundation/api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
9
- * add json-ld mime type processor and auth admin component ([8861791](https://github.com/twinfoundation/api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
10
- * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
11
- * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
12
- * improve description ([d28185c](https://github.com/twinfoundation/api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
13
- * improve socket route logging ([b8d9519](https://github.com/twinfoundation/api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
14
- * modify authHeaderProcessor to retain token in response body ([#53](https://github.com/twinfoundation/api/issues/53)) ([5d9ae76](https://github.com/twinfoundation/api/commit/5d9ae76b5b52a8e10dac391b2d5784638a186583))
15
- * remove unused namespace ([08478f2](https://github.com/twinfoundation/api/commit/08478f27efda9beb0271fdb22f6972e918361965))
16
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
17
- * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
18
- * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
19
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
8
+ * release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
9
+ * release to production ([#195](https://github.com/iotaledger/twin-api/issues/195)) ([a3f5c1f](https://github.com/iotaledger/twin-api/commit/a3f5c1fc35a748762af7efa4f7f95776004d1309))
10
+ * release to production ([#197](https://github.com/iotaledger/twin-api/issues/197)) ([f04c156](https://github.com/iotaledger/twin-api/commit/f04c1567f801cde36c5ec8595f9b9369109d9e42))
11
+ * release to production ([#201](https://github.com/iotaledger/twin-api/issues/201)) ([e1c46fd](https://github.com/iotaledger/twin-api/commit/e1c46fd02c1f4d44d5393e2f49a24f1e4468f240))
20
12
 
21
- ## [0.0.3-next.8](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.3-next.7...api-auth-entity-storage-models-v0.0.3-next.8) (2025-12-17)
13
+ ## [0.9.0-next.1](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.9.0-next.0...api-auth-entity-storage-models-v0.9.0-next.1) (2026-06-23)
14
+
15
+
16
+ ### Features
17
+
18
+ * add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
19
+ * add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
20
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
21
+ * auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
22
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
23
+ * improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
24
+ * improve socket route logging ([b8d9519](https://github.com/iotaledger/twin-api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
25
+ * modify authHeaderProcessor to retain token in response body ([#53](https://github.com/iotaledger/twin-api/issues/53)) ([5d9ae76](https://github.com/iotaledger/twin-api/commit/5d9ae76b5b52a8e10dac391b2d5784638a186583))
26
+ * remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
27
+ * tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
28
+ * typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
29
+ * update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
30
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
31
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
32
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
33
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
34
+ * user admin service ([#77](https://github.com/iotaledger/twin-api/issues/77)) ([c8491df](https://github.com/iotaledger/twin-api/commit/c8491df7b07c1f45560c8a78c6adc806d0ececbb))
35
+ * user partitioning ([#126](https://github.com/iotaledger/twin-api/issues/126)) ([6bf0da3](https://github.com/iotaledger/twin-api/commit/6bf0da3c42406c9838e80e0ddd6b21f5c64aac90))
36
+
37
+
38
+ ### Bug Fixes
39
+
40
+ * change logout and refresh routes from GET to POST ([#111](https://github.com/iotaledger/twin-api/issues/111)) ([cb8b64b](https://github.com/iotaledger/twin-api/commit/cb8b64b6507f9991baa78a663de2e84269695c82))
41
+
42
+ ## [0.0.3-next.53](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.52...api-auth-entity-storage-models-v0.0.3-next.53) (2026-06-23)
43
+
44
+
45
+ ### Miscellaneous Chores
46
+
47
+ * **api-auth-entity-storage-models:** Synchronize repo versions
48
+
49
+ ## [0.0.3-next.52](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.51...api-auth-entity-storage-models-v0.0.3-next.52) (2026-06-22)
50
+
51
+
52
+ ### Miscellaneous Chores
53
+
54
+ * **api-auth-entity-storage-models:** Synchronize repo versions
55
+
56
+ ## [0.0.3-next.51](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.50...api-auth-entity-storage-models-v0.0.3-next.51) (2026-06-20)
57
+
58
+
59
+ ### Miscellaneous Chores
60
+
61
+ * **api-auth-entity-storage-models:** Synchronize repo versions
62
+
63
+ ## [0.0.3-next.50](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.49...api-auth-entity-storage-models-v0.0.3-next.50) (2026-06-19)
64
+
65
+
66
+ ### Miscellaneous Chores
67
+
68
+ * **api-auth-entity-storage-models:** Synchronize repo versions
69
+
70
+ ## [0.0.3-next.49](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.48...api-auth-entity-storage-models-v0.0.3-next.49) (2026-06-19)
71
+
72
+
73
+ ### Miscellaneous Chores
74
+
75
+ * **api-auth-entity-storage-models:** Synchronize repo versions
76
+
77
+ ## [0.0.3-next.48](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.47...api-auth-entity-storage-models-v0.0.3-next.48) (2026-06-19)
78
+
79
+
80
+ ### Miscellaneous Chores
81
+
82
+ * **api-auth-entity-storage-models:** Synchronize repo versions
83
+
84
+ ## [0.0.3-next.47](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.46...api-auth-entity-storage-models-v0.0.3-next.47) (2026-06-18)
85
+
86
+
87
+ ### Miscellaneous Chores
88
+
89
+ * **api-auth-entity-storage-models:** Synchronize repo versions
90
+
91
+ ## [0.0.3-next.46](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.45...api-auth-entity-storage-models-v0.0.3-next.46) (2026-06-17)
92
+
93
+
94
+ ### Miscellaneous Chores
95
+
96
+ * **api-auth-entity-storage-models:** Synchronize repo versions
97
+
98
+ ## [0.0.3-next.45](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.44...api-auth-entity-storage-models-v0.0.3-next.45) (2026-06-15)
99
+
100
+
101
+ ### Miscellaneous Chores
102
+
103
+ * **api-auth-entity-storage-models:** Synchronize repo versions
104
+
105
+ ## [0.0.3-next.44](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.43...api-auth-entity-storage-models-v0.0.3-next.44) (2026-06-11)
106
+
107
+
108
+ ### Miscellaneous Chores
109
+
110
+ * **api-auth-entity-storage-models:** Synchronize repo versions
111
+
112
+ ## [0.0.3-next.43](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.42...api-auth-entity-storage-models-v0.0.3-next.43) (2026-06-10)
113
+
114
+
115
+ ### Miscellaneous Chores
116
+
117
+ * **api-auth-entity-storage-models:** Synchronize repo versions
118
+
119
+ ## [0.0.3-next.42](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.41...api-auth-entity-storage-models-v0.0.3-next.42) (2026-06-08)
120
+
121
+
122
+ ### Miscellaneous Chores
123
+
124
+ * **api-auth-entity-storage-models:** Synchronize repo versions
125
+
126
+ ## [0.0.3-next.41](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.40...api-auth-entity-storage-models-v0.0.3-next.41) (2026-06-05)
127
+
128
+
129
+ ### Miscellaneous Chores
130
+
131
+ * **api-auth-entity-storage-models:** Synchronize repo versions
132
+
133
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.39...api-auth-entity-storage-models-v0.0.3-next.40) (2026-06-04)
134
+
135
+
136
+ ### Miscellaneous Chores
137
+
138
+ * **api-auth-entity-storage-models:** Synchronize repo versions
139
+
140
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.38...api-auth-entity-storage-models-v0.0.3-next.39) (2026-06-02)
141
+
142
+
143
+ ### Miscellaneous Chores
144
+
145
+ * **api-auth-entity-storage-models:** Synchronize repo versions
146
+
147
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.37...api-auth-entity-storage-models-v0.0.3-next.38) (2026-05-28)
148
+
149
+
150
+ ### Miscellaneous Chores
151
+
152
+ * **api-auth-entity-storage-models:** Synchronize repo versions
153
+
154
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.36...api-auth-entity-storage-models-v0.0.3-next.37) (2026-05-22)
155
+
156
+
157
+ ### Miscellaneous Chores
158
+
159
+ * **api-auth-entity-storage-models:** Synchronize repo versions
160
+
161
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.35...api-auth-entity-storage-models-v0.0.3-next.36) (2026-05-22)
162
+
163
+
164
+ ### Miscellaneous Chores
165
+
166
+ * **api-auth-entity-storage-models:** Synchronize repo versions
167
+
168
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.34...api-auth-entity-storage-models-v0.0.3-next.35) (2026-05-21)
169
+
170
+
171
+ ### Features
172
+
173
+ * user partitioning ([#126](https://github.com/iotaledger/twin-api/issues/126)) ([6bf0da3](https://github.com/iotaledger/twin-api/commit/6bf0da3c42406c9838e80e0ddd6b21f5c64aac90))
174
+
175
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.33...api-auth-entity-storage-models-v0.0.3-next.34) (2026-05-19)
176
+
177
+
178
+ ### Features
179
+
180
+ * update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
181
+
182
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.32...api-auth-entity-storage-models-v0.0.3-next.33) (2026-05-11)
183
+
184
+
185
+ ### Features
186
+
187
+ * typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
188
+
189
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.31...api-auth-entity-storage-models-v0.0.3-next.32) (2026-05-07)
190
+
191
+
192
+ ### Miscellaneous Chores
193
+
194
+ * **api-auth-entity-storage-models:** Synchronize repo versions
195
+
196
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.30...api-auth-entity-storage-models-v0.0.3-next.31) (2026-05-06)
197
+
198
+
199
+ ### Miscellaneous Chores
200
+
201
+ * **api-auth-entity-storage-models:** Synchronize repo versions
202
+
203
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.29...api-auth-entity-storage-models-v0.0.3-next.30) (2026-05-05)
204
+
205
+
206
+ ### Miscellaneous Chores
207
+
208
+ * **api-auth-entity-storage-models:** Synchronize repo versions
209
+
210
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.28...api-auth-entity-storage-models-v0.0.3-next.29) (2026-05-01)
211
+
212
+
213
+ ### Miscellaneous Chores
214
+
215
+ * **api-auth-entity-storage-models:** Synchronize repo versions
216
+
217
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.27...api-auth-entity-storage-models-v0.0.3-next.28) (2026-04-30)
218
+
219
+
220
+ ### Bug Fixes
221
+
222
+ * change logout and refresh routes from GET to POST ([#111](https://github.com/iotaledger/twin-api/issues/111)) ([cb8b64b](https://github.com/iotaledger/twin-api/commit/cb8b64b6507f9991baa78a663de2e84269695c82))
223
+
224
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.26...api-auth-entity-storage-models-v0.0.3-next.27) (2026-04-23)
225
+
226
+
227
+ ### Miscellaneous Chores
228
+
229
+ * **api-auth-entity-storage-models:** Synchronize repo versions
230
+
231
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.25...api-auth-entity-storage-models-v0.0.3-next.26) (2026-04-22)
232
+
233
+
234
+ ### Miscellaneous Chores
235
+
236
+ * **api-auth-entity-storage-models:** Synchronize repo versions
237
+
238
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.24...api-auth-entity-storage-models-v0.0.3-next.25) (2026-04-14)
239
+
240
+
241
+ ### Miscellaneous Chores
242
+
243
+ * **api-auth-entity-storage-models:** Synchronize repo versions
244
+
245
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.23...api-auth-entity-storage-models-v0.0.3-next.24) (2026-04-14)
246
+
247
+
248
+ ### Miscellaneous Chores
249
+
250
+ * **api-auth-entity-storage-models:** Synchronize repo versions
251
+
252
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.22...api-auth-entity-storage-models-v0.0.3-next.23) (2026-04-14)
253
+
254
+
255
+ ### Features
256
+
257
+ * auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
258
+
259
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.21...api-auth-entity-storage-models-v0.0.3-next.22) (2026-03-27)
260
+
261
+
262
+ ### Miscellaneous Chores
263
+
264
+ * **api-auth-entity-storage-models:** Synchronize repo versions
265
+
266
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.20...api-auth-entity-storage-models-v0.0.3-next.21) (2026-03-11)
267
+
268
+
269
+ ### Miscellaneous Chores
270
+
271
+ * **api-auth-entity-storage-models:** Synchronize repo versions
272
+
273
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.19...api-auth-entity-storage-models-v0.0.3-next.20) (2026-02-09)
274
+
275
+
276
+ ### Miscellaneous Chores
277
+
278
+ * **api-auth-entity-storage-models:** Synchronize repo versions
279
+
280
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.18...api-auth-entity-storage-models-v0.0.3-next.19) (2026-02-06)
281
+
282
+
283
+ ### Features
284
+
285
+ * user admin service ([#77](https://github.com/iotaledger/twin-api/issues/77)) ([c8491df](https://github.com/iotaledger/twin-api/commit/c8491df7b07c1f45560c8a78c6adc806d0ececbb))
286
+
287
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.17...api-auth-entity-storage-models-v0.0.3-next.18) (2026-02-04)
288
+
289
+
290
+ ### Features
291
+
292
+ * tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
293
+
294
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.16...api-auth-entity-storage-models-v0.0.3-next.17) (2026-01-26)
295
+
296
+
297
+ ### Miscellaneous Chores
298
+
299
+ * **api-auth-entity-storage-models:** Synchronize repo versions
300
+
301
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.15...api-auth-entity-storage-models-v0.0.3-next.16) (2026-01-26)
302
+
303
+
304
+ ### Miscellaneous Chores
305
+
306
+ * **api-auth-entity-storage-models:** Synchronize repo versions
307
+
308
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.14...api-auth-entity-storage-models-v0.0.3-next.15) (2026-01-22)
309
+
310
+
311
+ ### Miscellaneous Chores
312
+
313
+ * **api-auth-entity-storage-models:** Synchronize repo versions
314
+
315
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.13...api-auth-entity-storage-models-v0.0.3-next.14) (2026-01-20)
316
+
317
+
318
+ ### Miscellaneous Chores
319
+
320
+ * **api-auth-entity-storage-models:** Synchronize repo versions
321
+
322
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.12...api-auth-entity-storage-models-v0.0.3-next.13) (2026-01-19)
323
+
324
+
325
+ ### Miscellaneous Chores
326
+
327
+ * **api-auth-entity-storage-models:** Synchronize repo versions
328
+
329
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.11...api-auth-entity-storage-models-v0.0.3-next.12) (2026-01-12)
330
+
331
+
332
+ ### Miscellaneous Chores
333
+
334
+ * **api-auth-entity-storage-models:** Synchronize repo versions
335
+
336
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.10...api-auth-entity-storage-models-v0.0.3-next.11) (2026-01-08)
337
+
338
+
339
+ ### Miscellaneous Chores
340
+
341
+ * **api-auth-entity-storage-models:** Synchronize repo versions
342
+
343
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.9...api-auth-entity-storage-models-v0.0.3-next.10) (2026-01-05)
344
+
345
+
346
+ ### Miscellaneous Chores
347
+
348
+ * **api-auth-entity-storage-models:** Synchronize repo versions
349
+
350
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.8...api-auth-entity-storage-models-v0.0.3-next.9) (2026-01-05)
351
+
352
+
353
+ ### Features
354
+
355
+ * add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
356
+ * add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
357
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
358
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
359
+ * improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
360
+ * improve socket route logging ([b8d9519](https://github.com/iotaledger/twin-api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
361
+ * modify authHeaderProcessor to retain token in response body ([#53](https://github.com/iotaledger/twin-api/issues/53)) ([5d9ae76](https://github.com/iotaledger/twin-api/commit/5d9ae76b5b52a8e10dac391b2d5784638a186583))
362
+ * remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
363
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
364
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
365
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
366
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
367
+
368
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.7...api-auth-entity-storage-models-v0.0.3-next.8) (2025-12-17)
22
369
 
23
370
 
24
371
  ### Miscellaneous Chores
25
372
 
26
373
  * **api-auth-entity-storage-models:** Synchronize repo versions
27
374
 
28
- ## [0.0.3-next.7](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.3-next.6...api-auth-entity-storage-models-v0.0.3-next.7) (2025-11-26)
375
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.6...api-auth-entity-storage-models-v0.0.3-next.7) (2025-11-26)
29
376
 
30
377
 
31
378
  ### Miscellaneous Chores
32
379
 
33
380
  * **api-auth-entity-storage-models:** Synchronize repo versions
34
381
 
35
- ## [0.0.3-next.6](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.3-next.5...api-auth-entity-storage-models-v0.0.3-next.6) (2025-11-20)
382
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.5...api-auth-entity-storage-models-v0.0.3-next.6) (2025-11-20)
36
383
 
37
384
 
38
385
  ### Miscellaneous Chores
39
386
 
40
387
  * **api-auth-entity-storage-models:** Synchronize repo versions
41
388
 
42
- ## [0.0.3-next.5](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.3-next.4...api-auth-entity-storage-models-v0.0.3-next.5) (2025-11-14)
389
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.4...api-auth-entity-storage-models-v0.0.3-next.5) (2025-11-14)
43
390
 
44
391
 
45
392
  ### Miscellaneous Chores
46
393
 
47
394
  * **api-auth-entity-storage-models:** Synchronize repo versions
48
395
 
49
- ## [0.0.3-next.4](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.3-next.3...api-auth-entity-storage-models-v0.0.3-next.4) (2025-11-14)
396
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.3...api-auth-entity-storage-models-v0.0.3-next.4) (2025-11-14)
50
397
 
51
398
 
52
399
  ### Features
53
400
 
54
- * add context id features ([#42](https://github.com/twinfoundation/api/issues/42)) ([0186055](https://github.com/twinfoundation/api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
55
- * add json-ld mime type processor and auth admin component ([8861791](https://github.com/twinfoundation/api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
56
- * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
57
- * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
58
- * improve description ([d28185c](https://github.com/twinfoundation/api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
59
- * improve socket route logging ([b8d9519](https://github.com/twinfoundation/api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
60
- * remove unused namespace ([08478f2](https://github.com/twinfoundation/api/commit/08478f27efda9beb0271fdb22f6972e918361965))
61
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
62
- * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
63
- * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
64
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
401
+ * add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
402
+ * add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
403
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
404
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
405
+ * improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
406
+ * improve socket route logging ([b8d9519](https://github.com/iotaledger/twin-api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
407
+ * remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
408
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
409
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
410
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
411
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
65
412
 
66
- ## [0.0.3-next.3](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.3-next.2...api-auth-entity-storage-models-v0.0.3-next.3) (2025-11-14)
413
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.2...api-auth-entity-storage-models-v0.0.3-next.3) (2025-11-14)
67
414
 
68
415
 
69
416
  ### Miscellaneous Chores
70
417
 
71
418
  * **api-auth-entity-storage-models:** Synchronize repo versions
72
419
 
73
- ## [0.0.3-next.2](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.3-next.1...api-auth-entity-storage-models-v0.0.3-next.2) (2025-11-12)
420
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.1...api-auth-entity-storage-models-v0.0.3-next.2) (2025-11-12)
74
421
 
75
422
 
76
423
  ### Miscellaneous Chores
77
424
 
78
425
  * **api-auth-entity-storage-models:** Synchronize repo versions
79
426
 
80
- ## [0.0.3-next.1](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.3-next.0...api-auth-entity-storage-models-v0.0.3-next.1) (2025-11-10)
427
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.3-next.0...api-auth-entity-storage-models-v0.0.3-next.1) (2025-11-10)
81
428
 
82
429
 
83
430
  ### Features
84
431
 
85
- * add context id features ([#42](https://github.com/twinfoundation/api/issues/42)) ([0186055](https://github.com/twinfoundation/api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
86
- * add json-ld mime type processor and auth admin component ([8861791](https://github.com/twinfoundation/api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
87
- * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
88
- * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
89
- * improve description ([d28185c](https://github.com/twinfoundation/api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
90
- * improve socket route logging ([b8d9519](https://github.com/twinfoundation/api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
91
- * remove unused namespace ([08478f2](https://github.com/twinfoundation/api/commit/08478f27efda9beb0271fdb22f6972e918361965))
92
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
93
- * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
94
- * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
95
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
432
+ * add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
433
+ * add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
434
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
435
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
436
+ * improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
437
+ * improve socket route logging ([b8d9519](https://github.com/iotaledger/twin-api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
438
+ * remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
439
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
440
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
441
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
442
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
96
443
 
97
- ## [0.0.2-next.13](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.12...api-auth-entity-storage-models-v0.0.2-next.13) (2025-10-09)
444
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.12...api-auth-entity-storage-models-v0.0.2-next.13) (2025-10-09)
98
445
 
99
446
 
100
447
  ### Miscellaneous Chores
101
448
 
102
449
  * **api-auth-entity-storage-models:** Synchronize repo versions
103
450
 
104
- ## [0.0.2-next.12](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.11...api-auth-entity-storage-models-v0.0.2-next.12) (2025-10-09)
451
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.11...api-auth-entity-storage-models-v0.0.2-next.12) (2025-10-09)
105
452
 
106
453
 
107
454
  ### Features
108
455
 
109
- * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
456
+ * add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
110
457
 
111
- ## [0.0.2-next.11](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.10...api-auth-entity-storage-models-v0.0.2-next.11) (2025-09-29)
458
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.10...api-auth-entity-storage-models-v0.0.2-next.11) (2025-09-29)
112
459
 
113
460
 
114
461
  ### Features
115
462
 
116
- * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
463
+ * update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
117
464
 
118
- ## [0.0.2-next.10](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.9...api-auth-entity-storage-models-v0.0.2-next.10) (2025-09-23)
465
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.9...api-auth-entity-storage-models-v0.0.2-next.10) (2025-09-23)
119
466
 
120
467
 
121
468
  ### Miscellaneous Chores
122
469
 
123
470
  * **api-auth-entity-storage-models:** Synchronize repo versions
124
471
 
125
- ## [0.0.2-next.9](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.8...api-auth-entity-storage-models-v0.0.2-next.9) (2025-08-29)
472
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.8...api-auth-entity-storage-models-v0.0.2-next.9) (2025-08-29)
126
473
 
127
474
 
128
475
  ### Features
129
476
 
130
- * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
477
+ * eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
131
478
 
132
- ## [0.0.2-next.8](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.7...api-auth-entity-storage-models-v0.0.2-next.8) (2025-08-21)
479
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.7...api-auth-entity-storage-models-v0.0.2-next.8) (2025-08-21)
133
480
 
134
481
 
135
482
  ### Miscellaneous Chores
136
483
 
137
484
  * **api-auth-entity-storage-models:** Synchronize repo versions
138
485
 
139
- ## [0.0.2-next.7](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.6...api-auth-entity-storage-models-v0.0.2-next.7) (2025-08-20)
486
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.6...api-auth-entity-storage-models-v0.0.2-next.7) (2025-08-20)
140
487
 
141
488
 
142
489
  ### Miscellaneous Chores
143
490
 
144
491
  * **api-auth-entity-storage-models:** Synchronize repo versions
145
492
 
146
- ## [0.0.2-next.6](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.5...api-auth-entity-storage-models-v0.0.2-next.6) (2025-08-19)
493
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.5...api-auth-entity-storage-models-v0.0.2-next.6) (2025-08-19)
147
494
 
148
495
 
149
496
  ### Features
150
497
 
151
- * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
498
+ * update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
152
499
 
153
- ## [0.0.2-next.5](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.4...api-auth-entity-storage-models-v0.0.2-next.5) (2025-07-25)
500
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.4...api-auth-entity-storage-models-v0.0.2-next.5) (2025-07-25)
154
501
 
155
502
 
156
503
  ### Features
157
504
 
158
- * add json-ld mime type processor and auth admin component ([8861791](https://github.com/twinfoundation/api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
159
- * improve description ([d28185c](https://github.com/twinfoundation/api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
160
- * improve socket route logging ([b8d9519](https://github.com/twinfoundation/api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
161
- * remove unused namespace ([08478f2](https://github.com/twinfoundation/api/commit/08478f27efda9beb0271fdb22f6972e918361965))
162
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
163
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
505
+ * add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
506
+ * improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
507
+ * improve socket route logging ([b8d9519](https://github.com/iotaledger/twin-api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
508
+ * remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
509
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
510
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
164
511
 
165
- ## [0.0.2-next.4](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.3...api-auth-entity-storage-models-v0.0.2-next.4) (2025-07-25)
512
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.3...api-auth-entity-storage-models-v0.0.2-next.4) (2025-07-25)
166
513
 
167
514
 
168
515
  ### Miscellaneous Chores
169
516
 
170
517
  * **api-auth-entity-storage-models:** Synchronize repo versions
171
518
 
172
- ## [0.0.2-next.3](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.2...api-auth-entity-storage-models-v0.0.2-next.3) (2025-07-24)
519
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.2...api-auth-entity-storage-models-v0.0.2-next.3) (2025-07-24)
173
520
 
174
521
 
175
522
  ### Features
176
523
 
177
- * remove unused namespace ([08478f2](https://github.com/twinfoundation/api/commit/08478f27efda9beb0271fdb22f6972e918361965))
524
+ * remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
178
525
 
179
- ## [0.0.2-next.2](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.1...api-auth-entity-storage-models-v0.0.2-next.2) (2025-07-17)
526
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.1...api-auth-entity-storage-models-v0.0.2-next.2) (2025-07-17)
180
527
 
181
528
 
182
529
  ### Features
183
530
 
184
- * improve socket route logging ([b8d9519](https://github.com/twinfoundation/api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
531
+ * improve socket route logging ([b8d9519](https://github.com/iotaledger/twin-api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
185
532
 
186
- ## [0.0.2-next.1](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.2-next.0...api-auth-entity-storage-models-v0.0.2-next.1) (2025-07-08)
533
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.2-next.0...api-auth-entity-storage-models-v0.0.2-next.1) (2025-07-08)
187
534
 
188
535
 
189
536
  ### Features
190
537
 
191
- * add json-ld mime type processor and auth admin component ([8861791](https://github.com/twinfoundation/api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
192
- * improve description ([d28185c](https://github.com/twinfoundation/api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
193
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
194
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
538
+ * add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
539
+ * improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
540
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
541
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
195
542
 
196
543
  ## 0.0.1 (2025-07-03)
197
544
 
198
545
 
199
546
  ### Features
200
547
 
201
- * release to production ([70ee2d5](https://github.com/twinfoundation/api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
548
+ * release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
202
549
 
203
- ## [0.0.1-next.36](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.1-next.35...api-auth-entity-storage-models-v0.0.1-next.36) (2025-06-17)
550
+ ## [0.0.1-next.36](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.1-next.35...api-auth-entity-storage-models-v0.0.1-next.36) (2025-06-17)
204
551
 
205
552
 
206
553
  ### Miscellaneous Chores
207
554
 
208
555
  * **api-auth-entity-storage-models:** Synchronize repo versions
209
556
 
210
- ## [0.0.1-next.35](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.1-next.34...api-auth-entity-storage-models-v0.0.1-next.35) (2025-06-11)
557
+ ## [0.0.1-next.35](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.1-next.34...api-auth-entity-storage-models-v0.0.1-next.35) (2025-06-11)
211
558
 
212
559
 
213
560
  ### Features
214
561
 
215
- * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
562
+ * update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
216
563
 
217
- ## [0.0.1-next.34](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.1-next.33...api-auth-entity-storage-models-v0.0.1-next.34) (2025-05-27)
564
+ ## [0.0.1-next.34](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.1-next.33...api-auth-entity-storage-models-v0.0.1-next.34) (2025-05-27)
218
565
 
219
566
 
220
567
  ### Miscellaneous Chores
221
568
 
222
569
  * **api-auth-entity-storage-models:** Synchronize repo versions
223
570
 
224
- ## [0.0.1-next.33](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.1-next.32...api-auth-entity-storage-models-v0.0.1-next.33) (2025-04-17)
571
+ ## [0.0.1-next.33](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.1-next.32...api-auth-entity-storage-models-v0.0.1-next.33) (2025-04-17)
225
572
 
226
573
 
227
574
  ### Features
228
575
 
229
- * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
576
+ * use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
230
577
 
231
- ## [0.0.1-next.32](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.1-next.31...api-auth-entity-storage-models-v0.0.1-next.32) (2025-03-28)
578
+ ## [0.0.1-next.32](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-models-v0.0.1-next.31...api-auth-entity-storage-models-v0.0.1-next.32) (2025-03-28)
232
579
 
233
580
 
234
581
  ### Features
235
582
 
236
- * improve description ([d28185c](https://github.com/twinfoundation/api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
583
+ * improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
237
584
 
238
585
  ## v0.0.1-next.31
239
586