ISPO SDK
    Preparing search index...

    Interface CloudSyncSummary

    Markdown

    Read-only mirror of the host's cloud entity-sync engine (§27): the backup of this device's entities to the tenant mirror plus the pull of cloud-authored ones. Presentational and id-free — no seqs, cursors, or row identities.

    interface CloudSyncSummary {
        enabled: boolean;
        lastError: string | null;
        lastSyncedAt: string | null;
        skippedOversized: number;
        surface?: CloudSyncSurfaceStatus;
        syncing: boolean;
    }
    Index
    enabled: boolean

    Whether the user has cloud sync/backup enabled on this device.

    lastError: string | null

    Human-readable last failure; null when the engine is healthy.

    lastSyncedAt: string | null

    ISO timestamp of the last completed sync; null when never synced.

    skippedOversized: number

    Rows skipped as too large to back up (surfaced, never silent).

    The closed nine-state sync-surface projection (W6). Optional/additive: the five fields above keep working for existing consumers unchanged.

    syncing: boolean

    True while a sync cycle (push or pull) is in flight.