Member Junction
    Preparing search index...

    Interface EntityFieldRulesOptions

    Options controlling a compute/apply pass.

    interface EntityFieldRulesOptions {
        Context?: Record<string, unknown>;
        DryRun?: boolean;
    }
    Index

    Properties

    Properties

    Context?: Record<string, unknown>

    Extra data the rules may reference beyond the entity's own fields (merged on top of the entity's field map — a formula can read fields.SomeContextKey, a condition can read SomeContextKey). Use for values you already hold: a data context, a query result, an agent's output payload.

    DryRun?: boolean

    When true, compute the diff but DO NOT write — the returned changes are the preview.