Member Junction
    Preparing search index...

    A structured, non-fatal warning surfaced during an integration run. Emitted via IntegrationProgressEmitter.warning(...) as a 'warning' event and aggregated by the reader into the run result's warnings[] rollup (with a warningCount). Unlike errors, warnings never fail the run.

    interface SyncWarning {
        code: string;
        data?: Record<string, unknown>;
        message: string;
        stage: string;
    }
    Index

    Properties

    Properties

    code: string

    Stable, machine-matchable warning code (e.g. 'FIELD_TRUNCATED').

    data?: Record<string, unknown>

    Optional subsystem-specific structured payload.

    message: string

    Human-readable warning message.

    stage: string

    The stage that produced the warning.