(b: AnyCb)
| 3538 | b("connection", "=", String(ref.name)), |
| 3539 | ); |
| 3540 | const connectionWhere = (b: AnyCb) => |
| 3541 | b.and( |
| 3542 | byOwner(owner)(b), |
| 3543 | b("integration", "=", String(ref.integration)), |
| 3544 | b("name", "=", String(ref.name)), |
| 3545 | ); |
| 3546 | const syncedSet = (row: ConnectionRow | null) => { |
| 3547 | const health = row ? Option.getOrNull(decodeLastHealth(row.last_health)) : null; |
| 3548 | return isToolSyncHealth(health) |
no test coverage detected