This commit is contained in:
Dax Raad
2025-05-29 11:38:55 -04:00
parent a96c2ce65c
commit 48f81fe4d3
5 changed files with 118 additions and 154 deletions

View File

@@ -24,11 +24,15 @@ import { Bus } from "../bus";
export namespace Session {
const log = Log.create({ service: "session" });
export const Info = z.object({
id: Identifier.schema("session"),
shareID: z.string().optional(),
title: z.string(),
});
export const Info = z
.object({
id: Identifier.schema("session"),
shareID: z.string().optional(),
title: z.string(),
})
.openapi({
ref: "session.info",
});
export type Info = z.output<typeof Info>;
export const Event = {