chore: generate

This commit is contained in:
opencode-agent[bot] 2026-06-04 06:59:09 +00:00
commit 30ec231aaf
19 changed files with 3573 additions and 2863 deletions

View file

@ -34,13 +34,15 @@ export const eventHandlers = HttpApiBuilder.group(V2Api, "v2.event", (handlers)
return HttpServerResponse.stream(
Stream.make(connected).pipe(
Stream.concat(
events.all().pipe(
Stream.filter(
(event) =>
event.location?.directory === location.directory &&
event.location.workspaceID === location.workspaceID,
events
.all()
.pipe(
Stream.filter(
(event) =>
event.location?.directory === location.directory &&
event.location.workspaceID === location.workspaceID,
),
),
),
),
Stream.map(eventData),
Stream.pipeThroughChannel(Sse.encode()),