(b: AnyCb)
| 2525 | b("connection", "=", String(ref.name)), |
| 2526 | ); |
| 2527 | const connectionWhere = (b: AnyCb) => |
| 2528 | b.and( |
| 2529 | byOwner(owner)(b), |
| 2530 | b("integration", "=", String(ref.integration)), |
| 2531 | b("name", "=", String(ref.name)), |
| 2532 | ); |
| 2533 | const isToolSyncHealth = (health: HealthCheckResult | null): boolean => |
| 2534 | health?.detail?.startsWith(toolSyncHealthDetailPrefix) === true; |
| 2535 | const syncedSet = (row: ConnectionRow | null) => { |