Member Junction
    Preparing search index...

    Single warning attached to a ListDelta. Message is human-readable; Code drives any UI logic that needs to react to a specific class of warning (most importantly WILL_REMOVE_RECORDS, which the delta-confirm dialog uses to require explicit acknowledgement).

    interface ListDeltaWarning {
        Code: ListDeltaWarningCode;
        Details?: Record<string, unknown>;
        Message: string;
    }
    Index

    Properties

    Properties

    Details?: Record<string, unknown>

    Optional structured payload for the UI.

    Message: string