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

    Interface FileEntry

    A markdown file discovered by Vault.listMarkdown. Carries both absolute and vault-relative paths so callers can chose whichever fits their downstream API.

    interface FileEntry {
        absPath: string;
        basename: string;
        mtimeMs: number;
        relPath: string;
        sizeBytes?: number;
        sourceRevision?: string;
    }
    Index
    absPath: string

    Absolute filesystem path.

    basename: string

    Basename including the .md extension.

    mtimeMs: number

    Modification time, ms since epoch.

    relPath: string

    Vault-relative path (forward-slash separated on all platforms).

    sizeBytes?: number

    Source size captured by the directory walk. Optional for compatibility with programmatic callers that construct synthetic FileEntrys.

    sourceRevision?: string

    Opaque filesystem-generation receipt captured with mtimeMs. Production vault walkers always populate it; callers must compare it as a whole and must not parse its representation.