nexus-agents - v2.80.0
    Preparing search index...

    Interface EventFilter

    Filter for subscribing to or querying events.

    interface EventFilter {
        type?:
            | "task.created"
            | "task.status_changed"
            | "task.completed"
            | "task.failed"
            | "pipeline.started"
            | "pipeline.completed"
            | "pipeline.checkpoint"
            | "stage.started"
            | "stage.completed"
            | "stage.failed"
            | "stage.retrying"
            | "policy.evaluated"
            | "artifact.created"
            | "model.called"
            | "routing.decision"
            | "learning.threshold_updated"
            | "learning.trend_detected"
            | "tool.invoked"
            | "tool.completed"
            | "wave.started"
            | "wave.completed"
            | readonly (
                | "task.created"
                | "task.status_changed"
                | "task.completed"
                | "task.failed"
                | "pipeline.started"
                | "pipeline.completed"
                | "pipeline.checkpoint"
                | "stage.started"
                | "stage.completed"
                | "stage.failed"
                | "stage.retrying"
                | "policy.evaluated"
                | "artifact.created"
                | "model.called"
                | "routing.decision"
                | "learning.threshold_updated"
                | "learning.trend_detected"
                | "tool.invoked"
                | "tool.completed"
                | "wave.started"
                | "wave.completed"
            )[];
        taskId?: string;
        executionId?: string;
        since?: number;
    }
    Index

    Properties

    type?:
        | "task.created"
        | "task.status_changed"
        | "task.completed"
        | "task.failed"
        | "pipeline.started"
        | "pipeline.completed"
        | "pipeline.checkpoint"
        | "stage.started"
        | "stage.completed"
        | "stage.failed"
        | "stage.retrying"
        | "policy.evaluated"
        | "artifact.created"
        | "model.called"
        | "routing.decision"
        | "learning.threshold_updated"
        | "learning.trend_detected"
        | "tool.invoked"
        | "tool.completed"
        | "wave.started"
        | "wave.completed"
        | readonly (
            | "task.created"
            | "task.status_changed"
            | "task.completed"
            | "task.failed"
            | "pipeline.started"
            | "pipeline.completed"
            | "pipeline.checkpoint"
            | "stage.started"
            | "stage.completed"
            | "stage.failed"
            | "stage.retrying"
            | "policy.evaluated"
            | "artifact.created"
            | "model.called"
            | "routing.decision"
            | "learning.threshold_updated"
            | "learning.trend_detected"
            | "tool.invoked"
            | "tool.completed"
            | "wave.started"
            | "wave.completed"
        )[]
    taskId?: string
    executionId?: string
    since?: number