(b: AnyCb)
| 2088 | b("connection", "=", String(ref.name)), |
| 2089 | ); |
| 2090 | const connectionWhere = (b: AnyCb) => |
| 2091 | b.and( |
| 2092 | byOwner(owner)(b), |
| 2093 | b("integration", "=", String(ref.integration)), |
| 2094 | b("name", "=", String(ref.name)), |
| 2095 | ); |
| 2096 | const isToolSyncHealth = (health: HealthCheckResult | null): boolean => |
| 2097 | health?.detail?.startsWith(toolSyncHealthDetailPrefix) === true; |
| 2098 | const syncedSet = (row: ConnectionRow | null) => { |