Type Alias DataSourceSyncStatus

type DataSourceSyncStatus = {
    completedAt: string;
    lastSyncId?: string;
    startedAt: string;
    status:
        | "neverIndexed"
        | "progress"
        | "completed"
        | "completedWithError"
        | "toAdd"
        | "toDelete";
}
Index

Properties

completedAt: string

Datetime when the sync task was completed

lastSyncId?: string

sync Id

startedAt: string

Datetime when the sync task was started

status:
    | "neverIndexed"
    | "progress"
    | "completed"
    | "completedWithError"
    | "toAdd"
    | "toDelete"

Sync status