import { Type, type Static } from "@sinclair/typebox"; export const QiaoqiaoDashboardSchema = Type.Object({ action: Type.Optional(Type.Union([ Type.Literal("overview", { description: "Fetch dashboard overview.", }), Type.Literal("comment_stats", { description: "Fetch detailed comment statistics.", }), ], { description: "Dashboard action.", default: "overview", })), }); export type QiaoqiaoDashboardParams = Static;