@twin.org/api-auth-entity-storage-service 0.0.3-next.5 → 0.0.3-next.50
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 +804 -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,745 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [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)
|
|
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.49 to 0.0.3-next.50
|
|
16
|
+
* @twin.org/api-core bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
17
|
+
* @twin.org/api-models bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
18
|
+
|
|
19
|
+
## [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)
|
|
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.48 to 0.0.3-next.49
|
|
32
|
+
* @twin.org/api-core bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
33
|
+
* @twin.org/api-models bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
34
|
+
|
|
35
|
+
## [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)
|
|
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.47 to 0.0.3-next.48
|
|
48
|
+
* @twin.org/api-core bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
49
|
+
* @twin.org/api-models bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
50
|
+
|
|
51
|
+
## [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)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Features
|
|
55
|
+
|
|
56
|
+
* remove hosting component ([#170](https://github.com/iotaledger/twin-api/issues/170)) ([e78c1e8](https://github.com/iotaledger/twin-api/commit/e78c1e87d2747bf58da02b6b77680708ff681122))
|
|
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.46 to 0.0.3-next.47
|
|
64
|
+
* @twin.org/api-core bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
65
|
+
* @twin.org/api-models bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
66
|
+
|
|
67
|
+
## [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)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Bug Fixes
|
|
71
|
+
|
|
72
|
+
* use async getStore in tests ([0d25633](https://github.com/iotaledger/twin-api/commit/0d2563364de06a54ba487c700b601a883402d292))
|
|
73
|
+
* use async getStore in tests ([63493dd](https://github.com/iotaledger/twin-api/commit/63493ddf3cf394c0d1e4cfcddae9a39f7ac697c4))
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Dependencies
|
|
77
|
+
|
|
78
|
+
* The following workspace dependencies were updated
|
|
79
|
+
* dependencies
|
|
80
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
81
|
+
* @twin.org/api-core bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
82
|
+
* @twin.org/api-models bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
83
|
+
|
|
84
|
+
## [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)
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
### Miscellaneous Chores
|
|
88
|
+
|
|
89
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
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.44 to 0.0.3-next.45
|
|
97
|
+
* @twin.org/api-core bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
98
|
+
* @twin.org/api-models bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
99
|
+
|
|
100
|
+
## [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)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
### Features
|
|
104
|
+
|
|
105
|
+
* organization identifiers ([#158](https://github.com/iotaledger/twin-api/issues/158)) ([ce13244](https://github.com/iotaledger/twin-api/commit/ce13244aaacbf82d9e5f87d905e283b36ad63bbf))
|
|
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.43 to 0.0.3-next.44
|
|
113
|
+
* @twin.org/api-core bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
114
|
+
* @twin.org/api-models bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
115
|
+
|
|
116
|
+
## [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)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
### Miscellaneous Chores
|
|
120
|
+
|
|
121
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
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.42 to 0.0.3-next.43
|
|
129
|
+
* @twin.org/api-core bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
130
|
+
* @twin.org/api-models bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
131
|
+
|
|
132
|
+
## [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)
|
|
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.41 to 0.0.3-next.42
|
|
145
|
+
* @twin.org/api-core bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
146
|
+
* @twin.org/api-models bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
147
|
+
|
|
148
|
+
## [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)
|
|
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.40 to 0.0.3-next.41
|
|
161
|
+
* @twin.org/api-core bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
162
|
+
* @twin.org/api-models bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
163
|
+
|
|
164
|
+
## [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)
|
|
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.39 to 0.0.3-next.40
|
|
177
|
+
* @twin.org/api-core bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
178
|
+
* @twin.org/api-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
179
|
+
|
|
180
|
+
## [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)
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
### Features
|
|
184
|
+
|
|
185
|
+
* tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
|
|
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.38 to 0.0.3-next.39
|
|
193
|
+
* @twin.org/api-core bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
194
|
+
* @twin.org/api-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
195
|
+
|
|
196
|
+
## [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)
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
### Features
|
|
200
|
+
|
|
201
|
+
* hashed tenant id ([#135](https://github.com/iotaledger/twin-api/issues/135)) ([573c9b0](https://github.com/iotaledger/twin-api/commit/573c9b0714c281d69d5626c7576e93db826d266d))
|
|
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.37 to 0.0.3-next.38
|
|
209
|
+
* @twin.org/api-core bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
210
|
+
* @twin.org/api-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
211
|
+
|
|
212
|
+
## [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)
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
### Miscellaneous Chores
|
|
216
|
+
|
|
217
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
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.36 to 0.0.3-next.37
|
|
225
|
+
* @twin.org/api-core bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
226
|
+
* @twin.org/api-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
227
|
+
|
|
228
|
+
## [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)
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
### Features
|
|
232
|
+
|
|
233
|
+
* jwt password version claim ([#129](https://github.com/iotaledger/twin-api/issues/129)) ([e15487b](https://github.com/iotaledger/twin-api/commit/e15487baafd3b1f3fd58f138db531d58053ce049))
|
|
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.35 to 0.0.3-next.36
|
|
241
|
+
* @twin.org/api-core bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
242
|
+
* @twin.org/api-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
243
|
+
|
|
244
|
+
## [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)
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
### Features
|
|
248
|
+
|
|
249
|
+
* user partitioning ([#126](https://github.com/iotaledger/twin-api/issues/126)) ([6bf0da3](https://github.com/iotaledger/twin-api/commit/6bf0da3c42406c9838e80e0ddd6b21f5c64aac90))
|
|
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.34 to 0.0.3-next.35
|
|
257
|
+
* @twin.org/api-core bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
258
|
+
* @twin.org/api-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
259
|
+
|
|
260
|
+
## [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)
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
### Features
|
|
264
|
+
|
|
265
|
+
* update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
|
|
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.33 to 0.0.3-next.34
|
|
273
|
+
* @twin.org/api-core bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
274
|
+
* @twin.org/api-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
275
|
+
|
|
276
|
+
## [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)
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
### Features
|
|
280
|
+
|
|
281
|
+
* typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
|
|
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.32 to 0.0.3-next.33
|
|
289
|
+
* @twin.org/api-core bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
290
|
+
* @twin.org/api-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
291
|
+
|
|
292
|
+
## [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)
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
### Miscellaneous Chores
|
|
296
|
+
|
|
297
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
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.31 to 0.0.3-next.32
|
|
305
|
+
* @twin.org/api-core bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
306
|
+
* @twin.org/api-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
307
|
+
|
|
308
|
+
## [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)
|
|
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.30 to 0.0.3-next.31
|
|
321
|
+
* @twin.org/api-core bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
322
|
+
* @twin.org/api-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
323
|
+
|
|
324
|
+
## [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)
|
|
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.29 to 0.0.3-next.30
|
|
337
|
+
* @twin.org/api-core bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
338
|
+
* @twin.org/api-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
339
|
+
|
|
340
|
+
## [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)
|
|
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.28 to 0.0.3-next.29
|
|
353
|
+
* @twin.org/api-core bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
354
|
+
* @twin.org/api-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
355
|
+
|
|
356
|
+
## [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)
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
### Bug Fixes
|
|
360
|
+
|
|
361
|
+
* 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))
|
|
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.27 to 0.0.3-next.28
|
|
369
|
+
* @twin.org/api-core bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
370
|
+
* @twin.org/api-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
371
|
+
|
|
372
|
+
## [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)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
### Bug Fixes
|
|
376
|
+
|
|
377
|
+
* 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))
|
|
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.26 to 0.0.3-next.27
|
|
385
|
+
* @twin.org/api-core bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
386
|
+
* @twin.org/api-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
387
|
+
|
|
388
|
+
## [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)
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
### Miscellaneous Chores
|
|
392
|
+
|
|
393
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
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.25 to 0.0.3-next.26
|
|
401
|
+
* @twin.org/api-core bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
402
|
+
* @twin.org/api-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
403
|
+
|
|
404
|
+
## [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)
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
### Features
|
|
408
|
+
|
|
409
|
+
* auth header processor use user entity storage directly ([93084cf](https://github.com/iotaledger/twin-api/commit/93084cfed8f3ab16c80a1ab1bc90b1d9fc14bd25))
|
|
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.24 to 0.0.3-next.25
|
|
417
|
+
* @twin.org/api-core bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
418
|
+
* @twin.org/api-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
419
|
+
|
|
420
|
+
## [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)
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
### Features
|
|
424
|
+
|
|
425
|
+
* remove auth service dependency on admin service ([4aeb211](https://github.com/iotaledger/twin-api/commit/4aeb211a5ffcf2eaea89a6841faea3ac3069ef89))
|
|
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.23 to 0.0.3-next.24
|
|
433
|
+
* @twin.org/api-core bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
434
|
+
* @twin.org/api-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
435
|
+
|
|
436
|
+
## [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)
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
### Features
|
|
440
|
+
|
|
441
|
+
* auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
|
|
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.22 to 0.0.3-next.23
|
|
449
|
+
* @twin.org/api-core bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
450
|
+
* @twin.org/api-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
451
|
+
|
|
452
|
+
## [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)
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
### Miscellaneous Chores
|
|
456
|
+
|
|
457
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
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.21 to 0.0.3-next.22
|
|
465
|
+
* @twin.org/api-core bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
466
|
+
* @twin.org/api-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
467
|
+
|
|
468
|
+
## [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)
|
|
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.20 to 0.0.3-next.21
|
|
481
|
+
* @twin.org/api-core bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
482
|
+
* @twin.org/api-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
483
|
+
|
|
484
|
+
## [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)
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
### Features
|
|
488
|
+
|
|
489
|
+
* location encoding ([#79](https://github.com/iotaledger/twin-api/issues/79)) ([c684465](https://github.com/iotaledger/twin-api/commit/c684465f2a871376152472bdecb6aa230b1101a1))
|
|
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.19 to 0.0.3-next.20
|
|
497
|
+
* @twin.org/api-core bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
498
|
+
* @twin.org/api-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
499
|
+
|
|
500
|
+
## [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)
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
### Features
|
|
504
|
+
|
|
505
|
+
* user admin service ([#77](https://github.com/iotaledger/twin-api/issues/77)) ([c8491df](https://github.com/iotaledger/twin-api/commit/c8491df7b07c1f45560c8a78c6adc806d0ececbb))
|
|
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.18 to 0.0.3-next.19
|
|
513
|
+
* @twin.org/api-core bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
514
|
+
* @twin.org/api-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
515
|
+
|
|
516
|
+
## [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)
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
### Features
|
|
520
|
+
|
|
521
|
+
* tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
|
|
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.17 to 0.0.3-next.18
|
|
529
|
+
* @twin.org/api-core bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
530
|
+
* @twin.org/api-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
531
|
+
|
|
532
|
+
## [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)
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
### Miscellaneous Chores
|
|
536
|
+
|
|
537
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
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.16 to 0.0.3-next.17
|
|
545
|
+
* @twin.org/api-core bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
546
|
+
* @twin.org/api-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
547
|
+
|
|
548
|
+
## [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)
|
|
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.15 to 0.0.3-next.16
|
|
561
|
+
* @twin.org/api-core bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
562
|
+
* @twin.org/api-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
563
|
+
|
|
564
|
+
## [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)
|
|
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.14 to 0.0.3-next.15
|
|
577
|
+
* @twin.org/api-core bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
578
|
+
* @twin.org/api-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
579
|
+
|
|
580
|
+
## [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)
|
|
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.13 to 0.0.3-next.14
|
|
593
|
+
* @twin.org/api-core bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
594
|
+
* @twin.org/api-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
595
|
+
|
|
596
|
+
## [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)
|
|
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.12 to 0.0.3-next.13
|
|
609
|
+
* @twin.org/api-core bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
610
|
+
* @twin.org/api-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
611
|
+
|
|
612
|
+
## [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)
|
|
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.11 to 0.0.3-next.12
|
|
625
|
+
* @twin.org/api-core bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
626
|
+
* @twin.org/api-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
627
|
+
|
|
628
|
+
## [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)
|
|
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.10 to 0.0.3-next.11
|
|
641
|
+
* @twin.org/api-core bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
642
|
+
* @twin.org/api-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
643
|
+
|
|
644
|
+
## [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)
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
### Bug Fixes
|
|
648
|
+
|
|
649
|
+
* remove token from return payload ([eaa4266](https://github.com/iotaledger/twin-api/commit/eaa42661b8540881b0751f5d2513258b3413f3ef))
|
|
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.9 to 0.0.3-next.10
|
|
657
|
+
* @twin.org/api-core bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
658
|
+
* @twin.org/api-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
659
|
+
|
|
660
|
+
## [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)
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
### Features
|
|
664
|
+
|
|
665
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
666
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
667
|
+
* add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
|
|
668
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
669
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
670
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
671
|
+
* 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))
|
|
672
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
673
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
674
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
675
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
676
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
677
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
678
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
### Bug Fixes
|
|
682
|
+
|
|
683
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
### Dependencies
|
|
687
|
+
|
|
688
|
+
* The following workspace dependencies were updated
|
|
689
|
+
* dependencies
|
|
690
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
691
|
+
* @twin.org/api-core bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
692
|
+
* @twin.org/api-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
693
|
+
|
|
694
|
+
## [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)
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
### Miscellaneous Chores
|
|
698
|
+
|
|
699
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
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.7 to 0.0.3-next.8
|
|
707
|
+
* @twin.org/api-core bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
708
|
+
* @twin.org/api-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
709
|
+
|
|
710
|
+
## [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)
|
|
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.6 to 0.0.3-next.7
|
|
723
|
+
* @twin.org/api-core bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
724
|
+
* @twin.org/api-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
725
|
+
|
|
726
|
+
## [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)
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
### Features
|
|
730
|
+
|
|
731
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
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.5 to 0.0.3-next.6
|
|
739
|
+
* @twin.org/api-core bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
740
|
+
* @twin.org/api-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
741
|
+
|
|
742
|
+
## [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
743
|
|
|
5
744
|
|
|
6
745
|
### Miscellaneous Chores
|
|
@@ -16,27 +755,27 @@
|
|
|
16
755
|
* @twin.org/api-core bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
17
756
|
* @twin.org/api-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
18
757
|
|
|
19
|
-
## [0.0.3-next.4](https://github.com/
|
|
758
|
+
## [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
759
|
|
|
21
760
|
|
|
22
761
|
### Features
|
|
23
762
|
|
|
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/
|
|
763
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
764
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
765
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
766
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
767
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
768
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
769
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
770
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
771
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
772
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
773
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
35
774
|
|
|
36
775
|
|
|
37
776
|
### Bug Fixes
|
|
38
777
|
|
|
39
|
-
* include org in context ids from jwt ([a12cfdd](https://github.com/
|
|
778
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
40
779
|
|
|
41
780
|
|
|
42
781
|
### Dependencies
|
|
@@ -47,12 +786,12 @@
|
|
|
47
786
|
* @twin.org/api-core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
48
787
|
* @twin.org/api-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
49
788
|
|
|
50
|
-
## [0.0.3-next.3](https://github.com/
|
|
789
|
+
## [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
790
|
|
|
52
791
|
|
|
53
792
|
### Bug Fixes
|
|
54
793
|
|
|
55
|
-
* 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))
|
|
56
795
|
|
|
57
796
|
|
|
58
797
|
### Dependencies
|
|
@@ -63,7 +802,7 @@
|
|
|
63
802
|
* @twin.org/api-core bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
64
803
|
* @twin.org/api-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
65
804
|
|
|
66
|
-
## [0.0.3-next.2](https://github.com/
|
|
805
|
+
## [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
806
|
|
|
68
807
|
|
|
69
808
|
### Miscellaneous Chores
|
|
@@ -79,22 +818,22 @@
|
|
|
79
818
|
* @twin.org/api-core bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
80
819
|
* @twin.org/api-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
81
820
|
|
|
82
|
-
## [0.0.3-next.1](https://github.com/
|
|
821
|
+
## [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
822
|
|
|
84
823
|
|
|
85
824
|
### Features
|
|
86
825
|
|
|
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/
|
|
826
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
827
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
828
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
829
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
830
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
831
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
832
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
833
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
834
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
835
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
836
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
98
837
|
|
|
99
838
|
|
|
100
839
|
### Dependencies
|
|
@@ -105,7 +844,7 @@
|
|
|
105
844
|
* @twin.org/api-core bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
106
845
|
* @twin.org/api-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
107
846
|
|
|
108
|
-
## [0.0.2-next.13](https://github.com/
|
|
847
|
+
## [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
848
|
|
|
110
849
|
|
|
111
850
|
### Miscellaneous Chores
|
|
@@ -121,12 +860,12 @@
|
|
|
121
860
|
* @twin.org/api-core bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
122
861
|
* @twin.org/api-models bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
123
862
|
|
|
124
|
-
## [0.0.2-next.12](https://github.com/
|
|
863
|
+
## [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
864
|
|
|
126
865
|
|
|
127
866
|
### Features
|
|
128
867
|
|
|
129
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
868
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
130
869
|
|
|
131
870
|
|
|
132
871
|
### Dependencies
|
|
@@ -137,12 +876,12 @@
|
|
|
137
876
|
* @twin.org/api-core bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
138
877
|
* @twin.org/api-models bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
139
878
|
|
|
140
|
-
## [0.0.2-next.11](https://github.com/
|
|
879
|
+
## [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
880
|
|
|
142
881
|
|
|
143
882
|
### Features
|
|
144
883
|
|
|
145
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
884
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
146
885
|
|
|
147
886
|
|
|
148
887
|
### Dependencies
|
|
@@ -153,13 +892,13 @@
|
|
|
153
892
|
* @twin.org/api-core bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
154
893
|
* @twin.org/api-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
155
894
|
|
|
156
|
-
## [0.0.2-next.10](https://github.com/
|
|
895
|
+
## [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
896
|
|
|
158
897
|
|
|
159
898
|
### Features
|
|
160
899
|
|
|
161
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
162
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
900
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
901
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
163
902
|
|
|
164
903
|
|
|
165
904
|
### Dependencies
|
|
@@ -170,12 +909,12 @@
|
|
|
170
909
|
* @twin.org/api-core bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
171
910
|
* @twin.org/api-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
172
911
|
|
|
173
|
-
## [0.0.2-next.9](https://github.com/
|
|
912
|
+
## [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
913
|
|
|
175
914
|
|
|
176
915
|
### Features
|
|
177
916
|
|
|
178
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
917
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
179
918
|
|
|
180
919
|
|
|
181
920
|
### Dependencies
|
|
@@ -186,7 +925,7 @@
|
|
|
186
925
|
* @twin.org/api-core bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
187
926
|
* @twin.org/api-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
188
927
|
|
|
189
|
-
## [0.0.2-next.8](https://github.com/
|
|
928
|
+
## [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
929
|
|
|
191
930
|
|
|
192
931
|
### Miscellaneous Chores
|
|
@@ -202,7 +941,7 @@
|
|
|
202
941
|
* @twin.org/api-core bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
203
942
|
* @twin.org/api-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
204
943
|
|
|
205
|
-
## [0.0.2-next.7](https://github.com/
|
|
944
|
+
## [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
945
|
|
|
207
946
|
|
|
208
947
|
### Miscellaneous Chores
|
|
@@ -218,12 +957,12 @@
|
|
|
218
957
|
* @twin.org/api-core bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
219
958
|
* @twin.org/api-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
220
959
|
|
|
221
|
-
## [0.0.2-next.6](https://github.com/
|
|
960
|
+
## [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
961
|
|
|
223
962
|
|
|
224
963
|
### Features
|
|
225
964
|
|
|
226
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
965
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
227
966
|
|
|
228
967
|
|
|
229
968
|
### Dependencies
|
|
@@ -234,15 +973,15 @@
|
|
|
234
973
|
* @twin.org/api-core bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
235
974
|
* @twin.org/api-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
236
975
|
|
|
237
|
-
## [0.0.2-next.5](https://github.com/
|
|
976
|
+
## [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
977
|
|
|
239
978
|
|
|
240
979
|
### Features
|
|
241
980
|
|
|
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/
|
|
981
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
982
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
983
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
984
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
246
985
|
|
|
247
986
|
|
|
248
987
|
### Dependencies
|
|
@@ -253,7 +992,7 @@
|
|
|
253
992
|
* @twin.org/api-core bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
254
993
|
* @twin.org/api-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
255
994
|
|
|
256
|
-
## [0.0.2-next.4](https://github.com/
|
|
995
|
+
## [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
996
|
|
|
258
997
|
|
|
259
998
|
### Miscellaneous Chores
|
|
@@ -269,12 +1008,12 @@
|
|
|
269
1008
|
* @twin.org/api-core bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
270
1009
|
* @twin.org/api-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
271
1010
|
|
|
272
|
-
## [0.0.2-next.3](https://github.com/
|
|
1011
|
+
## [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
1012
|
|
|
274
1013
|
|
|
275
1014
|
### Features
|
|
276
1015
|
|
|
277
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
1016
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
278
1017
|
|
|
279
1018
|
|
|
280
1019
|
### Dependencies
|
|
@@ -285,7 +1024,7 @@
|
|
|
285
1024
|
* @twin.org/api-core bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
286
1025
|
* @twin.org/api-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
287
1026
|
|
|
288
|
-
## [0.0.2-next.2](https://github.com/
|
|
1027
|
+
## [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
1028
|
|
|
290
1029
|
|
|
291
1030
|
### Miscellaneous Chores
|
|
@@ -301,14 +1040,14 @@
|
|
|
301
1040
|
* @twin.org/api-core bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
302
1041
|
* @twin.org/api-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
303
1042
|
|
|
304
|
-
## [0.0.2-next.1](https://github.com/
|
|
1043
|
+
## [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
1044
|
|
|
306
1045
|
|
|
307
1046
|
### Features
|
|
308
1047
|
|
|
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/
|
|
1048
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
1049
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
1050
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
312
1051
|
|
|
313
1052
|
|
|
314
1053
|
### Dependencies
|
|
@@ -324,7 +1063,7 @@
|
|
|
324
1063
|
|
|
325
1064
|
### Features
|
|
326
1065
|
|
|
327
|
-
* release to production ([70ee2d5](https://github.com/
|
|
1066
|
+
* release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
|
|
328
1067
|
|
|
329
1068
|
|
|
330
1069
|
### Dependencies
|
|
@@ -335,7 +1074,7 @@
|
|
|
335
1074
|
* @twin.org/api-core bumped from ^0.0.0 to ^0.0.1
|
|
336
1075
|
* @twin.org/api-models bumped from ^0.0.0 to ^0.0.1
|
|
337
1076
|
|
|
338
|
-
## [0.0.1-next.36](https://github.com/
|
|
1077
|
+
## [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
1078
|
|
|
340
1079
|
|
|
341
1080
|
### Miscellaneous Chores
|
|
@@ -351,12 +1090,12 @@
|
|
|
351
1090
|
* @twin.org/api-core bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
352
1091
|
* @twin.org/api-models bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
353
1092
|
|
|
354
|
-
## [0.0.1-next.35](https://github.com/
|
|
1093
|
+
## [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
1094
|
|
|
356
1095
|
|
|
357
1096
|
### Features
|
|
358
1097
|
|
|
359
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
1098
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
360
1099
|
|
|
361
1100
|
|
|
362
1101
|
### Dependencies
|
|
@@ -367,7 +1106,7 @@
|
|
|
367
1106
|
* @twin.org/api-core bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
368
1107
|
* @twin.org/api-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
369
1108
|
|
|
370
|
-
## [0.0.1-next.34](https://github.com/
|
|
1109
|
+
## [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
1110
|
|
|
372
1111
|
|
|
373
1112
|
### Miscellaneous Chores
|
|
@@ -383,12 +1122,12 @@
|
|
|
383
1122
|
* @twin.org/api-core bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
384
1123
|
* @twin.org/api-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
385
1124
|
|
|
386
|
-
## [0.0.1-next.33](https://github.com/
|
|
1125
|
+
## [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
1126
|
|
|
388
1127
|
|
|
389
1128
|
### Features
|
|
390
1129
|
|
|
391
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
1130
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
392
1131
|
|
|
393
1132
|
|
|
394
1133
|
### Dependencies
|
|
@@ -399,7 +1138,7 @@
|
|
|
399
1138
|
* @twin.org/api-core bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
400
1139
|
* @twin.org/api-models bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
401
1140
|
|
|
402
|
-
## [0.0.1-next.32](https://github.com/
|
|
1141
|
+
## [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
1142
|
|
|
404
1143
|
|
|
405
1144
|
### Miscellaneous Chores
|