(row: ConnectionRow | null)
| 2091 | // Successful syncs also clear stale sync-failure health records, while |
| 2092 | // preserving genuine health-check outcomes. |
| 2093 | const stampSynced = (row: ConnectionRow | null) => |
| 2094 | core.updateMany("connection", { |
| 2095 | where: connectionWhere, |
| 2096 | set: syncedSet(row), |
| 2097 | }); |
| 2098 | const stampSyncedWithHealth = (reason: string) => |
| 2099 | core.updateMany("connection", { |
| 2100 | where: connectionWhere, |
no test coverage detected