Interface TemporalDiff

Server-generated comparison between two checkpoints or time cursors.

interface TemporalDiff {
    diffId: string;
    error?: TemporalError;
    expiresAt?: string;
    extent?: HonuaExtent;
    fromCheckpointId: string;
    generatedAt?: string;
    job?: TemporalJobRef;
    nextCursor?: string;
    sampleFeatureChanges?: readonly TemporalFeatureDiff[];
    sourceId: string;
    status: TemporalDiffStatus;
    summary?: TemporalDiffSummary;
    toCheckpointId: string;
}

Properties

diffId: string

Present on failed / unsupported responses.

expiresAt?: string
extent?: HonuaExtent
fromCheckpointId: string
generatedAt?: string

Set when the diff is produced asynchronously by the job runner.

nextCursor?: string
sampleFeatureChanges?: readonly TemporalFeatureDiff[]

A page of per-feature changes; large diffs page via nextCursor.

sourceId: string
toCheckpointId: string