@twin.org/auditable-item-graph-service 0.9.1 → 0.9.2

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.
@@ -45,7 +45,7 @@ export declare function auditableItemGraphChangesetList(httpRequestContext: IHtt
45
45
  */
46
46
  export declare function auditableItemGraphChangesetGet(httpRequestContext: IHttpRequestContext, componentName: string, request: IAuditableItemGraphChangesetGetRequest): Promise<IAuditableItemGraphChangesetGetResponse>;
47
47
  /**
48
- * Update the graph vertex (PUT full replacement of vertex state).
48
+ * Update the graph vertex (PUT - full replacement of vertex state).
49
49
  * @param httpRequestContext The request context for the API.
50
50
  * @param componentName The name of the component to use in the routes.
51
51
  * @param request The request.
@@ -53,7 +53,7 @@ export declare function auditableItemGraphChangesetGet(httpRequestContext: IHttp
53
53
  */
54
54
  export declare function auditableItemGraphUpdate(httpRequestContext: IHttpRequestContext, componentName: string, request: IAuditableItemGraphUpdateRequest): Promise<INoContentResponse>;
55
55
  /**
56
- * Partially update the graph vertex (PATCH optional scalars; list fields use `{ add, remove }`).
56
+ * Partially update the graph vertex (PATCH - optional scalars; list fields use `{ add, remove }`).
57
57
  * @param httpRequestContext The request context for the API.
58
58
  * @param componentName The name of the component to use in the routes.
59
59
  * @param request The request.
@@ -1,10 +1,11 @@
1
+ import { type HealthApplicationCallback, type IHealth, type IHealthProviderComponent } from "@twin.org/api-models";
1
2
  import { VerifyDepth, type IAuditableItemGraphChangeset, type IAuditableItemGraphChangesetList, type IAuditableItemGraphComponent, type IAuditableItemGraphPartialVertex, type IAuditableItemGraphVertex, type IAuditableItemGraphVertexList, type IAuditableItemGraphVertexVersionList } from "@twin.org/auditable-item-graph-models";
2
3
  import { type EntityCondition, SortDirection } from "@twin.org/entity";
3
4
  import type { IAuditableItemGraphServiceConstructorOptions } from "./models/IAuditableItemGraphServiceConstructorOptions.js";
4
5
  /**
5
6
  * Class for performing auditable item graph operations.
6
7
  */
7
- export declare class AuditableItemGraphService implements IAuditableItemGraphComponent {
8
+ export declare class AuditableItemGraphService implements IAuditableItemGraphComponent, IHealthProviderComponent {
8
9
  /**
9
10
  * Runtime name for the class.
10
11
  */
@@ -27,6 +28,13 @@ export declare class AuditableItemGraphService implements IAuditableItemGraphCom
27
28
  * @returns The class name of the component.
28
29
  */
29
30
  className(): string;
31
+ /**
32
+ * Runs a set/get/remove cycle against the vertex entity storage using the organisation identity
33
+ * from the current context.
34
+ * @param callback The callback to invoke when a deferred health result is ready.
35
+ * @returns The health status of the service.
36
+ */
37
+ healthApplication(callback: HealthApplicationCallback): Promise<IHealth[] | undefined>;
30
38
  /**
31
39
  * Register all AIG metrics with the telemetry component.
32
40
  * @returns A promise that resolves when all metrics have been registered.
@@ -43,14 +51,14 @@ export declare class AuditableItemGraphService implements IAuditableItemGraphCom
43
51
  */
44
52
  create(vertex: Omit<IAuditableItemGraphVertex, "id">): Promise<string>;
45
53
  /**
46
- * Update a graph vertex (PUT full replacement of vertex state).
54
+ * Update a graph vertex (PUT - full replacement of vertex state).
47
55
  * Concurrent updates for the same vertex are serialized via `Mutex` on the vertex id.
48
56
  * @param vertex The vertex to update.
49
57
  * @returns A promise that resolves when the vertex has been updated.
50
58
  */
51
59
  update(vertex: IAuditableItemGraphVertex): Promise<void>;
52
60
  /**
53
- * Partially update a graph vertex (PATCH explicit list patches; only defined properties applied).
61
+ * Partially update a graph vertex (PATCH - explicit list patches; only defined properties applied).
54
62
  * Serialized with `update` via `Mutex` on the same vertex id within this instance.
55
63
  * @param partial The partial vertex update.
56
64
  * @returns A promise that resolves when the partial update has been applied.
package/docs/changelog.md CHANGED
@@ -1,5 +1,90 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.2](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-service-v0.9.2...auditable-item-graph-service-v0.9.2) (2026-08-24)
4
+
5
+
6
+ ### Features
7
+
8
+ * release to production ([0ce06f7](https://github.com/iotaledger/twin-auditable-item-graph/commit/0ce06f7825aa72d04b7a2ffd8c98cb56290b9d16))
9
+ * release to production ([#110](https://github.com/iotaledger/twin-auditable-item-graph/issues/110)) ([3117da3](https://github.com/iotaledger/twin-auditable-item-graph/commit/3117da373b462d1c8dcb7e1416bcb223f2a28664))
10
+ * release to production ([#113](https://github.com/iotaledger/twin-auditable-item-graph/issues/113)) ([4efe407](https://github.com/iotaledger/twin-auditable-item-graph/commit/4efe40774803f01eb70043b8cfd607e8c050bc64))
11
+ * release to production ([#129](https://github.com/iotaledger/twin-auditable-item-graph/issues/129)) ([34417f9](https://github.com/iotaledger/twin-auditable-item-graph/commit/34417f9914b84379ea3df9017bc55cf770e938df))
12
+ * release to production ([#137](https://github.com/iotaledger/twin-auditable-item-graph/issues/137)) ([959187f](https://github.com/iotaledger/twin-auditable-item-graph/commit/959187f5dc6d7677edec9ce89d56735cefdebf50))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * tests ([3875814](https://github.com/iotaledger/twin-auditable-item-graph/commit/387581441464c41c0bffb7ca4f45200d05a7d91f))
18
+
19
+ ## [0.9.2-next.1](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-service-v0.9.2-next.0...auditable-item-graph-service-v0.9.2-next.1) (2026-08-07)
20
+
21
+
22
+ ### Features
23
+
24
+ * add context id features ([#30](https://github.com/iotaledger/twin-auditable-item-graph/issues/30)) ([a35d37c](https://github.com/iotaledger/twin-auditable-item-graph/commit/a35d37c0db62a240adde493965c0a9f7971fec45))
25
+ * add data types with fully qualified name ([93e1ee7](https://github.com/iotaledger/twin-auditable-item-graph/commit/93e1ee7c0f7bad81f003787f797f363864e201af))
26
+ * add event-driven telemetry metrics ([#63](https://github.com/iotaledger/twin-auditable-item-graph/issues/63)) ([8fe6cdd](https://github.com/iotaledger/twin-auditable-item-graph/commit/8fe6cdd0d56496402b766c151f002f475ddb8c0e))
27
+ * add health provider ([#132](https://github.com/iotaledger/twin-auditable-item-graph/issues/132)) ([5183025](https://github.com/iotaledger/twin-auditable-item-graph/commit/51830259fe6480cd56d1aeade0b1889f2c59f711))
28
+ * add unique flag for alias, and exact match option for id query ([33dbd19](https://github.com/iotaledger/twin-auditable-item-graph/commit/33dbd19cabd9fbfaba81032f1d1a6527584c3f5a))
29
+ * add validate-locales ([e76e6f6](https://github.com/iotaledger/twin-auditable-item-graph/commit/e76e6f6b3ec9c447a04315d353442e32233601d3))
30
+ * add versions ([#60](https://github.com/iotaledger/twin-auditable-item-graph/issues/60)) ([5c36f94](https://github.com/iotaledger/twin-auditable-item-graph/commit/5c36f94b1155c01dddbc8d62f3f65d599916c521))
31
+ * add vertex validation ([#54](https://github.com/iotaledger/twin-auditable-item-graph/issues/54)) ([d3ef124](https://github.com/iotaledger/twin-auditable-item-graph/commit/d3ef1241f60956dc296e22d063f188921255d68c))
32
+ * additional query conditions ([#100](https://github.com/iotaledger/twin-auditable-item-graph/issues/100)) ([4fc6b7a](https://github.com/iotaledger/twin-auditable-item-graph/commit/4fc6b7afd7a854806537954fcd334619304da49c))
33
+ * changeset endpoints ([#44](https://github.com/iotaledger/twin-auditable-item-graph/issues/44)) ([7c854de](https://github.com/iotaledger/twin-auditable-item-graph/commit/7c854de39b247d6f24cd94a04a9f99fa9edde51d))
34
+ * configurable timeout for mutex ([5178789](https://github.com/iotaledger/twin-auditable-item-graph/commit/5178789ba160bca95221ce26bf87d7bd8c0c8619))
35
+ * enhanced rest testing ([#119](https://github.com/iotaledger/twin-auditable-item-graph/issues/119)) ([11f5653](https://github.com/iotaledger/twin-auditable-item-graph/commit/11f5653d297066983b5787429a262eca6a6f3fa7))
36
+ * eslint migration to flat config ([1b42a3a](https://github.com/iotaledger/twin-auditable-item-graph/commit/1b42a3a27bd6e32d7816de406b92b6332472edf6))
37
+ * id optional in edge updates ([6b63fe3](https://github.com/iotaledger/twin-auditable-item-graph/commit/6b63fe34553104843ae15aa5066775f5872859e9))
38
+ * improve JSON schemas ([bec8dc1](https://github.com/iotaledger/twin-auditable-item-graph/commit/bec8dc1f270c6c9710623a192b984cf46f8a5613))
39
+ * improved versioning ([#66](https://github.com/iotaledger/twin-auditable-item-graph/issues/66)) ([1b497cd](https://github.com/iotaledger/twin-auditable-item-graph/commit/1b497cdc88eec9b6707b097283773e109baae3aa))
40
+ * mutex on remove proof operation ([d3697a0](https://github.com/iotaledger/twin-auditable-item-graph/commit/d3697a010997c2f9da1d13922a321be002ee27d3))
41
+ * only set dateModified after update ([#4](https://github.com/iotaledger/twin-auditable-item-graph/issues/4)) ([43ea6e5](https://github.com/iotaledger/twin-auditable-item-graph/commit/43ea6e5f2d0b9181a80f0bf2935db64b3263839a))
42
+ * organization identifiers ([#88](https://github.com/iotaledger/twin-auditable-item-graph/issues/88)) ([c58d35b](https://github.com/iotaledger/twin-auditable-item-graph/commit/c58d35bd5b878da0fa02862797c70b61e4f2a469))
43
+ * remove hosting component ([#91](https://github.com/iotaledger/twin-auditable-item-graph/issues/91)) ([d6180a8](https://github.com/iotaledger/twin-auditable-item-graph/commit/d6180a89a741314d81b44a9664aaff708c2d0ffa))
44
+ * remove unused namespace ([ff1a3b4](https://github.com/iotaledger/twin-auditable-item-graph/commit/ff1a3b4e414fe2ee311a03027456ee40fbb580d7))
45
+ * replace nextItem property with Link header ([#39](https://github.com/iotaledger/twin-auditable-item-graph/issues/39)) ([b29a333](https://github.com/iotaledger/twin-auditable-item-graph/commit/b29a333ca78ca2091e54e3e6f4355f84c350007d))
46
+ * rest enhancements ([1e51050](https://github.com/iotaledger/twin-auditable-item-graph/commit/1e51050af4c1a92f1f127054fe4c9da5e8cb591e))
47
+ * typescript 6 update ([2483c31](https://github.com/iotaledger/twin-auditable-item-graph/commit/2483c3171cff4c5ecedc83d958ab551291a4a487))
48
+ * update background task service ([e483ddb](https://github.com/iotaledger/twin-auditable-item-graph/commit/e483ddbc948f035334f92b8342248caa6abbe441))
49
+ * update contexts ([#35](https://github.com/iotaledger/twin-auditable-item-graph/issues/35)) ([cdf0989](https://github.com/iotaledger/twin-auditable-item-graph/commit/cdf0989fe4677a88b757e97e752b7d4c29013a7e))
50
+ * update contexts and namespaces ([#33](https://github.com/iotaledger/twin-auditable-item-graph/issues/33)) ([5dadb99](https://github.com/iotaledger/twin-auditable-item-graph/commit/5dadb99773d410aceacaba7ed92c1ccb8b46516b))
51
+ * update dependencies ([482c97e](https://github.com/iotaledger/twin-auditable-item-graph/commit/482c97e16109e504cb495084ef51e860a7f86669))
52
+ * update dependencies ([6986689](https://github.com/iotaledger/twin-auditable-item-graph/commit/698668957a1fcb7f85ce2f117914d5980043924f))
53
+ * update edges to use targetId instead of id ([6c5d0e3](https://github.com/iotaledger/twin-auditable-item-graph/commit/6c5d0e31b6e2ea74bfa2f3344e4be628e5f237af))
54
+ * update framework core ([88ad4e6](https://github.com/iotaledger/twin-auditable-item-graph/commit/88ad4e6421132c3c6c45579b078d982a26f16990))
55
+ * update immutable proof usage ([#73](https://github.com/iotaledger/twin-auditable-item-graph/issues/73)) ([a5181d1](https://github.com/iotaledger/twin-auditable-item-graph/commit/a5181d172cbc492c7cc964d22724cc10c46fc52e))
56
+ * update naming ([39210c4](https://github.com/iotaledger/twin-auditable-item-graph/commit/39210c45baddd3cd48805140a1c0049f3004653f))
57
+ * update schemas ([b00bcac](https://github.com/iotaledger/twin-auditable-item-graph/commit/b00bcac6551fa524e8871e1b573a712ed0f30943))
58
+ * use new hosting url for cursor links ([809cdc6](https://github.com/iotaledger/twin-auditable-item-graph/commit/809cdc623491bad91000d0b0f740e40dc019198d))
59
+ * use new nameof operators ([3921c4c](https://github.com/iotaledger/twin-auditable-item-graph/commit/3921c4c9ac53e42459e45f10d9e702afb2797a23))
60
+ * use shared store mechanism ([#10](https://github.com/iotaledger/twin-auditable-item-graph/issues/10)) ([da035e5](https://github.com/iotaledger/twin-auditable-item-graph/commit/da035e5eb8f157482b4eb2bdbc689c6c0647ff7d))
61
+ * use standard list json ld types ([8f53836](https://github.com/iotaledger/twin-auditable-item-graph/commit/8f53836d4c83a98d64d7f5fe0531bb9af09464ae))
62
+ * uuidv7 ([#46](https://github.com/iotaledger/twin-auditable-item-graph/issues/46)) ([d0179f8](https://github.com/iotaledger/twin-auditable-item-graph/commit/d0179f81290e0beae2f1c398a028aca6dd754023))
63
+
64
+
65
+ ### Bug Fixes
66
+
67
+ * aig concurrent resource regression tests ([#77](https://github.com/iotaledger/twin-auditable-item-graph/issues/77)) ([82b8725](https://github.com/iotaledger/twin-auditable-item-graph/commit/82b872585686e070dde0a0c8493ded6e40a7a1d9))
68
+ * context usage ([9c8f64d](https://github.com/iotaledger/twin-auditable-item-graph/commit/9c8f64d342e9fb40d3514b87fd547a824ce50676))
69
+ * gate immutable proof on vertex organizationIdentity in AIG ([#81](https://github.com/iotaledger/twin-auditable-item-graph/issues/81)) ([0e67b6f](https://github.com/iotaledger/twin-auditable-item-graph/commit/0e67b6fb3511ca903667e11da3bdbcecdad7b21d))
70
+ * implement removeProof on AuditableItemGraphRestClient and expose DELETE /:id/proof route ([#85](https://github.com/iotaledger/twin-auditable-item-graph/issues/85)) ([ed74458](https://github.com/iotaledger/twin-auditable-item-graph/commit/ed74458aff9bc8606b75657a7bff15af4884189e))
71
+ * incremental edge merge and per-vertex update queue ([#70](https://github.com/iotaledger/twin-auditable-item-graph/issues/70)) ([91eb51d](https://github.com/iotaledger/twin-auditable-item-graph/commit/91eb51d135d2e609eebce90de099670f08eb20ca))
72
+ * only include alias in index if not deleted ([#6](https://github.com/iotaledger/twin-auditable-item-graph/issues/6)) ([5da3c41](https://github.com/iotaledger/twin-auditable-item-graph/commit/5da3c419fafa2afefd34b1c570d103012b888a75))
73
+ * query fixed ordering ([#124](https://github.com/iotaledger/twin-auditable-item-graph/issues/124)) ([f28d46d](https://github.com/iotaledger/twin-auditable-item-graph/commit/f28d46dae9bd2706c0cb1562b992757b1f5012ec))
74
+ * query params force coercion ([2dd9afe](https://github.com/iotaledger/twin-auditable-item-graph/commit/2dd9afe9ec37e2a91c110317fe289f7495c187a0))
75
+ * query resource type property name ([b684b31](https://github.com/iotaledger/twin-auditable-item-graph/commit/b684b3108e1e16852ee319e47edd0e40d5a2fe99))
76
+ * support new compactArrays flag ([2809b2b](https://github.com/iotaledger/twin-auditable-item-graph/commit/2809b2b83a946a850ad8f87f390fc00265a3fe7d))
77
+ * update tests with new deterministic background tasks ([#8](https://github.com/iotaledger/twin-auditable-item-graph/issues/8)) ([a96721c](https://github.com/iotaledger/twin-auditable-item-graph/commit/a96721c28128781f9cbd983d013dcf4c5542158c))
78
+ * use async getStore in tests ([0a911c0](https://github.com/iotaledger/twin-auditable-item-graph/commit/0a911c0c2c8a92e89d284e8651c0ef44736dc396))
79
+ * use async getStore in tests ([8d2969b](https://github.com/iotaledger/twin-auditable-item-graph/commit/8d2969b45fdeef849456cfbf898c580b23ce676c))
80
+
81
+
82
+ ### Dependencies
83
+
84
+ * The following workspace dependencies were updated
85
+ * dependencies
86
+ * @twin.org/auditable-item-graph-models bumped from 0.9.2-next.0 to 0.9.2-next.1
87
+
3
88
  ## [0.9.1](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-service-v0.9.1...auditable-item-graph-service-v0.9.1) (2026-07-27)
4
89
 
5
90
 
@@ -709,7 +709,7 @@
709
709
  }
710
710
  ],
711
711
  "requestBody": {
712
- "description": "Update an auditable item graph vertex (PUT full replacement of vertex state).",
712
+ "description": "Update an auditable item graph vertex (PUT - full replacement of vertex state).",
713
713
  "required": true,
714
714
  "content": {
715
715
  "application/json": {
@@ -891,7 +891,7 @@
891
891
  }
892
892
  ],
893
893
  "requestBody": {
894
- "description": "Partially update an auditable item graph vertex (PATCH explicit list patches).",
894
+ "description": "Partially update an auditable item graph vertex (PATCH - explicit list patches).",
895
895
  "required": true,
896
896
  "content": {
897
897
  "application/json": {
@@ -5,6 +5,7 @@ Class for performing auditable item graph operations.
5
5
  ## Implements
6
6
 
7
7
  - `IAuditableItemGraphComponent`
8
+ - `IHealthProviderComponent`
8
9
 
9
10
  ## Constructors
10
11
 
@@ -70,6 +71,33 @@ The class name of the component.
70
71
 
71
72
  ***
72
73
 
74
+ ### healthApplication() {#healthapplication}
75
+
76
+ > **healthApplication**(`callback`): `Promise`\<`IHealth`[] \| `undefined`\>
77
+
78
+ Runs a set/get/remove cycle against the vertex entity storage using the organisation identity
79
+ from the current context.
80
+
81
+ #### Parameters
82
+
83
+ ##### callback
84
+
85
+ `HealthApplicationCallback`
86
+
87
+ The callback to invoke when a deferred health result is ready.
88
+
89
+ #### Returns
90
+
91
+ `Promise`\<`IHealth`[] \| `undefined`\>
92
+
93
+ The health status of the service.
94
+
95
+ #### Implementation of
96
+
97
+ `IHealthProviderComponent.healthApplication`
98
+
99
+ ***
100
+
73
101
  ### start() {#start}
74
102
 
75
103
  > **start**(): `Promise`\<`void`\>
@@ -118,7 +146,7 @@ The id of the new graph item.
118
146
 
119
147
  > **update**(`vertex`): `Promise`\<`void`\>
120
148
 
121
- Update a graph vertex (PUT full replacement of vertex state).
149
+ Update a graph vertex (PUT - full replacement of vertex state).
122
150
  Concurrent updates for the same vertex are serialized via `Mutex` on the vertex id.
123
151
 
124
152
  #### Parameters
@@ -145,7 +173,7 @@ A promise that resolves when the vertex has been updated.
145
173
 
146
174
  > **updatePartial**(`partial`): `Promise`\<`void`\>
147
175
 
148
- Partially update a graph vertex (PATCH explicit list patches; only defined properties applied).
176
+ Partially update a graph vertex (PATCH - explicit list patches; only defined properties applied).
149
177
  Serialized with `update` via `Mutex` on the same vertex id within this instance.
150
178
 
151
179
  #### Parameters
@@ -2,7 +2,7 @@
2
2
 
3
3
  > **auditableItemGraphUpdate**(`httpRequestContext`, `componentName`, `request`): `Promise`\<`INoContentResponse`\>
4
4
 
5
- Update the graph vertex (PUT full replacement of vertex state).
5
+ Update the graph vertex (PUT - full replacement of vertex state).
6
6
 
7
7
  ## Parameters
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  > **auditableItemGraphUpdatePartial**(`httpRequestContext`, `componentName`, `request`): `Promise`\<`INoContentResponse`\>
4
4
 
5
- Partially update the graph vertex (PATCH optional scalars; list fields use `{ add, remove }`).
5
+ Partially update the graph vertex (PATCH - optional scalars; list fields use `{ add, remove }`).
6
6
 
7
7
  ## Parameters
8
8
 
package/locales/en.json CHANGED
@@ -23,5 +23,11 @@
23
23
  }
24
24
  }
25
25
  },
26
- "auditableItemGraphService": {}
26
+ "auditableItemGraphService": {},
27
+ "health": {
28
+ "auditableItemGraphService": {
29
+ "healthDescription": "Auditable item graph service application health check",
30
+ "getVertexFailed": "Failed to complete the auditable item graph vertex storage health check"
31
+ }
32
+ }
27
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/auditable-item-graph-service",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Implements graph lifecycle operations and audited change tracking with API route definitions.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,21 +14,21 @@
14
14
  "node": ">=24.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/api-models": "^0.9.1",
18
- "@twin.org/auditable-item-graph-models": "^0.9.1",
19
- "@twin.org/context": "^0.9.1",
20
- "@twin.org/core": "^0.9.1",
21
- "@twin.org/crypto": "^0.9.1",
22
- "@twin.org/data-json-ld": "^0.9.1",
23
- "@twin.org/entity": "^0.9.1",
24
- "@twin.org/entity-storage-models": "^0.9.1",
25
- "@twin.org/event-bus-models": "^0.9.1",
26
- "@twin.org/immutable-proof-models": "^0.9.1",
27
- "@twin.org/nameof": "^0.9.1",
28
- "@twin.org/standards-schema-org": "^0.9.1",
29
- "@twin.org/standards-w3c-did": "^0.9.1",
30
- "@twin.org/telemetry-models": "^0.9.1",
31
- "@twin.org/web": "^0.9.1"
17
+ "@twin.org/api-models": "^0.9.2",
18
+ "@twin.org/auditable-item-graph-models": "^0.9.2",
19
+ "@twin.org/context": "^0.9.2",
20
+ "@twin.org/core": "^0.9.2",
21
+ "@twin.org/data-core": "^0.9.2",
22
+ "@twin.org/data-json-ld": "^0.9.2",
23
+ "@twin.org/entity": "^0.9.2",
24
+ "@twin.org/entity-storage-models": "^0.9.2",
25
+ "@twin.org/event-bus-models": "^0.9.2",
26
+ "@twin.org/immutable-proof-models": "^0.9.2",
27
+ "@twin.org/nameof": "^0.9.2",
28
+ "@twin.org/standards-schema-org": "^0.9.2",
29
+ "@twin.org/standards-w3c-did": "^0.9.2",
30
+ "@twin.org/telemetry-models": "^0.9.2",
31
+ "@twin.org/web": "^0.9.2"
32
32
  },
33
33
  "main": "./dist/es/index.js",
34
34
  "types": "./dist/types/index.d.ts",