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

    Interface FileSourceState

    Current regular-file state returned by Vault.sourceState.

    sourceRevision binds the physical entry, byte size, and filesystem change timestamps. It is an opaque equality receipt, not a content-authenticity proof; callers that expose bytes across an await should additionally bind those bytes (for example with a digest) and re-check this receipt last.

    interface FileSourceState {
        mtimeMs: number;
        sizeBytes: number;
        sourceRevision: string;
    }
    Index
    mtimeMs: number

    Modification time in milliseconds at the same stat generation.

    sizeBytes: number

    File size in bytes at the same stat generation.

    sourceRevision: string

    Opaque filesystem-generation receipt; compare only for exact equality.