/** * Zod schema for the hivemind-session-view tool. * * Single action: get — returns enriched unified view across 3 data roots. * @module schema-kernel/session-view-schema */ import { z } from "zod"; /** * Input schema for the hivemind-session-view tool. */ export declare const SessionViewInputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ action: z.ZodLiteral<"get">; sessionId: z.ZodString; }, z.core.$strip>], "action">; /** Inferred type for session-view tool input. */ export type SessionViewInput = z.infer; /** * Input schema for delegation-status tool (shared). * * NOTE: This schema is defined here but consumed by the delegation-status tool. * It is orphaned from the delegation-status schema boundaries. A future refactor * should move it to its own schema file (e.g. delegation-status.schema.ts). */ export declare const SessionViewDelegationFilterSchema: z.ZodObject<{ sessionId: z.ZodOptional; status: z.ZodOptional; limit: z.ZodDefault>; }, z.core.$strip>; export type SessionViewDelegationFilter = z.infer; //# sourceMappingURL=session-view.schema.d.ts.map