Variable MJAIAgentCoAgentSchemaConst
MJAIAgentCoAgentSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
CoAgent: ZodNullable<ZodString>;
CoAgentID: ZodString;
Configuration: ZodNullable<ZodString>;
ID: ZodString;
IsDefault: ZodBoolean;
Sequence: ZodNumber;
Status: ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Disabled">]>;
TargetAgent: ZodNullable<ZodString>;
TargetAgentID: ZodNullable<ZodString>;
TargetAgentType: ZodNullable<ZodString>;
TargetAgentTypeID: ZodNullable<ZodString>;
Type: ZodUnion<
[
ZodLiteral<"CoAgent">,
ZodLiteral<"Delegate">,
ZodLiteral<"Fallback">,
ZodLiteral<"Observer">,
ZodLiteral<"Peer">,
ZodLiteral<"Reviewer">,
],
>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
CoAgent?: string;
CoAgentID?: string;
Configuration?: string;
ID?: string;
IsDefault?: boolean;
Sequence?: number;
Status?: "Active"
| "Disabled";
TargetAgent?: string;
TargetAgentID?: string;
TargetAgentType?: string;
TargetAgentTypeID?: string;
Type?:
| "CoAgent"
| "Delegate"
| "Fallback"
| "Observer"
| "Peer"
| "Reviewer";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
CoAgent?: string;
CoAgentID?: string;
Configuration?: string;
ID?: string;
IsDefault?: boolean;
Sequence?: number;
Status?: "Active"
| "Disabled";
TargetAgent?: string;
TargetAgentID?: string;
TargetAgentType?: string;
TargetAgentTypeID?: string;
Type?:
| "CoAgent"
| "Delegate"
| "Fallback"
| "Observer"
| "Peer"
| "Reviewer";
},
> = ...
zod schema definition for the entity MJ: AI Agent Co Agents