@twin.org/api-auth-entity-storage-service 0.0.3-next.9 → 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 +68 -11
- 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 +18 -19
- 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 +50 -10
- 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 +10 -5
- package/dist/types/utils/passwordHelper.d.ts +13 -5
- package/dist/types/utils/tokenHelper.d.ts +10 -4
- package/docs/changelog.md +845 -85
- 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 +37 -17
- 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,29 +1,789 @@
|
|
|
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
4
|
|
|
5
5
|
|
|
6
6
|
### Features
|
|
7
7
|
|
|
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 livez endpoint ([#57](https://github.com/
|
|
11
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
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))
|
|
22
37
|
|
|
23
38
|
|
|
24
39
|
### Bug Fixes
|
|
25
40
|
|
|
26
|
-
*
|
|
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))
|
|
27
787
|
|
|
28
788
|
|
|
29
789
|
### Dependencies
|
|
@@ -34,7 +794,7 @@
|
|
|
34
794
|
* @twin.org/api-core bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
35
795
|
* @twin.org/api-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
36
796
|
|
|
37
|
-
## [0.0.3-next.8](https://github.com/
|
|
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)
|
|
38
798
|
|
|
39
799
|
|
|
40
800
|
### Miscellaneous Chores
|
|
@@ -50,7 +810,7 @@
|
|
|
50
810
|
* @twin.org/api-core bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
51
811
|
* @twin.org/api-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
52
812
|
|
|
53
|
-
## [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)
|
|
54
814
|
|
|
55
815
|
|
|
56
816
|
### Miscellaneous Chores
|
|
@@ -66,12 +826,12 @@
|
|
|
66
826
|
* @twin.org/api-core bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
67
827
|
* @twin.org/api-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
68
828
|
|
|
69
|
-
## [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)
|
|
70
830
|
|
|
71
831
|
|
|
72
832
|
### Features
|
|
73
833
|
|
|
74
|
-
* 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))
|
|
75
835
|
|
|
76
836
|
|
|
77
837
|
### Dependencies
|
|
@@ -82,7 +842,7 @@
|
|
|
82
842
|
* @twin.org/api-core bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
83
843
|
* @twin.org/api-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
84
844
|
|
|
85
|
-
## [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)
|
|
86
846
|
|
|
87
847
|
|
|
88
848
|
### Miscellaneous Chores
|
|
@@ -98,27 +858,27 @@
|
|
|
98
858
|
* @twin.org/api-core bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
99
859
|
* @twin.org/api-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
100
860
|
|
|
101
|
-
## [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)
|
|
102
862
|
|
|
103
863
|
|
|
104
864
|
### Features
|
|
105
865
|
|
|
106
|
-
* add context id features ([#42](https://github.com/
|
|
107
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
108
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
109
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
110
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
111
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
112
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
113
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
114
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
115
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
116
|
-
* 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))
|
|
117
877
|
|
|
118
878
|
|
|
119
879
|
### Bug Fixes
|
|
120
880
|
|
|
121
|
-
* 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))
|
|
122
882
|
|
|
123
883
|
|
|
124
884
|
### Dependencies
|
|
@@ -129,12 +889,12 @@
|
|
|
129
889
|
* @twin.org/api-core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
130
890
|
* @twin.org/api-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
131
891
|
|
|
132
|
-
## [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)
|
|
133
893
|
|
|
134
894
|
|
|
135
895
|
### Bug Fixes
|
|
136
896
|
|
|
137
|
-
* 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))
|
|
138
898
|
|
|
139
899
|
|
|
140
900
|
### Dependencies
|
|
@@ -145,7 +905,7 @@
|
|
|
145
905
|
* @twin.org/api-core bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
146
906
|
* @twin.org/api-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
147
907
|
|
|
148
|
-
## [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)
|
|
149
909
|
|
|
150
910
|
|
|
151
911
|
### Miscellaneous Chores
|
|
@@ -161,22 +921,22 @@
|
|
|
161
921
|
* @twin.org/api-core bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
162
922
|
* @twin.org/api-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
163
923
|
|
|
164
|
-
## [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)
|
|
165
925
|
|
|
166
926
|
|
|
167
927
|
### Features
|
|
168
928
|
|
|
169
|
-
* add context id features ([#42](https://github.com/
|
|
170
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
171
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
172
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
173
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
174
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
175
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
176
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
177
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
178
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
179
|
-
* 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))
|
|
180
940
|
|
|
181
941
|
|
|
182
942
|
### Dependencies
|
|
@@ -187,7 +947,7 @@
|
|
|
187
947
|
* @twin.org/api-core bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
188
948
|
* @twin.org/api-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
189
949
|
|
|
190
|
-
## [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)
|
|
191
951
|
|
|
192
952
|
|
|
193
953
|
### Miscellaneous Chores
|
|
@@ -203,12 +963,12 @@
|
|
|
203
963
|
* @twin.org/api-core bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
204
964
|
* @twin.org/api-models bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
205
965
|
|
|
206
|
-
## [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)
|
|
207
967
|
|
|
208
968
|
|
|
209
969
|
### Features
|
|
210
970
|
|
|
211
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
971
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
212
972
|
|
|
213
973
|
|
|
214
974
|
### Dependencies
|
|
@@ -219,12 +979,12 @@
|
|
|
219
979
|
* @twin.org/api-core bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
220
980
|
* @twin.org/api-models bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
221
981
|
|
|
222
|
-
## [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)
|
|
223
983
|
|
|
224
984
|
|
|
225
985
|
### Features
|
|
226
986
|
|
|
227
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
987
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
228
988
|
|
|
229
989
|
|
|
230
990
|
### Dependencies
|
|
@@ -235,13 +995,13 @@
|
|
|
235
995
|
* @twin.org/api-core bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
236
996
|
* @twin.org/api-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
237
997
|
|
|
238
|
-
## [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)
|
|
239
999
|
|
|
240
1000
|
|
|
241
1001
|
### Features
|
|
242
1002
|
|
|
243
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
244
|
-
* 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))
|
|
245
1005
|
|
|
246
1006
|
|
|
247
1007
|
### Dependencies
|
|
@@ -252,12 +1012,12 @@
|
|
|
252
1012
|
* @twin.org/api-core bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
253
1013
|
* @twin.org/api-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
254
1014
|
|
|
255
|
-
## [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)
|
|
256
1016
|
|
|
257
1017
|
|
|
258
1018
|
### Features
|
|
259
1019
|
|
|
260
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
1020
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
261
1021
|
|
|
262
1022
|
|
|
263
1023
|
### Dependencies
|
|
@@ -268,7 +1028,7 @@
|
|
|
268
1028
|
* @twin.org/api-core bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
269
1029
|
* @twin.org/api-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
270
1030
|
|
|
271
|
-
## [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)
|
|
272
1032
|
|
|
273
1033
|
|
|
274
1034
|
### Miscellaneous Chores
|
|
@@ -284,7 +1044,7 @@
|
|
|
284
1044
|
* @twin.org/api-core bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
285
1045
|
* @twin.org/api-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
286
1046
|
|
|
287
|
-
## [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)
|
|
288
1048
|
|
|
289
1049
|
|
|
290
1050
|
### Miscellaneous Chores
|
|
@@ -300,12 +1060,12 @@
|
|
|
300
1060
|
* @twin.org/api-core bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
301
1061
|
* @twin.org/api-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
302
1062
|
|
|
303
|
-
## [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)
|
|
304
1064
|
|
|
305
1065
|
|
|
306
1066
|
### Features
|
|
307
1067
|
|
|
308
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
1068
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
309
1069
|
|
|
310
1070
|
|
|
311
1071
|
### Dependencies
|
|
@@ -316,15 +1076,15 @@
|
|
|
316
1076
|
* @twin.org/api-core bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
317
1077
|
* @twin.org/api-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
318
1078
|
|
|
319
|
-
## [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)
|
|
320
1080
|
|
|
321
1081
|
|
|
322
1082
|
### Features
|
|
323
1083
|
|
|
324
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
325
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
326
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
327
|
-
* 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))
|
|
328
1088
|
|
|
329
1089
|
|
|
330
1090
|
### Dependencies
|
|
@@ -335,7 +1095,7 @@
|
|
|
335
1095
|
* @twin.org/api-core bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
336
1096
|
* @twin.org/api-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
337
1097
|
|
|
338
|
-
## [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)
|
|
339
1099
|
|
|
340
1100
|
|
|
341
1101
|
### Miscellaneous Chores
|
|
@@ -351,12 +1111,12 @@
|
|
|
351
1111
|
* @twin.org/api-core bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
352
1112
|
* @twin.org/api-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
353
1113
|
|
|
354
|
-
## [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)
|
|
355
1115
|
|
|
356
1116
|
|
|
357
1117
|
### Features
|
|
358
1118
|
|
|
359
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
1119
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
360
1120
|
|
|
361
1121
|
|
|
362
1122
|
### Dependencies
|
|
@@ -367,7 +1127,7 @@
|
|
|
367
1127
|
* @twin.org/api-core bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
368
1128
|
* @twin.org/api-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
369
1129
|
|
|
370
|
-
## [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)
|
|
371
1131
|
|
|
372
1132
|
|
|
373
1133
|
### Miscellaneous Chores
|
|
@@ -383,14 +1143,14 @@
|
|
|
383
1143
|
* @twin.org/api-core bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
384
1144
|
* @twin.org/api-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
385
1145
|
|
|
386
|
-
## [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)
|
|
387
1147
|
|
|
388
1148
|
|
|
389
1149
|
### Features
|
|
390
1150
|
|
|
391
|
-
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/
|
|
392
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
393
|
-
* 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))
|
|
394
1154
|
|
|
395
1155
|
|
|
396
1156
|
### Dependencies
|
|
@@ -406,7 +1166,7 @@
|
|
|
406
1166
|
|
|
407
1167
|
### Features
|
|
408
1168
|
|
|
409
|
-
* release to production ([70ee2d5](https://github.com/
|
|
1169
|
+
* release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
|
|
410
1170
|
|
|
411
1171
|
|
|
412
1172
|
### Dependencies
|
|
@@ -417,7 +1177,7 @@
|
|
|
417
1177
|
* @twin.org/api-core bumped from ^0.0.0 to ^0.0.1
|
|
418
1178
|
* @twin.org/api-models bumped from ^0.0.0 to ^0.0.1
|
|
419
1179
|
|
|
420
|
-
## [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)
|
|
421
1181
|
|
|
422
1182
|
|
|
423
1183
|
### Miscellaneous Chores
|
|
@@ -433,12 +1193,12 @@
|
|
|
433
1193
|
* @twin.org/api-core bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
434
1194
|
* @twin.org/api-models bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
435
1195
|
|
|
436
|
-
## [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)
|
|
437
1197
|
|
|
438
1198
|
|
|
439
1199
|
### Features
|
|
440
1200
|
|
|
441
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
1201
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
442
1202
|
|
|
443
1203
|
|
|
444
1204
|
### Dependencies
|
|
@@ -449,7 +1209,7 @@
|
|
|
449
1209
|
* @twin.org/api-core bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
450
1210
|
* @twin.org/api-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
451
1211
|
|
|
452
|
-
## [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)
|
|
453
1213
|
|
|
454
1214
|
|
|
455
1215
|
### Miscellaneous Chores
|
|
@@ -465,12 +1225,12 @@
|
|
|
465
1225
|
* @twin.org/api-core bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
466
1226
|
* @twin.org/api-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
467
1227
|
|
|
468
|
-
## [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)
|
|
469
1229
|
|
|
470
1230
|
|
|
471
1231
|
### Features
|
|
472
1232
|
|
|
473
|
-
* 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))
|
|
474
1234
|
|
|
475
1235
|
|
|
476
1236
|
### Dependencies
|
|
@@ -481,7 +1241,7 @@
|
|
|
481
1241
|
* @twin.org/api-core bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
482
1242
|
* @twin.org/api-models bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
483
1243
|
|
|
484
|
-
## [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)
|
|
485
1245
|
|
|
486
1246
|
|
|
487
1247
|
### Miscellaneous Chores
|