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

    Interface FtsReceiptChunk

    Raw FTS chunk plus the source receipt selected with the same persisted bytes.

    const chunk = index.getChunkWithReceipt("Projects/plan.md", 0);
    if (chunk) index.currentSourceReceiptMask([chunk]);
    interface FtsReceiptChunk {
        content: string;
        indexed_mtime_ms: number;
        indexed_revision: number;
        kind: ChunkKind;
        line_end: number;
        line_start: number;
        rel_path: string;
    }

    Hierarchy (View Summary)

    Index
    content: string

    Verbatim source chunk without synthetic FTS enrichment.

    indexed_mtime_ms: number

    Source mtime selected in the same snapshot as the indexed bytes.

    indexed_revision: number

    Monotonic ledger revision selected in that snapshot.

    kind: ChunkKind

    Content-source kind.

    line_end: number

    One-based final source line represented by the chunk.

    line_start: number

    One-based first source line represented by the chunk.

    rel_path: string

    Vault-relative path of the indexed source.