Member Junction
    Preparing search index...

    The difference for a single record between two labels.

    interface RecordDiff {
        DiffType: RecordDiffType;
        EntityName: string;
        FieldChanges: FieldChange[];
        FromSnapshot: Record<string, unknown>;
        RecordID: string;
        ToSnapshot: Record<string, unknown>;
    }
    Index

    Properties

    DiffType: RecordDiffType
    EntityName: string
    FieldChanges: FieldChange[]

    Field-level changes (only populated for Modified records)

    FromSnapshot: Record<string, unknown>

    Snapshot from the "from" label (null for Added records)

    RecordID: string
    ToSnapshot: Record<string, unknown>

    Snapshot from the "to" label or current state (null for Deleted records)