Interface TemporalCheckpoint

Named or implicit point usable as a history cursor.

interface TemporalCheckpoint {
    checkpointId: string;
    createdAt?: string;
    createdBy?: string;
    cursorType: TemporalCursorType;
    cursorValue: string;
    gitRef?: string;
    jobRunId?: string;
    label?: string;
    metadataReleaseId?: string;
    operationRef?: string;
    resourceId?: string;
    sourceId: string;
}

Properties

checkpointId: string
createdAt?: string
createdBy?: string
cursorType: TemporalCursorType
cursorValue: string

Cursor payload; an ISO-8601 timestamp, transaction id, release id, etc.

gitRef?: string
jobRunId?: string
label?: string
metadataReleaseId?: string
operationRef?: string
resourceId?: string
sourceId: string