(b: AnyCb)
| 3110 | b("connection", "=", String(ref.name)), |
| 3111 | ); |
| 3112 | const connectionWhere = (b: AnyCb) => |
| 3113 | b.and( |
| 3114 | byOwner(owner)(b), |
| 3115 | b("integration", "=", String(ref.integration)), |
| 3116 | b("name", "=", String(ref.name)), |
| 3117 | ); |
| 3118 | const isToolSyncHealth = (health: HealthCheckResult | null): boolean => |
| 3119 | health?.detail?.startsWith(toolSyncHealthDetailPrefix) === true; |
| 3120 | const syncedSet = (row: ConnectionRow | null) => { |