mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-26 11:48:39 +00:00
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
import { z } from "zod";
|
|
import { AgentDefaultsSchema } from "./zod-schema.agent-defaults.js";
|
|
import { AgentEntrySchema } from "./zod-schema.agent-runtime.js";
|
|
import { TranscribeAudioSchema } from "./zod-schema.core.js";
|
|
|
|
export const AgentsSchema = z
|
|
.object({
|
|
defaults: z.lazy(() => AgentDefaultsSchema).optional(),
|
|
list: z.array(AgentEntrySchema).optional(),
|
|
})
|
|
.strict()
|
|
.optional();
|
|
|
|
export const BindingsSchema = z
|
|
.array(
|
|
z
|
|
.object({
|
|
agentId: z.string(),
|
|
match: z
|
|
.object({
|
|
channel: z.string(),
|
|
accountId: z.string().optional(),
|
|
peer: z
|
|
.object({
|
|
kind: z.union([
|
|
z.literal("direct"),
|
|
z.literal("group"),
|
|
z.literal("channel"),
|
|
/** @deprecated Use `direct` instead. Kept for backward compatibility. */
|
|
z.literal("dm"),
|
|
]),
|
|
id: z.string(),
|
|
})
|
|
.strict()
|
|
.optional(),
|
|
guildId: z.string().optional(),
|
|
teamId: z.string().optional(),
|
|
roles: z.array(z.string()).optional(),
|
|
})
|
|
.strict(),
|
|
})
|
|
.strict(),
|
|
)
|
|
.optional();
|
|
|
|
export const BroadcastStrategySchema = z.enum(["parallel", "sequential"]);
|
|
|
|
export const BroadcastSchema = z
|
|
.object({
|
|
strategy: BroadcastStrategySchema.optional(),
|
|
})
|
|
.catchall(z.array(z.string()))
|
|
.optional();
|
|
|
|
export const AudioSchema = z
|
|
.object({
|
|
transcription: TranscribeAudioSchema,
|
|
})
|
|
.strict()
|
|
.optional();
|