From 48f81fe4d3a286ead827888e030f9bd89c864dee Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Thu, 29 May 2025 11:38:55 -0400 Subject: sync --- js/src/session/session.ts | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'js/src/session') diff --git a/js/src/session/session.ts b/js/src/session/session.ts index 4b5030506..5e07764b8 100644 --- a/js/src/session/session.ts +++ b/js/src/session/session.ts @@ -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; export const Event = { -- cgit v1.2.3