SongGuess
    Preparing search index...
    type AiSearchItemInfo = {
        checksum?: string;
        chunks_count?: number | null;
        created_at?: string;
        error?: string;
        file_size?: number | null;
        id: string;
        key: string;
        last_seen_at?: string;
        metadata?: Record<string, unknown>;
        namespace?: string;
        next_action?: "INDEX" | "DELETE" | null;
        source_id?: string | null;
        status:
            | "completed"
            | "error"
            | "skipped"
            | "queued"
            | "running"
            | "outdated";
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    checksum?: string
    chunks_count?: number | null
    created_at?: string
    error?: string
    file_size?: number | null
    id: string
    key: string
    last_seen_at?: string
    metadata?: Record<string, unknown>
    namespace?: string
    next_action?: "INDEX" | "DELETE" | null
    source_id?: string | null
    status: "completed" | "error" | "skipped" | "queued" | "running" | "outdated"