enquire-mcp API reference - v3.9.0-rc.4
    Preparing search index...

    Interface ReplaceInNotesResult

    Envelope returned by replaceInNotes.

    partial: true signals that some writes failed mid-apply — check errors for the per-file reasons. Always false on dry-run.

    interface ReplaceInNotesResult {
        case_sensitive: boolean;
        dry_run: boolean;
        errors?: { message: string; path: string }[];
        files_scanned: number;
        files_updated: ReplaceInNotesFileResult[];
        partial: boolean;
        replace: string;
        scope: string;
        search: string;
        total_replacements: number;
    }
    Index

    Properties

    case_sensitive: boolean
    dry_run: boolean
    errors?: { message: string; path: string }[]

    v2.0.0-beta.2 P1: per-file write errors collected during apply. Only populated when the apply phase encountered errors (so happy-path responses stay narrow).

    files_scanned: number
    files_updated: ReplaceInNotesFileResult[]
    partial: boolean

    v2.0.0-beta.2 P1: when true, the apply pass aborted partway through. files_updated only contains files that DID write successfully. Files in errors (if present) failed mid-write — caller should retry just those and verify state. Always false on dry_run.

    replace: string
    scope: string
    search: string
    total_replacements: number