(row: ConnectionRow | null)
| 2544 | // Successful syncs also clear stale sync-failure health records, while |
| 2545 | // preserving genuine health-check outcomes. |
| 2546 | const stampSynced = (row: ConnectionRow | null) => |
| 2547 | core.updateMany("connection", { |
| 2548 | where: connectionWhere, |
| 2549 | set: syncedSet(row), |
| 2550 | }); |
| 2551 | const stampSyncedWithHealth = (reason: string) => |
| 2552 | core.updateMany("connection", { |
| 2553 | where: connectionWhere, |
no test coverage detected