@twin.org/api-auth-entity-storage-service 0.0.3-next.8 → 0.9.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/es/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 +83 -18
- 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 +213 -0
- package/dist/es/services/entityStorageAuthenticationRateService.js.map +1 -0
- package/dist/es/services/entityStorageAuthenticationService.js +200 -19
- 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 +57 -25
- 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 +25 -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 +10 -4
- package/docs/changelog.md +863 -69
- 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 +49 -13
- 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 +53 -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 +23 -6
- package/package.json +17 -16
package/docs/changelog.md
CHANGED
|
@@ -1,6 +1,800 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0
|
|
3
|
+
## [0.9.0-next.1](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.9.0-next.0...api-auth-entity-storage-service-v0.9.0-next.1) (2026-06-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
9
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
10
|
+
* add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
|
|
11
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
12
|
+
* auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
|
|
13
|
+
* auth header processor use user entity storage directly ([93084cf](https://github.com/iotaledger/twin-api/commit/93084cfed8f3ab16c80a1ab1bc90b1d9fc14bd25))
|
|
14
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
15
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
16
|
+
* hashed tenant id ([#135](https://github.com/iotaledger/twin-api/issues/135)) ([573c9b0](https://github.com/iotaledger/twin-api/commit/573c9b0714c281d69d5626c7576e93db826d266d))
|
|
17
|
+
* include iss and kid in jwt ([#189](https://github.com/iotaledger/twin-api/issues/189)) ([9df072a](https://github.com/iotaledger/twin-api/commit/9df072a1ecfc60dec611f59001449089264bbb1c))
|
|
18
|
+
* jwt password version claim ([#129](https://github.com/iotaledger/twin-api/issues/129)) ([e15487b](https://github.com/iotaledger/twin-api/commit/e15487baafd3b1f3fd58f138db531d58053ce049))
|
|
19
|
+
* location encoding ([#79](https://github.com/iotaledger/twin-api/issues/79)) ([c684465](https://github.com/iotaledger/twin-api/commit/c684465f2a871376152472bdecb6aa230b1101a1))
|
|
20
|
+
* 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))
|
|
21
|
+
* organization identifiers ([#158](https://github.com/iotaledger/twin-api/issues/158)) ([ce13244](https://github.com/iotaledger/twin-api/commit/ce13244aaacbf82d9e5f87d905e283b36ad63bbf))
|
|
22
|
+
* remove auth service dependency on admin service ([4aeb211](https://github.com/iotaledger/twin-api/commit/4aeb211a5ffcf2eaea89a6841faea3ac3069ef89))
|
|
23
|
+
* remove hosting component ([#170](https://github.com/iotaledger/twin-api/issues/170)) ([e78c1e8](https://github.com/iotaledger/twin-api/commit/e78c1e87d2747bf58da02b6b77680708ff681122))
|
|
24
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
25
|
+
* tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
|
|
26
|
+
* tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
|
|
27
|
+
* typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
|
|
28
|
+
* update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
|
|
29
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
30
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
31
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
32
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
33
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
34
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
35
|
+
* user admin service ([#77](https://github.com/iotaledger/twin-api/issues/77)) ([c8491df](https://github.com/iotaledger/twin-api/commit/c8491df7b07c1f45560c8a78c6adc806d0ececbb))
|
|
36
|
+
* user partitioning ([#126](https://github.com/iotaledger/twin-api/issues/126)) ([6bf0da3](https://github.com/iotaledger/twin-api/commit/6bf0da3c42406c9838e80e0ddd6b21f5c64aac90))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* 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))
|
|
42
|
+
* 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))
|
|
43
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
44
|
+
* remove token from return payload ([eaa4266](https://github.com/iotaledger/twin-api/commit/eaa42661b8540881b0751f5d2513258b3413f3ef))
|
|
45
|
+
* run authentication rate cleanup per tenant ([#186](https://github.com/iotaledger/twin-api/issues/186)) ([d69c7aa](https://github.com/iotaledger/twin-api/commit/d69c7aa4ade77f1a52f1f554d8f7a3bd20f1b330))
|
|
46
|
+
* use async getStore in tests ([0d25633](https://github.com/iotaledger/twin-api/commit/0d2563364de06a54ba487c700b601a883402d292))
|
|
47
|
+
* use async getStore in tests ([63493dd](https://github.com/iotaledger/twin-api/commit/63493ddf3cf394c0d1e4cfcddae9a39f7ac697c4))
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
### Dependencies
|
|
51
|
+
|
|
52
|
+
* The following workspace dependencies were updated
|
|
53
|
+
* dependencies
|
|
54
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
55
|
+
* @twin.org/api-core bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
56
|
+
* @twin.org/api-models bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
57
|
+
|
|
58
|
+
## [0.0.3-next.53](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.52...api-auth-entity-storage-service-v0.0.3-next.53) (2026-06-23)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
### Features
|
|
62
|
+
|
|
63
|
+
* include iss and kid in jwt ([#189](https://github.com/iotaledger/twin-api/issues/189)) ([9df072a](https://github.com/iotaledger/twin-api/commit/9df072a1ecfc60dec611f59001449089264bbb1c))
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### Dependencies
|
|
67
|
+
|
|
68
|
+
* The following workspace dependencies were updated
|
|
69
|
+
* dependencies
|
|
70
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.52 to 0.0.3-next.53
|
|
71
|
+
* @twin.org/api-core bumped from 0.0.3-next.52 to 0.0.3-next.53
|
|
72
|
+
* @twin.org/api-models bumped from 0.0.3-next.52 to 0.0.3-next.53
|
|
73
|
+
|
|
74
|
+
## [0.0.3-next.52](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.51...api-auth-entity-storage-service-v0.0.3-next.52) (2026-06-22)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
### Bug Fixes
|
|
78
|
+
|
|
79
|
+
* run authentication rate cleanup per tenant ([#186](https://github.com/iotaledger/twin-api/issues/186)) ([d69c7aa](https://github.com/iotaledger/twin-api/commit/d69c7aa4ade77f1a52f1f554d8f7a3bd20f1b330))
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
### Dependencies
|
|
83
|
+
|
|
84
|
+
* The following workspace dependencies were updated
|
|
85
|
+
* dependencies
|
|
86
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.51 to 0.0.3-next.52
|
|
87
|
+
* @twin.org/api-core bumped from 0.0.3-next.51 to 0.0.3-next.52
|
|
88
|
+
* @twin.org/api-models bumped from 0.0.3-next.51 to 0.0.3-next.52
|
|
89
|
+
|
|
90
|
+
## [0.0.3-next.51](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.0.3-next.50...api-auth-entity-storage-service-v0.0.3-next.51) (2026-06-20)
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
### Miscellaneous Chores
|
|
94
|
+
|
|
95
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
### Dependencies
|
|
99
|
+
|
|
100
|
+
* The following workspace dependencies were updated
|
|
101
|
+
* dependencies
|
|
102
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.50 to 0.0.3-next.51
|
|
103
|
+
* @twin.org/api-core bumped from 0.0.3-next.50 to 0.0.3-next.51
|
|
104
|
+
* @twin.org/api-models bumped from 0.0.3-next.50 to 0.0.3-next.51
|
|
105
|
+
|
|
106
|
+
## [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)
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Miscellaneous Chores
|
|
110
|
+
|
|
111
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
### Dependencies
|
|
115
|
+
|
|
116
|
+
* The following workspace dependencies were updated
|
|
117
|
+
* dependencies
|
|
118
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
119
|
+
* @twin.org/api-core bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
120
|
+
* @twin.org/api-models bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
121
|
+
|
|
122
|
+
## [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)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Miscellaneous Chores
|
|
126
|
+
|
|
127
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
### Dependencies
|
|
131
|
+
|
|
132
|
+
* The following workspace dependencies were updated
|
|
133
|
+
* dependencies
|
|
134
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
135
|
+
* @twin.org/api-core bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
136
|
+
* @twin.org/api-models bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
137
|
+
|
|
138
|
+
## [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)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
### Miscellaneous Chores
|
|
142
|
+
|
|
143
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
### Dependencies
|
|
147
|
+
|
|
148
|
+
* The following workspace dependencies were updated
|
|
149
|
+
* dependencies
|
|
150
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
151
|
+
* @twin.org/api-core bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
152
|
+
* @twin.org/api-models bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
153
|
+
|
|
154
|
+
## [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)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
### Features
|
|
158
|
+
|
|
159
|
+
* remove hosting component ([#170](https://github.com/iotaledger/twin-api/issues/170)) ([e78c1e8](https://github.com/iotaledger/twin-api/commit/e78c1e87d2747bf58da02b6b77680708ff681122))
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
### Dependencies
|
|
163
|
+
|
|
164
|
+
* The following workspace dependencies were updated
|
|
165
|
+
* dependencies
|
|
166
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
167
|
+
* @twin.org/api-core bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
168
|
+
* @twin.org/api-models bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
169
|
+
|
|
170
|
+
## [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)
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
### Bug Fixes
|
|
174
|
+
|
|
175
|
+
* use async getStore in tests ([0d25633](https://github.com/iotaledger/twin-api/commit/0d2563364de06a54ba487c700b601a883402d292))
|
|
176
|
+
* use async getStore in tests ([63493dd](https://github.com/iotaledger/twin-api/commit/63493ddf3cf394c0d1e4cfcddae9a39f7ac697c4))
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
### Dependencies
|
|
180
|
+
|
|
181
|
+
* The following workspace dependencies were updated
|
|
182
|
+
* dependencies
|
|
183
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
184
|
+
* @twin.org/api-core bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
185
|
+
* @twin.org/api-models bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
186
|
+
|
|
187
|
+
## [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)
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### Miscellaneous Chores
|
|
191
|
+
|
|
192
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
### Dependencies
|
|
196
|
+
|
|
197
|
+
* The following workspace dependencies were updated
|
|
198
|
+
* dependencies
|
|
199
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
200
|
+
* @twin.org/api-core bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
201
|
+
* @twin.org/api-models bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
202
|
+
|
|
203
|
+
## [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)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Features
|
|
207
|
+
|
|
208
|
+
* organization identifiers ([#158](https://github.com/iotaledger/twin-api/issues/158)) ([ce13244](https://github.com/iotaledger/twin-api/commit/ce13244aaacbf82d9e5f87d905e283b36ad63bbf))
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
### Dependencies
|
|
212
|
+
|
|
213
|
+
* The following workspace dependencies were updated
|
|
214
|
+
* dependencies
|
|
215
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
216
|
+
* @twin.org/api-core bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
217
|
+
* @twin.org/api-models bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
218
|
+
|
|
219
|
+
## [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)
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
### Miscellaneous Chores
|
|
223
|
+
|
|
224
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
### Dependencies
|
|
228
|
+
|
|
229
|
+
* The following workspace dependencies were updated
|
|
230
|
+
* dependencies
|
|
231
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
232
|
+
* @twin.org/api-core bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
233
|
+
* @twin.org/api-models bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
234
|
+
|
|
235
|
+
## [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)
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
### Miscellaneous Chores
|
|
239
|
+
|
|
240
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
### Dependencies
|
|
244
|
+
|
|
245
|
+
* The following workspace dependencies were updated
|
|
246
|
+
* dependencies
|
|
247
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
248
|
+
* @twin.org/api-core bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
249
|
+
* @twin.org/api-models bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
250
|
+
|
|
251
|
+
## [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)
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
### Miscellaneous Chores
|
|
255
|
+
|
|
256
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
### Dependencies
|
|
260
|
+
|
|
261
|
+
* The following workspace dependencies were updated
|
|
262
|
+
* dependencies
|
|
263
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
264
|
+
* @twin.org/api-core bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
265
|
+
* @twin.org/api-models bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
266
|
+
|
|
267
|
+
## [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)
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
### Miscellaneous Chores
|
|
271
|
+
|
|
272
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
### Dependencies
|
|
276
|
+
|
|
277
|
+
* The following workspace dependencies were updated
|
|
278
|
+
* dependencies
|
|
279
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
280
|
+
* @twin.org/api-core bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
281
|
+
* @twin.org/api-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
282
|
+
|
|
283
|
+
## [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)
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
### Features
|
|
287
|
+
|
|
288
|
+
* tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
### Dependencies
|
|
292
|
+
|
|
293
|
+
* The following workspace dependencies were updated
|
|
294
|
+
* dependencies
|
|
295
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
296
|
+
* @twin.org/api-core bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
297
|
+
* @twin.org/api-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
298
|
+
|
|
299
|
+
## [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)
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
### Features
|
|
303
|
+
|
|
304
|
+
* hashed tenant id ([#135](https://github.com/iotaledger/twin-api/issues/135)) ([573c9b0](https://github.com/iotaledger/twin-api/commit/573c9b0714c281d69d5626c7576e93db826d266d))
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
### Dependencies
|
|
308
|
+
|
|
309
|
+
* The following workspace dependencies were updated
|
|
310
|
+
* dependencies
|
|
311
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
312
|
+
* @twin.org/api-core bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
313
|
+
* @twin.org/api-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
314
|
+
|
|
315
|
+
## [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)
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
### Miscellaneous Chores
|
|
319
|
+
|
|
320
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
### Dependencies
|
|
324
|
+
|
|
325
|
+
* The following workspace dependencies were updated
|
|
326
|
+
* dependencies
|
|
327
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
328
|
+
* @twin.org/api-core bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
329
|
+
* @twin.org/api-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
330
|
+
|
|
331
|
+
## [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)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Features
|
|
335
|
+
|
|
336
|
+
* jwt password version claim ([#129](https://github.com/iotaledger/twin-api/issues/129)) ([e15487b](https://github.com/iotaledger/twin-api/commit/e15487baafd3b1f3fd58f138db531d58053ce049))
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
### Dependencies
|
|
340
|
+
|
|
341
|
+
* The following workspace dependencies were updated
|
|
342
|
+
* dependencies
|
|
343
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
344
|
+
* @twin.org/api-core bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
345
|
+
* @twin.org/api-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
346
|
+
|
|
347
|
+
## [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)
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
### Features
|
|
351
|
+
|
|
352
|
+
* user partitioning ([#126](https://github.com/iotaledger/twin-api/issues/126)) ([6bf0da3](https://github.com/iotaledger/twin-api/commit/6bf0da3c42406c9838e80e0ddd6b21f5c64aac90))
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
### Dependencies
|
|
356
|
+
|
|
357
|
+
* The following workspace dependencies were updated
|
|
358
|
+
* dependencies
|
|
359
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
360
|
+
* @twin.org/api-core bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
361
|
+
* @twin.org/api-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
362
|
+
|
|
363
|
+
## [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)
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### Features
|
|
367
|
+
|
|
368
|
+
* update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
### Dependencies
|
|
372
|
+
|
|
373
|
+
* The following workspace dependencies were updated
|
|
374
|
+
* dependencies
|
|
375
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
376
|
+
* @twin.org/api-core bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
377
|
+
* @twin.org/api-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
378
|
+
|
|
379
|
+
## [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)
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
### Features
|
|
383
|
+
|
|
384
|
+
* typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
### Dependencies
|
|
388
|
+
|
|
389
|
+
* The following workspace dependencies were updated
|
|
390
|
+
* dependencies
|
|
391
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
392
|
+
* @twin.org/api-core bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
393
|
+
* @twin.org/api-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
394
|
+
|
|
395
|
+
## [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)
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
### Miscellaneous Chores
|
|
399
|
+
|
|
400
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
### Dependencies
|
|
404
|
+
|
|
405
|
+
* The following workspace dependencies were updated
|
|
406
|
+
* dependencies
|
|
407
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
408
|
+
* @twin.org/api-core bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
409
|
+
* @twin.org/api-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
410
|
+
|
|
411
|
+
## [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)
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
### Miscellaneous Chores
|
|
415
|
+
|
|
416
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
### Dependencies
|
|
420
|
+
|
|
421
|
+
* The following workspace dependencies were updated
|
|
422
|
+
* dependencies
|
|
423
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
424
|
+
* @twin.org/api-core bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
425
|
+
* @twin.org/api-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
426
|
+
|
|
427
|
+
## [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)
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
### Miscellaneous Chores
|
|
431
|
+
|
|
432
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
### Dependencies
|
|
436
|
+
|
|
437
|
+
* The following workspace dependencies were updated
|
|
438
|
+
* dependencies
|
|
439
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
440
|
+
* @twin.org/api-core bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
441
|
+
* @twin.org/api-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
442
|
+
|
|
443
|
+
## [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)
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
### Miscellaneous Chores
|
|
447
|
+
|
|
448
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
### Dependencies
|
|
452
|
+
|
|
453
|
+
* The following workspace dependencies were updated
|
|
454
|
+
* dependencies
|
|
455
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
456
|
+
* @twin.org/api-core bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
457
|
+
* @twin.org/api-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
458
|
+
|
|
459
|
+
## [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)
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
### Bug Fixes
|
|
463
|
+
|
|
464
|
+
* 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))
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
### Dependencies
|
|
468
|
+
|
|
469
|
+
* The following workspace dependencies were updated
|
|
470
|
+
* dependencies
|
|
471
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
472
|
+
* @twin.org/api-core bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
473
|
+
* @twin.org/api-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
474
|
+
|
|
475
|
+
## [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)
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
### Bug Fixes
|
|
479
|
+
|
|
480
|
+
* 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))
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
### Dependencies
|
|
484
|
+
|
|
485
|
+
* The following workspace dependencies were updated
|
|
486
|
+
* dependencies
|
|
487
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
488
|
+
* @twin.org/api-core bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
489
|
+
* @twin.org/api-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
490
|
+
|
|
491
|
+
## [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)
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
### Miscellaneous Chores
|
|
495
|
+
|
|
496
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
### Dependencies
|
|
500
|
+
|
|
501
|
+
* The following workspace dependencies were updated
|
|
502
|
+
* dependencies
|
|
503
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
504
|
+
* @twin.org/api-core bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
505
|
+
* @twin.org/api-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
506
|
+
|
|
507
|
+
## [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)
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
### Features
|
|
511
|
+
|
|
512
|
+
* auth header processor use user entity storage directly ([93084cf](https://github.com/iotaledger/twin-api/commit/93084cfed8f3ab16c80a1ab1bc90b1d9fc14bd25))
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
### Dependencies
|
|
516
|
+
|
|
517
|
+
* The following workspace dependencies were updated
|
|
518
|
+
* dependencies
|
|
519
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
520
|
+
* @twin.org/api-core bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
521
|
+
* @twin.org/api-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
522
|
+
|
|
523
|
+
## [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)
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
### Features
|
|
527
|
+
|
|
528
|
+
* remove auth service dependency on admin service ([4aeb211](https://github.com/iotaledger/twin-api/commit/4aeb211a5ffcf2eaea89a6841faea3ac3069ef89))
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
### Dependencies
|
|
532
|
+
|
|
533
|
+
* The following workspace dependencies were updated
|
|
534
|
+
* dependencies
|
|
535
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
536
|
+
* @twin.org/api-core bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
537
|
+
* @twin.org/api-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
538
|
+
|
|
539
|
+
## [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)
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
### Features
|
|
543
|
+
|
|
544
|
+
* auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
### Dependencies
|
|
548
|
+
|
|
549
|
+
* The following workspace dependencies were updated
|
|
550
|
+
* dependencies
|
|
551
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
552
|
+
* @twin.org/api-core bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
553
|
+
* @twin.org/api-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
554
|
+
|
|
555
|
+
## [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)
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
### Miscellaneous Chores
|
|
559
|
+
|
|
560
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
### Dependencies
|
|
564
|
+
|
|
565
|
+
* The following workspace dependencies were updated
|
|
566
|
+
* dependencies
|
|
567
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
568
|
+
* @twin.org/api-core bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
569
|
+
* @twin.org/api-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
570
|
+
|
|
571
|
+
## [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)
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
### Miscellaneous Chores
|
|
575
|
+
|
|
576
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
### Dependencies
|
|
580
|
+
|
|
581
|
+
* The following workspace dependencies were updated
|
|
582
|
+
* dependencies
|
|
583
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
584
|
+
* @twin.org/api-core bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
585
|
+
* @twin.org/api-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
586
|
+
|
|
587
|
+
## [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)
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
### Features
|
|
591
|
+
|
|
592
|
+
* location encoding ([#79](https://github.com/iotaledger/twin-api/issues/79)) ([c684465](https://github.com/iotaledger/twin-api/commit/c684465f2a871376152472bdecb6aa230b1101a1))
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
### Dependencies
|
|
596
|
+
|
|
597
|
+
* The following workspace dependencies were updated
|
|
598
|
+
* dependencies
|
|
599
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
600
|
+
* @twin.org/api-core bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
601
|
+
* @twin.org/api-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
602
|
+
|
|
603
|
+
## [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)
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
### Features
|
|
607
|
+
|
|
608
|
+
* user admin service ([#77](https://github.com/iotaledger/twin-api/issues/77)) ([c8491df](https://github.com/iotaledger/twin-api/commit/c8491df7b07c1f45560c8a78c6adc806d0ececbb))
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
### Dependencies
|
|
612
|
+
|
|
613
|
+
* The following workspace dependencies were updated
|
|
614
|
+
* dependencies
|
|
615
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
616
|
+
* @twin.org/api-core bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
617
|
+
* @twin.org/api-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
618
|
+
|
|
619
|
+
## [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)
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
### Features
|
|
623
|
+
|
|
624
|
+
* tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
### Dependencies
|
|
628
|
+
|
|
629
|
+
* The following workspace dependencies were updated
|
|
630
|
+
* dependencies
|
|
631
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
632
|
+
* @twin.org/api-core bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
633
|
+
* @twin.org/api-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
634
|
+
|
|
635
|
+
## [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)
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
### Miscellaneous Chores
|
|
639
|
+
|
|
640
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
### Dependencies
|
|
644
|
+
|
|
645
|
+
* The following workspace dependencies were updated
|
|
646
|
+
* dependencies
|
|
647
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
648
|
+
* @twin.org/api-core bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
649
|
+
* @twin.org/api-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
650
|
+
|
|
651
|
+
## [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)
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
### Miscellaneous Chores
|
|
655
|
+
|
|
656
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
### Dependencies
|
|
660
|
+
|
|
661
|
+
* The following workspace dependencies were updated
|
|
662
|
+
* dependencies
|
|
663
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
664
|
+
* @twin.org/api-core bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
665
|
+
* @twin.org/api-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
666
|
+
|
|
667
|
+
## [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)
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
### Miscellaneous Chores
|
|
671
|
+
|
|
672
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
### Dependencies
|
|
676
|
+
|
|
677
|
+
* The following workspace dependencies were updated
|
|
678
|
+
* dependencies
|
|
679
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
680
|
+
* @twin.org/api-core bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
681
|
+
* @twin.org/api-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
682
|
+
|
|
683
|
+
## [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)
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
### Miscellaneous Chores
|
|
687
|
+
|
|
688
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
### Dependencies
|
|
692
|
+
|
|
693
|
+
* The following workspace dependencies were updated
|
|
694
|
+
* dependencies
|
|
695
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
696
|
+
* @twin.org/api-core bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
697
|
+
* @twin.org/api-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
698
|
+
|
|
699
|
+
## [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)
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
### Miscellaneous Chores
|
|
703
|
+
|
|
704
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
### Dependencies
|
|
708
|
+
|
|
709
|
+
* The following workspace dependencies were updated
|
|
710
|
+
* dependencies
|
|
711
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
712
|
+
* @twin.org/api-core bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
713
|
+
* @twin.org/api-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
714
|
+
|
|
715
|
+
## [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)
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
### Miscellaneous Chores
|
|
719
|
+
|
|
720
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
### Dependencies
|
|
724
|
+
|
|
725
|
+
* The following workspace dependencies were updated
|
|
726
|
+
* dependencies
|
|
727
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
728
|
+
* @twin.org/api-core bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
729
|
+
* @twin.org/api-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
730
|
+
|
|
731
|
+
## [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)
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
### Miscellaneous Chores
|
|
735
|
+
|
|
736
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
### Dependencies
|
|
740
|
+
|
|
741
|
+
* The following workspace dependencies were updated
|
|
742
|
+
* dependencies
|
|
743
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
744
|
+
* @twin.org/api-core bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
745
|
+
* @twin.org/api-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
746
|
+
|
|
747
|
+
## [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)
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
### Bug Fixes
|
|
751
|
+
|
|
752
|
+
* remove token from return payload ([eaa4266](https://github.com/iotaledger/twin-api/commit/eaa42661b8540881b0751f5d2513258b3413f3ef))
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
### Dependencies
|
|
756
|
+
|
|
757
|
+
* The following workspace dependencies were updated
|
|
758
|
+
* dependencies
|
|
759
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
760
|
+
* @twin.org/api-core bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
761
|
+
* @twin.org/api-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
762
|
+
|
|
763
|
+
## [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)
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
### Features
|
|
767
|
+
|
|
768
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
769
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
770
|
+
* add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
|
|
771
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
772
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
773
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
774
|
+
* 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))
|
|
775
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
776
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
777
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
778
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
779
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
780
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
781
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
### Bug Fixes
|
|
785
|
+
|
|
786
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
### Dependencies
|
|
790
|
+
|
|
791
|
+
* The following workspace dependencies were updated
|
|
792
|
+
* dependencies
|
|
793
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
794
|
+
* @twin.org/api-core bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
795
|
+
* @twin.org/api-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
796
|
+
|
|
797
|
+
## [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)
|
|
4
798
|
|
|
5
799
|
|
|
6
800
|
### Miscellaneous Chores
|
|
@@ -16,7 +810,7 @@
|
|
|
16
810
|
* @twin.org/api-core bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
17
811
|
* @twin.org/api-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
18
812
|
|
|
19
|
-
## [0.0.3-next.7](https://github.com/
|
|
813
|
+
## [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)
|
|
20
814
|
|
|
21
815
|
|
|
22
816
|
### Miscellaneous Chores
|
|
@@ -32,12 +826,12 @@
|
|
|
32
826
|
* @twin.org/api-core bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
33
827
|
* @twin.org/api-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
34
828
|
|
|
35
|
-
## [0.0.3-next.6](https://github.com/
|
|
829
|
+
## [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)
|
|
36
830
|
|
|
37
831
|
|
|
38
832
|
### Features
|
|
39
833
|
|
|
40
|
-
* check tenant id in auth if set ([66f7337](https://github.com/
|
|
834
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
41
835
|
|
|
42
836
|
|
|
43
837
|
### Dependencies
|
|
@@ -48,7 +842,7 @@
|
|
|
48
842
|
* @twin.org/api-core bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
49
843
|
* @twin.org/api-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
50
844
|
|
|
51
|
-
## [0.0.3-next.5](https://github.com/
|
|
845
|
+
## [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)
|
|
52
846
|
|
|
53
847
|
|
|
54
848
|
### Miscellaneous Chores
|
|
@@ -64,27 +858,27 @@
|
|
|
64
858
|
* @twin.org/api-core bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
65
859
|
* @twin.org/api-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
66
860
|
|
|
67
|
-
## [0.0.3-next.4](https://github.com/
|
|
861
|
+
## [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)
|
|
68
862
|
|
|
69
863
|
|
|
70
864
|
### Features
|
|
71
865
|
|
|
72
|
-
* add context id features ([#42](https://github.com/
|
|
73
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
74
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
75
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
76
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
77
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
78
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
79
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
80
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
81
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
82
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
866
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
867
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
868
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
869
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
870
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
871
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
872
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
873
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
874
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
875
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
876
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
83
877
|
|
|
84
878
|
|
|
85
879
|
### Bug Fixes
|
|
86
880
|
|
|
87
|
-
* include org in context ids from jwt ([a12cfdd](https://github.com/
|
|
881
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
88
882
|
|
|
89
883
|
|
|
90
884
|
### Dependencies
|
|
@@ -95,12 +889,12 @@
|
|
|
95
889
|
* @twin.org/api-core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
96
890
|
* @twin.org/api-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
97
891
|
|
|
98
|
-
## [0.0.3-next.3](https://github.com/
|
|
892
|
+
## [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)
|
|
99
893
|
|
|
100
894
|
|
|
101
895
|
### Bug Fixes
|
|
102
896
|
|
|
103
|
-
* include org in context ids from jwt ([a12cfdd](https://github.com/
|
|
897
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
104
898
|
|
|
105
899
|
|
|
106
900
|
### Dependencies
|
|
@@ -111,7 +905,7 @@
|
|
|
111
905
|
* @twin.org/api-core bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
112
906
|
* @twin.org/api-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
113
907
|
|
|
114
|
-
## [0.0.3-next.2](https://github.com/
|
|
908
|
+
## [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)
|
|
115
909
|
|
|
116
910
|
|
|
117
911
|
### Miscellaneous Chores
|
|
@@ -127,22 +921,22 @@
|
|
|
127
921
|
* @twin.org/api-core bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
128
922
|
* @twin.org/api-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
129
923
|
|
|
130
|
-
## [0.0.3-next.1](https://github.com/
|
|
924
|
+
## [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)
|
|
131
925
|
|
|
132
926
|
|
|
133
927
|
### Features
|
|
134
928
|
|
|
135
|
-
* add context id features ([#42](https://github.com/
|
|
136
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
137
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
138
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
139
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
140
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
141
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
142
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
143
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
144
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
145
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
929
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
930
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
931
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
932
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
933
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
934
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
935
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
936
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
937
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
938
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
939
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
146
940
|
|
|
147
941
|
|
|
148
942
|
### Dependencies
|
|
@@ -153,7 +947,7 @@
|
|
|
153
947
|
* @twin.org/api-core bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
154
948
|
* @twin.org/api-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
155
949
|
|
|
156
|
-
## [0.0.2-next.13](https://github.com/
|
|
950
|
+
## [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)
|
|
157
951
|
|
|
158
952
|
|
|
159
953
|
### Miscellaneous Chores
|
|
@@ -169,12 +963,12 @@
|
|
|
169
963
|
* @twin.org/api-core bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
170
964
|
* @twin.org/api-models bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
171
965
|
|
|
172
|
-
## [0.0.2-next.12](https://github.com/
|
|
966
|
+
## [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)
|
|
173
967
|
|
|
174
968
|
|
|
175
969
|
### Features
|
|
176
970
|
|
|
177
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
971
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
178
972
|
|
|
179
973
|
|
|
180
974
|
### Dependencies
|
|
@@ -185,12 +979,12 @@
|
|
|
185
979
|
* @twin.org/api-core bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
186
980
|
* @twin.org/api-models bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
187
981
|
|
|
188
|
-
## [0.0.2-next.11](https://github.com/
|
|
982
|
+
## [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)
|
|
189
983
|
|
|
190
984
|
|
|
191
985
|
### Features
|
|
192
986
|
|
|
193
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
987
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
194
988
|
|
|
195
989
|
|
|
196
990
|
### Dependencies
|
|
@@ -201,13 +995,13 @@
|
|
|
201
995
|
* @twin.org/api-core bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
202
996
|
* @twin.org/api-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
203
997
|
|
|
204
|
-
## [0.0.2-next.10](https://github.com/
|
|
998
|
+
## [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)
|
|
205
999
|
|
|
206
1000
|
|
|
207
1001
|
### Features
|
|
208
1002
|
|
|
209
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
210
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
1003
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
1004
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
211
1005
|
|
|
212
1006
|
|
|
213
1007
|
### Dependencies
|
|
@@ -218,12 +1012,12 @@
|
|
|
218
1012
|
* @twin.org/api-core bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
219
1013
|
* @twin.org/api-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
220
1014
|
|
|
221
|
-
## [0.0.2-next.9](https://github.com/
|
|
1015
|
+
## [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)
|
|
222
1016
|
|
|
223
1017
|
|
|
224
1018
|
### Features
|
|
225
1019
|
|
|
226
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
1020
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
227
1021
|
|
|
228
1022
|
|
|
229
1023
|
### Dependencies
|
|
@@ -234,7 +1028,7 @@
|
|
|
234
1028
|
* @twin.org/api-core bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
235
1029
|
* @twin.org/api-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
236
1030
|
|
|
237
|
-
## [0.0.2-next.8](https://github.com/
|
|
1031
|
+
## [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)
|
|
238
1032
|
|
|
239
1033
|
|
|
240
1034
|
### Miscellaneous Chores
|
|
@@ -250,7 +1044,7 @@
|
|
|
250
1044
|
* @twin.org/api-core bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
251
1045
|
* @twin.org/api-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
252
1046
|
|
|
253
|
-
## [0.0.2-next.7](https://github.com/
|
|
1047
|
+
## [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)
|
|
254
1048
|
|
|
255
1049
|
|
|
256
1050
|
### Miscellaneous Chores
|
|
@@ -266,12 +1060,12 @@
|
|
|
266
1060
|
* @twin.org/api-core bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
267
1061
|
* @twin.org/api-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
268
1062
|
|
|
269
|
-
## [0.0.2-next.6](https://github.com/
|
|
1063
|
+
## [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)
|
|
270
1064
|
|
|
271
1065
|
|
|
272
1066
|
### Features
|
|
273
1067
|
|
|
274
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
1068
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
275
1069
|
|
|
276
1070
|
|
|
277
1071
|
### Dependencies
|
|
@@ -282,15 +1076,15 @@
|
|
|
282
1076
|
* @twin.org/api-core bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
283
1077
|
* @twin.org/api-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
284
1078
|
|
|
285
|
-
## [0.0.2-next.5](https://github.com/
|
|
1079
|
+
## [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)
|
|
286
1080
|
|
|
287
1081
|
|
|
288
1082
|
### Features
|
|
289
1083
|
|
|
290
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
291
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
292
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
293
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
1084
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
1085
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
1086
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
1087
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
294
1088
|
|
|
295
1089
|
|
|
296
1090
|
### Dependencies
|
|
@@ -301,7 +1095,7 @@
|
|
|
301
1095
|
* @twin.org/api-core bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
302
1096
|
* @twin.org/api-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
303
1097
|
|
|
304
|
-
## [0.0.2-next.4](https://github.com/
|
|
1098
|
+
## [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)
|
|
305
1099
|
|
|
306
1100
|
|
|
307
1101
|
### Miscellaneous Chores
|
|
@@ -317,12 +1111,12 @@
|
|
|
317
1111
|
* @twin.org/api-core bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
318
1112
|
* @twin.org/api-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
319
1113
|
|
|
320
|
-
## [0.0.2-next.3](https://github.com/
|
|
1114
|
+
## [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)
|
|
321
1115
|
|
|
322
1116
|
|
|
323
1117
|
### Features
|
|
324
1118
|
|
|
325
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
1119
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
326
1120
|
|
|
327
1121
|
|
|
328
1122
|
### Dependencies
|
|
@@ -333,7 +1127,7 @@
|
|
|
333
1127
|
* @twin.org/api-core bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
334
1128
|
* @twin.org/api-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
335
1129
|
|
|
336
|
-
## [0.0.2-next.2](https://github.com/
|
|
1130
|
+
## [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)
|
|
337
1131
|
|
|
338
1132
|
|
|
339
1133
|
### Miscellaneous Chores
|
|
@@ -349,14 +1143,14 @@
|
|
|
349
1143
|
* @twin.org/api-core bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
350
1144
|
* @twin.org/api-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
351
1145
|
|
|
352
|
-
## [0.0.2-next.1](https://github.com/
|
|
1146
|
+
## [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)
|
|
353
1147
|
|
|
354
1148
|
|
|
355
1149
|
### Features
|
|
356
1150
|
|
|
357
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
358
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
359
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
1151
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
1152
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
1153
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
360
1154
|
|
|
361
1155
|
|
|
362
1156
|
### Dependencies
|
|
@@ -372,7 +1166,7 @@
|
|
|
372
1166
|
|
|
373
1167
|
### Features
|
|
374
1168
|
|
|
375
|
-
* release to production ([70ee2d5](https://github.com/
|
|
1169
|
+
* release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
|
|
376
1170
|
|
|
377
1171
|
|
|
378
1172
|
### Dependencies
|
|
@@ -383,7 +1177,7 @@
|
|
|
383
1177
|
* @twin.org/api-core bumped from ^0.0.0 to ^0.0.1
|
|
384
1178
|
* @twin.org/api-models bumped from ^0.0.0 to ^0.0.1
|
|
385
1179
|
|
|
386
|
-
## [0.0.1-next.36](https://github.com/
|
|
1180
|
+
## [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)
|
|
387
1181
|
|
|
388
1182
|
|
|
389
1183
|
### Miscellaneous Chores
|
|
@@ -399,12 +1193,12 @@
|
|
|
399
1193
|
* @twin.org/api-core bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
400
1194
|
* @twin.org/api-models bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
401
1195
|
|
|
402
|
-
## [0.0.1-next.35](https://github.com/
|
|
1196
|
+
## [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)
|
|
403
1197
|
|
|
404
1198
|
|
|
405
1199
|
### Features
|
|
406
1200
|
|
|
407
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
1201
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
408
1202
|
|
|
409
1203
|
|
|
410
1204
|
### Dependencies
|
|
@@ -415,7 +1209,7 @@
|
|
|
415
1209
|
* @twin.org/api-core bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
416
1210
|
* @twin.org/api-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
417
1211
|
|
|
418
|
-
## [0.0.1-next.34](https://github.com/
|
|
1212
|
+
## [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)
|
|
419
1213
|
|
|
420
1214
|
|
|
421
1215
|
### Miscellaneous Chores
|
|
@@ -431,12 +1225,12 @@
|
|
|
431
1225
|
* @twin.org/api-core bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
432
1226
|
* @twin.org/api-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
433
1227
|
|
|
434
|
-
## [0.0.1-next.33](https://github.com/
|
|
1228
|
+
## [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)
|
|
435
1229
|
|
|
436
1230
|
|
|
437
1231
|
### Features
|
|
438
1232
|
|
|
439
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
1233
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
440
1234
|
|
|
441
1235
|
|
|
442
1236
|
### Dependencies
|
|
@@ -447,7 +1241,7 @@
|
|
|
447
1241
|
* @twin.org/api-core bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
448
1242
|
* @twin.org/api-models bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
449
1243
|
|
|
450
|
-
## [0.0.1-next.32](https://github.com/
|
|
1244
|
+
## [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)
|
|
451
1245
|
|
|
452
1246
|
|
|
453
1247
|
### Miscellaneous Chores
|