Member Junction
    Preparing search index...

    Represents a field-level comparison between two records

    interface FieldComparison {
        CustomValue?: unknown;
        DataType: string;
        DisplayLabel: string;
        FieldName: string;
        HasConflict: boolean;
        IsReadOnly: boolean;
        LeftValue: unknown;
        RightValue: unknown;
        SelectedSide: "left" | "right" | "custom";
    }
    Index

    Properties

    CustomValue?: unknown

    Custom value if the user provides one

    DataType: string

    The field data type for display formatting

    DisplayLabel: string

    Display label for the field

    FieldName: string

    The field name

    HasConflict: boolean

    Whether the values differ

    IsReadOnly: boolean

    Whether this field is read-only (e.g., ID, computed fields)

    LeftValue: unknown

    Value from the left (source) record

    RightValue: unknown

    Value from the right (target) record

    SelectedSide: "left" | "right" | "custom"

    Which side is selected for the merge result: 'left', 'right', or 'custom'