@twin.org/auditable-item-stream-service 0.0.1-next.8 → 0.0.1
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/dist/cjs/index.cjs +510 -305
- package/dist/esm/index.mjs +512 -308
- package/dist/types/auditableItemStreamRoutes.d.ts +9 -1
- package/dist/types/auditableItemStreamService.d.ts +45 -38
- package/dist/types/entities/auditableItemStream.d.ts +1 -1
- package/dist/types/index.d.ts +2 -1
- package/dist/types/models/IAuditableItemStreamServiceConstructorOptions.d.ts +29 -0
- package/docs/changelog.md +199 -1
- package/docs/open-api/spec.json +2272 -2123
- package/docs/reference/classes/AuditableItemStream.md +5 -5
- package/docs/reference/classes/AuditableItemStreamEntry.md +3 -3
- package/docs/reference/classes/AuditableItemStreamService.md +233 -95
- package/docs/reference/functions/auditableItemStreamCreate.md +9 -3
- package/docs/reference/functions/auditableItemStreamCreateEntry.md +9 -3
- package/docs/reference/functions/auditableItemStreamDelete.md +31 -0
- package/docs/reference/functions/auditableItemStreamDeleteEntry.md +9 -3
- package/docs/reference/functions/auditableItemStreamGet.md +9 -3
- package/docs/reference/functions/auditableItemStreamGetEntry.md +9 -3
- package/docs/reference/functions/auditableItemStreamGetEntryObject.md +9 -3
- package/docs/reference/functions/auditableItemStreamList.md +9 -3
- package/docs/reference/functions/auditableItemStreamListEntries.md +9 -3
- package/docs/reference/functions/auditableItemStreamListEntryObjects.md +9 -3
- package/docs/reference/functions/auditableItemStreamUpdate.md +9 -3
- package/docs/reference/functions/auditableItemStreamUpdateEntry.md +9 -3
- package/docs/reference/functions/generateRestRoutesAuditableItemStream.md +8 -4
- package/docs/reference/index.md +2 -0
- package/docs/reference/interfaces/IAuditableItemStreamServiceConstructorOptions.md +61 -0
- package/locales/en.json +3 -1
- package/package.json +59 -18
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ICreatedResponse, type IHttpRequestContext, type INoContentResponse, type IRestRoute, type ITag } from "@twin.org/api-models";
|
|
2
|
-
import { type IAuditableItemStreamCreateEntryRequest, type IAuditableItemStreamCreateRequest, type IAuditableItemStreamDeleteEntryRequest, type IAuditableItemStreamGetEntryObjectRequest, type IAuditableItemStreamGetEntryObjectResponse, type IAuditableItemStreamGetEntryRequest, type IAuditableItemStreamGetEntryResponse, type IAuditableItemStreamGetRequest, type IAuditableItemStreamGetResponse, type IAuditableItemStreamListEntriesRequest, type IAuditableItemStreamListEntriesResponse, type IAuditableItemStreamListEntryObjectsRequest, type IAuditableItemStreamListEntryObjectsResponse, type IAuditableItemStreamListRequest, type IAuditableItemStreamListResponse, type IAuditableItemStreamUpdateEntryRequest, type IAuditableItemStreamUpdateRequest } from "@twin.org/auditable-item-stream-models";
|
|
2
|
+
import { type IAuditableItemStreamCreateEntryRequest, type IAuditableItemStreamCreateRequest, type IAuditableItemStreamDeleteEntryRequest, type IAuditableItemStreamDeleteRequest, type IAuditableItemStreamGetEntryObjectRequest, type IAuditableItemStreamGetEntryObjectResponse, type IAuditableItemStreamGetEntryRequest, type IAuditableItemStreamGetEntryResponse, type IAuditableItemStreamGetRequest, type IAuditableItemStreamGetResponse, type IAuditableItemStreamListEntriesRequest, type IAuditableItemStreamListEntriesResponse, type IAuditableItemStreamListEntryObjectsRequest, type IAuditableItemStreamListEntryObjectsResponse, type IAuditableItemStreamListRequest, type IAuditableItemStreamListResponse, type IAuditableItemStreamUpdateEntryRequest, type IAuditableItemStreamUpdateRequest } from "@twin.org/auditable-item-stream-models";
|
|
3
3
|
/**
|
|
4
4
|
* The tag to associate with the routes.
|
|
5
5
|
*/
|
|
@@ -35,6 +35,14 @@ export declare function auditableItemStreamGet(httpRequestContext: IHttpRequestC
|
|
|
35
35
|
* @returns The response object with additional http response properties.
|
|
36
36
|
*/
|
|
37
37
|
export declare function auditableItemStreamUpdate(httpRequestContext: IHttpRequestContext, componentName: string, request: IAuditableItemStreamUpdateRequest): Promise<INoContentResponse>;
|
|
38
|
+
/**
|
|
39
|
+
* Delete the stream.
|
|
40
|
+
* @param httpRequestContext The request context for the API.
|
|
41
|
+
* @param componentName The name of the component to use in the routes.
|
|
42
|
+
* @param request The request.
|
|
43
|
+
* @returns The response object with additional http response properties.
|
|
44
|
+
*/
|
|
45
|
+
export declare function auditableItemStreamDelete(httpRequestContext: IHttpRequestContext, componentName: string, request: IAuditableItemStreamDeleteRequest): Promise<INoContentResponse>;
|
|
38
46
|
/**
|
|
39
47
|
* Query the stream.
|
|
40
48
|
* @param httpRequestContext The request context for the API.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type IAuditableItemStream, type IAuditableItemStreamComponent, type IAuditableItemStreamEntry, type IAuditableItemStreamEntryList, type IAuditableItemStreamEntryObjectList, type IAuditableItemStreamList } from "@twin.org/auditable-item-stream-models";
|
|
2
2
|
import { type IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
3
3
|
import { SortDirection, type IComparator } from "@twin.org/entity";
|
|
4
|
-
import type {
|
|
4
|
+
import type { IAuditableItemStreamServiceConstructorOptions } from "./models/IAuditableItemStreamServiceConstructorOptions";
|
|
5
5
|
/**
|
|
6
6
|
* Class for performing auditable item stream operations.
|
|
7
7
|
*/
|
|
@@ -25,21 +25,13 @@ export declare class AuditableItemStreamService implements IAuditableItemStreamC
|
|
|
25
25
|
/**
|
|
26
26
|
* Create a new instance of AuditableItemStreamService.
|
|
27
27
|
* @param options The dependencies for the auditable item stream connector.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
* @param options.streamEntityStorageType The entity storage for stream, defaults to "auditable-item-stream".
|
|
31
|
-
* @param options.streamEntryEntityStorageType The entity storage for stream entries, defaults to "auditable-item-stream-entry".
|
|
32
|
-
*/
|
|
33
|
-
constructor(options?: {
|
|
34
|
-
immutableProofComponentType?: string;
|
|
35
|
-
streamEntityStorageType?: string;
|
|
36
|
-
streamEntryEntityStorageType?: string;
|
|
37
|
-
config?: IAuditableItemStreamServiceConfig;
|
|
38
|
-
});
|
|
28
|
+
*/
|
|
29
|
+
constructor(options?: IAuditableItemStreamServiceConstructorOptions);
|
|
39
30
|
/**
|
|
40
31
|
* Create a new stream.
|
|
41
|
-
* @param
|
|
42
|
-
* @param
|
|
32
|
+
* @param stream The stream to create.
|
|
33
|
+
* @param stream.annotationObject The object for the stream as JSON-LD.
|
|
34
|
+
* @param stream.entries Entries to store in the stream.
|
|
43
35
|
* @param options Options for creating the stream.
|
|
44
36
|
* @param options.immutableInterval After how many entries do we add immutable checks, defaults to service configured value.
|
|
45
37
|
* A value of 0 will disable integrity checks, 1 will be every item, or any other integer for an interval.
|
|
@@ -47,9 +39,12 @@ export declare class AuditableItemStreamService implements IAuditableItemStreamC
|
|
|
47
39
|
* @param nodeIdentity The node identity to use for vault operations.
|
|
48
40
|
* @returns The id of the new stream item.
|
|
49
41
|
*/
|
|
50
|
-
create(
|
|
51
|
-
|
|
52
|
-
|
|
42
|
+
create(stream: {
|
|
43
|
+
annotationObject?: IJsonLdNodeObject;
|
|
44
|
+
entries?: {
|
|
45
|
+
entryObject: IJsonLdNodeObject;
|
|
46
|
+
}[];
|
|
47
|
+
}, options?: {
|
|
53
48
|
immutableInterval?: number;
|
|
54
49
|
}, userIdentity?: string, nodeIdentity?: string): Promise<string>;
|
|
55
50
|
/**
|
|
@@ -71,13 +66,25 @@ export declare class AuditableItemStreamService implements IAuditableItemStreamC
|
|
|
71
66
|
}): Promise<IAuditableItemStream>;
|
|
72
67
|
/**
|
|
73
68
|
* Update a stream.
|
|
74
|
-
* @param
|
|
75
|
-
* @param
|
|
69
|
+
* @param stream The stream to update.
|
|
70
|
+
* @param stream.id The id of the stream to update.
|
|
71
|
+
* @param stream.annotationObject The object for the stream as JSON-LD.
|
|
72
|
+
* @param userIdentity The identity to create the auditable item stream operation with.
|
|
73
|
+
* @param nodeIdentity The node identity to use for vault operations.
|
|
74
|
+
* @returns Nothing.
|
|
75
|
+
*/
|
|
76
|
+
update(stream: {
|
|
77
|
+
id: string;
|
|
78
|
+
annotationObject?: IJsonLdNodeObject;
|
|
79
|
+
}, userIdentity?: string, nodeIdentity?: string): Promise<void>;
|
|
80
|
+
/**
|
|
81
|
+
* Delete the stream.
|
|
82
|
+
* @param id The id of the stream to remove.
|
|
76
83
|
* @param userIdentity The identity to create the auditable item stream operation with.
|
|
77
84
|
* @param nodeIdentity The node identity to use for vault operations.
|
|
78
85
|
* @returns Nothing.
|
|
79
86
|
*/
|
|
80
|
-
|
|
87
|
+
remove(id: string, userIdentity?: string, nodeIdentity?: string): Promise<void>;
|
|
81
88
|
/**
|
|
82
89
|
* Query all the streams, will not return entries.
|
|
83
90
|
* @param conditions Conditions to use in the query.
|
|
@@ -91,55 +98,55 @@ export declare class AuditableItemStreamService implements IAuditableItemStreamC
|
|
|
91
98
|
query(conditions?: IComparator[], orderBy?: keyof Pick<IAuditableItemStream, "dateCreated" | "dateModified">, orderByDirection?: SortDirection, properties?: (keyof IAuditableItemStream)[], cursor?: string, pageSize?: number): Promise<IAuditableItemStreamList>;
|
|
92
99
|
/**
|
|
93
100
|
* Create an entry in the stream.
|
|
94
|
-
* @param
|
|
101
|
+
* @param streamId The id of the stream to update.
|
|
95
102
|
* @param entryObject The object for the stream as JSON-LD.
|
|
96
103
|
* @param userIdentity The identity to create the auditable item stream operation with.
|
|
97
104
|
* @param nodeIdentity The node identity to use for vault operations.
|
|
98
105
|
* @returns The id of the created entry, if not provided.
|
|
99
106
|
*/
|
|
100
|
-
createEntry(
|
|
107
|
+
createEntry(streamId: string, entryObject: IJsonLdNodeObject, userIdentity?: string, nodeIdentity?: string): Promise<string>;
|
|
101
108
|
/**
|
|
102
109
|
* Get the entry from the stream.
|
|
103
|
-
* @param
|
|
110
|
+
* @param streamId The id of the stream to get.
|
|
104
111
|
* @param entryId The id of the stream entry to get.
|
|
105
112
|
* @param options Additional options for the get operation.
|
|
106
113
|
* @param options.verifyEntry Should the entry be verified, defaults to false.
|
|
107
114
|
* @returns The stream and entries if found.
|
|
108
115
|
* @throws NotFoundError if the stream is not found.
|
|
109
116
|
*/
|
|
110
|
-
getEntry(
|
|
117
|
+
getEntry(streamId: string, entryId: string, options?: {
|
|
111
118
|
verifyEntry?: boolean;
|
|
112
119
|
}): Promise<IAuditableItemStreamEntry>;
|
|
113
120
|
/**
|
|
114
121
|
* Get the entry object from the stream.
|
|
115
|
-
* @param
|
|
122
|
+
* @param streamId The id of the stream to get.
|
|
116
123
|
* @param entryId The id of the stream entry to get.
|
|
117
124
|
* @returns The stream and entries if found.
|
|
118
125
|
* @throws NotFoundError if the stream is not found.
|
|
119
126
|
*/
|
|
120
|
-
getEntryObject(
|
|
127
|
+
getEntryObject(streamId: string, entryId: string): Promise<IJsonLdNodeObject>;
|
|
121
128
|
/**
|
|
122
129
|
* Update an entry in the stream.
|
|
123
|
-
* @param
|
|
130
|
+
* @param streamId The id of the stream to update.
|
|
124
131
|
* @param entryId The id of the entry to update.
|
|
125
132
|
* @param entryObject The object for the entry as JSON-LD.
|
|
126
133
|
* @param userIdentity The identity to create the auditable item stream operation with.
|
|
127
134
|
* @param nodeIdentity The node identity to use for vault operations.
|
|
128
135
|
* @returns Nothing.
|
|
129
136
|
*/
|
|
130
|
-
updateEntry(
|
|
137
|
+
updateEntry(streamId: string, entryId: string, entryObject: IJsonLdNodeObject, userIdentity?: string, nodeIdentity?: string): Promise<void>;
|
|
131
138
|
/**
|
|
132
139
|
* Delete from the stream.
|
|
133
|
-
* @param
|
|
134
|
-
* @param entryId The id of the entry to
|
|
140
|
+
* @param streamId The id of the stream to remove from.
|
|
141
|
+
* @param entryId The id of the entry to remove.
|
|
135
142
|
* @param userIdentity The identity to create the auditable item stream operation with.
|
|
136
143
|
* @param nodeIdentity The node identity to use for vault operations.
|
|
137
144
|
* @returns Nothing.
|
|
138
145
|
*/
|
|
139
|
-
removeEntry(
|
|
146
|
+
removeEntry(streamId: string, entryId: string, userIdentity?: string, nodeIdentity?: string): Promise<void>;
|
|
140
147
|
/**
|
|
141
148
|
* Get the entries for the stream.
|
|
142
|
-
* @param
|
|
149
|
+
* @param streamId The id of the stream to get.
|
|
143
150
|
* @param options Additional options for the get operation.
|
|
144
151
|
* @param options.conditions The conditions to filter the stream.
|
|
145
152
|
* @param options.includeDeleted Whether to include deleted entries, defaults to false.
|
|
@@ -150,7 +157,7 @@ export declare class AuditableItemStreamService implements IAuditableItemStreamC
|
|
|
150
157
|
* @returns The stream and entries if found.
|
|
151
158
|
* @throws NotFoundError if the stream is not found.
|
|
152
159
|
*/
|
|
153
|
-
getEntries(
|
|
160
|
+
getEntries(streamId: string, options?: {
|
|
154
161
|
conditions?: IComparator[];
|
|
155
162
|
includeDeleted?: boolean;
|
|
156
163
|
verifyEntries?: boolean;
|
|
@@ -160,7 +167,7 @@ export declare class AuditableItemStreamService implements IAuditableItemStreamC
|
|
|
160
167
|
}): Promise<IAuditableItemStreamEntryList>;
|
|
161
168
|
/**
|
|
162
169
|
* Get the entry objects for the stream.
|
|
163
|
-
* @param
|
|
170
|
+
* @param streamId The id of the stream to get.
|
|
164
171
|
* @param options Additional options for the get operation.
|
|
165
172
|
* @param options.conditions The conditions to filter the stream.
|
|
166
173
|
* @param options.includeDeleted Whether to include deleted entries, defaults to false.
|
|
@@ -170,7 +177,7 @@ export declare class AuditableItemStreamService implements IAuditableItemStreamC
|
|
|
170
177
|
* @returns The stream and entries if found.
|
|
171
178
|
* @throws NotFoundError if the stream is not found.
|
|
172
179
|
*/
|
|
173
|
-
getEntryObjects(
|
|
180
|
+
getEntryObjects(streamId: string, options?: {
|
|
174
181
|
conditions?: IComparator[];
|
|
175
182
|
includeDeleted?: boolean;
|
|
176
183
|
pageSize?: number;
|
|
@@ -178,11 +185,11 @@ export declare class AuditableItemStreamService implements IAuditableItemStreamC
|
|
|
178
185
|
order?: SortDirection;
|
|
179
186
|
}): Promise<IAuditableItemStreamEntryObjectList>;
|
|
180
187
|
/**
|
|
181
|
-
* Remove the
|
|
182
|
-
* @param
|
|
188
|
+
* Remove the verifiable storage for the stream and entries.
|
|
189
|
+
* @param streamId The id of the stream to remove the storage from.
|
|
183
190
|
* @param nodeIdentity The node identity to use for vault operations.
|
|
184
191
|
* @returns Nothing.
|
|
185
192
|
* @throws NotFoundError if the vertex is not found.
|
|
186
193
|
*/
|
|
187
|
-
|
|
194
|
+
removeVerifiable(streamId: string, nodeIdentity?: string): Promise<void>;
|
|
188
195
|
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export * from "./auditableItemStreamRoutes";
|
|
2
2
|
export * from "./auditableItemStreamService";
|
|
3
|
-
export * from "./entities/auditableItemStreamEntry";
|
|
4
3
|
export * from "./entities/auditableItemStream";
|
|
4
|
+
export * from "./entities/auditableItemStreamEntry";
|
|
5
5
|
export * from "./models/IAuditableItemStreamServiceConfig";
|
|
6
|
+
export * from "./models/IAuditableItemStreamServiceConstructorOptions";
|
|
6
7
|
export * from "./restEntryPoints";
|
|
7
8
|
export * from "./schema";
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { IAuditableItemStreamServiceConfig } from "./IAuditableItemStreamServiceConfig";
|
|
2
|
+
/**
|
|
3
|
+
* Options for the auditable item stream service constructor.
|
|
4
|
+
*/
|
|
5
|
+
export interface IAuditableItemStreamServiceConstructorOptions {
|
|
6
|
+
/**
|
|
7
|
+
* The immutable proof component type.
|
|
8
|
+
* @default immutable-proof
|
|
9
|
+
*/
|
|
10
|
+
immutableProofComponentType?: string;
|
|
11
|
+
/**
|
|
12
|
+
* The entity storage for stream.
|
|
13
|
+
* @default auditable-item-stream
|
|
14
|
+
*/
|
|
15
|
+
streamEntityStorageType?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The entity storage for stream entries.
|
|
18
|
+
* @default auditable-item-stream-entry
|
|
19
|
+
*/
|
|
20
|
+
streamEntryEntityStorageType?: string;
|
|
21
|
+
/**
|
|
22
|
+
* The event bus component type, defaults to no event bus.
|
|
23
|
+
*/
|
|
24
|
+
eventBusComponentType?: string;
|
|
25
|
+
/**
|
|
26
|
+
* The configuration for the connector.
|
|
27
|
+
*/
|
|
28
|
+
config?: IAuditableItemStreamServiceConfig;
|
|
29
|
+
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,203 @@
|
|
|
1
1
|
# @twin.org/auditable-item-stream-service - Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 0.0.1 (2025-07-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* data types registered with fully qualified names ([3bcd927](https://github.com/twinfoundation/auditable-item-stream/commit/3bcd92788bfe4976bc88caf230501f5bbf8637f9))
|
|
9
|
+
* improve schemas ([a658264](https://github.com/twinfoundation/auditable-item-stream/commit/a65826423f57ca18d9de44e7e75cb06ab9dd12cb))
|
|
10
|
+
* improve schemas ([b253580](https://github.com/twinfoundation/auditable-item-stream/commit/b2535806321f39c7c02db0e04f65fb04c0595dd0))
|
|
11
|
+
* release to production ([94d5757](https://github.com/twinfoundation/auditable-item-stream/commit/94d5757ff28b5462564f4ded56c8a3db781f2901))
|
|
12
|
+
* update dependencies ([9ff038b](https://github.com/twinfoundation/auditable-item-stream/commit/9ff038b7e76e9fb586be4f2321231f04258ef794))
|
|
13
|
+
* use shared store mechanism ([#7](https://github.com/twinfoundation/auditable-item-stream/issues/7)) ([2aca4b8](https://github.com/twinfoundation/auditable-item-stream/commit/2aca4b85b0102f91c90619f02b116541786cf539))
|
|
14
|
+
* use standard list json ld types ([54ee4d7](https://github.com/twinfoundation/auditable-item-stream/commit/54ee4d78c42cfd39745ee7d93903334c398ec8c8))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* immutable remove parameter order ([19f60d6](https://github.com/twinfoundation/auditable-item-stream/commit/19f60d6c7b9f926694e91f4fbf348a4a4eb34c5a))
|
|
20
|
+
* query params force coercion ([fcdd52c](https://github.com/twinfoundation/auditable-item-stream/commit/fcdd52cf8262a3bc19f6e7e9e6ef145890a9c8aa))
|
|
21
|
+
* remove misses removing entries ([a58bc09](https://github.com/twinfoundation/auditable-item-stream/commit/a58bc0943ea6e77ca7c854b2f41cfaba3fb9b10b))
|
|
22
|
+
* update entry use correct deconstructed object ([801e857](https://github.com/twinfoundation/auditable-item-stream/commit/801e857d71289672b9c6010f302b33c9d8ea9860))
|
|
23
|
+
* update tests for deterministic background tasks ([#5](https://github.com/twinfoundation/auditable-item-stream/issues/5)) ([75d844e](https://github.com/twinfoundation/auditable-item-stream/commit/75d844eb98d0af63a089105379f9859def47e92a))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Dependencies
|
|
27
|
+
|
|
28
|
+
* The following workspace dependencies were updated
|
|
29
|
+
* dependencies
|
|
30
|
+
* @twin.org/auditable-item-stream-models bumped from ^0.0.0 to ^0.0.1
|
|
31
|
+
|
|
32
|
+
## [0.0.1-next.37](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.36...auditable-item-stream-service-v0.0.1-next.37) (2025-06-20)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
### Bug Fixes
|
|
36
|
+
|
|
37
|
+
* query params force coercion ([fcdd52c](https://github.com/twinfoundation/auditable-item-stream/commit/fcdd52cf8262a3bc19f6e7e9e6ef145890a9c8aa))
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Dependencies
|
|
41
|
+
|
|
42
|
+
* The following workspace dependencies were updated
|
|
43
|
+
* dependencies
|
|
44
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.36 to 0.0.1-next.37
|
|
45
|
+
|
|
46
|
+
## [0.0.1-next.36](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.35...auditable-item-stream-service-v0.0.1-next.36) (2025-06-18)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Features
|
|
50
|
+
|
|
51
|
+
* improve schemas ([a658264](https://github.com/twinfoundation/auditable-item-stream/commit/a65826423f57ca18d9de44e7e75cb06ab9dd12cb))
|
|
52
|
+
* improve schemas ([b253580](https://github.com/twinfoundation/auditable-item-stream/commit/b2535806321f39c7c02db0e04f65fb04c0595dd0))
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Dependencies
|
|
56
|
+
|
|
57
|
+
* The following workspace dependencies were updated
|
|
58
|
+
* dependencies
|
|
59
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
60
|
+
|
|
61
|
+
## [0.0.1-next.35](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.34...auditable-item-stream-service-v0.0.1-next.35) (2025-06-12)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
### Features
|
|
65
|
+
|
|
66
|
+
* update dependencies ([9ff038b](https://github.com/twinfoundation/auditable-item-stream/commit/9ff038b7e76e9fb586be4f2321231f04258ef794))
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Dependencies
|
|
70
|
+
|
|
71
|
+
* The following workspace dependencies were updated
|
|
72
|
+
* dependencies
|
|
73
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
74
|
+
|
|
75
|
+
## [0.0.1-next.34](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.33...auditable-item-stream-service-v0.0.1-next.34) (2025-06-03)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
### Miscellaneous Chores
|
|
79
|
+
|
|
80
|
+
* **auditable-item-stream-service:** Synchronize repo versions
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Dependencies
|
|
84
|
+
|
|
85
|
+
* The following workspace dependencies were updated
|
|
86
|
+
* dependencies
|
|
87
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
88
|
+
|
|
89
|
+
## [0.0.1-next.33](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.32...auditable-item-stream-service-v0.0.1-next.33) (2025-05-28)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### Features
|
|
93
|
+
|
|
94
|
+
* data types registered with fully qualified names ([3bcd927](https://github.com/twinfoundation/auditable-item-stream/commit/3bcd92788bfe4976bc88caf230501f5bbf8637f9))
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Dependencies
|
|
98
|
+
|
|
99
|
+
* The following workspace dependencies were updated
|
|
100
|
+
* dependencies
|
|
101
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
102
|
+
|
|
103
|
+
## [0.0.1-next.32](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.31...auditable-item-stream-service-v0.0.1-next.32) (2025-05-08)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
### Features
|
|
107
|
+
|
|
108
|
+
* use standard list json ld types ([54ee4d7](https://github.com/twinfoundation/auditable-item-stream/commit/54ee4d78c42cfd39745ee7d93903334c398ec8c8))
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Dependencies
|
|
112
|
+
|
|
113
|
+
* The following workspace dependencies were updated
|
|
114
|
+
* dependencies
|
|
115
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.31 to 0.0.1-next.32
|
|
116
|
+
|
|
117
|
+
## [0.0.1-next.31](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.30...auditable-item-stream-service-v0.0.1-next.31) (2025-04-25)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
### Bug Fixes
|
|
121
|
+
|
|
122
|
+
* remove misses removing entries ([a58bc09](https://github.com/twinfoundation/auditable-item-stream/commit/a58bc0943ea6e77ca7c854b2f41cfaba3fb9b10b))
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Dependencies
|
|
126
|
+
|
|
127
|
+
* The following workspace dependencies were updated
|
|
128
|
+
* dependencies
|
|
129
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.30 to 0.0.1-next.31
|
|
130
|
+
|
|
131
|
+
## [0.0.1-next.30](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.29...auditable-item-stream-service-v0.0.1-next.30) (2025-04-25)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
### Bug Fixes
|
|
135
|
+
|
|
136
|
+
* update entry use correct deconstructed object ([801e857](https://github.com/twinfoundation/auditable-item-stream/commit/801e857d71289672b9c6010f302b33c9d8ea9860))
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Dependencies
|
|
140
|
+
|
|
141
|
+
* The following workspace dependencies were updated
|
|
142
|
+
* dependencies
|
|
143
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.29 to 0.0.1-next.30
|
|
144
|
+
|
|
145
|
+
## [0.0.1-next.29](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.28...auditable-item-stream-service-v0.0.1-next.29) (2025-04-25)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
### Bug Fixes
|
|
149
|
+
|
|
150
|
+
* immutable remove parameter order ([19f60d6](https://github.com/twinfoundation/auditable-item-stream/commit/19f60d6c7b9f926694e91f4fbf348a4a4eb34c5a))
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Dependencies
|
|
154
|
+
|
|
155
|
+
* The following workspace dependencies were updated
|
|
156
|
+
* dependencies
|
|
157
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.28 to 0.0.1-next.29
|
|
158
|
+
|
|
159
|
+
## [0.0.1-next.28](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.27...auditable-item-stream-service-v0.0.1-next.28) (2025-04-17)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
### Features
|
|
163
|
+
|
|
164
|
+
* use shared store mechanism ([#7](https://github.com/twinfoundation/auditable-item-stream/issues/7)) ([2aca4b8](https://github.com/twinfoundation/auditable-item-stream/commit/2aca4b85b0102f91c90619f02b116541786cf539))
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Dependencies
|
|
168
|
+
|
|
169
|
+
* The following workspace dependencies were updated
|
|
170
|
+
* dependencies
|
|
171
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.27 to 0.0.1-next.28
|
|
172
|
+
|
|
173
|
+
## [0.0.1-next.27](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.26...auditable-item-stream-service-v0.0.1-next.27) (2025-04-11)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### Bug Fixes
|
|
177
|
+
|
|
178
|
+
* update tests for deterministic background tasks ([#5](https://github.com/twinfoundation/auditable-item-stream/issues/5)) ([75d844e](https://github.com/twinfoundation/auditable-item-stream/commit/75d844eb98d0af63a089105379f9859def47e92a))
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Dependencies
|
|
182
|
+
|
|
183
|
+
* The following workspace dependencies were updated
|
|
184
|
+
* dependencies
|
|
185
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.26 to 0.0.1-next.27
|
|
186
|
+
|
|
187
|
+
## [0.0.1-next.26](https://github.com/twinfoundation/auditable-item-stream/compare/auditable-item-stream-service-v0.0.1-next.25...auditable-item-stream-service-v0.0.1-next.26) (2025-03-28)
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### Miscellaneous Chores
|
|
191
|
+
|
|
192
|
+
* **auditable-item-stream-service:** Synchronize repo versions
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
### Dependencies
|
|
196
|
+
|
|
197
|
+
* The following workspace dependencies were updated
|
|
198
|
+
* dependencies
|
|
199
|
+
* @twin.org/auditable-item-stream-models bumped from 0.0.1-next.25 to 0.0.1-next.26
|
|
200
|
+
|
|
201
|
+
## v0.0.1-next.25
|
|
4
202
|
|
|
5
203
|
- Initial Release
|