Member Junction
    Preparing search index...

    Interface EntityFieldRulesResult

    interface EntityFieldRulesResult {
        AppliedFields: string[];
        Changes: FieldChange[];
        DryRun: boolean;
        Errors: string[];
        Saved: boolean;
        SaveError?: string;
    }
    Index

    Properties

    AppliedFields: string[]

    Names of the fields that were (or, in dry-run, would be) written.

    Changes: FieldChange[]

    The per-field diff (old → new) for every rule — the dry-run preview AND the applied record.

    DryRun: boolean

    True when this was a dry-run (no write attempted).

    Errors: string[]

    Per-rule evaluation errors (condition/source/transform), if any. No write happens when present.

    Saved: boolean

    True when the entity was saved (always false in dry-run, on error, or when nothing changed).

    SaveError?: string

    Save error detail, when a real apply failed to persist.