Interface AgencySeatHistoryEntry

Single history entry for seat activity tracking.

interface AgencySeatHistoryEntry {
    taskId?: string;
    timestamp: string;
    status?: "completed" | "failed" | "pending" | "running";
    outputPreview?: string;
    metadata?: Record<string, unknown>;
}

Properties

taskId?: string

Associated task identifier

timestamp: string

ISO timestamp of this entry

status?: "completed" | "failed" | "pending" | "running"

Current status of the task

outputPreview?: string

Preview of task output

metadata?: Record<string, unknown>

Additional metadata