Interface RealtimeReconciliationDiff<TFeature>Experimental

Pure REQ-001 output: the identity changes for one transition, and whether it was a reset.

interface RealtimeReconciliationDiff<TFeature> {
    changes: readonly RealtimeReconciliationChange<TFeature>[];
    reset: boolean;
    resetDetail?: string;
    resetReason?: RealtimeReconciliationResetReasonCode;
}

Type Parameters

  • TFeature = unknown

Properties

reset: boolean
resetDetail?: string