(b: AnyCb)
| 2430 | b("connection", "=", String(ref.name)), |
| 2431 | ); |
| 2432 | const connectionWhere = (b: AnyCb) => |
| 2433 | b.and( |
| 2434 | byOwner(owner)(b), |
| 2435 | b("integration", "=", String(ref.integration)), |
| 2436 | b("name", "=", String(ref.name)), |
| 2437 | ); |
| 2438 | const isToolSyncHealth = (health: HealthCheckResult | null): boolean => |
| 2439 | health?.detail?.startsWith(toolSyncHealthDetailPrefix) === true; |
| 2440 | const syncedSet = (row: ConnectionRow | null) => { |