Type Alias: SyncState
type SyncState = "stopped" | "starting" | "active" | "idle" | "error" | "denied";
Defined in: client/lib/core/sync/index.d.ts:23
Where a stack's replication currently stands.
"stopped"- never started, or cancelled."starting"- resolving the remote and running the schema gate."active"- documents are moving."idle"- a replication cycle finished with nothing left to send; this is the state that carries a meaningfullastConvergedAt."error"- the last cycle failed. Withretry: truereplication keeps trying and will return to"active"on its own."denied"- the remote refused a write (permissions), which retrying will not fix.