@twin.org/api-auth-entity-storage-service 0.0.3-next.4 → 0.0.3-next.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/es/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 +62 -10
- package/dist/es/processors/authHeaderProcessor.js.map +1 -1
- package/dist/es/restEntryPoints.js +14 -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 +161 -55
- package/dist/es/services/entityStorageAuthenticationAdminService.js.map +1 -1
- package/dist/es/services/entityStorageAuthenticationAuditService.js +178 -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 +200 -14
- 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 +45 -21
- 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 +14 -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 +17 -3
- package/dist/types/processors/authHeaderProcessor.d.ts +1 -1
- 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 +23 -6
- package/dist/types/services/entityStorageAuthenticationAuditService.d.ts +59 -0
- package/dist/types/services/entityStorageAuthenticationRateService.d.ts +60 -0
- package/dist/types/services/entityStorageAuthenticationService.d.ts +8 -3
- package/dist/types/utils/passwordHelper.d.ts +13 -5
- package/dist/types/utils/tokenHelper.d.ts +9 -2
- package/docs/changelog.md +658 -64
- package/docs/examples.md +178 -1
- package/docs/reference/classes/AuthHeaderProcessor.md +10 -10
- 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 +78 -18
- package/docs/reference/classes/EntityStorageAuthenticationAuditService.md +157 -0
- package/docs/reference/classes/EntityStorageAuthenticationRateService.md +227 -0
- package/docs/reference/classes/EntityStorageAuthenticationService.md +36 -16
- package/docs/reference/classes/PasswordHelper.md +37 -12
- package/docs/reference/classes/TokenHelper.md +44 -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 +40 -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 +46 -10
- 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,26 +1,620 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [0.0.3-next.40](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.39...api-auth-entity-storage-service-v0.0.3-next.40) (2026-06-04)
|
|
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.39 to 0.0.3-next.40
|
|
16
|
+
* @twin.org/api-core bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
17
|
+
* @twin.org/api-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
18
|
+
|
|
19
|
+
## [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)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
|
|
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.38 to 0.0.3-next.39
|
|
32
|
+
* @twin.org/api-core bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
33
|
+
* @twin.org/api-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
34
|
+
|
|
35
|
+
## [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)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Features
|
|
39
|
+
|
|
40
|
+
* hashed tenant id ([#135](https://github.com/iotaledger/twin-api/issues/135)) ([573c9b0](https://github.com/iotaledger/twin-api/commit/573c9b0714c281d69d5626c7576e93db826d266d))
|
|
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.37 to 0.0.3-next.38
|
|
48
|
+
* @twin.org/api-core bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
49
|
+
* @twin.org/api-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
50
|
+
|
|
51
|
+
## [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)
|
|
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.36 to 0.0.3-next.37
|
|
64
|
+
* @twin.org/api-core bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
65
|
+
* @twin.org/api-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
66
|
+
|
|
67
|
+
## [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)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Features
|
|
71
|
+
|
|
72
|
+
* jwt password version claim ([#129](https://github.com/iotaledger/twin-api/issues/129)) ([e15487b](https://github.com/iotaledger/twin-api/commit/e15487baafd3b1f3fd58f138db531d58053ce049))
|
|
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.35 to 0.0.3-next.36
|
|
80
|
+
* @twin.org/api-core bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
81
|
+
* @twin.org/api-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
82
|
+
|
|
83
|
+
## [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)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Features
|
|
87
|
+
|
|
88
|
+
* user partitioning ([#126](https://github.com/iotaledger/twin-api/issues/126)) ([6bf0da3](https://github.com/iotaledger/twin-api/commit/6bf0da3c42406c9838e80e0ddd6b21f5c64aac90))
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
### Dependencies
|
|
92
|
+
|
|
93
|
+
* The following workspace dependencies were updated
|
|
94
|
+
* dependencies
|
|
95
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
96
|
+
* @twin.org/api-core bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
97
|
+
* @twin.org/api-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
98
|
+
|
|
99
|
+
## [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)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
### Features
|
|
103
|
+
|
|
104
|
+
* update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
### Dependencies
|
|
108
|
+
|
|
109
|
+
* The following workspace dependencies were updated
|
|
110
|
+
* dependencies
|
|
111
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
112
|
+
* @twin.org/api-core bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
113
|
+
* @twin.org/api-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
114
|
+
|
|
115
|
+
## [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)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Features
|
|
119
|
+
|
|
120
|
+
* typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Dependencies
|
|
124
|
+
|
|
125
|
+
* The following workspace dependencies were updated
|
|
126
|
+
* dependencies
|
|
127
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
128
|
+
* @twin.org/api-core bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
129
|
+
* @twin.org/api-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
130
|
+
|
|
131
|
+
## [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)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
### Miscellaneous Chores
|
|
135
|
+
|
|
136
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Dependencies
|
|
140
|
+
|
|
141
|
+
* The following workspace dependencies were updated
|
|
142
|
+
* dependencies
|
|
143
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
144
|
+
* @twin.org/api-core bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
145
|
+
* @twin.org/api-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
146
|
+
|
|
147
|
+
## [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)
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
### Miscellaneous Chores
|
|
151
|
+
|
|
152
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
### Dependencies
|
|
156
|
+
|
|
157
|
+
* The following workspace dependencies were updated
|
|
158
|
+
* dependencies
|
|
159
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
160
|
+
* @twin.org/api-core bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
161
|
+
* @twin.org/api-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
162
|
+
|
|
163
|
+
## [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)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
### Miscellaneous Chores
|
|
167
|
+
|
|
168
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
### Dependencies
|
|
172
|
+
|
|
173
|
+
* The following workspace dependencies were updated
|
|
174
|
+
* dependencies
|
|
175
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
176
|
+
* @twin.org/api-core bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
177
|
+
* @twin.org/api-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
178
|
+
|
|
179
|
+
## [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)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
### Miscellaneous Chores
|
|
183
|
+
|
|
184
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
### Dependencies
|
|
188
|
+
|
|
189
|
+
* The following workspace dependencies were updated
|
|
190
|
+
* dependencies
|
|
191
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
192
|
+
* @twin.org/api-core bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
193
|
+
* @twin.org/api-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
194
|
+
|
|
195
|
+
## [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)
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
### Bug Fixes
|
|
199
|
+
|
|
200
|
+
* 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))
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
### Dependencies
|
|
204
|
+
|
|
205
|
+
* The following workspace dependencies were updated
|
|
206
|
+
* dependencies
|
|
207
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
208
|
+
* @twin.org/api-core bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
209
|
+
* @twin.org/api-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
210
|
+
|
|
211
|
+
## [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)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
### Bug Fixes
|
|
215
|
+
|
|
216
|
+
* 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))
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
### Dependencies
|
|
220
|
+
|
|
221
|
+
* The following workspace dependencies were updated
|
|
222
|
+
* dependencies
|
|
223
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
224
|
+
* @twin.org/api-core bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
225
|
+
* @twin.org/api-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
226
|
+
|
|
227
|
+
## [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)
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
### Miscellaneous Chores
|
|
231
|
+
|
|
232
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
### Dependencies
|
|
236
|
+
|
|
237
|
+
* The following workspace dependencies were updated
|
|
238
|
+
* dependencies
|
|
239
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
240
|
+
* @twin.org/api-core bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
241
|
+
* @twin.org/api-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
242
|
+
|
|
243
|
+
## [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)
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
### Features
|
|
247
|
+
|
|
248
|
+
* auth header processor use user entity storage directly ([93084cf](https://github.com/iotaledger/twin-api/commit/93084cfed8f3ab16c80a1ab1bc90b1d9fc14bd25))
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
### Dependencies
|
|
252
|
+
|
|
253
|
+
* The following workspace dependencies were updated
|
|
254
|
+
* dependencies
|
|
255
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
256
|
+
* @twin.org/api-core bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
257
|
+
* @twin.org/api-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
258
|
+
|
|
259
|
+
## [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)
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
### Features
|
|
263
|
+
|
|
264
|
+
* remove auth service dependency on admin service ([4aeb211](https://github.com/iotaledger/twin-api/commit/4aeb211a5ffcf2eaea89a6841faea3ac3069ef89))
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
### Dependencies
|
|
268
|
+
|
|
269
|
+
* The following workspace dependencies were updated
|
|
270
|
+
* dependencies
|
|
271
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
272
|
+
* @twin.org/api-core bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
273
|
+
* @twin.org/api-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
274
|
+
|
|
275
|
+
## [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)
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
### Features
|
|
279
|
+
|
|
280
|
+
* auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
### Dependencies
|
|
284
|
+
|
|
285
|
+
* The following workspace dependencies were updated
|
|
286
|
+
* dependencies
|
|
287
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
288
|
+
* @twin.org/api-core bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
289
|
+
* @twin.org/api-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
290
|
+
|
|
291
|
+
## [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)
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
### Miscellaneous Chores
|
|
295
|
+
|
|
296
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
### Dependencies
|
|
300
|
+
|
|
301
|
+
* The following workspace dependencies were updated
|
|
302
|
+
* dependencies
|
|
303
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
304
|
+
* @twin.org/api-core bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
305
|
+
* @twin.org/api-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
306
|
+
|
|
307
|
+
## [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)
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
### Miscellaneous Chores
|
|
311
|
+
|
|
312
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
### Dependencies
|
|
316
|
+
|
|
317
|
+
* The following workspace dependencies were updated
|
|
318
|
+
* dependencies
|
|
319
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
320
|
+
* @twin.org/api-core bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
321
|
+
* @twin.org/api-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
322
|
+
|
|
323
|
+
## [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)
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
### Features
|
|
327
|
+
|
|
328
|
+
* location encoding ([#79](https://github.com/iotaledger/twin-api/issues/79)) ([c684465](https://github.com/iotaledger/twin-api/commit/c684465f2a871376152472bdecb6aa230b1101a1))
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
### Dependencies
|
|
332
|
+
|
|
333
|
+
* The following workspace dependencies were updated
|
|
334
|
+
* dependencies
|
|
335
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
336
|
+
* @twin.org/api-core bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
337
|
+
* @twin.org/api-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
338
|
+
|
|
339
|
+
## [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)
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
### Features
|
|
343
|
+
|
|
344
|
+
* user admin service ([#77](https://github.com/iotaledger/twin-api/issues/77)) ([c8491df](https://github.com/iotaledger/twin-api/commit/c8491df7b07c1f45560c8a78c6adc806d0ececbb))
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
### Dependencies
|
|
348
|
+
|
|
349
|
+
* The following workspace dependencies were updated
|
|
350
|
+
* dependencies
|
|
351
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
352
|
+
* @twin.org/api-core bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
353
|
+
* @twin.org/api-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
354
|
+
|
|
355
|
+
## [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)
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
### Features
|
|
359
|
+
|
|
360
|
+
* tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
### Dependencies
|
|
364
|
+
|
|
365
|
+
* The following workspace dependencies were updated
|
|
366
|
+
* dependencies
|
|
367
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
368
|
+
* @twin.org/api-core bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
369
|
+
* @twin.org/api-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
370
|
+
|
|
371
|
+
## [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)
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
### Miscellaneous Chores
|
|
375
|
+
|
|
376
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
### Dependencies
|
|
380
|
+
|
|
381
|
+
* The following workspace dependencies were updated
|
|
382
|
+
* dependencies
|
|
383
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
384
|
+
* @twin.org/api-core bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
385
|
+
* @twin.org/api-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
386
|
+
|
|
387
|
+
## [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)
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
### Miscellaneous Chores
|
|
391
|
+
|
|
392
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
### Dependencies
|
|
396
|
+
|
|
397
|
+
* The following workspace dependencies were updated
|
|
398
|
+
* dependencies
|
|
399
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
400
|
+
* @twin.org/api-core bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
401
|
+
* @twin.org/api-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
402
|
+
|
|
403
|
+
## [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)
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
### Miscellaneous Chores
|
|
407
|
+
|
|
408
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
### Dependencies
|
|
412
|
+
|
|
413
|
+
* The following workspace dependencies were updated
|
|
414
|
+
* dependencies
|
|
415
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
416
|
+
* @twin.org/api-core bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
417
|
+
* @twin.org/api-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
418
|
+
|
|
419
|
+
## [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)
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
### Miscellaneous Chores
|
|
423
|
+
|
|
424
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
### Dependencies
|
|
428
|
+
|
|
429
|
+
* The following workspace dependencies were updated
|
|
430
|
+
* dependencies
|
|
431
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
432
|
+
* @twin.org/api-core bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
433
|
+
* @twin.org/api-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
434
|
+
|
|
435
|
+
## [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)
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
### Miscellaneous Chores
|
|
439
|
+
|
|
440
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
### Dependencies
|
|
444
|
+
|
|
445
|
+
* The following workspace dependencies were updated
|
|
446
|
+
* dependencies
|
|
447
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
448
|
+
* @twin.org/api-core bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
449
|
+
* @twin.org/api-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
450
|
+
|
|
451
|
+
## [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)
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
### Miscellaneous Chores
|
|
455
|
+
|
|
456
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
### Dependencies
|
|
460
|
+
|
|
461
|
+
* The following workspace dependencies were updated
|
|
462
|
+
* dependencies
|
|
463
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
464
|
+
* @twin.org/api-core bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
465
|
+
* @twin.org/api-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
466
|
+
|
|
467
|
+
## [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)
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
### Miscellaneous Chores
|
|
471
|
+
|
|
472
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
### Dependencies
|
|
476
|
+
|
|
477
|
+
* The following workspace dependencies were updated
|
|
478
|
+
* dependencies
|
|
479
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
480
|
+
* @twin.org/api-core bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
481
|
+
* @twin.org/api-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
482
|
+
|
|
483
|
+
## [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)
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
### Bug Fixes
|
|
487
|
+
|
|
488
|
+
* remove token from return payload ([eaa4266](https://github.com/iotaledger/twin-api/commit/eaa42661b8540881b0751f5d2513258b3413f3ef))
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
### Dependencies
|
|
492
|
+
|
|
493
|
+
* The following workspace dependencies were updated
|
|
494
|
+
* dependencies
|
|
495
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
496
|
+
* @twin.org/api-core bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
497
|
+
* @twin.org/api-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
498
|
+
|
|
499
|
+
## [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)
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
### Features
|
|
503
|
+
|
|
504
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
505
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
506
|
+
* add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
|
|
507
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
508
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
509
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
510
|
+
* 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))
|
|
511
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
512
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
513
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
514
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
515
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
516
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
517
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
### Bug Fixes
|
|
521
|
+
|
|
522
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
### Dependencies
|
|
526
|
+
|
|
527
|
+
* The following workspace dependencies were updated
|
|
528
|
+
* dependencies
|
|
529
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
530
|
+
* @twin.org/api-core bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
531
|
+
* @twin.org/api-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
532
|
+
|
|
533
|
+
## [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)
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
### Miscellaneous Chores
|
|
537
|
+
|
|
538
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
### Dependencies
|
|
542
|
+
|
|
543
|
+
* The following workspace dependencies were updated
|
|
544
|
+
* dependencies
|
|
545
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
546
|
+
* @twin.org/api-core bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
547
|
+
* @twin.org/api-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
548
|
+
|
|
549
|
+
## [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)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
### Miscellaneous Chores
|
|
553
|
+
|
|
554
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
### Dependencies
|
|
558
|
+
|
|
559
|
+
* The following workspace dependencies were updated
|
|
560
|
+
* dependencies
|
|
561
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
562
|
+
* @twin.org/api-core bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
563
|
+
* @twin.org/api-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
564
|
+
|
|
565
|
+
## [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)
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
### Features
|
|
569
|
+
|
|
570
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
### Dependencies
|
|
574
|
+
|
|
575
|
+
* The following workspace dependencies were updated
|
|
576
|
+
* dependencies
|
|
577
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
578
|
+
* @twin.org/api-core bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
579
|
+
* @twin.org/api-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
580
|
+
|
|
581
|
+
## [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)
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
### Miscellaneous Chores
|
|
585
|
+
|
|
586
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
### Dependencies
|
|
590
|
+
|
|
591
|
+
* The following workspace dependencies were updated
|
|
592
|
+
* dependencies
|
|
593
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
594
|
+
* @twin.org/api-core bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
595
|
+
* @twin.org/api-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
596
|
+
|
|
597
|
+
## [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)
|
|
4
598
|
|
|
5
599
|
|
|
6
600
|
### Features
|
|
7
601
|
|
|
8
|
-
* add context id features ([#42](https://github.com/
|
|
9
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
10
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
11
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
12
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
13
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
14
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
15
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
16
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
17
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
18
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
602
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
603
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
604
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
605
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
606
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
607
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
608
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
609
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
610
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
611
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
612
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
19
613
|
|
|
20
614
|
|
|
21
615
|
### Bug Fixes
|
|
22
616
|
|
|
23
|
-
* include org in context ids from jwt ([a12cfdd](https://github.com/
|
|
617
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
24
618
|
|
|
25
619
|
|
|
26
620
|
### Dependencies
|
|
@@ -31,12 +625,12 @@
|
|
|
31
625
|
* @twin.org/api-core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
32
626
|
* @twin.org/api-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
33
627
|
|
|
34
|
-
## [0.0.3-next.3](https://github.com/
|
|
628
|
+
## [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)
|
|
35
629
|
|
|
36
630
|
|
|
37
631
|
### Bug Fixes
|
|
38
632
|
|
|
39
|
-
* include org in context ids from jwt ([a12cfdd](https://github.com/
|
|
633
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
40
634
|
|
|
41
635
|
|
|
42
636
|
### Dependencies
|
|
@@ -47,7 +641,7 @@
|
|
|
47
641
|
* @twin.org/api-core bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
48
642
|
* @twin.org/api-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
49
643
|
|
|
50
|
-
## [0.0.3-next.2](https://github.com/
|
|
644
|
+
## [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)
|
|
51
645
|
|
|
52
646
|
|
|
53
647
|
### Miscellaneous Chores
|
|
@@ -63,22 +657,22 @@
|
|
|
63
657
|
* @twin.org/api-core bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
64
658
|
* @twin.org/api-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
65
659
|
|
|
66
|
-
## [0.0.3-next.1](https://github.com/
|
|
660
|
+
## [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)
|
|
67
661
|
|
|
68
662
|
|
|
69
663
|
### Features
|
|
70
664
|
|
|
71
|
-
* add context id features ([#42](https://github.com/
|
|
72
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
73
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
74
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
75
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
76
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
77
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
78
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
79
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
80
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
81
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
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 validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
668
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
669
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
670
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
671
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
672
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
673
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
674
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
675
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
82
676
|
|
|
83
677
|
|
|
84
678
|
### Dependencies
|
|
@@ -89,7 +683,7 @@
|
|
|
89
683
|
* @twin.org/api-core bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
90
684
|
* @twin.org/api-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
91
685
|
|
|
92
|
-
## [0.0.2-next.13](https://github.com/
|
|
686
|
+
## [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)
|
|
93
687
|
|
|
94
688
|
|
|
95
689
|
### Miscellaneous Chores
|
|
@@ -105,12 +699,12 @@
|
|
|
105
699
|
* @twin.org/api-core bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
106
700
|
* @twin.org/api-models bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
107
701
|
|
|
108
|
-
## [0.0.2-next.12](https://github.com/
|
|
702
|
+
## [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)
|
|
109
703
|
|
|
110
704
|
|
|
111
705
|
### Features
|
|
112
706
|
|
|
113
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
707
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
114
708
|
|
|
115
709
|
|
|
116
710
|
### Dependencies
|
|
@@ -121,12 +715,12 @@
|
|
|
121
715
|
* @twin.org/api-core bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
122
716
|
* @twin.org/api-models bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
123
717
|
|
|
124
|
-
## [0.0.2-next.11](https://github.com/
|
|
718
|
+
## [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)
|
|
125
719
|
|
|
126
720
|
|
|
127
721
|
### Features
|
|
128
722
|
|
|
129
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
723
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
130
724
|
|
|
131
725
|
|
|
132
726
|
### Dependencies
|
|
@@ -137,13 +731,13 @@
|
|
|
137
731
|
* @twin.org/api-core bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
138
732
|
* @twin.org/api-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
139
733
|
|
|
140
|
-
## [0.0.2-next.10](https://github.com/
|
|
734
|
+
## [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)
|
|
141
735
|
|
|
142
736
|
|
|
143
737
|
### Features
|
|
144
738
|
|
|
145
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
146
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
739
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
740
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
147
741
|
|
|
148
742
|
|
|
149
743
|
### Dependencies
|
|
@@ -154,12 +748,12 @@
|
|
|
154
748
|
* @twin.org/api-core bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
155
749
|
* @twin.org/api-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
156
750
|
|
|
157
|
-
## [0.0.2-next.9](https://github.com/
|
|
751
|
+
## [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)
|
|
158
752
|
|
|
159
753
|
|
|
160
754
|
### Features
|
|
161
755
|
|
|
162
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
756
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
163
757
|
|
|
164
758
|
|
|
165
759
|
### Dependencies
|
|
@@ -170,7 +764,7 @@
|
|
|
170
764
|
* @twin.org/api-core bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
171
765
|
* @twin.org/api-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
172
766
|
|
|
173
|
-
## [0.0.2-next.8](https://github.com/
|
|
767
|
+
## [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)
|
|
174
768
|
|
|
175
769
|
|
|
176
770
|
### Miscellaneous Chores
|
|
@@ -186,7 +780,7 @@
|
|
|
186
780
|
* @twin.org/api-core bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
187
781
|
* @twin.org/api-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
188
782
|
|
|
189
|
-
## [0.0.2-next.7](https://github.com/
|
|
783
|
+
## [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)
|
|
190
784
|
|
|
191
785
|
|
|
192
786
|
### Miscellaneous Chores
|
|
@@ -202,12 +796,12 @@
|
|
|
202
796
|
* @twin.org/api-core bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
203
797
|
* @twin.org/api-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
204
798
|
|
|
205
|
-
## [0.0.2-next.6](https://github.com/
|
|
799
|
+
## [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)
|
|
206
800
|
|
|
207
801
|
|
|
208
802
|
### Features
|
|
209
803
|
|
|
210
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
804
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
211
805
|
|
|
212
806
|
|
|
213
807
|
### Dependencies
|
|
@@ -218,15 +812,15 @@
|
|
|
218
812
|
* @twin.org/api-core bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
219
813
|
* @twin.org/api-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
220
814
|
|
|
221
|
-
## [0.0.2-next.5](https://github.com/
|
|
815
|
+
## [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)
|
|
222
816
|
|
|
223
817
|
|
|
224
818
|
### Features
|
|
225
819
|
|
|
226
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
227
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
228
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
229
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
820
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
821
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
822
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
823
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
230
824
|
|
|
231
825
|
|
|
232
826
|
### Dependencies
|
|
@@ -237,7 +831,7 @@
|
|
|
237
831
|
* @twin.org/api-core bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
238
832
|
* @twin.org/api-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
239
833
|
|
|
240
|
-
## [0.0.2-next.4](https://github.com/
|
|
834
|
+
## [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)
|
|
241
835
|
|
|
242
836
|
|
|
243
837
|
### Miscellaneous Chores
|
|
@@ -253,12 +847,12 @@
|
|
|
253
847
|
* @twin.org/api-core bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
254
848
|
* @twin.org/api-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
255
849
|
|
|
256
|
-
## [0.0.2-next.3](https://github.com/
|
|
850
|
+
## [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)
|
|
257
851
|
|
|
258
852
|
|
|
259
853
|
### Features
|
|
260
854
|
|
|
261
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
855
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
262
856
|
|
|
263
857
|
|
|
264
858
|
### Dependencies
|
|
@@ -269,7 +863,7 @@
|
|
|
269
863
|
* @twin.org/api-core bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
270
864
|
* @twin.org/api-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
271
865
|
|
|
272
|
-
## [0.0.2-next.2](https://github.com/
|
|
866
|
+
## [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)
|
|
273
867
|
|
|
274
868
|
|
|
275
869
|
### Miscellaneous Chores
|
|
@@ -285,14 +879,14 @@
|
|
|
285
879
|
* @twin.org/api-core bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
286
880
|
* @twin.org/api-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
287
881
|
|
|
288
|
-
## [0.0.2-next.1](https://github.com/
|
|
882
|
+
## [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)
|
|
289
883
|
|
|
290
884
|
|
|
291
885
|
### Features
|
|
292
886
|
|
|
293
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
294
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
295
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
887
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
888
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
889
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
296
890
|
|
|
297
891
|
|
|
298
892
|
### Dependencies
|
|
@@ -308,7 +902,7 @@
|
|
|
308
902
|
|
|
309
903
|
### Features
|
|
310
904
|
|
|
311
|
-
* release to production ([70ee2d5](https://github.com/
|
|
905
|
+
* release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
|
|
312
906
|
|
|
313
907
|
|
|
314
908
|
### Dependencies
|
|
@@ -319,7 +913,7 @@
|
|
|
319
913
|
* @twin.org/api-core bumped from ^0.0.0 to ^0.0.1
|
|
320
914
|
* @twin.org/api-models bumped from ^0.0.0 to ^0.0.1
|
|
321
915
|
|
|
322
|
-
## [0.0.1-next.36](https://github.com/
|
|
916
|
+
## [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)
|
|
323
917
|
|
|
324
918
|
|
|
325
919
|
### Miscellaneous Chores
|
|
@@ -335,12 +929,12 @@
|
|
|
335
929
|
* @twin.org/api-core bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
336
930
|
* @twin.org/api-models bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
337
931
|
|
|
338
|
-
## [0.0.1-next.35](https://github.com/
|
|
932
|
+
## [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)
|
|
339
933
|
|
|
340
934
|
|
|
341
935
|
### Features
|
|
342
936
|
|
|
343
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
937
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
344
938
|
|
|
345
939
|
|
|
346
940
|
### Dependencies
|
|
@@ -351,7 +945,7 @@
|
|
|
351
945
|
* @twin.org/api-core bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
352
946
|
* @twin.org/api-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
353
947
|
|
|
354
|
-
## [0.0.1-next.34](https://github.com/
|
|
948
|
+
## [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)
|
|
355
949
|
|
|
356
950
|
|
|
357
951
|
### Miscellaneous Chores
|
|
@@ -367,12 +961,12 @@
|
|
|
367
961
|
* @twin.org/api-core bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
368
962
|
* @twin.org/api-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
369
963
|
|
|
370
|
-
## [0.0.1-next.33](https://github.com/
|
|
964
|
+
## [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)
|
|
371
965
|
|
|
372
966
|
|
|
373
967
|
### Features
|
|
374
968
|
|
|
375
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
969
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
376
970
|
|
|
377
971
|
|
|
378
972
|
### Dependencies
|
|
@@ -383,7 +977,7 @@
|
|
|
383
977
|
* @twin.org/api-core bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
384
978
|
* @twin.org/api-models bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
385
979
|
|
|
386
|
-
## [0.0.1-next.32](https://github.com/
|
|
980
|
+
## [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)
|
|
387
981
|
|
|
388
982
|
|
|
389
983
|
### Miscellaneous Chores
|