claude-code-data
    Preparing search index...

    Type Alias AssistantEntry

    An assistant turn in the session transcript.

    type AssistantEntry = {
        agentColor?: string;
        agentId?: string;
        agentName?: string;
        cwd: string;
        entrypoint?: string;
        gitBranch?: string;
        isCompactSummary?: boolean;
        isMeta?: boolean;
        isSidechain: boolean;
        logicalParentUuid?: string | null;
        message: Record<string, unknown>;
        parentUuid: string | null;
        promptId?: string;
        requestId?: string;
        sessionId: string;
        slug?: string;
        teamName?: string;
        timestamp: string;
        type: "assistant";
        userType: string;
        uuid: string;
        version: string;
    }
    Index

    Properties

    agentColor?: string
    agentId?: string
    agentName?: string
    cwd: string
    entrypoint?: string
    gitBranch?: string
    isCompactSummary?: boolean
    isMeta?: boolean
    isSidechain: boolean
    logicalParentUuid?: string | null
    message: Record<string, unknown>

    Raw message payload. Use helpers from message-helpers to access typed sub-fields.

    parentUuid: string | null
    promptId?: string
    requestId?: string
    sessionId: string
    slug?: string
    teamName?: string
    timestamp: string
    type: "assistant"
    userType: string
    uuid: string
    version: string