fieldnotesai
    Preparing search index...

    Updates the session notes result.

    interface SaveSessionNotesResult {
        appliedNotes: SessionNote[];
        conflictRecord: SessionNotesConflictRecord | null;
        error?: string;
        notesUpdatedAt?: string | null;
        notesUpdatedByName?: string | null;
        remoteNotesUpdatedByName?: string | null;
        success: boolean;
        winner: "local" | "remote" | "equal";
    }
    Index

    Properties

    appliedNotes: SessionNote[]
    conflictRecord: SessionNotesConflictRecord | null
    error?: string
    notesUpdatedAt?: string | null

    Present after a successful sync with the server (local or remote win).

    notesUpdatedByName?: string | null
    remoteNotesUpdatedByName?: string | null

    When remote version wins a conflict, the other editor’s display name from DB.

    success: boolean
    winner: "local" | "remote" | "equal"