@twin.org/api-auth-entity-storage-service 0.0.3-next.5 → 0.0.3-next.51
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/entities/authenticationAuditEntry.js +101 -0
- package/dist/es/entities/authenticationAuditEntry.js.map +1 -0
- package/dist/es/entities/authenticationRateEntry.js +37 -0
- package/dist/es/entities/authenticationRateEntry.js.map +1 -0
- package/dist/es/entities/authenticationUser.js +17 -1
- package/dist/es/entities/authenticationUser.js.map +1 -1
- package/dist/es/index.js +11 -1
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/IAuthHeaderProcessorConstructorOptions.js.map +1 -1
- package/dist/es/models/IEntityStorageAuthenticationAdminServiceConstructorOptions.js.map +1 -1
- package/dist/es/models/IEntityStorageAuthenticationAuditServiceConfig.js +4 -0
- package/dist/es/models/IEntityStorageAuthenticationAuditServiceConfig.js.map +1 -0
- package/dist/es/models/IEntityStorageAuthenticationAuditServiceConstructorOptions.js +2 -0
- package/dist/es/models/IEntityStorageAuthenticationAuditServiceConstructorOptions.js.map +1 -0
- package/dist/es/models/IEntityStorageAuthenticationRateServiceConfig.js +2 -0
- package/dist/es/models/IEntityStorageAuthenticationRateServiceConfig.js.map +1 -0
- package/dist/es/models/IEntityStorageAuthenticationRateServiceConstructorOptions.js +2 -0
- package/dist/es/models/IEntityStorageAuthenticationRateServiceConstructorOptions.js.map +1 -0
- package/dist/es/models/IEntityStorageAuthenticationServiceConfig.js +0 -2
- package/dist/es/models/IEntityStorageAuthenticationServiceConfig.js.map +1 -1
- package/dist/es/models/IEntityStorageAuthenticationServiceConstructorOptions.js.map +1 -1
- package/dist/es/processors/authHeaderProcessor.js +81 -14
- package/dist/es/processors/authHeaderProcessor.js.map +1 -1
- package/dist/es/restEntryPoints.js +17 -0
- package/dist/es/restEntryPoints.js.map +1 -1
- package/dist/es/routes/entityStorageAuthenticationAdminRoutes.js +362 -0
- package/dist/es/routes/entityStorageAuthenticationAdminRoutes.js.map +1 -0
- package/dist/es/routes/entityStorageAuthenticationAuditRoutes.js +174 -0
- package/dist/es/routes/entityStorageAuthenticationAuditRoutes.js.map +1 -0
- package/dist/es/routes/entityStorageAuthenticationRoutes.js +20 -21
- package/dist/es/routes/entityStorageAuthenticationRoutes.js.map +1 -1
- package/dist/es/schema.js +4 -0
- package/dist/es/schema.js.map +1 -1
- package/dist/es/services/entityStorageAuthenticationAdminService.js +164 -58
- package/dist/es/services/entityStorageAuthenticationAdminService.js.map +1 -1
- package/dist/es/services/entityStorageAuthenticationAuditService.js +179 -0
- package/dist/es/services/entityStorageAuthenticationAuditService.js.map +1 -0
- package/dist/es/services/entityStorageAuthenticationRateService.js +202 -0
- package/dist/es/services/entityStorageAuthenticationRateService.js.map +1 -0
- package/dist/es/services/entityStorageAuthenticationService.js +197 -17
- package/dist/es/services/entityStorageAuthenticationService.js.map +1 -1
- package/dist/es/utils/passwordHelper.js +45 -16
- package/dist/es/utils/passwordHelper.js.map +1 -1
- package/dist/es/utils/tokenHelper.js +42 -19
- package/dist/es/utils/tokenHelper.js.map +1 -1
- package/dist/types/entities/authenticationAuditEntry.d.ts +49 -0
- package/dist/types/entities/authenticationRateEntry.d.ts +17 -0
- package/dist/types/entities/authenticationUser.d.ts +8 -0
- package/dist/types/index.d.ts +11 -1
- package/dist/types/models/IAuthHeaderProcessorConstructorOptions.d.ts +10 -0
- package/dist/types/models/IEntityStorageAuthenticationAdminServiceConstructorOptions.d.ts +5 -0
- package/dist/types/models/IEntityStorageAuthenticationAuditServiceConfig.d.ts +9 -0
- package/dist/types/models/IEntityStorageAuthenticationAuditServiceConstructorOptions.d.ts +15 -0
- package/dist/types/models/IEntityStorageAuthenticationRateServiceConfig.d.ts +10 -0
- package/dist/types/models/IEntityStorageAuthenticationRateServiceConstructorOptions.d.ts +20 -0
- package/dist/types/models/IEntityStorageAuthenticationServiceConfig.d.ts +22 -1
- package/dist/types/models/IEntityStorageAuthenticationServiceConstructorOptions.d.ts +13 -3
- package/dist/types/processors/authHeaderProcessor.d.ts +4 -2
- package/dist/types/restEntryPoints.d.ts +3 -0
- package/dist/types/routes/entityStorageAuthenticationAdminRoutes.d.ts +61 -0
- package/dist/types/routes/entityStorageAuthenticationAuditRoutes.d.ts +29 -0
- package/dist/types/services/entityStorageAuthenticationAdminService.d.ts +26 -9
- package/dist/types/services/entityStorageAuthenticationAuditService.d.ts +53 -0
- package/dist/types/services/entityStorageAuthenticationRateService.d.ts +60 -0
- package/dist/types/services/entityStorageAuthenticationService.d.ts +11 -6
- package/dist/types/utils/passwordHelper.d.ts +13 -5
- package/dist/types/utils/tokenHelper.d.ts +7 -2
- package/docs/changelog.md +820 -65
- package/docs/examples.md +178 -1
- package/docs/reference/classes/AuthHeaderProcessor.md +15 -11
- package/docs/reference/classes/AuthenticationAuditEntry.md +101 -0
- package/docs/reference/classes/AuthenticationRateEntry.md +37 -0
- package/docs/reference/classes/AuthenticationUser.md +21 -5
- package/docs/reference/classes/EntityStorageAuthenticationAdminService.md +80 -20
- package/docs/reference/classes/EntityStorageAuthenticationAuditService.md +157 -0
- package/docs/reference/classes/EntityStorageAuthenticationRateService.md +227 -0
- package/docs/reference/classes/EntityStorageAuthenticationService.md +39 -19
- package/docs/reference/classes/PasswordHelper.md +37 -12
- package/docs/reference/classes/TokenHelper.md +38 -8
- package/docs/reference/functions/authenticationAdminCreateUser.md +31 -0
- package/docs/reference/functions/authenticationAdminGetUser.md +31 -0
- package/docs/reference/functions/authenticationAdminGetUserByIdentity.md +31 -0
- package/docs/reference/functions/authenticationAdminRemoveUser.md +31 -0
- package/docs/reference/functions/authenticationAdminUpdateUser.md +31 -0
- package/docs/reference/functions/authenticationAdminUpdateUserPassword.md +31 -0
- package/docs/reference/functions/authenticationAuditCreate.md +31 -0
- package/docs/reference/functions/authenticationAuditQuery.md +31 -0
- package/docs/reference/functions/generateRestRoutesAuthenticationAdmin.md +25 -0
- package/docs/reference/functions/generateRestRoutesAuthenticationAudit.md +25 -0
- package/docs/reference/index.md +20 -0
- package/docs/reference/interfaces/IAuthHeaderProcessorConfig.md +4 -4
- package/docs/reference/interfaces/IAuthHeaderProcessorConstructorOptions.md +32 -4
- package/docs/reference/interfaces/IEntityStorageAuthenticationAdminServiceConfig.md +2 -2
- package/docs/reference/interfaces/IEntityStorageAuthenticationAdminServiceConstructorOptions.md +18 -4
- package/docs/reference/interfaces/IEntityStorageAuthenticationAuditServiceConfig.md +11 -0
- package/docs/reference/interfaces/IEntityStorageAuthenticationAuditServiceConstructorOptions.md +25 -0
- package/docs/reference/interfaces/IEntityStorageAuthenticationRateServiceConfig.md +17 -0
- package/docs/reference/interfaces/IEntityStorageAuthenticationRateServiceConstructorOptions.md +39 -0
- package/docs/reference/interfaces/IEntityStorageAuthenticationServiceConfig.md +61 -5
- package/docs/reference/interfaces/IEntityStorageAuthenticationServiceConstructorOptions.md +38 -10
- package/docs/reference/variables/restEntryPoints.md +2 -0
- package/docs/reference/variables/tagsAuthenticationAdmin.md +5 -0
- package/docs/reference/variables/tagsAuthenticationAudit.md +5 -0
- package/locales/en.json +17 -3
- package/package.json +8 -7
package/docs/changelog.md
CHANGED
|
@@ -1,6 +1,761 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [0.0.3-next.51](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.50...api-auth-entity-storage-service-v0.0.3-next.51) (2026-06-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.50 to 0.0.3-next.51
|
|
16
|
+
* @twin.org/api-core bumped from 0.0.3-next.50 to 0.0.3-next.51
|
|
17
|
+
* @twin.org/api-models bumped from 0.0.3-next.50 to 0.0.3-next.51
|
|
18
|
+
|
|
19
|
+
## [0.0.3-next.50](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.49...api-auth-entity-storage-service-v0.0.3-next.50) (2026-06-19)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Miscellaneous Chores
|
|
23
|
+
|
|
24
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Dependencies
|
|
28
|
+
|
|
29
|
+
* The following workspace dependencies were updated
|
|
30
|
+
* dependencies
|
|
31
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
32
|
+
* @twin.org/api-core bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
33
|
+
* @twin.org/api-models bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
34
|
+
|
|
35
|
+
## [0.0.3-next.49](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.48...api-auth-entity-storage-service-v0.0.3-next.49) (2026-06-19)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Miscellaneous Chores
|
|
39
|
+
|
|
40
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Dependencies
|
|
44
|
+
|
|
45
|
+
* The following workspace dependencies were updated
|
|
46
|
+
* dependencies
|
|
47
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
48
|
+
* @twin.org/api-core bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
49
|
+
* @twin.org/api-models bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
50
|
+
|
|
51
|
+
## [0.0.3-next.48](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.47...api-auth-entity-storage-service-v0.0.3-next.48) (2026-06-19)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Miscellaneous Chores
|
|
55
|
+
|
|
56
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
### Dependencies
|
|
60
|
+
|
|
61
|
+
* The following workspace dependencies were updated
|
|
62
|
+
* dependencies
|
|
63
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
64
|
+
* @twin.org/api-core bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
65
|
+
* @twin.org/api-models bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
66
|
+
|
|
67
|
+
## [0.0.3-next.47](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.46...api-auth-entity-storage-service-v0.0.3-next.47) (2026-06-18)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Features
|
|
71
|
+
|
|
72
|
+
* remove hosting component ([#170](https://github.com/iotaledger/twin-api/issues/170)) ([e78c1e8](https://github.com/iotaledger/twin-api/commit/e78c1e87d2747bf58da02b6b77680708ff681122))
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
### Dependencies
|
|
76
|
+
|
|
77
|
+
* The following workspace dependencies were updated
|
|
78
|
+
* dependencies
|
|
79
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
80
|
+
* @twin.org/api-core bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
81
|
+
* @twin.org/api-models bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
82
|
+
|
|
83
|
+
## [0.0.3-next.46](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.45...api-auth-entity-storage-service-v0.0.3-next.46) (2026-06-17)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Bug Fixes
|
|
87
|
+
|
|
88
|
+
* use async getStore in tests ([0d25633](https://github.com/iotaledger/twin-api/commit/0d2563364de06a54ba487c700b601a883402d292))
|
|
89
|
+
* use async getStore in tests ([63493dd](https://github.com/iotaledger/twin-api/commit/63493ddf3cf394c0d1e4cfcddae9a39f7ac697c4))
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### Dependencies
|
|
93
|
+
|
|
94
|
+
* The following workspace dependencies were updated
|
|
95
|
+
* dependencies
|
|
96
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
97
|
+
* @twin.org/api-core bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
98
|
+
* @twin.org/api-models bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
99
|
+
|
|
100
|
+
## [0.0.3-next.45](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.44...api-auth-entity-storage-service-v0.0.3-next.45) (2026-06-15)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
### Miscellaneous Chores
|
|
104
|
+
|
|
105
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
### Dependencies
|
|
109
|
+
|
|
110
|
+
* The following workspace dependencies were updated
|
|
111
|
+
* dependencies
|
|
112
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
113
|
+
* @twin.org/api-core bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
114
|
+
* @twin.org/api-models bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
115
|
+
|
|
116
|
+
## [0.0.3-next.44](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.43...api-auth-entity-storage-service-v0.0.3-next.44) (2026-06-11)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
### Features
|
|
120
|
+
|
|
121
|
+
* organization identifiers ([#158](https://github.com/iotaledger/twin-api/issues/158)) ([ce13244](https://github.com/iotaledger/twin-api/commit/ce13244aaacbf82d9e5f87d905e283b36ad63bbf))
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
### Dependencies
|
|
125
|
+
|
|
126
|
+
* The following workspace dependencies were updated
|
|
127
|
+
* dependencies
|
|
128
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
129
|
+
* @twin.org/api-core bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
130
|
+
* @twin.org/api-models bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
131
|
+
|
|
132
|
+
## [0.0.3-next.43](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.42...api-auth-entity-storage-service-v0.0.3-next.43) (2026-06-10)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
### Miscellaneous Chores
|
|
136
|
+
|
|
137
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
### Dependencies
|
|
141
|
+
|
|
142
|
+
* The following workspace dependencies were updated
|
|
143
|
+
* dependencies
|
|
144
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
145
|
+
* @twin.org/api-core bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
146
|
+
* @twin.org/api-models bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
147
|
+
|
|
148
|
+
## [0.0.3-next.42](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.41...api-auth-entity-storage-service-v0.0.3-next.42) (2026-06-08)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
### Miscellaneous Chores
|
|
152
|
+
|
|
153
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
### Dependencies
|
|
157
|
+
|
|
158
|
+
* The following workspace dependencies were updated
|
|
159
|
+
* dependencies
|
|
160
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
161
|
+
* @twin.org/api-core bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
162
|
+
* @twin.org/api-models bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
163
|
+
|
|
164
|
+
## [0.0.3-next.41](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.40...api-auth-entity-storage-service-v0.0.3-next.41) (2026-06-05)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Miscellaneous Chores
|
|
168
|
+
|
|
169
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
### Dependencies
|
|
173
|
+
|
|
174
|
+
* The following workspace dependencies were updated
|
|
175
|
+
* dependencies
|
|
176
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
177
|
+
* @twin.org/api-core bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
178
|
+
* @twin.org/api-models bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
179
|
+
|
|
180
|
+
## [0.0.3-next.40](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.39...api-auth-entity-storage-service-v0.0.3-next.40) (2026-06-04)
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
### Miscellaneous Chores
|
|
184
|
+
|
|
185
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
### Dependencies
|
|
189
|
+
|
|
190
|
+
* The following workspace dependencies were updated
|
|
191
|
+
* dependencies
|
|
192
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
193
|
+
* @twin.org/api-core bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
194
|
+
* @twin.org/api-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
195
|
+
|
|
196
|
+
## [0.0.3-next.39](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.38...api-auth-entity-storage-service-v0.0.3-next.39) (2026-06-02)
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
### Features
|
|
200
|
+
|
|
201
|
+
* tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
### Dependencies
|
|
205
|
+
|
|
206
|
+
* The following workspace dependencies were updated
|
|
207
|
+
* dependencies
|
|
208
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
209
|
+
* @twin.org/api-core bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
210
|
+
* @twin.org/api-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
211
|
+
|
|
212
|
+
## [0.0.3-next.38](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.37...api-auth-entity-storage-service-v0.0.3-next.38) (2026-05-28)
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
### Features
|
|
216
|
+
|
|
217
|
+
* hashed tenant id ([#135](https://github.com/iotaledger/twin-api/issues/135)) ([573c9b0](https://github.com/iotaledger/twin-api/commit/573c9b0714c281d69d5626c7576e93db826d266d))
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
### Dependencies
|
|
221
|
+
|
|
222
|
+
* The following workspace dependencies were updated
|
|
223
|
+
* dependencies
|
|
224
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
225
|
+
* @twin.org/api-core bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
226
|
+
* @twin.org/api-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
227
|
+
|
|
228
|
+
## [0.0.3-next.37](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.36...api-auth-entity-storage-service-v0.0.3-next.37) (2026-05-22)
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
### Miscellaneous Chores
|
|
232
|
+
|
|
233
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
### Dependencies
|
|
237
|
+
|
|
238
|
+
* The following workspace dependencies were updated
|
|
239
|
+
* dependencies
|
|
240
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
241
|
+
* @twin.org/api-core bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
242
|
+
* @twin.org/api-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
243
|
+
|
|
244
|
+
## [0.0.3-next.36](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.35...api-auth-entity-storage-service-v0.0.3-next.36) (2026-05-22)
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
### Features
|
|
248
|
+
|
|
249
|
+
* jwt password version claim ([#129](https://github.com/iotaledger/twin-api/issues/129)) ([e15487b](https://github.com/iotaledger/twin-api/commit/e15487baafd3b1f3fd58f138db531d58053ce049))
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
### Dependencies
|
|
253
|
+
|
|
254
|
+
* The following workspace dependencies were updated
|
|
255
|
+
* dependencies
|
|
256
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
257
|
+
* @twin.org/api-core bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
258
|
+
* @twin.org/api-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
259
|
+
|
|
260
|
+
## [0.0.3-next.35](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.34...api-auth-entity-storage-service-v0.0.3-next.35) (2026-05-21)
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
### Features
|
|
264
|
+
|
|
265
|
+
* user partitioning ([#126](https://github.com/iotaledger/twin-api/issues/126)) ([6bf0da3](https://github.com/iotaledger/twin-api/commit/6bf0da3c42406c9838e80e0ddd6b21f5c64aac90))
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
### Dependencies
|
|
269
|
+
|
|
270
|
+
* The following workspace dependencies were updated
|
|
271
|
+
* dependencies
|
|
272
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
273
|
+
* @twin.org/api-core bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
274
|
+
* @twin.org/api-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
275
|
+
|
|
276
|
+
## [0.0.3-next.34](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.33...api-auth-entity-storage-service-v0.0.3-next.34) (2026-05-19)
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
### Features
|
|
280
|
+
|
|
281
|
+
* update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
### Dependencies
|
|
285
|
+
|
|
286
|
+
* The following workspace dependencies were updated
|
|
287
|
+
* dependencies
|
|
288
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
289
|
+
* @twin.org/api-core bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
290
|
+
* @twin.org/api-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
291
|
+
|
|
292
|
+
## [0.0.3-next.33](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.32...api-auth-entity-storage-service-v0.0.3-next.33) (2026-05-11)
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
### Features
|
|
296
|
+
|
|
297
|
+
* typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
### Dependencies
|
|
301
|
+
|
|
302
|
+
* The following workspace dependencies were updated
|
|
303
|
+
* dependencies
|
|
304
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
305
|
+
* @twin.org/api-core bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
306
|
+
* @twin.org/api-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
307
|
+
|
|
308
|
+
## [0.0.3-next.32](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.31...api-auth-entity-storage-service-v0.0.3-next.32) (2026-05-07)
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
### Miscellaneous Chores
|
|
312
|
+
|
|
313
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
### Dependencies
|
|
317
|
+
|
|
318
|
+
* The following workspace dependencies were updated
|
|
319
|
+
* dependencies
|
|
320
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
321
|
+
* @twin.org/api-core bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
322
|
+
* @twin.org/api-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
323
|
+
|
|
324
|
+
## [0.0.3-next.31](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.30...api-auth-entity-storage-service-v0.0.3-next.31) (2026-05-06)
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
### Miscellaneous Chores
|
|
328
|
+
|
|
329
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
### Dependencies
|
|
333
|
+
|
|
334
|
+
* The following workspace dependencies were updated
|
|
335
|
+
* dependencies
|
|
336
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
337
|
+
* @twin.org/api-core bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
338
|
+
* @twin.org/api-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
339
|
+
|
|
340
|
+
## [0.0.3-next.30](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.29...api-auth-entity-storage-service-v0.0.3-next.30) (2026-05-05)
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
### Miscellaneous Chores
|
|
344
|
+
|
|
345
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
### Dependencies
|
|
349
|
+
|
|
350
|
+
* The following workspace dependencies were updated
|
|
351
|
+
* dependencies
|
|
352
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
353
|
+
* @twin.org/api-core bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
354
|
+
* @twin.org/api-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
355
|
+
|
|
356
|
+
## [0.0.3-next.29](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.28...api-auth-entity-storage-service-v0.0.3-next.29) (2026-05-01)
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
### Miscellaneous Chores
|
|
360
|
+
|
|
361
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
### Dependencies
|
|
365
|
+
|
|
366
|
+
* The following workspace dependencies were updated
|
|
367
|
+
* dependencies
|
|
368
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
369
|
+
* @twin.org/api-core bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
370
|
+
* @twin.org/api-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
371
|
+
|
|
372
|
+
## [0.0.3-next.28](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.27...api-auth-entity-storage-service-v0.0.3-next.28) (2026-04-30)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
### Bug Fixes
|
|
376
|
+
|
|
377
|
+
* 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))
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
### Dependencies
|
|
381
|
+
|
|
382
|
+
* The following workspace dependencies were updated
|
|
383
|
+
* dependencies
|
|
384
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
385
|
+
* @twin.org/api-core bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
386
|
+
* @twin.org/api-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
387
|
+
|
|
388
|
+
## [0.0.3-next.27](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.26...api-auth-entity-storage-service-v0.0.3-next.27) (2026-04-23)
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
### Bug Fixes
|
|
392
|
+
|
|
393
|
+
* handling the tid as undefined at refresh when empty ([#104](https://github.com/iotaledger/twin-api/issues/104)) ([d874a4a](https://github.com/iotaledger/twin-api/commit/d874a4a542c5fd45bb1bd56650247f844d056643))
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
### Dependencies
|
|
397
|
+
|
|
398
|
+
* The following workspace dependencies were updated
|
|
399
|
+
* dependencies
|
|
400
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
401
|
+
* @twin.org/api-core bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
402
|
+
* @twin.org/api-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
403
|
+
|
|
404
|
+
## [0.0.3-next.26](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.25...api-auth-entity-storage-service-v0.0.3-next.26) (2026-04-22)
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
### Miscellaneous Chores
|
|
408
|
+
|
|
409
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
### Dependencies
|
|
413
|
+
|
|
414
|
+
* The following workspace dependencies were updated
|
|
415
|
+
* dependencies
|
|
416
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
417
|
+
* @twin.org/api-core bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
418
|
+
* @twin.org/api-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
419
|
+
|
|
420
|
+
## [0.0.3-next.25](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.24...api-auth-entity-storage-service-v0.0.3-next.25) (2026-04-14)
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
### Features
|
|
424
|
+
|
|
425
|
+
* auth header processor use user entity storage directly ([93084cf](https://github.com/iotaledger/twin-api/commit/93084cfed8f3ab16c80a1ab1bc90b1d9fc14bd25))
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
### Dependencies
|
|
429
|
+
|
|
430
|
+
* The following workspace dependencies were updated
|
|
431
|
+
* dependencies
|
|
432
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
433
|
+
* @twin.org/api-core bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
434
|
+
* @twin.org/api-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
435
|
+
|
|
436
|
+
## [0.0.3-next.24](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.23...api-auth-entity-storage-service-v0.0.3-next.24) (2026-04-14)
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
### Features
|
|
440
|
+
|
|
441
|
+
* remove auth service dependency on admin service ([4aeb211](https://github.com/iotaledger/twin-api/commit/4aeb211a5ffcf2eaea89a6841faea3ac3069ef89))
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
### Dependencies
|
|
445
|
+
|
|
446
|
+
* The following workspace dependencies were updated
|
|
447
|
+
* dependencies
|
|
448
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
449
|
+
* @twin.org/api-core bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
450
|
+
* @twin.org/api-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
451
|
+
|
|
452
|
+
## [0.0.3-next.23](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.22...api-auth-entity-storage-service-v0.0.3-next.23) (2026-04-14)
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
### Features
|
|
456
|
+
|
|
457
|
+
* auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
### Dependencies
|
|
461
|
+
|
|
462
|
+
* The following workspace dependencies were updated
|
|
463
|
+
* dependencies
|
|
464
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
465
|
+
* @twin.org/api-core bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
466
|
+
* @twin.org/api-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
467
|
+
|
|
468
|
+
## [0.0.3-next.22](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.21...api-auth-entity-storage-service-v0.0.3-next.22) (2026-03-27)
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
### Miscellaneous Chores
|
|
472
|
+
|
|
473
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
### Dependencies
|
|
477
|
+
|
|
478
|
+
* The following workspace dependencies were updated
|
|
479
|
+
* dependencies
|
|
480
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
481
|
+
* @twin.org/api-core bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
482
|
+
* @twin.org/api-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
483
|
+
|
|
484
|
+
## [0.0.3-next.21](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.20...api-auth-entity-storage-service-v0.0.3-next.21) (2026-03-11)
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
### Miscellaneous Chores
|
|
488
|
+
|
|
489
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
### Dependencies
|
|
493
|
+
|
|
494
|
+
* The following workspace dependencies were updated
|
|
495
|
+
* dependencies
|
|
496
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
497
|
+
* @twin.org/api-core bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
498
|
+
* @twin.org/api-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
499
|
+
|
|
500
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.19...api-auth-entity-storage-service-v0.0.3-next.20) (2026-02-09)
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
### Features
|
|
504
|
+
|
|
505
|
+
* location encoding ([#79](https://github.com/iotaledger/twin-api/issues/79)) ([c684465](https://github.com/iotaledger/twin-api/commit/c684465f2a871376152472bdecb6aa230b1101a1))
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
### Dependencies
|
|
509
|
+
|
|
510
|
+
* The following workspace dependencies were updated
|
|
511
|
+
* dependencies
|
|
512
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
513
|
+
* @twin.org/api-core bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
514
|
+
* @twin.org/api-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
515
|
+
|
|
516
|
+
## [0.0.3-next.19](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.18...api-auth-entity-storage-service-v0.0.3-next.19) (2026-02-06)
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
### Features
|
|
520
|
+
|
|
521
|
+
* user admin service ([#77](https://github.com/iotaledger/twin-api/issues/77)) ([c8491df](https://github.com/iotaledger/twin-api/commit/c8491df7b07c1f45560c8a78c6adc806d0ececbb))
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
### Dependencies
|
|
525
|
+
|
|
526
|
+
* The following workspace dependencies were updated
|
|
527
|
+
* dependencies
|
|
528
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
529
|
+
* @twin.org/api-core bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
530
|
+
* @twin.org/api-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
531
|
+
|
|
532
|
+
## [0.0.3-next.18](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.17...api-auth-entity-storage-service-v0.0.3-next.18) (2026-02-04)
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
### Features
|
|
536
|
+
|
|
537
|
+
* tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
### Dependencies
|
|
541
|
+
|
|
542
|
+
* The following workspace dependencies were updated
|
|
543
|
+
* dependencies
|
|
544
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
545
|
+
* @twin.org/api-core bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
546
|
+
* @twin.org/api-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
547
|
+
|
|
548
|
+
## [0.0.3-next.17](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.16...api-auth-entity-storage-service-v0.0.3-next.17) (2026-01-26)
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
### Miscellaneous Chores
|
|
552
|
+
|
|
553
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
### Dependencies
|
|
557
|
+
|
|
558
|
+
* The following workspace dependencies were updated
|
|
559
|
+
* dependencies
|
|
560
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
561
|
+
* @twin.org/api-core bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
562
|
+
* @twin.org/api-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
563
|
+
|
|
564
|
+
## [0.0.3-next.16](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.15...api-auth-entity-storage-service-v0.0.3-next.16) (2026-01-26)
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
### Miscellaneous Chores
|
|
568
|
+
|
|
569
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
### Dependencies
|
|
573
|
+
|
|
574
|
+
* The following workspace dependencies were updated
|
|
575
|
+
* dependencies
|
|
576
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
577
|
+
* @twin.org/api-core bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
578
|
+
* @twin.org/api-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
579
|
+
|
|
580
|
+
## [0.0.3-next.15](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.14...api-auth-entity-storage-service-v0.0.3-next.15) (2026-01-22)
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
### Miscellaneous Chores
|
|
584
|
+
|
|
585
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
### Dependencies
|
|
589
|
+
|
|
590
|
+
* The following workspace dependencies were updated
|
|
591
|
+
* dependencies
|
|
592
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
593
|
+
* @twin.org/api-core bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
594
|
+
* @twin.org/api-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
595
|
+
|
|
596
|
+
## [0.0.3-next.14](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.13...api-auth-entity-storage-service-v0.0.3-next.14) (2026-01-20)
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
### Miscellaneous Chores
|
|
600
|
+
|
|
601
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
### Dependencies
|
|
605
|
+
|
|
606
|
+
* The following workspace dependencies were updated
|
|
607
|
+
* dependencies
|
|
608
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
609
|
+
* @twin.org/api-core bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
610
|
+
* @twin.org/api-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
611
|
+
|
|
612
|
+
## [0.0.3-next.13](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.12...api-auth-entity-storage-service-v0.0.3-next.13) (2026-01-19)
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
### Miscellaneous Chores
|
|
616
|
+
|
|
617
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
### Dependencies
|
|
621
|
+
|
|
622
|
+
* The following workspace dependencies were updated
|
|
623
|
+
* dependencies
|
|
624
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
625
|
+
* @twin.org/api-core bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
626
|
+
* @twin.org/api-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
627
|
+
|
|
628
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.11...api-auth-entity-storage-service-v0.0.3-next.12) (2026-01-12)
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
### Miscellaneous Chores
|
|
632
|
+
|
|
633
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
### Dependencies
|
|
637
|
+
|
|
638
|
+
* The following workspace dependencies were updated
|
|
639
|
+
* dependencies
|
|
640
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
641
|
+
* @twin.org/api-core bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
642
|
+
* @twin.org/api-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
643
|
+
|
|
644
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.10...api-auth-entity-storage-service-v0.0.3-next.11) (2026-01-08)
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
### Miscellaneous Chores
|
|
648
|
+
|
|
649
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
### Dependencies
|
|
653
|
+
|
|
654
|
+
* The following workspace dependencies were updated
|
|
655
|
+
* dependencies
|
|
656
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
657
|
+
* @twin.org/api-core bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
658
|
+
* @twin.org/api-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
659
|
+
|
|
660
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.9...api-auth-entity-storage-service-v0.0.3-next.10) (2026-01-05)
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
### Bug Fixes
|
|
664
|
+
|
|
665
|
+
* remove token from return payload ([eaa4266](https://github.com/iotaledger/twin-api/commit/eaa42661b8540881b0751f5d2513258b3413f3ef))
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
### Dependencies
|
|
669
|
+
|
|
670
|
+
* The following workspace dependencies were updated
|
|
671
|
+
* dependencies
|
|
672
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
673
|
+
* @twin.org/api-core bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
674
|
+
* @twin.org/api-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
675
|
+
|
|
676
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.8...api-auth-entity-storage-service-v0.0.3-next.9) (2026-01-05)
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
### Features
|
|
680
|
+
|
|
681
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
682
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
683
|
+
* add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
|
|
684
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
685
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
686
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
687
|
+
* 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))
|
|
688
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
689
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
690
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
691
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
692
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
693
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
694
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
### Bug Fixes
|
|
698
|
+
|
|
699
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
### Dependencies
|
|
703
|
+
|
|
704
|
+
* The following workspace dependencies were updated
|
|
705
|
+
* dependencies
|
|
706
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
707
|
+
* @twin.org/api-core bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
708
|
+
* @twin.org/api-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
709
|
+
|
|
710
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.7...api-auth-entity-storage-service-v0.0.3-next.8) (2025-12-17)
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
### Miscellaneous Chores
|
|
714
|
+
|
|
715
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
### Dependencies
|
|
719
|
+
|
|
720
|
+
* The following workspace dependencies were updated
|
|
721
|
+
* dependencies
|
|
722
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
723
|
+
* @twin.org/api-core bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
724
|
+
* @twin.org/api-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
725
|
+
|
|
726
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.6...api-auth-entity-storage-service-v0.0.3-next.7) (2025-11-26)
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
### Miscellaneous Chores
|
|
730
|
+
|
|
731
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
### Dependencies
|
|
735
|
+
|
|
736
|
+
* The following workspace dependencies were updated
|
|
737
|
+
* dependencies
|
|
738
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
739
|
+
* @twin.org/api-core bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
740
|
+
* @twin.org/api-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
741
|
+
|
|
742
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.5...api-auth-entity-storage-service-v0.0.3-next.6) (2025-11-20)
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
### Features
|
|
746
|
+
|
|
747
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
### Dependencies
|
|
751
|
+
|
|
752
|
+
* The following workspace dependencies were updated
|
|
753
|
+
* dependencies
|
|
754
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
755
|
+
* @twin.org/api-core bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
756
|
+
* @twin.org/api-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
757
|
+
|
|
758
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.4...api-auth-entity-storage-service-v0.0.3-next.5) (2025-11-14)
|
|
4
759
|
|
|
5
760
|
|
|
6
761
|
### Miscellaneous Chores
|
|
@@ -16,27 +771,27 @@
|
|
|
16
771
|
* @twin.org/api-core bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
17
772
|
* @twin.org/api-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
18
773
|
|
|
19
|
-
## [0.0.3-next.4](https://github.com/
|
|
774
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.3...api-auth-entity-storage-service-v0.0.3-next.4) (2025-11-14)
|
|
20
775
|
|
|
21
776
|
|
|
22
777
|
### Features
|
|
23
778
|
|
|
24
|
-
* add context id features ([#42](https://github.com/
|
|
25
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
26
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
27
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
28
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
29
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
30
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
31
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
32
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
33
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
34
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
779
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
780
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
781
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
782
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
783
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
784
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
785
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
786
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
787
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
788
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
789
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
35
790
|
|
|
36
791
|
|
|
37
792
|
### Bug Fixes
|
|
38
793
|
|
|
39
|
-
* include org in context ids from jwt ([a12cfdd](https://github.com/
|
|
794
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
40
795
|
|
|
41
796
|
|
|
42
797
|
### Dependencies
|
|
@@ -47,12 +802,12 @@
|
|
|
47
802
|
* @twin.org/api-core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
48
803
|
* @twin.org/api-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
49
804
|
|
|
50
|
-
## [0.0.3-next.3](https://github.com/
|
|
805
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.2...api-auth-entity-storage-service-v0.0.3-next.3) (2025-11-14)
|
|
51
806
|
|
|
52
807
|
|
|
53
808
|
### Bug Fixes
|
|
54
809
|
|
|
55
|
-
* include org in context ids from jwt ([a12cfdd](https://github.com/
|
|
810
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
56
811
|
|
|
57
812
|
|
|
58
813
|
### Dependencies
|
|
@@ -63,7 +818,7 @@
|
|
|
63
818
|
* @twin.org/api-core bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
64
819
|
* @twin.org/api-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
65
820
|
|
|
66
|
-
## [0.0.3-next.2](https://github.com/
|
|
821
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.1...api-auth-entity-storage-service-v0.0.3-next.2) (2025-11-12)
|
|
67
822
|
|
|
68
823
|
|
|
69
824
|
### Miscellaneous Chores
|
|
@@ -79,22 +834,22 @@
|
|
|
79
834
|
* @twin.org/api-core bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
80
835
|
* @twin.org/api-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
81
836
|
|
|
82
|
-
## [0.0.3-next.1](https://github.com/
|
|
837
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.0...api-auth-entity-storage-service-v0.0.3-next.1) (2025-11-10)
|
|
83
838
|
|
|
84
839
|
|
|
85
840
|
### Features
|
|
86
841
|
|
|
87
|
-
* add context id features ([#42](https://github.com/
|
|
88
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
89
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
90
|
-
* eslint migration to flat config ([0dd5820](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 new extractBearer method ([3e0cc54](https://github.com/
|
|
96
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
97
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
842
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
843
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
844
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
845
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
846
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
847
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
848
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
849
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
850
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
851
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
852
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
98
853
|
|
|
99
854
|
|
|
100
855
|
### Dependencies
|
|
@@ -105,7 +860,7 @@
|
|
|
105
860
|
* @twin.org/api-core bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
106
861
|
* @twin.org/api-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
107
862
|
|
|
108
|
-
## [0.0.2-next.13](https://github.com/
|
|
863
|
+
## [0.0.2-next.13](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.12...api-auth-entity-storage-service-v0.0.2-next.13) (2025-10-09)
|
|
109
864
|
|
|
110
865
|
|
|
111
866
|
### Miscellaneous Chores
|
|
@@ -121,12 +876,12 @@
|
|
|
121
876
|
* @twin.org/api-core bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
122
877
|
* @twin.org/api-models bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
123
878
|
|
|
124
|
-
## [0.0.2-next.12](https://github.com/
|
|
879
|
+
## [0.0.2-next.12](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.11...api-auth-entity-storage-service-v0.0.2-next.12) (2025-10-09)
|
|
125
880
|
|
|
126
881
|
|
|
127
882
|
### Features
|
|
128
883
|
|
|
129
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
884
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
130
885
|
|
|
131
886
|
|
|
132
887
|
### Dependencies
|
|
@@ -137,12 +892,12 @@
|
|
|
137
892
|
* @twin.org/api-core bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
138
893
|
* @twin.org/api-models bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
139
894
|
|
|
140
|
-
## [0.0.2-next.11](https://github.com/
|
|
895
|
+
## [0.0.2-next.11](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.10...api-auth-entity-storage-service-v0.0.2-next.11) (2025-09-29)
|
|
141
896
|
|
|
142
897
|
|
|
143
898
|
### Features
|
|
144
899
|
|
|
145
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
900
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
146
901
|
|
|
147
902
|
|
|
148
903
|
### Dependencies
|
|
@@ -153,13 +908,13 @@
|
|
|
153
908
|
* @twin.org/api-core bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
154
909
|
* @twin.org/api-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
155
910
|
|
|
156
|
-
## [0.0.2-next.10](https://github.com/
|
|
911
|
+
## [0.0.2-next.10](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.9...api-auth-entity-storage-service-v0.0.2-next.10) (2025-09-23)
|
|
157
912
|
|
|
158
913
|
|
|
159
914
|
### Features
|
|
160
915
|
|
|
161
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
162
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
916
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
917
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
163
918
|
|
|
164
919
|
|
|
165
920
|
### Dependencies
|
|
@@ -170,12 +925,12 @@
|
|
|
170
925
|
* @twin.org/api-core bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
171
926
|
* @twin.org/api-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
172
927
|
|
|
173
|
-
## [0.0.2-next.9](https://github.com/
|
|
928
|
+
## [0.0.2-next.9](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.8...api-auth-entity-storage-service-v0.0.2-next.9) (2025-08-29)
|
|
174
929
|
|
|
175
930
|
|
|
176
931
|
### Features
|
|
177
932
|
|
|
178
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
933
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
179
934
|
|
|
180
935
|
|
|
181
936
|
### Dependencies
|
|
@@ -186,7 +941,7 @@
|
|
|
186
941
|
* @twin.org/api-core bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
187
942
|
* @twin.org/api-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
188
943
|
|
|
189
|
-
## [0.0.2-next.8](https://github.com/
|
|
944
|
+
## [0.0.2-next.8](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.7...api-auth-entity-storage-service-v0.0.2-next.8) (2025-08-21)
|
|
190
945
|
|
|
191
946
|
|
|
192
947
|
### Miscellaneous Chores
|
|
@@ -202,7 +957,7 @@
|
|
|
202
957
|
* @twin.org/api-core bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
203
958
|
* @twin.org/api-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
204
959
|
|
|
205
|
-
## [0.0.2-next.7](https://github.com/
|
|
960
|
+
## [0.0.2-next.7](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.6...api-auth-entity-storage-service-v0.0.2-next.7) (2025-08-20)
|
|
206
961
|
|
|
207
962
|
|
|
208
963
|
### Miscellaneous Chores
|
|
@@ -218,12 +973,12 @@
|
|
|
218
973
|
* @twin.org/api-core bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
219
974
|
* @twin.org/api-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
220
975
|
|
|
221
|
-
## [0.0.2-next.6](https://github.com/
|
|
976
|
+
## [0.0.2-next.6](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.5...api-auth-entity-storage-service-v0.0.2-next.6) (2025-08-19)
|
|
222
977
|
|
|
223
978
|
|
|
224
979
|
### Features
|
|
225
980
|
|
|
226
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
981
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
227
982
|
|
|
228
983
|
|
|
229
984
|
### Dependencies
|
|
@@ -234,15 +989,15 @@
|
|
|
234
989
|
* @twin.org/api-core bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
235
990
|
* @twin.org/api-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
236
991
|
|
|
237
|
-
## [0.0.2-next.5](https://github.com/
|
|
992
|
+
## [0.0.2-next.5](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.4...api-auth-entity-storage-service-v0.0.2-next.5) (2025-07-25)
|
|
238
993
|
|
|
239
994
|
|
|
240
995
|
### Features
|
|
241
996
|
|
|
242
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
243
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
244
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
245
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
997
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
998
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
999
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
1000
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
246
1001
|
|
|
247
1002
|
|
|
248
1003
|
### Dependencies
|
|
@@ -253,7 +1008,7 @@
|
|
|
253
1008
|
* @twin.org/api-core bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
254
1009
|
* @twin.org/api-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
255
1010
|
|
|
256
|
-
## [0.0.2-next.4](https://github.com/
|
|
1011
|
+
## [0.0.2-next.4](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.3...api-auth-entity-storage-service-v0.0.2-next.4) (2025-07-25)
|
|
257
1012
|
|
|
258
1013
|
|
|
259
1014
|
### Miscellaneous Chores
|
|
@@ -269,12 +1024,12 @@
|
|
|
269
1024
|
* @twin.org/api-core bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
270
1025
|
* @twin.org/api-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
271
1026
|
|
|
272
|
-
## [0.0.2-next.3](https://github.com/
|
|
1027
|
+
## [0.0.2-next.3](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.2...api-auth-entity-storage-service-v0.0.2-next.3) (2025-07-24)
|
|
273
1028
|
|
|
274
1029
|
|
|
275
1030
|
### Features
|
|
276
1031
|
|
|
277
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
1032
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
278
1033
|
|
|
279
1034
|
|
|
280
1035
|
### Dependencies
|
|
@@ -285,7 +1040,7 @@
|
|
|
285
1040
|
* @twin.org/api-core bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
286
1041
|
* @twin.org/api-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
287
1042
|
|
|
288
|
-
## [0.0.2-next.2](https://github.com/
|
|
1043
|
+
## [0.0.2-next.2](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.1...api-auth-entity-storage-service-v0.0.2-next.2) (2025-07-17)
|
|
289
1044
|
|
|
290
1045
|
|
|
291
1046
|
### Miscellaneous Chores
|
|
@@ -301,14 +1056,14 @@
|
|
|
301
1056
|
* @twin.org/api-core bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
302
1057
|
* @twin.org/api-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
303
1058
|
|
|
304
|
-
## [0.0.2-next.1](https://github.com/
|
|
1059
|
+
## [0.0.2-next.1](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.2-next.0...api-auth-entity-storage-service-v0.0.2-next.1) (2025-07-08)
|
|
305
1060
|
|
|
306
1061
|
|
|
307
1062
|
### Features
|
|
308
1063
|
|
|
309
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
310
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
311
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
1064
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
1065
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
1066
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
312
1067
|
|
|
313
1068
|
|
|
314
1069
|
### Dependencies
|
|
@@ -324,7 +1079,7 @@
|
|
|
324
1079
|
|
|
325
1080
|
### Features
|
|
326
1081
|
|
|
327
|
-
* release to production ([70ee2d5](https://github.com/
|
|
1082
|
+
* release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
|
|
328
1083
|
|
|
329
1084
|
|
|
330
1085
|
### Dependencies
|
|
@@ -335,7 +1090,7 @@
|
|
|
335
1090
|
* @twin.org/api-core bumped from ^0.0.0 to ^0.0.1
|
|
336
1091
|
* @twin.org/api-models bumped from ^0.0.0 to ^0.0.1
|
|
337
1092
|
|
|
338
|
-
## [0.0.1-next.36](https://github.com/
|
|
1093
|
+
## [0.0.1-next.36](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.1-next.35...api-auth-entity-storage-service-v0.0.1-next.36) (2025-06-17)
|
|
339
1094
|
|
|
340
1095
|
|
|
341
1096
|
### Miscellaneous Chores
|
|
@@ -351,12 +1106,12 @@
|
|
|
351
1106
|
* @twin.org/api-core bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
352
1107
|
* @twin.org/api-models bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
353
1108
|
|
|
354
|
-
## [0.0.1-next.35](https://github.com/
|
|
1109
|
+
## [0.0.1-next.35](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.1-next.34...api-auth-entity-storage-service-v0.0.1-next.35) (2025-06-11)
|
|
355
1110
|
|
|
356
1111
|
|
|
357
1112
|
### Features
|
|
358
1113
|
|
|
359
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
1114
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
360
1115
|
|
|
361
1116
|
|
|
362
1117
|
### Dependencies
|
|
@@ -367,7 +1122,7 @@
|
|
|
367
1122
|
* @twin.org/api-core bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
368
1123
|
* @twin.org/api-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
369
1124
|
|
|
370
|
-
## [0.0.1-next.34](https://github.com/
|
|
1125
|
+
## [0.0.1-next.34](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.1-next.33...api-auth-entity-storage-service-v0.0.1-next.34) (2025-05-27)
|
|
371
1126
|
|
|
372
1127
|
|
|
373
1128
|
### Miscellaneous Chores
|
|
@@ -383,12 +1138,12 @@
|
|
|
383
1138
|
* @twin.org/api-core bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
384
1139
|
* @twin.org/api-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
385
1140
|
|
|
386
|
-
## [0.0.1-next.33](https://github.com/
|
|
1141
|
+
## [0.0.1-next.33](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.1-next.32...api-auth-entity-storage-service-v0.0.1-next.33) (2025-04-17)
|
|
387
1142
|
|
|
388
1143
|
|
|
389
1144
|
### Features
|
|
390
1145
|
|
|
391
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
1146
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
392
1147
|
|
|
393
1148
|
|
|
394
1149
|
### Dependencies
|
|
@@ -399,7 +1154,7 @@
|
|
|
399
1154
|
* @twin.org/api-core bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
400
1155
|
* @twin.org/api-models bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
401
1156
|
|
|
402
|
-
## [0.0.1-next.32](https://github.com/
|
|
1157
|
+
## [0.0.1-next.32](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.1-next.31...api-auth-entity-storage-service-v0.0.1-next.32) (2025-03-28)
|
|
403
1158
|
|
|
404
1159
|
|
|
405
1160
|
### Miscellaneous Chores
|