fieldnotesai
    Preparing search index...

    Provides functionality for session notes conflict record.

    interface SessionNotesConflictRecord {
        caseId: string | null;
        caseTitle: string | null;
        id: string;
        keptNoteContents: string[];
        localUpdatedAt: string | null;
        recordingId: string;
        remoteUpdatedAt: string | null;
        removedNoteContents: string[];
        resolvedAt: string;
        winner: "local" | "remote";
    }
    Index

    Properties

    caseId: string | null
    caseTitle: string | null
    id: string
    keptNoteContents: string[]
    localUpdatedAt: string | null
    recordingId: string
    remoteUpdatedAt: string | null
    removedNoteContents: string[]
    resolvedAt: string
    winner: "local" | "remote"