Member Junction
    Preparing search index...

    Snapshot returned by the reader API for a single run.

    interface IntegrationRunSnapshot {
        counts?: {
            failed?: number;
            processed?: number;
            skipped?: number;
            succeeded?: number;
            totalKnown?: number;
        };
        eventCount: number;
        isInFlight: boolean;
        latestEvent?: IntegrationProgressEvent;
        manifest: IntegrationRunManifest;
        result?: IntegrationRunResult;
        warningCount?: number;
        warnings?: SyncWarning[];
    }
    Index

    Properties

    counts?: {
        failed?: number;
        processed?: number;
        skipped?: number;
        succeeded?: number;
        totalKnown?: number;
    }

    Latest counts derived from the event stream.

    eventCount: number
    isInFlight: boolean
    warningCount?: number

    Total number of 'warning' events in the stream (length of warnings).

    warnings?: SyncWarning[]

    Non-fatal warnings derived from the 'warning' events in the stream.