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
chunkSize?: number
duration?: Duration
error?: string
explicitPages: number
fileCompletedAt?: string
fileLastModified?: string
fileSize?: number
fileStartedAt?: string
id: string
source: string
syncedAt: string
syncId: string