@karmaniverous/jeeves-watcher
    Preparing search index...

    Interface ReindexStatus

    Reindex status snapshot for API consumers.

    interface ReindexStatus {
        active: boolean;
        filesProcessed?: number;
        scope?: string;
        startedAt?: string;
        totalFiles?: number;
    }
    Index

    Properties

    active: boolean

    Whether a reindex operation is currently in progress.

    filesProcessed?: number

    Number of files processed so far (when active is true).

    scope?: string

    The active reindex scope (when active is true).

    startedAt?: string

    ISO 8601 timestamp when the current reindex started (when active is true).

    totalFiles?: number

    Total number of files to process (when active is true).