(b: AnyCb)
| 2511 | b("connection", "=", String(ref.name)), |
| 2512 | ); |
| 2513 | const connectionWhere = (b: AnyCb) => |
| 2514 | b.and( |
| 2515 | byOwner(owner)(b), |
| 2516 | b("integration", "=", String(ref.integration)), |
| 2517 | b("name", "=", String(ref.name)), |
| 2518 | ); |
| 2519 | const isToolSyncHealth = (health: HealthCheckResult | null): boolean => |
| 2520 | health?.detail?.startsWith(toolSyncHealthDetailPrefix) === true; |
| 2521 | const syncedSet = (row: ConnectionRow | null) => { |