Type Alias SyncErrorSummary

Aggregated view of all failures of a single category within one sync.

type SyncErrorSummary = {
    code: IndexingErrorCode;
    count: number;
    sample?: string;
    sources?: string[];
}
Index

Stable, machine-readable error category shared across services and the UI.

count: number

Number of files that failed with this error code.

sample?: string

A representative (sanitized) error message for this category.

sources?: string[]

Up to selectedErrorsCount example sources that failed with this code.