@twin.org/entity-storage-service 0.0.3-next.2 → 0.0.3-next.21
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/entityStorageRoutes.js +176 -4
- package/dist/es/entityStorageRoutes.js.map +1 -1
- package/dist/es/entityStorageService.js +44 -49
- package/dist/es/entityStorageService.js.map +1 -1
- package/dist/es/models/IEntityStorageRoutesExamples.js.map +1 -1
- package/dist/types/entityStorageRoutes.d.ts +33 -1
- package/dist/types/entityStorageService.d.ts +38 -3
- package/dist/types/models/IEntityStorageRoutesExamples.d.ts +8 -1
- package/docs/changelog.md +401 -46
- package/docs/examples.md +77 -1
- package/docs/open-api/spec.json +447 -37
- package/docs/reference/classes/EntityStorageService.md +123 -9
- package/docs/reference/functions/entityStorageCount.md +31 -0
- package/docs/reference/functions/entityStorageEmpty.md +31 -0
- package/docs/reference/functions/entityStorageRemoveBatch.md +31 -0
- package/docs/reference/functions/entityStorageSetBatch.md +31 -0
- package/docs/reference/index.md +4 -0
- package/docs/reference/interfaces/IEntityStorageRoutesExamples.md +24 -8
- package/docs/reference/interfaces/IEntityStorageServiceConstructorOptions.md +3 -3
- package/locales/en.json +1 -7
- package/package.json +5 -5
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { IRestRouteRequestExample, IRestRouteResponseExample } from "@twin.org/api-models";
|
|
2
|
-
import type { IEntityStorageGetRequest, IEntityStorageGetResponse, IEntityStorageListRequest, IEntityStorageListResponse, IEntityStorageRemoveRequest, IEntityStorageSetRequest } from "@twin.org/entity-storage-models";
|
|
2
|
+
import type { IEntityStorageCountRequest, IEntityStorageCountResponse, IEntityStorageGetRequest, IEntityStorageGetResponse, IEntityStorageListRequest, IEntityStorageListResponse, IEntityStorageRemoveRequest, IEntityStorageSetRequest } from "@twin.org/entity-storage-models";
|
|
3
3
|
/**
|
|
4
4
|
* Examples for the entity storage routes.
|
|
5
5
|
*/
|
|
@@ -30,4 +30,11 @@ export interface IEntityStorageRoutesExamples {
|
|
|
30
30
|
requestExamples: IRestRouteRequestExample<IEntityStorageListRequest>[];
|
|
31
31
|
responseExamples: IRestRouteResponseExample<IEntityStorageListResponse>[];
|
|
32
32
|
};
|
|
33
|
+
/**
|
|
34
|
+
* Examples for the count route.
|
|
35
|
+
*/
|
|
36
|
+
count?: {
|
|
37
|
+
requestExamples: IRestRouteRequestExample<IEntityStorageCountRequest>[];
|
|
38
|
+
responseExamples: IRestRouteResponseExample<IEntityStorageCountResponse>[];
|
|
39
|
+
};
|
|
33
40
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,11 +1,366 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [0.0.3-next.21](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.20...entity-storage-service-v0.0.3-next.21) (2026-06-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
18
|
+
|
|
19
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.19...entity-storage-service-v0.0.3-next.20) (2026-06-01)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
|
|
25
|
+
* add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
|
|
26
|
+
* add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
|
|
27
|
+
* adding schema migration functionality to all the connectors ([#85](https://github.com/iotaledger/twin-entity-storage/issues/85)) ([fd1555a](https://github.com/iotaledger/twin-entity-storage/commit/fd1555a34380158214a577586dafae821e72a578))
|
|
28
|
+
* entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
|
|
29
|
+
* eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
|
|
30
|
+
* remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
|
|
31
|
+
* synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
|
|
32
|
+
* typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
|
|
33
|
+
* update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
|
|
34
|
+
* update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
|
|
35
|
+
* use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
* api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
|
|
41
|
+
* query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Dependencies
|
|
45
|
+
|
|
46
|
+
* The following workspace dependencies were updated
|
|
47
|
+
* dependencies
|
|
48
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
49
|
+
* devDependencies
|
|
50
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
51
|
+
|
|
52
|
+
## [0.0.3-next.19](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.18...entity-storage-service-v0.0.3-next.19) (2026-06-01)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Features
|
|
56
|
+
|
|
57
|
+
* add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
|
|
58
|
+
* add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
|
|
59
|
+
* add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
|
|
60
|
+
* adding schema migration functionality to all the connectors ([#85](https://github.com/iotaledger/twin-entity-storage/issues/85)) ([fd1555a](https://github.com/iotaledger/twin-entity-storage/commit/fd1555a34380158214a577586dafae821e72a578))
|
|
61
|
+
* entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
|
|
62
|
+
* eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
|
|
63
|
+
* remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
|
|
64
|
+
* synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
|
|
65
|
+
* typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
|
|
66
|
+
* update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
|
|
67
|
+
* update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
|
|
68
|
+
* use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
### Bug Fixes
|
|
72
|
+
|
|
73
|
+
* api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
|
|
74
|
+
* query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
### Dependencies
|
|
78
|
+
|
|
79
|
+
* The following workspace dependencies were updated
|
|
80
|
+
* dependencies
|
|
81
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
82
|
+
* devDependencies
|
|
83
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
84
|
+
|
|
85
|
+
## [0.0.3-next.18](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.17...entity-storage-service-v0.0.3-next.18) (2026-06-01)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Features
|
|
89
|
+
|
|
90
|
+
* add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
|
|
91
|
+
* add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
|
|
92
|
+
* add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
|
|
93
|
+
* adding schema migration functionality to all the connectors ([#85](https://github.com/iotaledger/twin-entity-storage/issues/85)) ([fd1555a](https://github.com/iotaledger/twin-entity-storage/commit/fd1555a34380158214a577586dafae821e72a578))
|
|
94
|
+
* entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
|
|
95
|
+
* eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
|
|
96
|
+
* remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
|
|
97
|
+
* synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
|
|
98
|
+
* typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
|
|
99
|
+
* update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
|
|
100
|
+
* update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
|
|
101
|
+
* use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Bug Fixes
|
|
105
|
+
|
|
106
|
+
* api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
|
|
107
|
+
* query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
### Dependencies
|
|
111
|
+
|
|
112
|
+
* The following workspace dependencies were updated
|
|
113
|
+
* dependencies
|
|
114
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
115
|
+
* devDependencies
|
|
116
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
117
|
+
|
|
118
|
+
## [0.0.3-next.17](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.16...entity-storage-service-v0.0.3-next.17) (2026-06-01)
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
### Miscellaneous Chores
|
|
122
|
+
|
|
123
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
### Dependencies
|
|
127
|
+
|
|
128
|
+
* The following workspace dependencies were updated
|
|
129
|
+
* dependencies
|
|
130
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
131
|
+
* devDependencies
|
|
132
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
133
|
+
|
|
134
|
+
## [0.0.3-next.16](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.15...entity-storage-service-v0.0.3-next.16) (2026-05-20)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
### Miscellaneous Chores
|
|
138
|
+
|
|
139
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
### Dependencies
|
|
143
|
+
|
|
144
|
+
* The following workspace dependencies were updated
|
|
145
|
+
* dependencies
|
|
146
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
147
|
+
* devDependencies
|
|
148
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
149
|
+
|
|
150
|
+
## [0.0.3-next.15](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.14...entity-storage-service-v0.0.3-next.15) (2026-05-19)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Miscellaneous Chores
|
|
154
|
+
|
|
155
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Dependencies
|
|
159
|
+
|
|
160
|
+
* The following workspace dependencies were updated
|
|
161
|
+
* dependencies
|
|
162
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
163
|
+
* devDependencies
|
|
164
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
165
|
+
|
|
166
|
+
## [0.0.3-next.14](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.13...entity-storage-service-v0.0.3-next.14) (2026-05-19)
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
### Features
|
|
170
|
+
|
|
171
|
+
* adding schema migration functionality to all the connectors ([#85](https://github.com/iotaledger/twin-entity-storage/issues/85)) ([fd1555a](https://github.com/iotaledger/twin-entity-storage/commit/fd1555a34380158214a577586dafae821e72a578))
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
### Dependencies
|
|
175
|
+
|
|
176
|
+
* The following workspace dependencies were updated
|
|
177
|
+
* dependencies
|
|
178
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
179
|
+
* devDependencies
|
|
180
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
181
|
+
|
|
182
|
+
## [0.0.3-next.13](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.12...entity-storage-service-v0.0.3-next.13) (2026-05-13)
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
### Miscellaneous Chores
|
|
186
|
+
|
|
187
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### Dependencies
|
|
191
|
+
|
|
192
|
+
* The following workspace dependencies were updated
|
|
193
|
+
* dependencies
|
|
194
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
195
|
+
* devDependencies
|
|
196
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
197
|
+
|
|
198
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.11...entity-storage-service-v0.0.3-next.12) (2026-05-11)
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
### Features
|
|
202
|
+
|
|
203
|
+
* typescript 6 update ([995a0c6](https://github.com/iotaledger/twin-entity-storage/commit/995a0c6fa9a6813bfdc7200779ce3664236e59e9))
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Dependencies
|
|
207
|
+
|
|
208
|
+
* The following workspace dependencies were updated
|
|
209
|
+
* dependencies
|
|
210
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
211
|
+
* devDependencies
|
|
212
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
213
|
+
|
|
214
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.10...entity-storage-service-v0.0.3-next.11) (2026-05-07)
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
### Miscellaneous Chores
|
|
218
|
+
|
|
219
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
### Dependencies
|
|
223
|
+
|
|
224
|
+
* The following workspace dependencies were updated
|
|
225
|
+
* dependencies
|
|
226
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
227
|
+
* devDependencies
|
|
228
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
229
|
+
|
|
230
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.9...entity-storage-service-v0.0.3-next.10) (2026-05-07)
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
### Features
|
|
234
|
+
|
|
235
|
+
* entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
### Dependencies
|
|
239
|
+
|
|
240
|
+
* The following workspace dependencies were updated
|
|
241
|
+
* dependencies
|
|
242
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
243
|
+
* devDependencies
|
|
244
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
245
|
+
|
|
246
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.8...entity-storage-service-v0.0.3-next.9) (2026-04-22)
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
### Miscellaneous Chores
|
|
250
|
+
|
|
251
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
### Dependencies
|
|
255
|
+
|
|
256
|
+
* The following workspace dependencies were updated
|
|
257
|
+
* dependencies
|
|
258
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
259
|
+
* devDependencies
|
|
260
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
261
|
+
|
|
262
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.7...entity-storage-service-v0.0.3-next.8) (2026-03-20)
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
### Miscellaneous Chores
|
|
266
|
+
|
|
267
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
### Dependencies
|
|
271
|
+
|
|
272
|
+
* The following workspace dependencies were updated
|
|
273
|
+
* dependencies
|
|
274
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
275
|
+
* devDependencies
|
|
276
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
277
|
+
|
|
278
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.6...entity-storage-service-v0.0.3-next.7) (2026-03-13)
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
### Miscellaneous Chores
|
|
282
|
+
|
|
283
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
### Dependencies
|
|
287
|
+
|
|
288
|
+
* The following workspace dependencies were updated
|
|
289
|
+
* dependencies
|
|
290
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
291
|
+
* devDependencies
|
|
292
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
293
|
+
|
|
294
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.5...entity-storage-service-v0.0.3-next.6) (2026-01-21)
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
### Miscellaneous Chores
|
|
298
|
+
|
|
299
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
### Dependencies
|
|
303
|
+
|
|
304
|
+
* The following workspace dependencies were updated
|
|
305
|
+
* dependencies
|
|
306
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
307
|
+
* devDependencies
|
|
308
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
309
|
+
|
|
310
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.4...entity-storage-service-v0.0.3-next.5) (2026-01-06)
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
### Miscellaneous Chores
|
|
314
|
+
|
|
315
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
### Dependencies
|
|
319
|
+
|
|
320
|
+
* The following workspace dependencies were updated
|
|
321
|
+
* dependencies
|
|
322
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
323
|
+
* devDependencies
|
|
324
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
325
|
+
|
|
326
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.3...entity-storage-service-v0.0.3-next.4) (2025-12-03)
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
### Miscellaneous Chores
|
|
330
|
+
|
|
331
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Dependencies
|
|
335
|
+
|
|
336
|
+
* The following workspace dependencies were updated
|
|
337
|
+
* dependencies
|
|
338
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
339
|
+
* devDependencies
|
|
340
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
341
|
+
|
|
342
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.2...entity-storage-service-v0.0.3-next.3) (2025-11-26)
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
### Miscellaneous Chores
|
|
346
|
+
|
|
347
|
+
* **entity-storage-service:** Synchronize repo versions
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
### Dependencies
|
|
351
|
+
|
|
352
|
+
* The following workspace dependencies were updated
|
|
353
|
+
* dependencies
|
|
354
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
355
|
+
* devDependencies
|
|
356
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
357
|
+
|
|
358
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.1...entity-storage-service-v0.0.3-next.2) (2025-11-13)
|
|
4
359
|
|
|
5
360
|
|
|
6
361
|
### Bug Fixes
|
|
7
362
|
|
|
8
|
-
* api docs ([4228736](https://github.com/
|
|
363
|
+
* api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
|
|
9
364
|
|
|
10
365
|
|
|
11
366
|
### Dependencies
|
|
@@ -16,25 +371,25 @@
|
|
|
16
371
|
* devDependencies
|
|
17
372
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
18
373
|
|
|
19
|
-
## [0.0.3-next.1](https://github.com/
|
|
374
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.3-next.0...entity-storage-service-v0.0.3-next.1) (2025-11-10)
|
|
20
375
|
|
|
21
376
|
|
|
22
377
|
### Features
|
|
23
378
|
|
|
24
|
-
* add context id features ([#55](https://github.com/
|
|
25
|
-
* add production release automation ([1eb4c8e](https://github.com/
|
|
26
|
-
* add validate-locales ([e66ef0d](https://github.com/
|
|
27
|
-
* eslint migration to flat config ([f033b64](https://github.com/
|
|
28
|
-
* remove includeNodeIdentity flag ([d88d1d0](https://github.com/
|
|
29
|
-
* synchronised storage ([#44](https://github.com/
|
|
30
|
-
* update dependencies ([7ccc0c4](https://github.com/
|
|
31
|
-
* update framework core ([b59a380](https://github.com/
|
|
32
|
-
* use shared store mechanism ([#34](https://github.com/
|
|
379
|
+
* add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
|
|
380
|
+
* add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
|
|
381
|
+
* add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
|
|
382
|
+
* eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
|
|
383
|
+
* remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
|
|
384
|
+
* synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
|
|
385
|
+
* update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
|
|
386
|
+
* update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
|
|
387
|
+
* use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
|
|
33
388
|
|
|
34
389
|
|
|
35
390
|
### Bug Fixes
|
|
36
391
|
|
|
37
|
-
* query params force coercion ([dd6aa87](https://github.com/
|
|
392
|
+
* query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
|
|
38
393
|
|
|
39
394
|
|
|
40
395
|
### Dependencies
|
|
@@ -45,12 +400,12 @@
|
|
|
45
400
|
* devDependencies
|
|
46
401
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
47
402
|
|
|
48
|
-
## [0.0.2-next.10](https://github.com/
|
|
403
|
+
## [0.0.2-next.10](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.9...entity-storage-service-v0.0.2-next.10) (2025-10-09)
|
|
49
404
|
|
|
50
405
|
|
|
51
406
|
### Features
|
|
52
407
|
|
|
53
|
-
* add validate-locales ([e66ef0d](https://github.com/
|
|
408
|
+
* add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
|
|
54
409
|
|
|
55
410
|
|
|
56
411
|
### Dependencies
|
|
@@ -61,7 +416,7 @@
|
|
|
61
416
|
* devDependencies
|
|
62
417
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
63
418
|
|
|
64
|
-
## [0.0.2-next.9](https://github.com/
|
|
419
|
+
## [0.0.2-next.9](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.8...entity-storage-service-v0.0.2-next.9) (2025-10-02)
|
|
65
420
|
|
|
66
421
|
|
|
67
422
|
### Miscellaneous Chores
|
|
@@ -77,12 +432,12 @@
|
|
|
77
432
|
* devDependencies
|
|
78
433
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
79
434
|
|
|
80
|
-
## [0.0.2-next.8](https://github.com/
|
|
435
|
+
## [0.0.2-next.8](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.7...entity-storage-service-v0.0.2-next.8) (2025-08-29)
|
|
81
436
|
|
|
82
437
|
|
|
83
438
|
### Features
|
|
84
439
|
|
|
85
|
-
* eslint migration to flat config ([f033b64](https://github.com/
|
|
440
|
+
* eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
|
|
86
441
|
|
|
87
442
|
|
|
88
443
|
### Dependencies
|
|
@@ -93,7 +448,7 @@
|
|
|
93
448
|
* devDependencies
|
|
94
449
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
95
450
|
|
|
96
|
-
## [0.0.2-next.7](https://github.com/
|
|
451
|
+
## [0.0.2-next.7](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.6...entity-storage-service-v0.0.2-next.7) (2025-08-20)
|
|
97
452
|
|
|
98
453
|
|
|
99
454
|
### Miscellaneous Chores
|
|
@@ -109,12 +464,12 @@
|
|
|
109
464
|
* devDependencies
|
|
110
465
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
111
466
|
|
|
112
|
-
## [0.0.2-next.6](https://github.com/
|
|
467
|
+
## [0.0.2-next.6](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.5...entity-storage-service-v0.0.2-next.6) (2025-08-19)
|
|
113
468
|
|
|
114
469
|
|
|
115
470
|
### Features
|
|
116
471
|
|
|
117
|
-
* update framework core ([b59a380](https://github.com/
|
|
472
|
+
* update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
|
|
118
473
|
|
|
119
474
|
|
|
120
475
|
### Dependencies
|
|
@@ -125,7 +480,7 @@
|
|
|
125
480
|
* devDependencies
|
|
126
481
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
127
482
|
|
|
128
|
-
## [0.0.2-next.5](https://github.com/
|
|
483
|
+
## [0.0.2-next.5](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.4...entity-storage-service-v0.0.2-next.5) (2025-08-11)
|
|
129
484
|
|
|
130
485
|
|
|
131
486
|
### Miscellaneous Chores
|
|
@@ -141,7 +496,7 @@
|
|
|
141
496
|
* devDependencies
|
|
142
497
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
143
498
|
|
|
144
|
-
## [0.0.2-next.4](https://github.com/
|
|
499
|
+
## [0.0.2-next.4](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.3...entity-storage-service-v0.0.2-next.4) (2025-08-08)
|
|
145
500
|
|
|
146
501
|
|
|
147
502
|
### Miscellaneous Chores
|
|
@@ -157,7 +512,7 @@
|
|
|
157
512
|
* devDependencies
|
|
158
513
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
159
514
|
|
|
160
|
-
## [0.0.2-next.3](https://github.com/
|
|
515
|
+
## [0.0.2-next.3](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.2...entity-storage-service-v0.0.2-next.3) (2025-07-25)
|
|
161
516
|
|
|
162
517
|
|
|
163
518
|
### Miscellaneous Chores
|
|
@@ -173,13 +528,13 @@
|
|
|
173
528
|
* devDependencies
|
|
174
529
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
175
530
|
|
|
176
|
-
## [0.0.2-next.2](https://github.com/
|
|
531
|
+
## [0.0.2-next.2](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.1...entity-storage-service-v0.0.2-next.2) (2025-07-24)
|
|
177
532
|
|
|
178
533
|
|
|
179
534
|
### Features
|
|
180
535
|
|
|
181
|
-
* remove includeNodeIdentity flag ([d88d1d0](https://github.com/
|
|
182
|
-
* synchronised storage ([#44](https://github.com/
|
|
536
|
+
* remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
|
|
537
|
+
* synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
|
|
183
538
|
|
|
184
539
|
|
|
185
540
|
### Dependencies
|
|
@@ -190,19 +545,19 @@
|
|
|
190
545
|
* devDependencies
|
|
191
546
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
192
547
|
|
|
193
|
-
## [0.0.2-next.1](https://github.com/
|
|
548
|
+
## [0.0.2-next.1](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.2-next.0...entity-storage-service-v0.0.2-next.1) (2025-07-17)
|
|
194
549
|
|
|
195
550
|
|
|
196
551
|
### Features
|
|
197
552
|
|
|
198
|
-
* add production release automation ([1eb4c8e](https://github.com/
|
|
199
|
-
* update dependencies ([7ccc0c4](https://github.com/
|
|
200
|
-
* use shared store mechanism ([#34](https://github.com/
|
|
553
|
+
* add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
|
|
554
|
+
* update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
|
|
555
|
+
* use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
|
|
201
556
|
|
|
202
557
|
|
|
203
558
|
### Bug Fixes
|
|
204
559
|
|
|
205
|
-
* query params force coercion ([dd6aa87](https://github.com/
|
|
560
|
+
* query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
|
|
206
561
|
|
|
207
562
|
|
|
208
563
|
### Dependencies
|
|
@@ -218,15 +573,15 @@
|
|
|
218
573
|
|
|
219
574
|
### Features
|
|
220
575
|
|
|
221
|
-
* add production release automation ([1eb4c8e](https://github.com/
|
|
222
|
-
* release to production ([a309051](https://github.com/
|
|
223
|
-
* update dependencies ([7ccc0c4](https://github.com/
|
|
224
|
-
* use shared store mechanism ([#34](https://github.com/
|
|
576
|
+
* add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
|
|
577
|
+
* release to production ([a309051](https://github.com/iotaledger/twin-entity-storage/commit/a3090519adebf7943232b4df12e4c6bd5afe7eed))
|
|
578
|
+
* update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
|
|
579
|
+
* use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
|
|
225
580
|
|
|
226
581
|
|
|
227
582
|
### Bug Fixes
|
|
228
583
|
|
|
229
|
-
* query params force coercion ([dd6aa87](https://github.com/
|
|
584
|
+
* query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
|
|
230
585
|
|
|
231
586
|
|
|
232
587
|
### Dependencies
|
|
@@ -237,12 +592,12 @@
|
|
|
237
592
|
* devDependencies
|
|
238
593
|
* @twin.org/entity-storage-connector-memory bumped from ^0.0.0 to ^0.0.1
|
|
239
594
|
|
|
240
|
-
## [0.0.1-next.31](https://github.com/
|
|
595
|
+
## [0.0.1-next.31](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.1-next.30...entity-storage-service-v0.0.1-next.31) (2025-06-20)
|
|
241
596
|
|
|
242
597
|
|
|
243
598
|
### Bug Fixes
|
|
244
599
|
|
|
245
|
-
* query params force coercion ([dd6aa87](https://github.com/
|
|
600
|
+
* query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
|
|
246
601
|
|
|
247
602
|
|
|
248
603
|
### Dependencies
|
|
@@ -253,12 +608,12 @@
|
|
|
253
608
|
* devDependencies
|
|
254
609
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.30 to 0.0.1-next.31
|
|
255
610
|
|
|
256
|
-
## [0.0.1-next.30](https://github.com/
|
|
611
|
+
## [0.0.1-next.30](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.1-next.29...entity-storage-service-v0.0.1-next.30) (2025-06-12)
|
|
257
612
|
|
|
258
613
|
|
|
259
614
|
### Features
|
|
260
615
|
|
|
261
|
-
* update dependencies ([7ccc0c4](https://github.com/
|
|
616
|
+
* update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
|
|
262
617
|
|
|
263
618
|
|
|
264
619
|
### Dependencies
|
|
@@ -269,12 +624,12 @@
|
|
|
269
624
|
* devDependencies
|
|
270
625
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.29 to 0.0.1-next.30
|
|
271
626
|
|
|
272
|
-
## [0.0.1-next.29](https://github.com/
|
|
627
|
+
## [0.0.1-next.29](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.1-next.28...entity-storage-service-v0.0.1-next.29) (2025-04-17)
|
|
273
628
|
|
|
274
629
|
|
|
275
630
|
### Features
|
|
276
631
|
|
|
277
|
-
* use shared store mechanism ([#34](https://github.com/
|
|
632
|
+
* use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
|
|
278
633
|
|
|
279
634
|
|
|
280
635
|
### Dependencies
|
|
@@ -285,7 +640,7 @@
|
|
|
285
640
|
* devDependencies
|
|
286
641
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.28 to 0.0.1-next.29
|
|
287
642
|
|
|
288
|
-
## [0.0.1-next.28](https://github.com/
|
|
643
|
+
## [0.0.1-next.28](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.1-next.27...entity-storage-service-v0.0.1-next.28) (2025-04-09)
|
|
289
644
|
|
|
290
645
|
|
|
291
646
|
### Miscellaneous Chores
|
|
@@ -301,7 +656,7 @@
|
|
|
301
656
|
* devDependencies
|
|
302
657
|
* @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.27 to 0.0.1-next.28
|
|
303
658
|
|
|
304
|
-
## [0.0.1-next.27](https://github.com/
|
|
659
|
+
## [0.0.1-next.27](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-service-v0.0.1-next.26...entity-storage-service-v0.0.1-next.27) (2025-03-28)
|
|
305
660
|
|
|
306
661
|
|
|
307
662
|
### Miscellaneous Chores
|