feat(core): finalize session event lifecycle (#35272)

This commit is contained in:
Kit Langton
2026-07-06 18:14:06 -04:00
committed by GitHub
parent c3f4ef63a4
commit 4a4e04b5ca
82 changed files with 5847 additions and 4358 deletions
+9
View File
@@ -0,0 +1,9 @@
export * as SessionError from "./session-error.js"
import { Schema } from "effect"
export interface Error extends Schema.Schema.Type<typeof Error> {}
export const Error = Schema.Struct({
type: Schema.String,
message: Schema.String,
}).annotate({ identifier: "Session.StructuredError" })