enquire-mcp API reference - v4.0.0-rc.7
    Preparing search index...

    Interface FtsSyncReport

    Raw counter and physical-integrity evidence returned by FTS5 sync.

    interface FtsSyncReport {
        added: number;
        audited: boolean;
        complete: boolean;
        declared_chunks: number;
        declared_files: number;
        deleted: number;
        empty: number;
        failed: number;
        indexed_chunks: number;
        indexed_files: number;
        manifest_sha256: string | null;
        mismatched_files: number;
        mode: FtsSyncMode;
        processed_files: number;
        total_chunks: number;
        total_files: number;
        unchanged: number;
        updated: number;
    }
    Index
    added: number

    Files newly indexed (no prior source_state row).

    audited: boolean

    Whether the expensive physical-row audit and manifest were computed.

    complete: boolean

    Derived raw-equation result; publication guards recompute it independently.

    declared_chunks: number

    Sum of declared per-file chunk counts.

    declared_files: number

    Files declared in source_state by the final physical audit.

    deleted: number

    Files dropped because the source vanished from the vault.

    empty: number

    Live files that produced no indexable chunks.

    failed: number

    Per-file read/index failures caught in fail-soft mode.

    indexed_chunks: number

    Actual physical Markdown chunk rows.

    indexed_files: number

    Distinct physical chunk paths found by the final physical audit.

    manifest_sha256: string | null

    SHA-256 over the exact kind-scoped state, revision ledger, quarantine, and chunks; null when unaudited.

    mismatched_files: number

    Unique paths rejected by the physical audit.

    Requested error policy. Product startup defaults to fail-soft; evidence runs use strict.

    processed_files: number

    Live files either indexed, classified empty/failed, or verified unchanged.

    total_chunks: number

    Total chunks in the index after the sync.

    total_files: number

    Live Markdown source files observed at sync start.

    unchanged: number

    Files whose mtime matched the stored row — no work needed.

    updated: number

    Files re-indexed due to mtime change.