Member Junction
    Preparing search index...

    Metadata describing a run, supplied to a tracker's BeginRun.

    interface ProcessRunMeta {
        BatchSize?: number;
        Configuration?: unknown;
        DryRun?: boolean;
        EntityID?: string;
        RecordProcessID?: string;
        ScheduledJobRunID?: string;
        SourceFilter?: string;
        SourceID?: string;
        SourceType: SourceTypeValue;
        TotalItemCount?: number;
        TriggeredBy: TriggeredByValue;
    }
    Index

    Properties

    BatchSize?: number

    Effective batch size.

    Configuration?: unknown

    JSON-serializable snapshot of the effective configuration.

    DryRun?: boolean

    True when this run is a dry-run (compute-only) preview — persisted on the run header so history can distinguish it from a real apply.

    EntityID?: string

    FK to the target entity.

    RecordProcessID?: string

    FK to the originating Record Process definition (NULL for ad-hoc / engine-driven runs).

    ScheduledJobRunID?: string

    FK to the owning ScheduledJobRun when launched by the scheduler (NULL otherwise).

    SourceFilter?: string

    Resolved filter snapshot, when applicable.

    SourceID?: string

    ViewID / ListID, when applicable.

    SourceType: SourceTypeValue

    The kind of source.

    TotalItemCount?: number

    Known total record count, or null.

    TriggeredBy: TriggeredByValue

    What triggered the run.