Type Alias SyncHistoryDetails

type SyncHistoryDetails = {
    action: "add" | "delete" | "update";
    chunks?: number;
    chunkSize?: number;
    duration?: Duration;
    error?: string;
    explicitPages: number;
    fileCompletedAt?: string;
    fileLastModified?: string;
    fileSize?: number;
    fileStartedAt?: string;
    id: string;
    source: string;
    syncedAt: string;
    syncId: string;
}
Index

Properties

action: "add" | "delete" | "update"

acion performed

chunks?: number

number of chunks

chunkSize?: number

chunk size

duration?: Duration
error?: string

error if one happened during sync

explicitPages: number

page count

fileCompletedAt?: string

Datetime when the file processing finished

fileLastModified?: string

Datetime when the file was last modified

fileSize?: number

file size

fileStartedAt?: string

Datetime when the file processing started

id: string

document Id

source: string

Source of the document

syncedAt: string

Datetime when the sync task was executed

syncId: string

sync Id