@twin.org/auditable-item-stream-service 0.0.3-next.21 → 0.0.3-next.22

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/docs/changelog.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-auditable-item-stream/compare/auditable-item-stream-service-v0.0.3-next.21...auditable-item-stream-service-v0.0.3-next.22) (2026-06-18)
4
+
5
+
6
+ ### Features
7
+
8
+ * remove hosting component ([#84](https://github.com/iotaledger/twin-auditable-item-stream/issues/84)) ([148c1a7](https://github.com/iotaledger/twin-auditable-item-stream/commit/148c1a788a2104bb1b5a83f629d88175f495cd09))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * use async getStore in tests ([7bf0aab](https://github.com/iotaledger/twin-auditable-item-stream/commit/7bf0aab543cda544133dcae7e852d9752968ee4e))
14
+ * use async getStore in tests ([ff176b0](https://github.com/iotaledger/twin-auditable-item-stream/commit/ff176b04798da8909c5921ed101998028d082890))
15
+ * use async getStore in tests ([eb595e7](https://github.com/iotaledger/twin-auditable-item-stream/commit/eb595e72a348d4d030dba8378a0def3a6d5148dc))
16
+ * use async getStore in tests ([fb827d6](https://github.com/iotaledger/twin-auditable-item-stream/commit/fb827d658d8217714887f44f2d02811a8af6f4d6))
17
+
18
+
19
+ ### Dependencies
20
+
21
+ * The following workspace dependencies were updated
22
+ * dependencies
23
+ * @twin.org/auditable-item-stream-models bumped from 0.0.3-next.21 to 0.0.3-next.22
24
+
3
25
  ## [0.0.3-next.21](https://github.com/iotaledger/twin-auditable-item-stream/compare/auditable-item-stream-service-v0.0.3-next.20...auditable-item-stream-service-v0.0.3-next.21) (2026-06-11)
4
26
 
5
27
 
@@ -1433,7 +1433,7 @@
1433
1433
  "parameters": [
1434
1434
  {
1435
1435
  "name": "id",
1436
- "description": "The id of the stream to update the get in.",
1436
+ "description": "The id of the stream to get the entry from.",
1437
1437
  "in": "path",
1438
1438
  "required": true,
1439
1439
  "schema": {
@@ -1444,7 +1444,7 @@
1444
1444
  },
1445
1445
  {
1446
1446
  "name": "entryId",
1447
- "description": "The id of the entry to update.",
1447
+ "description": "The id of the entry to get.",
1448
1448
  "in": "path",
1449
1449
  "required": true,
1450
1450
  "schema": {
@@ -64,6 +64,8 @@ Register all AIS metrics with the telemetry component.
64
64
 
65
65
  `Promise`\<`void`\>
66
66
 
67
+ A promise that resolves when the metrics have been registered.
68
+
67
69
  #### Implementation of
68
70
 
69
71
  `IAuditableItemStreamComponent.start`
@@ -114,7 +116,7 @@ The id of the stream to close.
114
116
 
115
117
  `Promise`\<`void`\>
116
118
 
117
- Nothing.
119
+ A promise that resolves when the stream has been closed.
118
120
 
119
121
  #### Implementation of
120
122
 
@@ -140,7 +142,7 @@ The stream to update, does not update entries.
140
142
 
141
143
  `Promise`\<`void`\>
142
144
 
143
- Nothing.
145
+ A promise that resolves when the stream has been updated.
144
146
 
145
147
  #### Implementation of
146
148
 
@@ -236,7 +238,7 @@ The id of the stream to remove.
236
238
 
237
239
  `Promise`\<`void`\>
238
240
 
239
- Nothing.
241
+ A promise that resolves when the stream has been removed.
240
242
 
241
243
  #### Implementation of
242
244
 
@@ -444,7 +446,7 @@ The object for the entry as JSON-LD.
444
446
 
445
447
  `Promise`\<`void`\>
446
448
 
447
- Nothing.
449
+ A promise that resolves when the entry has been updated.
448
450
 
449
451
  #### Implementation of
450
452
 
@@ -476,7 +478,7 @@ The id of the entry to remove.
476
478
 
477
479
  `Promise`\<`void`\>
478
480
 
479
- Nothing.
481
+ A promise that resolves when the entry has been removed.
480
482
 
481
483
  #### Implementation of
482
484
 
@@ -636,7 +638,7 @@ The id of the stream to remove the proof from.
636
638
 
637
639
  `Promise`\<`void`\>
638
640
 
639
- Nothing.
641
+ A promise that resolves when the proof has been removed.
640
642
 
641
643
  #### Throws
642
644
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  > **auditableItemStreamDeleteEntry**(`httpRequestContext`, `componentName`, `request`): `Promise`\<`INoContentResponse`\>
4
4
 
5
- Get the stream.
5
+ Delete an entry from the stream.
6
6
 
7
7
  ## Parameters
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  > **auditableItemStreamList**(`httpRequestContext`, `componentName`, `request`): `Promise`\<`IAuditableItemStreamListResponse`\>
4
4
 
5
- Query the stream.
5
+ List all streams.
6
6
 
7
7
  ## Parameters
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  > **auditableItemStreamListEntries**(`httpRequestContext`, `componentName`, `request`): `Promise`\<`IAuditableItemStreamListEntriesResponse`\>
4
4
 
5
- Query the stream.
5
+ List the entries for a stream.
6
6
 
7
7
  ## Parameters
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  > **auditableItemStreamListEntriesNoStream**(`httpRequestContext`, `componentName`, `request`): `Promise`\<`IAuditableItemStreamListEntriesResponse`\>
4
4
 
5
- Query the stream.
5
+ List entries across all streams.
6
6
 
7
7
  ## Parameters
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  > **auditableItemStreamListEntryObjects**(`httpRequestContext`, `componentName`, `request`): `Promise`\<`IAuditableItemStreamListEntryObjectsResponse`\>
4
4
 
5
- Query the stream objects.
5
+ List the entry objects for a stream.
6
6
 
7
7
  ## Parameters
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  > **auditableItemStreamListEntryObjectsNoStream**(`httpRequestContext`, `componentName`, `request`): `Promise`\<`IAuditableItemStreamListEntryObjectsResponse`\>
4
4
 
5
- Query the stream objects.
5
+ List entry objects across all streams.
6
6
 
7
7
  ## Parameters
8
8
 
@@ -1,3 +1,5 @@
1
1
  # Variable: restEntryPoints
2
2
 
3
3
  > `const` **restEntryPoints**: `IRestRouteEntryPoint`[]
4
+
5
+ The REST route entry points for the auditable item stream service.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/auditable-item-stream-service",
3
- "version": "0.0.3-next.21",
3
+ "version": "0.0.3-next.22",
4
4
  "description": "Service implementation and REST route generation for managing auditable streams and entries.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@twin.org/api-models": "next",
18
- "@twin.org/auditable-item-stream-models": "0.0.3-next.21",
18
+ "@twin.org/auditable-item-stream-models": "0.0.3-next.22",
19
19
  "@twin.org/context": "next",
20
20
  "@twin.org/core": "next",
21
21
  "@twin.org/crypto": "next",