Type Alias SyncHistory

type SyncHistory = {
    completedAt?: string;
    connectionId: string;
    datasourceId: string;
    docStats: DocStats;
    id: string;
    selectedErrors?: string[];
    startedAt: string;
    status: "neverIndexed" | "progress" | "completed" | "completedWithError";
    triggerType: string;
}
Index

Properties

completedAt?: string

Datetime when the sync task was completed

connectionId: string
datasourceId: string
docStats: DocStats
id: string
selectedErrors?: string[]
startedAt: string
status: "neverIndexed" | "progress" | "completed" | "completedWithError"
triggerType: string