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