AIAgentPromptSchema: ZodObject<{
    Agent: ZodNullable<ZodString>;
    AgentID: ZodString;
    Configuration: ZodNullable<ZodString>;
    ConfigurationID: ZodNullable<ZodString>;
    ContextBehavior: ZodUnion<[ZodLiteral<"Complete">, ZodLiteral<"Custom">, ZodLiteral<"InitialMessages">, ZodLiteral<"None">, ZodLiteral<"RecentMessages">, ZodLiteral<"Smart">]>;
    ContextMessageCount: ZodNullable<ZodNumber>;
    ExecutionOrder: ZodNumber;
    ID: ZodString;
    Prompt: ZodString;
    PromptID: ZodString;
    Purpose: ZodNullable<ZodString>;
    Status: ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Deprecated">, ZodLiteral<"Inactive">, ZodLiteral<"Preview">]>;
    __mj_CreatedAt: ZodDate;
    __mj_UpdatedAt: ZodDate;
}, "strip", ZodTypeAny, {
    Agent?: string;
    AgentID?: string;
    Configuration?: string;
    ConfigurationID?: string;
    ContextBehavior?: "Custom" | "None" | "Complete" | "InitialMessages" | "RecentMessages" | "Smart";
    ContextMessageCount?: number;
    ExecutionOrder?: number;
    ID?: string;
    Prompt?: string;
    PromptID?: string;
    Purpose?: string;
    Status?: "Active" | "Deprecated" | "Inactive" | "Preview";
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}, {
    Agent?: string;
    AgentID?: string;
    Configuration?: string;
    ConfigurationID?: string;
    ContextBehavior?: "Custom" | "None" | "Complete" | "InitialMessages" | "RecentMessages" | "Smart";
    ContextMessageCount?: number;
    ExecutionOrder?: number;
    ID?: string;
    Prompt?: string;
    PromptID?: string;
    Purpose?: string;
    Status?: "Active" | "Deprecated" | "Inactive" | "Preview";
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}> = ...

zod schema definition for the entity MJ: AI Agent Prompts

Type declaration

  • Agent: ZodNullable<ZodString>
  • AgentID: ZodString
  • Configuration: ZodNullable<ZodString>
  • ConfigurationID: ZodNullable<ZodString>
  • ContextBehavior: ZodUnion<[ZodLiteral<"Complete">, ZodLiteral<"Custom">, ZodLiteral<"InitialMessages">, ZodLiteral<"None">, ZodLiteral<"RecentMessages">, ZodLiteral<"Smart">]>
  • ContextMessageCount: ZodNullable<ZodNumber>
  • ExecutionOrder: ZodNumber
  • ID: ZodString
  • Prompt: ZodString
  • PromptID: ZodString
  • Purpose: ZodNullable<ZodString>
  • Status: ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Deprecated">, ZodLiteral<"Inactive">, ZodLiteral<"Preview">]>
  • __mj_CreatedAt: ZodDate
  • __mj_UpdatedAt: ZodDate

Type declaration

  • Optional Agent?: string
  • Optional AgentID?: string
  • Optional Configuration?: string
  • Optional ConfigurationID?: string
  • Optional ContextBehavior?: "Custom" | "None" | "Complete" | "InitialMessages" | "RecentMessages" | "Smart"
  • Optional ContextMessageCount?: number
  • Optional ExecutionOrder?: number
  • Optional ID?: string
  • Optional Prompt?: string
  • Optional PromptID?: string
  • Optional Purpose?: string
  • Optional Status?: "Active" | "Deprecated" | "Inactive" | "Preview"
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date

Type declaration

  • Optional Agent?: string
  • Optional AgentID?: string
  • Optional Configuration?: string
  • Optional ConfigurationID?: string
  • Optional ContextBehavior?: "Custom" | "None" | "Complete" | "InitialMessages" | "RecentMessages" | "Smart"
  • Optional ContextMessageCount?: number
  • Optional ExecutionOrder?: number
  • Optional ID?: string
  • Optional Prompt?: string
  • Optional PromptID?: string
  • Optional Purpose?: string
  • Optional Status?: "Active" | "Deprecated" | "Inactive" | "Preview"
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date