Package version:

Interface SynchronizationState

Represents the current state of an ongoing synchronization that spans multiple indexer runs.

interface SynchronizationState {
    itemsSkipped: number;
    itemsUpdatesFailed: number;
    itemsUpdatesProcessed: number;
    startTime: Date;
}

Properties

itemsSkipped: number

The number of items skipped in the current synchronization.

itemsUpdatesFailed: number

The number of item updates that failed in the current synchronization.

itemsUpdatesProcessed: number

The number of item updates successfully processed in the current synchronization.

startTime: Date

The start time of the current synchronization.