mimiq
    Preparing search index...

    Interface RecordingTurn

    interface RecordingTurn {
        actor: "customer" | "agent";
        content?: string;
        screenshot?: string;
        target?: string;
        timestamp: string;
        toolCalls?: RecordingToolCall[];
        turn: number;
        type: "message" | "click" | "type" | "select" | "navigate";
        uiState?: RecordingUiState;
    }
    Index

    Properties

    actor: "customer" | "agent"
    content?: string
    screenshot?: string
    target?: string
    timestamp: string
    toolCalls?: RecordingToolCall[]
    turn: number
    type: "message" | "click" | "type" | "select" | "navigate"