Member Junction
    Preparing search index...

    Type Alias AgentInvocationPathway

    One concrete way this agent gets invoked, traceable back to the row that says so.

    type AgentInvocationPathway = {
        EntityName?: string;
        Kind: AgentInvocationKind;
        LastRunAt?: Date | null;
        NextRunAt?: Date | null;
        RecordID?: string;
        State: AgentInvocationState;
        StateDetail?: string;
        Title: string;
        Trigger: string;
    }
    Index

    Properties

    EntityName?: string

    The row behind this pathway, so the host can open it. Absent for ExposedAsAction, which is a flag on the agent itself.

    LastRunAt?: Date | null
    NextRunAt?: Date | null
    RecordID?: string
    StateDetail?: string

    Why it is not Live, when it is not. Absent for a Live pathway — nothing to explain.

    Title: string

    What the user reads first — the job's name, the calling agent's name, the entity.

    Trigger: string

    One line answering "when does this fire?" in the user's language, never cron syntax alone.