(b: AnyCb)
| 2072 | b("connection", "=", String(ref.name)), |
| 2073 | ); |
| 2074 | const connectionWhere = (b: AnyCb) => |
| 2075 | b.and( |
| 2076 | byOwner(owner)(b), |
| 2077 | b("integration", "=", String(ref.integration)), |
| 2078 | b("name", "=", String(ref.name)), |
| 2079 | ); |
| 2080 | const isToolSyncHealth = (health: HealthCheckResult | null): boolean => |
| 2081 | health?.detail?.startsWith(toolSyncHealthDetailPrefix) === true; |
| 2082 | const syncedSet = (row: ConnectionRow | null) => { |