@twin.org/api-auth-entity-storage-models 0.0.3-next.4 → 0.0.3-next.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/ILoginResponse.js +0 -2
- package/dist/es/models/api/ILoginResponse.js.map +1 -1
- 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/IRefreshTokenResponse.js +0 -2
- package/dist/es/models/api/IRefreshTokenResponse.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 +24 -6
- 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 +1 -2
- 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/ILoginResponse.d.ts +10 -4
- 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/IRefreshTokenResponse.d.ts +10 -4
- package/dist/types/models/api/IUpdatePasswordRequest.d.ts +1 -10
- package/dist/types/models/authAuditEvent.d.ts +49 -0
- package/docs/changelog.md +328 -65
- 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 +64 -16
- package/docs/reference/interfaces/IAuthenticationAuditComponent.md +103 -0
- package/docs/reference/interfaces/IAuthenticationAuditEntry.md +91 -0
- package/docs/reference/interfaces/IAuthenticationComponent.md +5 -11
- 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 +14 -6
- package/docs/reference/interfaces/ILogoutRequest.md +3 -3
- package/docs/reference/interfaces/IRefreshTokenRequest.md +3 -3
- package/docs/reference/interfaces/IRefreshTokenResponse.md +14 -6
- 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 +4 -4
package/docs/changelog.md
CHANGED
|
@@ -1,193 +1,456 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [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)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [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)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
16
|
+
|
|
17
|
+
## [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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Miscellaneous Chores
|
|
21
|
+
|
|
22
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
23
|
+
|
|
24
|
+
## [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)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Miscellaneous Chores
|
|
28
|
+
|
|
29
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
30
|
+
|
|
31
|
+
## [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)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Miscellaneous Chores
|
|
35
|
+
|
|
36
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
37
|
+
|
|
38
|
+
## [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)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Features
|
|
42
|
+
|
|
43
|
+
* user partitioning ([#126](https://github.com/iotaledger/twin-api/issues/126)) ([6bf0da3](https://github.com/iotaledger/twin-api/commit/6bf0da3c42406c9838e80e0ddd6b21f5c64aac90))
|
|
44
|
+
|
|
45
|
+
## [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)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Features
|
|
49
|
+
|
|
50
|
+
* update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
|
|
51
|
+
|
|
52
|
+
## [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)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Features
|
|
56
|
+
|
|
57
|
+
* typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
|
|
58
|
+
|
|
59
|
+
## [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)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Miscellaneous Chores
|
|
63
|
+
|
|
64
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
65
|
+
|
|
66
|
+
## [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)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Miscellaneous Chores
|
|
70
|
+
|
|
71
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
72
|
+
|
|
73
|
+
## [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)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Miscellaneous Chores
|
|
77
|
+
|
|
78
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
79
|
+
|
|
80
|
+
## [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)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Miscellaneous Chores
|
|
84
|
+
|
|
85
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
86
|
+
|
|
87
|
+
## [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)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Bug Fixes
|
|
91
|
+
|
|
92
|
+
* 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))
|
|
93
|
+
|
|
94
|
+
## [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)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Miscellaneous Chores
|
|
98
|
+
|
|
99
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
100
|
+
|
|
101
|
+
## [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)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Miscellaneous Chores
|
|
105
|
+
|
|
106
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
107
|
+
|
|
108
|
+
## [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)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Miscellaneous Chores
|
|
112
|
+
|
|
113
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
114
|
+
|
|
115
|
+
## [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)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Miscellaneous Chores
|
|
119
|
+
|
|
120
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
121
|
+
|
|
122
|
+
## [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)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Features
|
|
126
|
+
|
|
127
|
+
* auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
|
|
128
|
+
|
|
129
|
+
## [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)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Miscellaneous Chores
|
|
133
|
+
|
|
134
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
135
|
+
|
|
136
|
+
## [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)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Miscellaneous Chores
|
|
140
|
+
|
|
141
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
142
|
+
|
|
143
|
+
## [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)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
### Miscellaneous Chores
|
|
147
|
+
|
|
148
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
149
|
+
|
|
150
|
+
## [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)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Features
|
|
154
|
+
|
|
155
|
+
* user admin service ([#77](https://github.com/iotaledger/twin-api/issues/77)) ([c8491df](https://github.com/iotaledger/twin-api/commit/c8491df7b07c1f45560c8a78c6adc806d0ececbb))
|
|
156
|
+
|
|
157
|
+
## [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)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
### Features
|
|
161
|
+
|
|
162
|
+
* tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
|
|
163
|
+
|
|
164
|
+
## [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)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Miscellaneous Chores
|
|
168
|
+
|
|
169
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
170
|
+
|
|
171
|
+
## [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)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
### Miscellaneous Chores
|
|
175
|
+
|
|
176
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
177
|
+
|
|
178
|
+
## [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)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Miscellaneous Chores
|
|
182
|
+
|
|
183
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
184
|
+
|
|
185
|
+
## [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)
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
### Miscellaneous Chores
|
|
189
|
+
|
|
190
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
191
|
+
|
|
192
|
+
## [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)
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
### Miscellaneous Chores
|
|
196
|
+
|
|
197
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
198
|
+
|
|
199
|
+
## [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)
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
### Miscellaneous Chores
|
|
203
|
+
|
|
204
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
205
|
+
|
|
206
|
+
## [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)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
### Miscellaneous Chores
|
|
210
|
+
|
|
211
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
212
|
+
|
|
213
|
+
## [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)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
### Miscellaneous Chores
|
|
217
|
+
|
|
218
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
219
|
+
|
|
220
|
+
## [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)
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
### Features
|
|
224
|
+
|
|
225
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
226
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
227
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
228
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
229
|
+
* improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
|
|
230
|
+
* improve socket route logging ([b8d9519](https://github.com/iotaledger/twin-api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
|
|
231
|
+
* 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))
|
|
232
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
233
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
234
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
235
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
236
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
237
|
+
|
|
238
|
+
## [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)
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
### Miscellaneous Chores
|
|
242
|
+
|
|
243
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
244
|
+
|
|
245
|
+
## [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)
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
### Miscellaneous Chores
|
|
249
|
+
|
|
250
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
251
|
+
|
|
252
|
+
## [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)
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
### Miscellaneous Chores
|
|
256
|
+
|
|
257
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
258
|
+
|
|
259
|
+
## [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)
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
### Miscellaneous Chores
|
|
263
|
+
|
|
264
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
265
|
+
|
|
266
|
+
## [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)
|
|
4
267
|
|
|
5
268
|
|
|
6
269
|
### Features
|
|
7
270
|
|
|
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
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
12
|
-
* improve description ([d28185c](https://github.com/
|
|
13
|
-
* improve socket route logging ([b8d9519](https://github.com/
|
|
14
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
15
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
16
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
17
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
18
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
271
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
272
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
273
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
274
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
275
|
+
* improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
|
|
276
|
+
* improve socket route logging ([b8d9519](https://github.com/iotaledger/twin-api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
|
|
277
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
278
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
279
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
280
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
281
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
19
282
|
|
|
20
|
-
## [0.0.3-next.3](https://github.com/
|
|
283
|
+
## [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)
|
|
21
284
|
|
|
22
285
|
|
|
23
286
|
### Miscellaneous Chores
|
|
24
287
|
|
|
25
288
|
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
26
289
|
|
|
27
|
-
## [0.0.3-next.2](https://github.com/
|
|
290
|
+
## [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)
|
|
28
291
|
|
|
29
292
|
|
|
30
293
|
### Miscellaneous Chores
|
|
31
294
|
|
|
32
295
|
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
33
296
|
|
|
34
|
-
## [0.0.3-next.1](https://github.com/
|
|
297
|
+
## [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)
|
|
35
298
|
|
|
36
299
|
|
|
37
300
|
### Features
|
|
38
301
|
|
|
39
|
-
* add context id features ([#42](https://github.com/
|
|
40
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
41
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
42
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
43
|
-
* improve description ([d28185c](https://github.com/
|
|
44
|
-
* improve socket route logging ([b8d9519](https://github.com/
|
|
45
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
46
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
47
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
48
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
49
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
302
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
303
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
304
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
305
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
306
|
+
* improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
|
|
307
|
+
* improve socket route logging ([b8d9519](https://github.com/iotaledger/twin-api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
|
|
308
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
309
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
310
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
311
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
312
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
50
313
|
|
|
51
|
-
## [0.0.2-next.13](https://github.com/
|
|
314
|
+
## [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)
|
|
52
315
|
|
|
53
316
|
|
|
54
317
|
### Miscellaneous Chores
|
|
55
318
|
|
|
56
319
|
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
57
320
|
|
|
58
|
-
## [0.0.2-next.12](https://github.com/
|
|
321
|
+
## [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)
|
|
59
322
|
|
|
60
323
|
|
|
61
324
|
### Features
|
|
62
325
|
|
|
63
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
326
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
64
327
|
|
|
65
|
-
## [0.0.2-next.11](https://github.com/
|
|
328
|
+
## [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)
|
|
66
329
|
|
|
67
330
|
|
|
68
331
|
### Features
|
|
69
332
|
|
|
70
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
333
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
71
334
|
|
|
72
|
-
## [0.0.2-next.10](https://github.com/
|
|
335
|
+
## [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)
|
|
73
336
|
|
|
74
337
|
|
|
75
338
|
### Miscellaneous Chores
|
|
76
339
|
|
|
77
340
|
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
78
341
|
|
|
79
|
-
## [0.0.2-next.9](https://github.com/
|
|
342
|
+
## [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)
|
|
80
343
|
|
|
81
344
|
|
|
82
345
|
### Features
|
|
83
346
|
|
|
84
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
347
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
85
348
|
|
|
86
|
-
## [0.0.2-next.8](https://github.com/
|
|
349
|
+
## [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)
|
|
87
350
|
|
|
88
351
|
|
|
89
352
|
### Miscellaneous Chores
|
|
90
353
|
|
|
91
354
|
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
92
355
|
|
|
93
|
-
## [0.0.2-next.7](https://github.com/
|
|
356
|
+
## [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)
|
|
94
357
|
|
|
95
358
|
|
|
96
359
|
### Miscellaneous Chores
|
|
97
360
|
|
|
98
361
|
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
99
362
|
|
|
100
|
-
## [0.0.2-next.6](https://github.com/
|
|
363
|
+
## [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)
|
|
101
364
|
|
|
102
365
|
|
|
103
366
|
### Features
|
|
104
367
|
|
|
105
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
368
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
106
369
|
|
|
107
|
-
## [0.0.2-next.5](https://github.com/
|
|
370
|
+
## [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)
|
|
108
371
|
|
|
109
372
|
|
|
110
373
|
### Features
|
|
111
374
|
|
|
112
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
113
|
-
* improve description ([d28185c](https://github.com/
|
|
114
|
-
* improve socket route logging ([b8d9519](https://github.com/
|
|
115
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
116
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
117
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
375
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
376
|
+
* improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
|
|
377
|
+
* improve socket route logging ([b8d9519](https://github.com/iotaledger/twin-api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
|
|
378
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
379
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
380
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
118
381
|
|
|
119
|
-
## [0.0.2-next.4](https://github.com/
|
|
382
|
+
## [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)
|
|
120
383
|
|
|
121
384
|
|
|
122
385
|
### Miscellaneous Chores
|
|
123
386
|
|
|
124
387
|
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
125
388
|
|
|
126
|
-
## [0.0.2-next.3](https://github.com/
|
|
389
|
+
## [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)
|
|
127
390
|
|
|
128
391
|
|
|
129
392
|
### Features
|
|
130
393
|
|
|
131
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
394
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
132
395
|
|
|
133
|
-
## [0.0.2-next.2](https://github.com/
|
|
396
|
+
## [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)
|
|
134
397
|
|
|
135
398
|
|
|
136
399
|
### Features
|
|
137
400
|
|
|
138
|
-
* improve socket route logging ([b8d9519](https://github.com/
|
|
401
|
+
* improve socket route logging ([b8d9519](https://github.com/iotaledger/twin-api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
|
|
139
402
|
|
|
140
|
-
## [0.0.2-next.1](https://github.com/
|
|
403
|
+
## [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)
|
|
141
404
|
|
|
142
405
|
|
|
143
406
|
### Features
|
|
144
407
|
|
|
145
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
146
|
-
* improve description ([d28185c](https://github.com/
|
|
147
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
148
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
408
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
409
|
+
* improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
|
|
410
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
411
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
149
412
|
|
|
150
413
|
## 0.0.1 (2025-07-03)
|
|
151
414
|
|
|
152
415
|
|
|
153
416
|
### Features
|
|
154
417
|
|
|
155
|
-
* release to production ([70ee2d5](https://github.com/
|
|
418
|
+
* release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
|
|
156
419
|
|
|
157
|
-
## [0.0.1-next.36](https://github.com/
|
|
420
|
+
## [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)
|
|
158
421
|
|
|
159
422
|
|
|
160
423
|
### Miscellaneous Chores
|
|
161
424
|
|
|
162
425
|
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
163
426
|
|
|
164
|
-
## [0.0.1-next.35](https://github.com/
|
|
427
|
+
## [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)
|
|
165
428
|
|
|
166
429
|
|
|
167
430
|
### Features
|
|
168
431
|
|
|
169
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
432
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
170
433
|
|
|
171
|
-
## [0.0.1-next.34](https://github.com/
|
|
434
|
+
## [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)
|
|
172
435
|
|
|
173
436
|
|
|
174
437
|
### Miscellaneous Chores
|
|
175
438
|
|
|
176
439
|
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
177
440
|
|
|
178
|
-
## [0.0.1-next.33](https://github.com/
|
|
441
|
+
## [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)
|
|
179
442
|
|
|
180
443
|
|
|
181
444
|
### Features
|
|
182
445
|
|
|
183
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
446
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
184
447
|
|
|
185
|
-
## [0.0.1-next.32](https://github.com/
|
|
448
|
+
## [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)
|
|
186
449
|
|
|
187
450
|
|
|
188
451
|
### Features
|
|
189
452
|
|
|
190
|
-
* improve description ([d28185c](https://github.com/
|
|
453
|
+
* improve description ([d28185c](https://github.com/iotaledger/twin-api/commit/d28185c799a97455fee72fb23c744c8e71325f0b))
|
|
191
454
|
|
|
192
455
|
## v0.0.1-next.31
|
|
193
456
|
|
package/docs/examples.md
CHANGED
|
@@ -1 +1,80 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Auth Entity Storage Models Examples
|
|
2
|
+
|
|
3
|
+
Use these snippets to shape request and response data consistently across sign-in flows, admin operations, and token refresh handling.
|
|
4
|
+
|
|
5
|
+
## Authentication Requests
|
|
6
|
+
|
|
7
|
+
```typescript
|
|
8
|
+
import type {
|
|
9
|
+
ILoginRequest,
|
|
10
|
+
IRefreshTokenRequest,
|
|
11
|
+
IUpdatePasswordRequest
|
|
12
|
+
} from '@twin.org/api-auth-entity-storage-models';
|
|
13
|
+
|
|
14
|
+
const loginRequest: ILoginRequest = {
|
|
15
|
+
body: {
|
|
16
|
+
email: 'alice@example.org',
|
|
17
|
+
password: 'correct-horse-battery-staple'
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
const refreshRequest: IRefreshTokenRequest = {
|
|
22
|
+
body: {
|
|
23
|
+
token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.refresh'
|
|
24
|
+
}
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
const updatePasswordRequest: IUpdatePasswordRequest = {
|
|
28
|
+
body: {
|
|
29
|
+
currentPassword: 'old-password',
|
|
30
|
+
newPassword: 'new-password-2026'
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
console.log(loginRequest.body.email); // alice@example.org
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Admin User Models
|
|
38
|
+
|
|
39
|
+
```typescript
|
|
40
|
+
import type {
|
|
41
|
+
IAdminUserCreateRequest,
|
|
42
|
+
IAdminUserUpdateRequest
|
|
43
|
+
} from '@twin.org/api-auth-entity-storage-models';
|
|
44
|
+
|
|
45
|
+
const createRequest: IAdminUserCreateRequest = {
|
|
46
|
+
body: {
|
|
47
|
+
email: 'bob@example.org',
|
|
48
|
+
password: 'initial-password',
|
|
49
|
+
userIdentity: 'did:example:bob',
|
|
50
|
+
organizationIdentity: 'did:example:org',
|
|
51
|
+
scope: ['admin', 'auditor']
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
const updateRequest: IAdminUserUpdateRequest = {
|
|
56
|
+
pathParams: {
|
|
57
|
+
email: 'bob@example.org'
|
|
58
|
+
},
|
|
59
|
+
body: {
|
|
60
|
+
userIdentity: 'did:example:bob:ops',
|
|
61
|
+
scope: ['admin']
|
|
62
|
+
}
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
console.log(createRequest.body.scope.length); // 2
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Authentication Responses
|
|
69
|
+
|
|
70
|
+
```typescript
|
|
71
|
+
import type { ILoginResponse } from '@twin.org/api-auth-entity-storage-models';
|
|
72
|
+
|
|
73
|
+
const loginResponse: ILoginResponse = {
|
|
74
|
+
body: {
|
|
75
|
+
expiry: 3600
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
console.log(loginResponse.body.expiry); // 3600
|
|
80
|
+
```
|
package/docs/reference/index.md
CHANGED
|
@@ -3,10 +3,34 @@
|
|
|
3
3
|
## Interfaces
|
|
4
4
|
|
|
5
5
|
- [IAuthenticationAdminComponent](interfaces/IAuthenticationAdminComponent.md)
|
|
6
|
+
- [IAuthenticationAuditComponent](interfaces/IAuthenticationAuditComponent.md)
|
|
7
|
+
- [IAuthenticationAuditEntry](interfaces/IAuthenticationAuditEntry.md)
|
|
6
8
|
- [IAuthenticationComponent](interfaces/IAuthenticationComponent.md)
|
|
9
|
+
- [IAuthenticationRateActionConfig](interfaces/IAuthenticationRateActionConfig.md)
|
|
10
|
+
- [IAuthenticationRateComponent](interfaces/IAuthenticationRateComponent.md)
|
|
11
|
+
- [IAuthenticationUser](interfaces/IAuthenticationUser.md)
|
|
12
|
+
- [IAuthenticationUserSecure](interfaces/IAuthenticationUserSecure.md)
|
|
13
|
+
- [IAdminUserCreateRequest](interfaces/IAdminUserCreateRequest.md)
|
|
14
|
+
- [IAdminUserGetByIdentityRequest](interfaces/IAdminUserGetByIdentityRequest.md)
|
|
15
|
+
- [IAdminUserGetRequest](interfaces/IAdminUserGetRequest.md)
|
|
16
|
+
- [IAdminUserGetResponse](interfaces/IAdminUserGetResponse.md)
|
|
17
|
+
- [IAdminUserRemoveRequest](interfaces/IAdminUserRemoveRequest.md)
|
|
18
|
+
- [IAdminUserUpdatePasswordRequest](interfaces/IAdminUserUpdatePasswordRequest.md)
|
|
19
|
+
- [IAdminUserUpdateRequest](interfaces/IAdminUserUpdateRequest.md)
|
|
20
|
+
- [IAuditCreateRequest](interfaces/IAuditCreateRequest.md)
|
|
21
|
+
- [IAuditQueryRequest](interfaces/IAuditQueryRequest.md)
|
|
22
|
+
- [IAuditQueryResponse](interfaces/IAuditQueryResponse.md)
|
|
7
23
|
- [ILoginRequest](interfaces/ILoginRequest.md)
|
|
8
24
|
- [ILoginResponse](interfaces/ILoginResponse.md)
|
|
9
25
|
- [ILogoutRequest](interfaces/ILogoutRequest.md)
|
|
10
26
|
- [IRefreshTokenRequest](interfaces/IRefreshTokenRequest.md)
|
|
11
27
|
- [IRefreshTokenResponse](interfaces/IRefreshTokenResponse.md)
|
|
12
28
|
- [IUpdatePasswordRequest](interfaces/IUpdatePasswordRequest.md)
|
|
29
|
+
|
|
30
|
+
## Type Aliases
|
|
31
|
+
|
|
32
|
+
- [AuthAuditEvent](type-aliases/AuthAuditEvent.md)
|
|
33
|
+
|
|
34
|
+
## Variables
|
|
35
|
+
|
|
36
|
+
- [AuthAuditEvent](variables/AuthAuditEvent.md)
|