@twin.org/api-auth-entity-storage-service 0.0.3-next.9 → 0.9.0
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 +855 -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,799 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0
|
|
3
|
+
## [0.9.0](https://github.com/iotaledger/twin-api/compare/api-auth-entity-storage-service-v0.9.0...api-auth-entity-storage-service-v0.9.0) (2026-06-24)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Features
|
|
7
7
|
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
8
|
+
* release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
|
|
9
|
+
* release to production ([#195](https://github.com/iotaledger/twin-api/issues/195)) ([a3f5c1f](https://github.com/iotaledger/twin-api/commit/a3f5c1fc35a748762af7efa4f7f95776004d1309))
|
|
10
|
+
* release to production ([#197](https://github.com/iotaledger/twin-api/issues/197)) ([f04c156](https://github.com/iotaledger/twin-api/commit/f04c1567f801cde36c5ec8595f9b9369109d9e42))
|
|
11
|
+
* release to production ([#201](https://github.com/iotaledger/twin-api/issues/201)) ([e1c46fd](https://github.com/iotaledger/twin-api/commit/e1c46fd02c1f4d44d5393e2f49a24f1e4468f240))
|
|
12
|
+
|
|
13
|
+
## [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)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
19
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
20
|
+
* add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
|
|
21
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
22
|
+
* auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
|
|
23
|
+
* auth header processor use user entity storage directly ([93084cf](https://github.com/iotaledger/twin-api/commit/93084cfed8f3ab16c80a1ab1bc90b1d9fc14bd25))
|
|
24
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
25
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
26
|
+
* hashed tenant id ([#135](https://github.com/iotaledger/twin-api/issues/135)) ([573c9b0](https://github.com/iotaledger/twin-api/commit/573c9b0714c281d69d5626c7576e93db826d266d))
|
|
27
|
+
* include iss and kid in jwt ([#189](https://github.com/iotaledger/twin-api/issues/189)) ([9df072a](https://github.com/iotaledger/twin-api/commit/9df072a1ecfc60dec611f59001449089264bbb1c))
|
|
28
|
+
* jwt password version claim ([#129](https://github.com/iotaledger/twin-api/issues/129)) ([e15487b](https://github.com/iotaledger/twin-api/commit/e15487baafd3b1f3fd58f138db531d58053ce049))
|
|
29
|
+
* location encoding ([#79](https://github.com/iotaledger/twin-api/issues/79)) ([c684465](https://github.com/iotaledger/twin-api/commit/c684465f2a871376152472bdecb6aa230b1101a1))
|
|
30
|
+
* 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))
|
|
31
|
+
* organization identifiers ([#158](https://github.com/iotaledger/twin-api/issues/158)) ([ce13244](https://github.com/iotaledger/twin-api/commit/ce13244aaacbf82d9e5f87d905e283b36ad63bbf))
|
|
32
|
+
* remove auth service dependency on admin service ([4aeb211](https://github.com/iotaledger/twin-api/commit/4aeb211a5ffcf2eaea89a6841faea3ac3069ef89))
|
|
33
|
+
* remove hosting component ([#170](https://github.com/iotaledger/twin-api/issues/170)) ([e78c1e8](https://github.com/iotaledger/twin-api/commit/e78c1e87d2747bf58da02b6b77680708ff681122))
|
|
34
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
35
|
+
* tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
|
|
36
|
+
* tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
|
|
37
|
+
* typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
|
|
38
|
+
* update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
|
|
39
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
40
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
41
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
42
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
43
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
44
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
45
|
+
* user admin service ([#77](https://github.com/iotaledger/twin-api/issues/77)) ([c8491df](https://github.com/iotaledger/twin-api/commit/c8491df7b07c1f45560c8a78c6adc806d0ececbb))
|
|
46
|
+
* user partitioning ([#126](https://github.com/iotaledger/twin-api/issues/126)) ([6bf0da3](https://github.com/iotaledger/twin-api/commit/6bf0da3c42406c9838e80e0ddd6b21f5c64aac90))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Bug Fixes
|
|
50
|
+
|
|
51
|
+
* 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))
|
|
52
|
+
* 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))
|
|
53
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
54
|
+
* remove token from return payload ([eaa4266](https://github.com/iotaledger/twin-api/commit/eaa42661b8540881b0751f5d2513258b3413f3ef))
|
|
55
|
+
* run authentication rate cleanup per tenant ([#186](https://github.com/iotaledger/twin-api/issues/186)) ([d69c7aa](https://github.com/iotaledger/twin-api/commit/d69c7aa4ade77f1a52f1f554d8f7a3bd20f1b330))
|
|
56
|
+
* use async getStore in tests ([0d25633](https://github.com/iotaledger/twin-api/commit/0d2563364de06a54ba487c700b601a883402d292))
|
|
57
|
+
* use async getStore in tests ([63493dd](https://github.com/iotaledger/twin-api/commit/63493ddf3cf394c0d1e4cfcddae9a39f7ac697c4))
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Dependencies
|
|
61
|
+
|
|
62
|
+
* The following workspace dependencies were updated
|
|
63
|
+
* dependencies
|
|
64
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
65
|
+
* @twin.org/api-core bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
66
|
+
* @twin.org/api-models bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
67
|
+
|
|
68
|
+
## [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)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
### Features
|
|
72
|
+
|
|
73
|
+
* include iss and kid in jwt ([#189](https://github.com/iotaledger/twin-api/issues/189)) ([9df072a](https://github.com/iotaledger/twin-api/commit/9df072a1ecfc60dec611f59001449089264bbb1c))
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Dependencies
|
|
77
|
+
|
|
78
|
+
* The following workspace dependencies were updated
|
|
79
|
+
* dependencies
|
|
80
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.52 to 0.0.3-next.53
|
|
81
|
+
* @twin.org/api-core bumped from 0.0.3-next.52 to 0.0.3-next.53
|
|
82
|
+
* @twin.org/api-models bumped from 0.0.3-next.52 to 0.0.3-next.53
|
|
83
|
+
|
|
84
|
+
## [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)
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
### Bug Fixes
|
|
88
|
+
|
|
89
|
+
* run authentication rate cleanup per tenant ([#186](https://github.com/iotaledger/twin-api/issues/186)) ([d69c7aa](https://github.com/iotaledger/twin-api/commit/d69c7aa4ade77f1a52f1f554d8f7a3bd20f1b330))
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### Dependencies
|
|
93
|
+
|
|
94
|
+
* The following workspace dependencies were updated
|
|
95
|
+
* dependencies
|
|
96
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.51 to 0.0.3-next.52
|
|
97
|
+
* @twin.org/api-core bumped from 0.0.3-next.51 to 0.0.3-next.52
|
|
98
|
+
* @twin.org/api-models bumped from 0.0.3-next.51 to 0.0.3-next.52
|
|
99
|
+
|
|
100
|
+
## [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)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
### Miscellaneous Chores
|
|
104
|
+
|
|
105
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
### Dependencies
|
|
109
|
+
|
|
110
|
+
* The following workspace dependencies were updated
|
|
111
|
+
* dependencies
|
|
112
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.50 to 0.0.3-next.51
|
|
113
|
+
* @twin.org/api-core bumped from 0.0.3-next.50 to 0.0.3-next.51
|
|
114
|
+
* @twin.org/api-models bumped from 0.0.3-next.50 to 0.0.3-next.51
|
|
115
|
+
|
|
116
|
+
## [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)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
### Miscellaneous Chores
|
|
120
|
+
|
|
121
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
### Dependencies
|
|
125
|
+
|
|
126
|
+
* The following workspace dependencies were updated
|
|
127
|
+
* dependencies
|
|
128
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
129
|
+
* @twin.org/api-core bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
130
|
+
* @twin.org/api-models bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
131
|
+
|
|
132
|
+
## [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)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
### Miscellaneous Chores
|
|
136
|
+
|
|
137
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
### Dependencies
|
|
141
|
+
|
|
142
|
+
* The following workspace dependencies were updated
|
|
143
|
+
* dependencies
|
|
144
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
145
|
+
* @twin.org/api-core bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
146
|
+
* @twin.org/api-models bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
147
|
+
|
|
148
|
+
## [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)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
### Miscellaneous Chores
|
|
152
|
+
|
|
153
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
### Dependencies
|
|
157
|
+
|
|
158
|
+
* The following workspace dependencies were updated
|
|
159
|
+
* dependencies
|
|
160
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
161
|
+
* @twin.org/api-core bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
162
|
+
* @twin.org/api-models bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
163
|
+
|
|
164
|
+
## [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)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Features
|
|
168
|
+
|
|
169
|
+
* remove hosting component ([#170](https://github.com/iotaledger/twin-api/issues/170)) ([e78c1e8](https://github.com/iotaledger/twin-api/commit/e78c1e87d2747bf58da02b6b77680708ff681122))
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
### Dependencies
|
|
173
|
+
|
|
174
|
+
* The following workspace dependencies were updated
|
|
175
|
+
* dependencies
|
|
176
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
177
|
+
* @twin.org/api-core bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
178
|
+
* @twin.org/api-models bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
179
|
+
|
|
180
|
+
## [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)
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
### Bug Fixes
|
|
184
|
+
|
|
185
|
+
* use async getStore in tests ([0d25633](https://github.com/iotaledger/twin-api/commit/0d2563364de06a54ba487c700b601a883402d292))
|
|
186
|
+
* use async getStore in tests ([63493dd](https://github.com/iotaledger/twin-api/commit/63493ddf3cf394c0d1e4cfcddae9a39f7ac697c4))
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
### Dependencies
|
|
190
|
+
|
|
191
|
+
* The following workspace dependencies were updated
|
|
192
|
+
* dependencies
|
|
193
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
194
|
+
* @twin.org/api-core bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
195
|
+
* @twin.org/api-models bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
196
|
+
|
|
197
|
+
## [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)
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
### Miscellaneous Chores
|
|
201
|
+
|
|
202
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
### Dependencies
|
|
206
|
+
|
|
207
|
+
* The following workspace dependencies were updated
|
|
208
|
+
* dependencies
|
|
209
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
210
|
+
* @twin.org/api-core bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
211
|
+
* @twin.org/api-models bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
212
|
+
|
|
213
|
+
## [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)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
### Features
|
|
217
|
+
|
|
218
|
+
* organization identifiers ([#158](https://github.com/iotaledger/twin-api/issues/158)) ([ce13244](https://github.com/iotaledger/twin-api/commit/ce13244aaacbf82d9e5f87d905e283b36ad63bbf))
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
### Dependencies
|
|
222
|
+
|
|
223
|
+
* The following workspace dependencies were updated
|
|
224
|
+
* dependencies
|
|
225
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
226
|
+
* @twin.org/api-core bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
227
|
+
* @twin.org/api-models bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
228
|
+
|
|
229
|
+
## [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)
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
### Miscellaneous Chores
|
|
233
|
+
|
|
234
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
### Dependencies
|
|
238
|
+
|
|
239
|
+
* The following workspace dependencies were updated
|
|
240
|
+
* dependencies
|
|
241
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
242
|
+
* @twin.org/api-core bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
243
|
+
* @twin.org/api-models bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
244
|
+
|
|
245
|
+
## [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)
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
### Miscellaneous Chores
|
|
249
|
+
|
|
250
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
### Dependencies
|
|
254
|
+
|
|
255
|
+
* The following workspace dependencies were updated
|
|
256
|
+
* dependencies
|
|
257
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
258
|
+
* @twin.org/api-core bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
259
|
+
* @twin.org/api-models bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
260
|
+
|
|
261
|
+
## [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)
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
### Miscellaneous Chores
|
|
265
|
+
|
|
266
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
### Dependencies
|
|
270
|
+
|
|
271
|
+
* The following workspace dependencies were updated
|
|
272
|
+
* dependencies
|
|
273
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
274
|
+
* @twin.org/api-core bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
275
|
+
* @twin.org/api-models bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
276
|
+
|
|
277
|
+
## [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)
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
### Miscellaneous Chores
|
|
281
|
+
|
|
282
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
### Dependencies
|
|
286
|
+
|
|
287
|
+
* The following workspace dependencies were updated
|
|
288
|
+
* dependencies
|
|
289
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
290
|
+
* @twin.org/api-core bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
291
|
+
* @twin.org/api-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
292
|
+
|
|
293
|
+
## [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)
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
### Features
|
|
297
|
+
|
|
298
|
+
* tenant id in jwt ([#140](https://github.com/iotaledger/twin-api/issues/140)) ([8d37a7b](https://github.com/iotaledger/twin-api/commit/8d37a7b98b45fde53df1e909cffc0869aa758655))
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
### Dependencies
|
|
302
|
+
|
|
303
|
+
* The following workspace dependencies were updated
|
|
304
|
+
* dependencies
|
|
305
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
306
|
+
* @twin.org/api-core bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
307
|
+
* @twin.org/api-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
308
|
+
|
|
309
|
+
## [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)
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
### Features
|
|
313
|
+
|
|
314
|
+
* hashed tenant id ([#135](https://github.com/iotaledger/twin-api/issues/135)) ([573c9b0](https://github.com/iotaledger/twin-api/commit/573c9b0714c281d69d5626c7576e93db826d266d))
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
### Dependencies
|
|
318
|
+
|
|
319
|
+
* The following workspace dependencies were updated
|
|
320
|
+
* dependencies
|
|
321
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
322
|
+
* @twin.org/api-core bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
323
|
+
* @twin.org/api-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
324
|
+
|
|
325
|
+
## [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)
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
### Miscellaneous Chores
|
|
329
|
+
|
|
330
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
### Dependencies
|
|
334
|
+
|
|
335
|
+
* The following workspace dependencies were updated
|
|
336
|
+
* dependencies
|
|
337
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
338
|
+
* @twin.org/api-core bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
339
|
+
* @twin.org/api-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
340
|
+
|
|
341
|
+
## [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)
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
### Features
|
|
345
|
+
|
|
346
|
+
* jwt password version claim ([#129](https://github.com/iotaledger/twin-api/issues/129)) ([e15487b](https://github.com/iotaledger/twin-api/commit/e15487baafd3b1f3fd58f138db531d58053ce049))
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
### Dependencies
|
|
350
|
+
|
|
351
|
+
* The following workspace dependencies were updated
|
|
352
|
+
* dependencies
|
|
353
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
354
|
+
* @twin.org/api-core bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
355
|
+
* @twin.org/api-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
356
|
+
|
|
357
|
+
## [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)
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
### Features
|
|
361
|
+
|
|
362
|
+
* user partitioning ([#126](https://github.com/iotaledger/twin-api/issues/126)) ([6bf0da3](https://github.com/iotaledger/twin-api/commit/6bf0da3c42406c9838e80e0ddd6b21f5c64aac90))
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
### Dependencies
|
|
366
|
+
|
|
367
|
+
* The following workspace dependencies were updated
|
|
368
|
+
* dependencies
|
|
369
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
370
|
+
* @twin.org/api-core bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
371
|
+
* @twin.org/api-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
372
|
+
|
|
373
|
+
## [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)
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
### Features
|
|
377
|
+
|
|
378
|
+
* update dependencies ([32b8cd2](https://github.com/iotaledger/twin-api/commit/32b8cd20353119dd1998e293d54063cf4d9ecc29))
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
### Dependencies
|
|
382
|
+
|
|
383
|
+
* The following workspace dependencies were updated
|
|
384
|
+
* dependencies
|
|
385
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
386
|
+
* @twin.org/api-core bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
387
|
+
* @twin.org/api-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
388
|
+
|
|
389
|
+
## [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)
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
### Features
|
|
393
|
+
|
|
394
|
+
* typescript 6 update ([78d2aa0](https://github.com/iotaledger/twin-api/commit/78d2aa00902f79b61973079b798b87ec05f18a8b))
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
### Dependencies
|
|
398
|
+
|
|
399
|
+
* The following workspace dependencies were updated
|
|
400
|
+
* dependencies
|
|
401
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
402
|
+
* @twin.org/api-core bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
403
|
+
* @twin.org/api-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
404
|
+
|
|
405
|
+
## [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)
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
### Miscellaneous Chores
|
|
409
|
+
|
|
410
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
### Dependencies
|
|
414
|
+
|
|
415
|
+
* The following workspace dependencies were updated
|
|
416
|
+
* dependencies
|
|
417
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
418
|
+
* @twin.org/api-core bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
419
|
+
* @twin.org/api-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
420
|
+
|
|
421
|
+
## [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)
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
### Miscellaneous Chores
|
|
425
|
+
|
|
426
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
### Dependencies
|
|
430
|
+
|
|
431
|
+
* The following workspace dependencies were updated
|
|
432
|
+
* dependencies
|
|
433
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
434
|
+
* @twin.org/api-core bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
435
|
+
* @twin.org/api-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
436
|
+
|
|
437
|
+
## [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)
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
### Miscellaneous Chores
|
|
441
|
+
|
|
442
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
### Dependencies
|
|
446
|
+
|
|
447
|
+
* The following workspace dependencies were updated
|
|
448
|
+
* dependencies
|
|
449
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
450
|
+
* @twin.org/api-core bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
451
|
+
* @twin.org/api-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
452
|
+
|
|
453
|
+
## [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)
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
### Miscellaneous Chores
|
|
457
|
+
|
|
458
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
### Dependencies
|
|
462
|
+
|
|
463
|
+
* The following workspace dependencies were updated
|
|
464
|
+
* dependencies
|
|
465
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
466
|
+
* @twin.org/api-core bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
467
|
+
* @twin.org/api-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
468
|
+
|
|
469
|
+
## [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)
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
### Bug Fixes
|
|
473
|
+
|
|
474
|
+
* 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))
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
### Dependencies
|
|
478
|
+
|
|
479
|
+
* The following workspace dependencies were updated
|
|
480
|
+
* dependencies
|
|
481
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
482
|
+
* @twin.org/api-core bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
483
|
+
* @twin.org/api-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
484
|
+
|
|
485
|
+
## [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)
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
### Bug Fixes
|
|
489
|
+
|
|
490
|
+
* 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))
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
### Dependencies
|
|
494
|
+
|
|
495
|
+
* The following workspace dependencies were updated
|
|
496
|
+
* dependencies
|
|
497
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
498
|
+
* @twin.org/api-core bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
499
|
+
* @twin.org/api-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
500
|
+
|
|
501
|
+
## [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)
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
### Miscellaneous Chores
|
|
505
|
+
|
|
506
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
### Dependencies
|
|
510
|
+
|
|
511
|
+
* The following workspace dependencies were updated
|
|
512
|
+
* dependencies
|
|
513
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
514
|
+
* @twin.org/api-core bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
515
|
+
* @twin.org/api-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
516
|
+
|
|
517
|
+
## [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)
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
### Features
|
|
521
|
+
|
|
522
|
+
* auth header processor use user entity storage directly ([93084cf](https://github.com/iotaledger/twin-api/commit/93084cfed8f3ab16c80a1ab1bc90b1d9fc14bd25))
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
### Dependencies
|
|
526
|
+
|
|
527
|
+
* The following workspace dependencies were updated
|
|
528
|
+
* dependencies
|
|
529
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
530
|
+
* @twin.org/api-core bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
531
|
+
* @twin.org/api-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
532
|
+
|
|
533
|
+
## [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)
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
### Features
|
|
537
|
+
|
|
538
|
+
* remove auth service dependency on admin service ([4aeb211](https://github.com/iotaledger/twin-api/commit/4aeb211a5ffcf2eaea89a6841faea3ac3069ef89))
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
### Dependencies
|
|
542
|
+
|
|
543
|
+
* The following workspace dependencies were updated
|
|
544
|
+
* dependencies
|
|
545
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
546
|
+
* @twin.org/api-core bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
547
|
+
* @twin.org/api-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
548
|
+
|
|
549
|
+
## [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)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
### Features
|
|
553
|
+
|
|
554
|
+
* auth enhancements ([#93](https://github.com/iotaledger/twin-api/issues/93)) ([921a50c](https://github.com/iotaledger/twin-api/commit/921a50cd89d26e530a6be6174a5a803060fa0eb6))
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
### Dependencies
|
|
558
|
+
|
|
559
|
+
* The following workspace dependencies were updated
|
|
560
|
+
* dependencies
|
|
561
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
562
|
+
* @twin.org/api-core bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
563
|
+
* @twin.org/api-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
564
|
+
|
|
565
|
+
## [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)
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
### Miscellaneous Chores
|
|
569
|
+
|
|
570
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
### Dependencies
|
|
574
|
+
|
|
575
|
+
* The following workspace dependencies were updated
|
|
576
|
+
* dependencies
|
|
577
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
578
|
+
* @twin.org/api-core bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
579
|
+
* @twin.org/api-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
580
|
+
|
|
581
|
+
## [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)
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
### Miscellaneous Chores
|
|
585
|
+
|
|
586
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
### Dependencies
|
|
590
|
+
|
|
591
|
+
* The following workspace dependencies were updated
|
|
592
|
+
* dependencies
|
|
593
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
594
|
+
* @twin.org/api-core bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
595
|
+
* @twin.org/api-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
596
|
+
|
|
597
|
+
## [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)
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
### Features
|
|
601
|
+
|
|
602
|
+
* location encoding ([#79](https://github.com/iotaledger/twin-api/issues/79)) ([c684465](https://github.com/iotaledger/twin-api/commit/c684465f2a871376152472bdecb6aa230b1101a1))
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
### Dependencies
|
|
606
|
+
|
|
607
|
+
* The following workspace dependencies were updated
|
|
608
|
+
* dependencies
|
|
609
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
610
|
+
* @twin.org/api-core bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
611
|
+
* @twin.org/api-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
612
|
+
|
|
613
|
+
## [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)
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
### Features
|
|
617
|
+
|
|
618
|
+
* user admin service ([#77](https://github.com/iotaledger/twin-api/issues/77)) ([c8491df](https://github.com/iotaledger/twin-api/commit/c8491df7b07c1f45560c8a78c6adc806d0ececbb))
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
### Dependencies
|
|
622
|
+
|
|
623
|
+
* The following workspace dependencies were updated
|
|
624
|
+
* dependencies
|
|
625
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
626
|
+
* @twin.org/api-core bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
627
|
+
* @twin.org/api-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
628
|
+
|
|
629
|
+
## [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)
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
### Features
|
|
633
|
+
|
|
634
|
+
* tenant api and scopes ([#75](https://github.com/iotaledger/twin-api/issues/75)) ([c663141](https://github.com/iotaledger/twin-api/commit/c663141091e8974d769f8f9904ecdab009ebd083))
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
### Dependencies
|
|
638
|
+
|
|
639
|
+
* The following workspace dependencies were updated
|
|
640
|
+
* dependencies
|
|
641
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
642
|
+
* @twin.org/api-core bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
643
|
+
* @twin.org/api-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
644
|
+
|
|
645
|
+
## [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)
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
### Miscellaneous Chores
|
|
649
|
+
|
|
650
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
### Dependencies
|
|
654
|
+
|
|
655
|
+
* The following workspace dependencies were updated
|
|
656
|
+
* dependencies
|
|
657
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
658
|
+
* @twin.org/api-core bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
659
|
+
* @twin.org/api-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
660
|
+
|
|
661
|
+
## [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)
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
### Miscellaneous Chores
|
|
665
|
+
|
|
666
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
### Dependencies
|
|
670
|
+
|
|
671
|
+
* The following workspace dependencies were updated
|
|
672
|
+
* dependencies
|
|
673
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
674
|
+
* @twin.org/api-core bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
675
|
+
* @twin.org/api-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
676
|
+
|
|
677
|
+
## [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)
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
### Miscellaneous Chores
|
|
681
|
+
|
|
682
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
### Dependencies
|
|
686
|
+
|
|
687
|
+
* The following workspace dependencies were updated
|
|
688
|
+
* dependencies
|
|
689
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
690
|
+
* @twin.org/api-core bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
691
|
+
* @twin.org/api-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
692
|
+
|
|
693
|
+
## [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)
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
### Miscellaneous Chores
|
|
697
|
+
|
|
698
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
### Dependencies
|
|
702
|
+
|
|
703
|
+
* The following workspace dependencies were updated
|
|
704
|
+
* dependencies
|
|
705
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
706
|
+
* @twin.org/api-core bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
707
|
+
* @twin.org/api-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
708
|
+
|
|
709
|
+
## [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)
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
### Miscellaneous Chores
|
|
713
|
+
|
|
714
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
### Dependencies
|
|
718
|
+
|
|
719
|
+
* The following workspace dependencies were updated
|
|
720
|
+
* dependencies
|
|
721
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
722
|
+
* @twin.org/api-core bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
723
|
+
* @twin.org/api-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
724
|
+
|
|
725
|
+
## [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)
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
### Miscellaneous Chores
|
|
729
|
+
|
|
730
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
### Dependencies
|
|
734
|
+
|
|
735
|
+
* The following workspace dependencies were updated
|
|
736
|
+
* dependencies
|
|
737
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
738
|
+
* @twin.org/api-core bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
739
|
+
* @twin.org/api-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
740
|
+
|
|
741
|
+
## [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)
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
### Miscellaneous Chores
|
|
745
|
+
|
|
746
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
### Dependencies
|
|
750
|
+
|
|
751
|
+
* The following workspace dependencies were updated
|
|
752
|
+
* dependencies
|
|
753
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
754
|
+
* @twin.org/api-core bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
755
|
+
* @twin.org/api-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
756
|
+
|
|
757
|
+
## [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)
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
### Bug Fixes
|
|
761
|
+
|
|
762
|
+
* remove token from return payload ([eaa4266](https://github.com/iotaledger/twin-api/commit/eaa42661b8540881b0751f5d2513258b3413f3ef))
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
### Dependencies
|
|
766
|
+
|
|
767
|
+
* The following workspace dependencies were updated
|
|
768
|
+
* dependencies
|
|
769
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
770
|
+
* @twin.org/api-core bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
771
|
+
* @twin.org/api-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
772
|
+
|
|
773
|
+
## [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)
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
### Features
|
|
777
|
+
|
|
778
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
779
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
780
|
+
* add livez endpoint ([#57](https://github.com/iotaledger/twin-api/issues/57)) ([ef007db](https://github.com/iotaledger/twin-api/commit/ef007db8201736dd3053211f849ffd03baaa485e))
|
|
781
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
782
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
783
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
784
|
+
* 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))
|
|
785
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
786
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
787
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
788
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
789
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
790
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
791
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
22
792
|
|
|
23
793
|
|
|
24
794
|
### Bug Fixes
|
|
25
795
|
|
|
26
|
-
* include org in context ids from jwt ([a12cfdd](https://github.com/
|
|
796
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
27
797
|
|
|
28
798
|
|
|
29
799
|
### Dependencies
|
|
@@ -34,7 +804,7 @@
|
|
|
34
804
|
* @twin.org/api-core bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
35
805
|
* @twin.org/api-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
36
806
|
|
|
37
|
-
## [0.0.3-next.8](https://github.com/
|
|
807
|
+
## [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
808
|
|
|
39
809
|
|
|
40
810
|
### Miscellaneous Chores
|
|
@@ -50,7 +820,7 @@
|
|
|
50
820
|
* @twin.org/api-core bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
51
821
|
* @twin.org/api-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
52
822
|
|
|
53
|
-
## [0.0.3-next.7](https://github.com/
|
|
823
|
+
## [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
824
|
|
|
55
825
|
|
|
56
826
|
### Miscellaneous Chores
|
|
@@ -66,12 +836,12 @@
|
|
|
66
836
|
* @twin.org/api-core bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
67
837
|
* @twin.org/api-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
68
838
|
|
|
69
|
-
## [0.0.3-next.6](https://github.com/
|
|
839
|
+
## [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
840
|
|
|
71
841
|
|
|
72
842
|
### Features
|
|
73
843
|
|
|
74
|
-
* check tenant id in auth if set ([66f7337](https://github.com/
|
|
844
|
+
* check tenant id in auth if set ([66f7337](https://github.com/iotaledger/twin-api/commit/66f73374d3cf4c1c85ea96ec74bb30712fb84dd7))
|
|
75
845
|
|
|
76
846
|
|
|
77
847
|
### Dependencies
|
|
@@ -82,7 +852,7 @@
|
|
|
82
852
|
* @twin.org/api-core bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
83
853
|
* @twin.org/api-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
84
854
|
|
|
85
|
-
## [0.0.3-next.5](https://github.com/
|
|
855
|
+
## [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
856
|
|
|
87
857
|
|
|
88
858
|
### Miscellaneous Chores
|
|
@@ -98,27 +868,27 @@
|
|
|
98
868
|
* @twin.org/api-core bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
99
869
|
* @twin.org/api-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
100
870
|
|
|
101
|
-
## [0.0.3-next.4](https://github.com/
|
|
871
|
+
## [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
872
|
|
|
103
873
|
|
|
104
874
|
### Features
|
|
105
875
|
|
|
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/
|
|
876
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
877
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
878
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
879
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
880
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
881
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
882
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
883
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
884
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
885
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
886
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
117
887
|
|
|
118
888
|
|
|
119
889
|
### Bug Fixes
|
|
120
890
|
|
|
121
|
-
* include org in context ids from jwt ([a12cfdd](https://github.com/
|
|
891
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
122
892
|
|
|
123
893
|
|
|
124
894
|
### Dependencies
|
|
@@ -129,12 +899,12 @@
|
|
|
129
899
|
* @twin.org/api-core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
130
900
|
* @twin.org/api-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
131
901
|
|
|
132
|
-
## [0.0.3-next.3](https://github.com/
|
|
902
|
+
## [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
903
|
|
|
134
904
|
|
|
135
905
|
### Bug Fixes
|
|
136
906
|
|
|
137
|
-
* include org in context ids from jwt ([a12cfdd](https://github.com/
|
|
907
|
+
* include org in context ids from jwt ([a12cfdd](https://github.com/iotaledger/twin-api/commit/a12cfdddb05e2ed0300b26f3d7c0cfc033e59bd3))
|
|
138
908
|
|
|
139
909
|
|
|
140
910
|
### Dependencies
|
|
@@ -145,7 +915,7 @@
|
|
|
145
915
|
* @twin.org/api-core bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
146
916
|
* @twin.org/api-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
147
917
|
|
|
148
|
-
## [0.0.3-next.2](https://github.com/
|
|
918
|
+
## [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
919
|
|
|
150
920
|
|
|
151
921
|
### Miscellaneous Chores
|
|
@@ -161,22 +931,22 @@
|
|
|
161
931
|
* @twin.org/api-core bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
162
932
|
* @twin.org/api-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
163
933
|
|
|
164
|
-
## [0.0.3-next.1](https://github.com/
|
|
934
|
+
## [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
935
|
|
|
166
936
|
|
|
167
937
|
### Features
|
|
168
938
|
|
|
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/
|
|
939
|
+
* add context id features ([#42](https://github.com/iotaledger/twin-api/issues/42)) ([0186055](https://github.com/iotaledger/twin-api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
|
|
940
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
941
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
942
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
943
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
944
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
945
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
946
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
947
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
948
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
949
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
180
950
|
|
|
181
951
|
|
|
182
952
|
### Dependencies
|
|
@@ -187,7 +957,7 @@
|
|
|
187
957
|
* @twin.org/api-core bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
188
958
|
* @twin.org/api-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
189
959
|
|
|
190
|
-
## [0.0.2-next.13](https://github.com/
|
|
960
|
+
## [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
961
|
|
|
192
962
|
|
|
193
963
|
### Miscellaneous Chores
|
|
@@ -203,12 +973,12 @@
|
|
|
203
973
|
* @twin.org/api-core bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
204
974
|
* @twin.org/api-models bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
205
975
|
|
|
206
|
-
## [0.0.2-next.12](https://github.com/
|
|
976
|
+
## [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
977
|
|
|
208
978
|
|
|
209
979
|
### Features
|
|
210
980
|
|
|
211
|
-
* add validate-locales ([cdba610](https://github.com/
|
|
981
|
+
* add validate-locales ([cdba610](https://github.com/iotaledger/twin-api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
|
|
212
982
|
|
|
213
983
|
|
|
214
984
|
### Dependencies
|
|
@@ -219,12 +989,12 @@
|
|
|
219
989
|
* @twin.org/api-core bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
220
990
|
* @twin.org/api-models bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
221
991
|
|
|
222
|
-
## [0.0.2-next.11](https://github.com/
|
|
992
|
+
## [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
993
|
|
|
224
994
|
|
|
225
995
|
### Features
|
|
226
996
|
|
|
227
|
-
* update IComponent signatures ([915ce37](https://github.com/
|
|
997
|
+
* update IComponent signatures ([915ce37](https://github.com/iotaledger/twin-api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
228
998
|
|
|
229
999
|
|
|
230
1000
|
### Dependencies
|
|
@@ -235,13 +1005,13 @@
|
|
|
235
1005
|
* @twin.org/api-core bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
236
1006
|
* @twin.org/api-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
237
1007
|
|
|
238
|
-
## [0.0.2-next.10](https://github.com/
|
|
1008
|
+
## [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
1009
|
|
|
240
1010
|
|
|
241
1011
|
### Features
|
|
242
1012
|
|
|
243
|
-
* use new extractBearer method ([3e0cc54](https://github.com/
|
|
244
|
-
* use new extractBearerToken method ([df654e9](https://github.com/
|
|
1013
|
+
* use new extractBearer method ([3e0cc54](https://github.com/iotaledger/twin-api/commit/3e0cc5462c06f59a6b744386eeff8326e5abbc95))
|
|
1014
|
+
* use new extractBearerToken method ([df654e9](https://github.com/iotaledger/twin-api/commit/df654e9caee5bd62f0be36f7be9902c8fab6ead6))
|
|
245
1015
|
|
|
246
1016
|
|
|
247
1017
|
### Dependencies
|
|
@@ -252,12 +1022,12 @@
|
|
|
252
1022
|
* @twin.org/api-core bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
253
1023
|
* @twin.org/api-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
254
1024
|
|
|
255
|
-
## [0.0.2-next.9](https://github.com/
|
|
1025
|
+
## [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
1026
|
|
|
257
1027
|
|
|
258
1028
|
### Features
|
|
259
1029
|
|
|
260
|
-
* eslint migration to flat config ([0dd5820](https://github.com/
|
|
1030
|
+
* eslint migration to flat config ([0dd5820](https://github.com/iotaledger/twin-api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
|
|
261
1031
|
|
|
262
1032
|
|
|
263
1033
|
### Dependencies
|
|
@@ -268,7 +1038,7 @@
|
|
|
268
1038
|
* @twin.org/api-core bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
269
1039
|
* @twin.org/api-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
270
1040
|
|
|
271
|
-
## [0.0.2-next.8](https://github.com/
|
|
1041
|
+
## [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
1042
|
|
|
273
1043
|
|
|
274
1044
|
### Miscellaneous Chores
|
|
@@ -284,7 +1054,7 @@
|
|
|
284
1054
|
* @twin.org/api-core bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
285
1055
|
* @twin.org/api-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
286
1056
|
|
|
287
|
-
## [0.0.2-next.7](https://github.com/
|
|
1057
|
+
## [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
1058
|
|
|
289
1059
|
|
|
290
1060
|
### Miscellaneous Chores
|
|
@@ -300,12 +1070,12 @@
|
|
|
300
1070
|
* @twin.org/api-core bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
301
1071
|
* @twin.org/api-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
302
1072
|
|
|
303
|
-
## [0.0.2-next.6](https://github.com/
|
|
1073
|
+
## [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
1074
|
|
|
305
1075
|
|
|
306
1076
|
### Features
|
|
307
1077
|
|
|
308
|
-
* update framework core ([d8eebf2](https://github.com/
|
|
1078
|
+
* update framework core ([d8eebf2](https://github.com/iotaledger/twin-api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
309
1079
|
|
|
310
1080
|
|
|
311
1081
|
### Dependencies
|
|
@@ -316,15 +1086,15 @@
|
|
|
316
1086
|
* @twin.org/api-core bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
317
1087
|
* @twin.org/api-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
318
1088
|
|
|
319
|
-
## [0.0.2-next.5](https://github.com/
|
|
1089
|
+
## [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
1090
|
|
|
321
1091
|
|
|
322
1092
|
### Features
|
|
323
1093
|
|
|
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/
|
|
1094
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
1095
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
1096
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
1097
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
328
1098
|
|
|
329
1099
|
|
|
330
1100
|
### Dependencies
|
|
@@ -335,7 +1105,7 @@
|
|
|
335
1105
|
* @twin.org/api-core bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
336
1106
|
* @twin.org/api-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
337
1107
|
|
|
338
|
-
## [0.0.2-next.4](https://github.com/
|
|
1108
|
+
## [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
1109
|
|
|
340
1110
|
|
|
341
1111
|
### Miscellaneous Chores
|
|
@@ -351,12 +1121,12 @@
|
|
|
351
1121
|
* @twin.org/api-core bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
352
1122
|
* @twin.org/api-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
353
1123
|
|
|
354
|
-
## [0.0.2-next.3](https://github.com/
|
|
1124
|
+
## [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
1125
|
|
|
356
1126
|
|
|
357
1127
|
### Features
|
|
358
1128
|
|
|
359
|
-
* remove unused namespace ([08478f2](https://github.com/
|
|
1129
|
+
* remove unused namespace ([08478f2](https://github.com/iotaledger/twin-api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
360
1130
|
|
|
361
1131
|
|
|
362
1132
|
### Dependencies
|
|
@@ -367,7 +1137,7 @@
|
|
|
367
1137
|
* @twin.org/api-core bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
368
1138
|
* @twin.org/api-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
369
1139
|
|
|
370
|
-
## [0.0.2-next.2](https://github.com/
|
|
1140
|
+
## [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
1141
|
|
|
372
1142
|
|
|
373
1143
|
### Miscellaneous Chores
|
|
@@ -383,14 +1153,14 @@
|
|
|
383
1153
|
* @twin.org/api-core bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
384
1154
|
* @twin.org/api-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
385
1155
|
|
|
386
|
-
## [0.0.2-next.1](https://github.com/
|
|
1156
|
+
## [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
1157
|
|
|
388
1158
|
|
|
389
1159
|
### Features
|
|
390
1160
|
|
|
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/
|
|
1161
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/iotaledger/twin-api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
1162
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
1163
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
394
1164
|
|
|
395
1165
|
|
|
396
1166
|
### Dependencies
|
|
@@ -406,7 +1176,7 @@
|
|
|
406
1176
|
|
|
407
1177
|
### Features
|
|
408
1178
|
|
|
409
|
-
* release to production ([70ee2d5](https://github.com/
|
|
1179
|
+
* release to production ([70ee2d5](https://github.com/iotaledger/twin-api/commit/70ee2d56a1dc9537d7c9c154d4cb78a235678a3a))
|
|
410
1180
|
|
|
411
1181
|
|
|
412
1182
|
### Dependencies
|
|
@@ -417,7 +1187,7 @@
|
|
|
417
1187
|
* @twin.org/api-core bumped from ^0.0.0 to ^0.0.1
|
|
418
1188
|
* @twin.org/api-models bumped from ^0.0.0 to ^0.0.1
|
|
419
1189
|
|
|
420
|
-
## [0.0.1-next.36](https://github.com/
|
|
1190
|
+
## [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
1191
|
|
|
422
1192
|
|
|
423
1193
|
### Miscellaneous Chores
|
|
@@ -433,12 +1203,12 @@
|
|
|
433
1203
|
* @twin.org/api-core bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
434
1204
|
* @twin.org/api-models bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
435
1205
|
|
|
436
|
-
## [0.0.1-next.35](https://github.com/
|
|
1206
|
+
## [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
1207
|
|
|
438
1208
|
|
|
439
1209
|
### Features
|
|
440
1210
|
|
|
441
|
-
* update dependencies ([1171dc4](https://github.com/
|
|
1211
|
+
* update dependencies ([1171dc4](https://github.com/iotaledger/twin-api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
442
1212
|
|
|
443
1213
|
|
|
444
1214
|
### Dependencies
|
|
@@ -449,7 +1219,7 @@
|
|
|
449
1219
|
* @twin.org/api-core bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
450
1220
|
* @twin.org/api-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
451
1221
|
|
|
452
|
-
## [0.0.1-next.34](https://github.com/
|
|
1222
|
+
## [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
1223
|
|
|
454
1224
|
|
|
455
1225
|
### Miscellaneous Chores
|
|
@@ -465,12 +1235,12 @@
|
|
|
465
1235
|
* @twin.org/api-core bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
466
1236
|
* @twin.org/api-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
467
1237
|
|
|
468
|
-
## [0.0.1-next.33](https://github.com/
|
|
1238
|
+
## [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
1239
|
|
|
470
1240
|
|
|
471
1241
|
### Features
|
|
472
1242
|
|
|
473
|
-
* use shared store mechanism ([#19](https://github.com/
|
|
1243
|
+
* use shared store mechanism ([#19](https://github.com/iotaledger/twin-api/issues/19)) ([32116df](https://github.com/iotaledger/twin-api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
474
1244
|
|
|
475
1245
|
|
|
476
1246
|
### Dependencies
|
|
@@ -481,7 +1251,7 @@
|
|
|
481
1251
|
* @twin.org/api-core bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
482
1252
|
* @twin.org/api-models bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
483
1253
|
|
|
484
|
-
## [0.0.1-next.32](https://github.com/
|
|
1254
|
+
## [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
1255
|
|
|
486
1256
|
|
|
487
1257
|
### Miscellaneous Chores
|