Variable MJAIAgentChannelSchemaConst
MJAIAgentChannelSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
ClientPluginClass: ZodString;
ConfigSchema: ZodNullable<ZodString>;
Description: ZodNullable<ZodString>;
ID: ZodString;
IsActive: ZodBoolean;
IsHeadless: ZodBoolean;
Name: ZodString;
ServerPluginClass: ZodString;
TransportType: ZodUnion<
[ZodLiteral<"PubSub">, ZodLiteral<"WebRTC">, ZodLiteral<"WebSocket">],
>;
UIConfig: ZodNullable<ZodAny>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
ClientPluginClass?: string;
ConfigSchema?: string;
Description?: string;
ID?: string;
IsActive?: boolean;
IsHeadless?: boolean;
Name?: string;
ServerPluginClass?: string;
TransportType?: "PubSub"
| "WebRTC"
| "WebSocket";
UIConfig?: any;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
ClientPluginClass?: string;
ConfigSchema?: string;
Description?: string;
ID?: string;
IsActive?: boolean;
IsHeadless?: boolean;
Name?: string;
ServerPluginClass?: string;
TransportType?: "PubSub"
| "WebRTC"
| "WebSocket";
UIConfig?: any;
},
> = ...
zod schema definition for the entity MJ: AI Agent Channels