@twin.org/entity-storage-service 0.0.2-next.9 → 0.0.3-next.10

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.
Files changed (39) hide show
  1. package/README.md +2 -2
  2. package/dist/es/entityStorageRoutes.js +399 -0
  3. package/dist/es/entityStorageRoutes.js.map +1 -0
  4. package/dist/es/entityStorageService.js +113 -0
  5. package/dist/es/entityStorageService.js.map +1 -0
  6. package/dist/es/index.js +9 -0
  7. package/dist/es/index.js.map +1 -0
  8. package/dist/es/models/IEntityStorageRoutesExamples.js +2 -0
  9. package/dist/es/models/IEntityStorageRoutesExamples.js.map +1 -0
  10. package/dist/es/models/IEntityStorageServiceConfig.js +4 -0
  11. package/dist/es/models/IEntityStorageServiceConfig.js.map +1 -0
  12. package/dist/es/models/IEntityStorageServiceConstructorOptions.js +2 -0
  13. package/dist/es/models/IEntityStorageServiceConstructorOptions.js.map +1 -0
  14. package/dist/es/restEntryPoints.js +15 -0
  15. package/dist/es/restEntryPoints.js.map +1 -0
  16. package/dist/types/entityStorageRoutes.d.ts +34 -2
  17. package/dist/types/entityStorageService.d.ts +35 -12
  18. package/dist/types/index.d.ts +6 -6
  19. package/dist/types/models/IEntityStorageRoutesExamples.d.ts +8 -1
  20. package/dist/types/models/IEntityStorageServiceConfig.d.ts +5 -0
  21. package/dist/types/models/IEntityStorageServiceConstructorOptions.d.ts +2 -2
  22. package/docs/changelog.md +220 -31
  23. package/docs/examples.md +77 -1
  24. package/docs/open-api/spec.json +441 -62
  25. package/docs/reference/classes/EntityStorageService.md +114 -36
  26. package/docs/reference/functions/entityStorageCount.md +31 -0
  27. package/docs/reference/functions/entityStorageEmpty.md +31 -0
  28. package/docs/reference/functions/entityStorageRemoveBatch.md +31 -0
  29. package/docs/reference/functions/entityStorageSetBatch.md +31 -0
  30. package/docs/reference/index.md +5 -1
  31. package/docs/reference/interfaces/IEntityStorageRoutesExamples.md +24 -8
  32. package/docs/reference/interfaces/IEntityStorageServiceConfig.md +3 -0
  33. package/docs/reference/interfaces/IEntityStorageServiceConstructorOptions.md +3 -3
  34. package/locales/en.json +1 -7
  35. package/package.json +13 -11
  36. package/dist/cjs/index.cjs +0 -421
  37. package/dist/esm/index.mjs +0 -412
  38. package/dist/types/models/IEntityStorageConfig.d.ts +0 -10
  39. package/docs/reference/interfaces/IEntityStorageConfig.md +0 -17
@@ -0,0 +1 @@
1
+ {"version":3,"file":"restEntryPoints.js","sourceRoot":"","sources":["../../src/restEntryPoints.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,+BAA+B,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAE9F;;;;GAIG;AACH,MAAM,CAAC,MAAM,eAAe,GAA2B;IACtD;QACC,IAAI,EAAE,gBAAgB;QACtB,gBAAgB,EAAE,gBAAgB;QAClC,IAAI,EAAE,iBAAiB;QACvB,cAAc,EAAE,+BAA+B;KAC/C;CACD,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IRestRouteEntryPoint } from \"@twin.org/api-models\";\nimport { generateRestRoutesEntityStorage, tagsEntityStorage } from \"./entityStorageRoutes.js\";\n\n/**\n * These are dummy entry points for the entity storage service.\n * In reality your application would create its own entry points based on the\n * entity storage schema objects it wants to store, using a custom defaultBaseRoute.\n */\nexport const restEntryPoints: IRestRouteEntryPoint[] = [\n\t{\n\t\tname: \"entity-storage\",\n\t\tdefaultBaseRoute: \"entity-storage\",\n\t\ttags: tagsEntityStorage,\n\t\tgenerateRoutes: generateRestRoutesEntityStorage\n\t}\n];\n"]}
@@ -1,6 +1,6 @@
1
1
  import { type IHttpRequestContext, type INoContentResponse, type IRestRoute, type ITag } from "@twin.org/api-models";
2
- import type { IEntityStorageGetRequest, IEntityStorageGetResponse, IEntityStorageListRequest, IEntityStorageListResponse, IEntityStorageRemoveRequest, IEntityStorageSetRequest } from "@twin.org/entity-storage-models";
3
- import type { IEntityStorageRoutesExamples } from "./models/IEntityStorageRoutesExamples";
2
+ import type { IEntityStorageCountRequest, IEntityStorageCountResponse, IEntityStorageEmptyRequest, IEntityStorageGetRequest, IEntityStorageGetResponse, IEntityStorageListRequest, IEntityStorageListResponse, IEntityStorageRemoveBatchRequest, IEntityStorageRemoveRequest, IEntityStorageSetBatchRequest, IEntityStorageSetRequest } from "@twin.org/entity-storage-models";
3
+ import type { IEntityStorageRoutesExamples } from "./models/IEntityStorageRoutesExamples.js";
4
4
  /**
5
5
  * The tag to associate with the routes.
6
6
  */
@@ -28,6 +28,22 @@ export declare function generateRestRoutesEntityStorage(baseRouteName: string, c
28
28
  * @returns The response object with additional http response properties.
29
29
  */
30
30
  export declare function entityStorageSet(httpRequestContext: IHttpRequestContext, componentName: string, request: IEntityStorageSetRequest): Promise<INoContentResponse>;
31
+ /**
32
+ * Set multiple entries in entity storage.
33
+ * @param httpRequestContext The request context for the API.
34
+ * @param componentName The name of the component to use in the routes.
35
+ * @param request The request.
36
+ * @returns The response object with additional http response properties.
37
+ */
38
+ export declare function entityStorageSetBatch(httpRequestContext: IHttpRequestContext, componentName: string, request: IEntityStorageSetBatchRequest): Promise<INoContentResponse>;
39
+ /**
40
+ * Remove all entries from entity storage.
41
+ * @param httpRequestContext The request context for the API.
42
+ * @param componentName The name of the component to use in the routes.
43
+ * @param request The request.
44
+ * @returns The response object with additional http response properties.
45
+ */
46
+ export declare function entityStorageEmpty(httpRequestContext: IHttpRequestContext, componentName: string, request: IEntityStorageEmptyRequest): Promise<INoContentResponse>;
31
47
  /**
32
48
  * Get the entry from entity storage.
33
49
  * @param httpRequestContext The request context for the API.
@@ -52,3 +68,19 @@ export declare function entityStorageRemove(httpRequestContext: IHttpRequestCont
52
68
  * @returns The response object with additional http response properties.
53
69
  */
54
70
  export declare function entityStorageList(httpRequestContext: IHttpRequestContext, componentName: string, request: IEntityStorageListRequest): Promise<IEntityStorageListResponse>;
71
+ /**
72
+ * Count the entries in entity storage.
73
+ * @param httpRequestContext The request context for the API.
74
+ * @param componentName The name of the component to use in the routes.
75
+ * @param request The request.
76
+ * @returns The response object with additional http response properties.
77
+ */
78
+ export declare function entityStorageCount(httpRequestContext: IHttpRequestContext, componentName: string, request: IEntityStorageCountRequest): Promise<IEntityStorageCountResponse>;
79
+ /**
80
+ * Remove multiple entries from entity storage by id.
81
+ * @param httpRequestContext The request context for the API.
82
+ * @param componentName The name of the component to use in the routes.
83
+ * @param request The request.
84
+ * @returns The response object with additional http response properties.
85
+ */
86
+ export declare function entityStorageRemoveBatch(httpRequestContext: IHttpRequestContext, componentName: string, request: IEntityStorageRemoveBatchRequest): Promise<INoContentResponse>;
@@ -1,6 +1,6 @@
1
1
  import { type EntityCondition, SortDirection } from "@twin.org/entity";
2
2
  import { type IEntityStorageComponent } from "@twin.org/entity-storage-models";
3
- import type { IEntityStorageServiceConstructorOptions } from "./models/IEntityStorageServiceConstructorOptions";
3
+ import type { IEntityStorageServiceConstructorOptions } from "./models/IEntityStorageServiceConstructorOptions.js";
4
4
  /**
5
5
  * Class for performing entity service operations.
6
6
  */
@@ -8,47 +8,70 @@ export declare class EntityStorageService<T = any> implements IEntityStorageComp
8
8
  /**
9
9
  * Runtime name for the class.
10
10
  */
11
- readonly CLASS_NAME: string;
11
+ static readonly CLASS_NAME: string;
12
12
  /**
13
13
  * Create a new instance of EntityStorageService.
14
14
  * @param options The dependencies for the entity storage service.
15
15
  */
16
16
  constructor(options: IEntityStorageServiceConstructorOptions);
17
+ /**
18
+ * Returns the class name of the component.
19
+ * @returns The class name of the component.
20
+ */
21
+ className(): string;
17
22
  /**
18
23
  * Set an entity.
19
24
  * @param entity The entity to set.
20
- * @param userIdentity The user identity to use with storage operations.
21
25
  * @returns The id of the entity.
22
26
  */
23
- set(entity: T, userIdentity?: string): Promise<void>;
27
+ set(entity: T): Promise<void>;
28
+ /**
29
+ * Set multiple entities in a batch.
30
+ * @param entities The entities to set.
31
+ * @returns Nothing.
32
+ */
33
+ setBatch(entities: T[]): Promise<void>;
24
34
  /**
25
35
  * Get an entity.
26
36
  * @param id The id of the entity to get, or the index value if secondaryIndex is set.
27
37
  * @param secondaryIndex Get the item using a secondary index.
28
- * @param userIdentity The user identity to use with storage operations.
29
38
  * @returns The object if it can be found or undefined.
30
39
  */
31
- get(id: string, secondaryIndex?: keyof T, userIdentity?: string): Promise<T | undefined>;
40
+ get(id: string, secondaryIndex?: keyof T): Promise<T | undefined>;
32
41
  /**
33
42
  * Remove the entity.
34
43
  * @param id The id of the entity to remove.
35
- * @param userIdentity The user identity to use with storage operations.
36
44
  * @returns Nothing.
37
45
  */
38
- remove(id: string, userIdentity?: string): Promise<void>;
46
+ remove(id: string): Promise<void>;
47
+ /**
48
+ * Remove multiple entities by id.
49
+ * @param ids The ids of the entities to remove.
50
+ * @returns Nothing.
51
+ */
52
+ removeBatch(ids: string[]): Promise<void>;
53
+ /**
54
+ * Remove all entities from the storage.
55
+ * @returns Nothing.
56
+ */
57
+ empty(): Promise<void>;
58
+ /**
59
+ * Count all the entities which match the conditions.
60
+ * @returns The total count of entities in the storage.
61
+ */
62
+ count(): Promise<number>;
39
63
  /**
40
64
  * Query all the entities which match the conditions.
41
65
  * @param conditions The conditions to match for the entities.
42
66
  * @param orderBy The order for the results.
43
67
  * @param orderByDirection The direction for the order, defaults to ascending.
44
68
  * @param properties The optional properties to return, defaults to all.
45
- * @param cursor The cursor to request the next page of entities.
46
- * @param pageSize The suggested number of entities to return in each chunk, in some scenarios can return a different amount.
47
- * @param userIdentity The user identity to use with storage operations.
69
+ * @param cursor The cursor to request the next chunk of entities.
70
+ * @param limit The suggested number of entities to return in each chunk, in some scenarios can return a different amount.
48
71
  * @returns All the entities for the storage matching the conditions,
49
72
  * and a cursor which can be used to request more entities.
50
73
  */
51
- query(conditions?: EntityCondition<T>, orderBy?: keyof T, orderByDirection?: SortDirection, properties?: (keyof T)[], cursor?: string, pageSize?: number, userIdentity?: string): Promise<{
74
+ query(conditions?: EntityCondition<T>, orderBy?: keyof T, orderByDirection?: SortDirection, properties?: (keyof T)[], cursor?: string, limit?: number): Promise<{
52
75
  /**
53
76
  * The entities, which can be partial if a limited keys list was provided.
54
77
  */
@@ -1,6 +1,6 @@
1
- export * from "./entityStorageRoutes";
2
- export * from "./entityStorageService";
3
- export * from "./models/IEntityStorageConfig";
4
- export * from "./models/IEntityStorageRoutesExamples";
5
- export * from "./models/IEntityStorageServiceConstructorOptions";
6
- export * from "./restEntryPoints";
1
+ export * from "./entityStorageRoutes.js";
2
+ export * from "./entityStorageService.js";
3
+ export * from "./models/IEntityStorageServiceConfig.js";
4
+ export * from "./models/IEntityStorageRoutesExamples.js";
5
+ export * from "./models/IEntityStorageServiceConstructorOptions.js";
6
+ export * from "./restEntryPoints.js";
@@ -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
  }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Configuration for the entity storage service.
3
+ */
4
+ export interface IEntityStorageServiceConfig {
5
+ }
@@ -1,4 +1,4 @@
1
- import type { IEntityStorageConfig } from "./IEntityStorageConfig";
1
+ import type { IEntityStorageServiceConfig } from "./IEntityStorageServiceConfig.js";
2
2
  /**
3
3
  * Options for the Entity Storage Service constructor.
4
4
  */
@@ -10,5 +10,5 @@ export interface IEntityStorageServiceConstructorOptions {
10
10
  /**
11
11
  * The configuration for the service.
12
12
  */
13
- config?: IEntityStorageConfig;
13
+ config?: IEntityStorageServiceConfig;
14
14
  }
package/docs/changelog.md CHANGED
@@ -1,6 +1,195 @@
1
- # @twin.org/entity-storage-service - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.2-next.9](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.8...entity-storage-service-v0.0.2-next.9) (2025-10-02)
3
+ ## [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)
4
+
5
+
6
+ ### Features
7
+
8
+ * entity storage enhancements ([#86](https://github.com/iotaledger/twin-entity-storage/issues/86)) ([1279af4](https://github.com/iotaledger/twin-entity-storage/commit/1279af42615c6497bb06539842cee44842dd1f75))
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.9 to 0.0.3-next.10
16
+ * devDependencies
17
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.9 to 0.0.3-next.10
18
+
19
+ ## [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)
20
+
21
+
22
+ ### Miscellaneous Chores
23
+
24
+ * **entity-storage-service:** Synchronize repo versions
25
+
26
+
27
+ ### Dependencies
28
+
29
+ * The following workspace dependencies were updated
30
+ * dependencies
31
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.8 to 0.0.3-next.9
32
+ * devDependencies
33
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.8 to 0.0.3-next.9
34
+
35
+ ## [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)
36
+
37
+
38
+ ### Miscellaneous Chores
39
+
40
+ * **entity-storage-service:** Synchronize repo versions
41
+
42
+
43
+ ### Dependencies
44
+
45
+ * The following workspace dependencies were updated
46
+ * dependencies
47
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.7 to 0.0.3-next.8
48
+ * devDependencies
49
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.7 to 0.0.3-next.8
50
+
51
+ ## [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)
52
+
53
+
54
+ ### Miscellaneous Chores
55
+
56
+ * **entity-storage-service:** Synchronize repo versions
57
+
58
+
59
+ ### Dependencies
60
+
61
+ * The following workspace dependencies were updated
62
+ * dependencies
63
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.6 to 0.0.3-next.7
64
+ * devDependencies
65
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.6 to 0.0.3-next.7
66
+
67
+ ## [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)
68
+
69
+
70
+ ### Miscellaneous Chores
71
+
72
+ * **entity-storage-service:** Synchronize repo versions
73
+
74
+
75
+ ### Dependencies
76
+
77
+ * The following workspace dependencies were updated
78
+ * dependencies
79
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.5 to 0.0.3-next.6
80
+ * devDependencies
81
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.5 to 0.0.3-next.6
82
+
83
+ ## [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)
84
+
85
+
86
+ ### Miscellaneous Chores
87
+
88
+ * **entity-storage-service:** Synchronize repo versions
89
+
90
+
91
+ ### Dependencies
92
+
93
+ * The following workspace dependencies were updated
94
+ * dependencies
95
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.4 to 0.0.3-next.5
96
+ * devDependencies
97
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.4 to 0.0.3-next.5
98
+
99
+ ## [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)
100
+
101
+
102
+ ### Miscellaneous Chores
103
+
104
+ * **entity-storage-service:** Synchronize repo versions
105
+
106
+
107
+ ### Dependencies
108
+
109
+ * The following workspace dependencies were updated
110
+ * dependencies
111
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.3 to 0.0.3-next.4
112
+ * devDependencies
113
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.3 to 0.0.3-next.4
114
+
115
+ ## [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)
116
+
117
+
118
+ ### Miscellaneous Chores
119
+
120
+ * **entity-storage-service:** Synchronize repo versions
121
+
122
+
123
+ ### Dependencies
124
+
125
+ * The following workspace dependencies were updated
126
+ * dependencies
127
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.2 to 0.0.3-next.3
128
+ * devDependencies
129
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.2 to 0.0.3-next.3
130
+
131
+ ## [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)
132
+
133
+
134
+ ### Bug Fixes
135
+
136
+ * api docs ([4228736](https://github.com/iotaledger/twin-entity-storage/commit/4228736ebc8be212f81b3ccc70b56991d5d95032))
137
+
138
+
139
+ ### Dependencies
140
+
141
+ * The following workspace dependencies were updated
142
+ * dependencies
143
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.1 to 0.0.3-next.2
144
+ * devDependencies
145
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.1 to 0.0.3-next.2
146
+
147
+ ## [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)
148
+
149
+
150
+ ### Features
151
+
152
+ * add context id features ([#55](https://github.com/iotaledger/twin-entity-storage/issues/55)) ([99c15a2](https://github.com/iotaledger/twin-entity-storage/commit/99c15a257539b61d9da63649ce573ebf47699fc9))
153
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
154
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
155
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
156
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
157
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
158
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
159
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
160
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
161
+
162
+
163
+ ### Bug Fixes
164
+
165
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
166
+
167
+
168
+ ### Dependencies
169
+
170
+ * The following workspace dependencies were updated
171
+ * dependencies
172
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.0 to 0.0.3-next.1
173
+ * devDependencies
174
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.0 to 0.0.3-next.1
175
+
176
+ ## [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)
177
+
178
+
179
+ ### Features
180
+
181
+ * add validate-locales ([e66ef0d](https://github.com/iotaledger/twin-entity-storage/commit/e66ef0de26ca2f82b3fe89bb5c7a15a0978a9644))
182
+
183
+
184
+ ### Dependencies
185
+
186
+ * The following workspace dependencies were updated
187
+ * dependencies
188
+ * @twin.org/entity-storage-models bumped from 0.0.2-next.9 to 0.0.2-next.10
189
+ * devDependencies
190
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.9 to 0.0.2-next.10
191
+
192
+ ## [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)
4
193
 
5
194
 
6
195
  ### Miscellaneous Chores
@@ -16,12 +205,12 @@
16
205
  * devDependencies
17
206
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.8 to 0.0.2-next.9
18
207
 
19
- ## [0.0.2-next.8](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.7...entity-storage-service-v0.0.2-next.8) (2025-08-29)
208
+ ## [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)
20
209
 
21
210
 
22
211
  ### Features
23
212
 
24
- * eslint migration to flat config ([f033b64](https://github.com/twinfoundation/entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
213
+ * eslint migration to flat config ([f033b64](https://github.com/iotaledger/twin-entity-storage/commit/f033b64984c0e6a8129d929c9dd816dcc1b8dab0))
25
214
 
26
215
 
27
216
  ### Dependencies
@@ -32,7 +221,7 @@
32
221
  * devDependencies
33
222
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.7 to 0.0.2-next.8
34
223
 
35
- ## [0.0.2-next.7](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.6...entity-storage-service-v0.0.2-next.7) (2025-08-20)
224
+ ## [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)
36
225
 
37
226
 
38
227
  ### Miscellaneous Chores
@@ -48,12 +237,12 @@
48
237
  * devDependencies
49
238
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.6 to 0.0.2-next.7
50
239
 
51
- ## [0.0.2-next.6](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.5...entity-storage-service-v0.0.2-next.6) (2025-08-19)
240
+ ## [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)
52
241
 
53
242
 
54
243
  ### Features
55
244
 
56
- * update framework core ([b59a380](https://github.com/twinfoundation/entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
245
+ * update framework core ([b59a380](https://github.com/iotaledger/twin-entity-storage/commit/b59a380bb7fba2b43610f69074dcdee24a4737da))
57
246
 
58
247
 
59
248
  ### Dependencies
@@ -64,7 +253,7 @@
64
253
  * devDependencies
65
254
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.5 to 0.0.2-next.6
66
255
 
67
- ## [0.0.2-next.5](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.4...entity-storage-service-v0.0.2-next.5) (2025-08-11)
256
+ ## [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)
68
257
 
69
258
 
70
259
  ### Miscellaneous Chores
@@ -80,7 +269,7 @@
80
269
  * devDependencies
81
270
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.4 to 0.0.2-next.5
82
271
 
83
- ## [0.0.2-next.4](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.3...entity-storage-service-v0.0.2-next.4) (2025-08-08)
272
+ ## [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)
84
273
 
85
274
 
86
275
  ### Miscellaneous Chores
@@ -96,7 +285,7 @@
96
285
  * devDependencies
97
286
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.3 to 0.0.2-next.4
98
287
 
99
- ## [0.0.2-next.3](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.2...entity-storage-service-v0.0.2-next.3) (2025-07-25)
288
+ ## [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)
100
289
 
101
290
 
102
291
  ### Miscellaneous Chores
@@ -112,13 +301,13 @@
112
301
  * devDependencies
113
302
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.2 to 0.0.2-next.3
114
303
 
115
- ## [0.0.2-next.2](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.1...entity-storage-service-v0.0.2-next.2) (2025-07-24)
304
+ ## [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)
116
305
 
117
306
 
118
307
  ### Features
119
308
 
120
- * remove includeNodeIdentity flag ([d88d1d0](https://github.com/twinfoundation/entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
121
- * synchronised storage ([#44](https://github.com/twinfoundation/entity-storage/issues/44)) ([94e10e2](https://github.com/twinfoundation/entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
309
+ * remove includeNodeIdentity flag ([d88d1d0](https://github.com/iotaledger/twin-entity-storage/commit/d88d1d0694419b795dc860e0b712a0051c9a1c9e))
310
+ * synchronised storage ([#44](https://github.com/iotaledger/twin-entity-storage/issues/44)) ([94e10e2](https://github.com/iotaledger/twin-entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
122
311
 
123
312
 
124
313
  ### Dependencies
@@ -129,19 +318,19 @@
129
318
  * devDependencies
130
319
  * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.1 to 0.0.2-next.2
131
320
 
132
- ## [0.0.2-next.1](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.2-next.0...entity-storage-service-v0.0.2-next.1) (2025-07-17)
321
+ ## [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)
133
322
 
134
323
 
135
324
  ### Features
136
325
 
137
- * add production release automation ([1eb4c8e](https://github.com/twinfoundation/entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
138
- * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
139
- * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
326
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
327
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
328
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
140
329
 
141
330
 
142
331
  ### Bug Fixes
143
332
 
144
- * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
333
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
145
334
 
146
335
 
147
336
  ### Dependencies
@@ -157,15 +346,15 @@
157
346
 
158
347
  ### Features
159
348
 
160
- * add production release automation ([1eb4c8e](https://github.com/twinfoundation/entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
161
- * release to production ([a309051](https://github.com/twinfoundation/entity-storage/commit/a3090519adebf7943232b4df12e4c6bd5afe7eed))
162
- * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
163
- * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
349
+ * add production release automation ([1eb4c8e](https://github.com/iotaledger/twin-entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
350
+ * release to production ([a309051](https://github.com/iotaledger/twin-entity-storage/commit/a3090519adebf7943232b4df12e4c6bd5afe7eed))
351
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
352
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
164
353
 
165
354
 
166
355
  ### Bug Fixes
167
356
 
168
- * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
357
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
169
358
 
170
359
 
171
360
  ### Dependencies
@@ -176,12 +365,12 @@
176
365
  * devDependencies
177
366
  * @twin.org/entity-storage-connector-memory bumped from ^0.0.0 to ^0.0.1
178
367
 
179
- ## [0.0.1-next.31](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.1-next.30...entity-storage-service-v0.0.1-next.31) (2025-06-20)
368
+ ## [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)
180
369
 
181
370
 
182
371
  ### Bug Fixes
183
372
 
184
- * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
373
+ * query params force coercion ([dd6aa87](https://github.com/iotaledger/twin-entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
185
374
 
186
375
 
187
376
  ### Dependencies
@@ -192,12 +381,12 @@
192
381
  * devDependencies
193
382
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.30 to 0.0.1-next.31
194
383
 
195
- ## [0.0.1-next.30](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.1-next.29...entity-storage-service-v0.0.1-next.30) (2025-06-12)
384
+ ## [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)
196
385
 
197
386
 
198
387
  ### Features
199
388
 
200
- * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
389
+ * update dependencies ([7ccc0c4](https://github.com/iotaledger/twin-entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
201
390
 
202
391
 
203
392
  ### Dependencies
@@ -208,12 +397,12 @@
208
397
  * devDependencies
209
398
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.29 to 0.0.1-next.30
210
399
 
211
- ## [0.0.1-next.29](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.1-next.28...entity-storage-service-v0.0.1-next.29) (2025-04-17)
400
+ ## [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)
212
401
 
213
402
 
214
403
  ### Features
215
404
 
216
- * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
405
+ * use shared store mechanism ([#34](https://github.com/iotaledger/twin-entity-storage/issues/34)) ([68b6b71](https://github.com/iotaledger/twin-entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
217
406
 
218
407
 
219
408
  ### Dependencies
@@ -224,7 +413,7 @@
224
413
  * devDependencies
225
414
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.28 to 0.0.1-next.29
226
415
 
227
- ## [0.0.1-next.28](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.1-next.27...entity-storage-service-v0.0.1-next.28) (2025-04-09)
416
+ ## [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)
228
417
 
229
418
 
230
419
  ### Miscellaneous Chores
@@ -240,7 +429,7 @@
240
429
  * devDependencies
241
430
  * @twin.org/entity-storage-connector-memory bumped from 0.0.1-next.27 to 0.0.1-next.28
242
431
 
243
- ## [0.0.1-next.27](https://github.com/twinfoundation/entity-storage/compare/entity-storage-service-v0.0.1-next.26...entity-storage-service-v0.0.1-next.27) (2025-03-28)
432
+ ## [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)
244
433
 
245
434
 
246
435
  ### Miscellaneous Chores