(b: AnyCb)
| 3475 | b("connection", "=", String(ref.name)), |
| 3476 | ); |
| 3477 | const connectionWhere = (b: AnyCb) => |
| 3478 | b.and( |
| 3479 | byOwner(owner)(b), |
| 3480 | b("integration", "=", String(ref.integration)), |
| 3481 | b("name", "=", String(ref.name)), |
| 3482 | ); |
| 3483 | const syncedSet = (row: ConnectionRow | null) => { |
| 3484 | const health = row ? Option.getOrNull(decodeLastHealth(row.last_health)) : null; |
| 3485 | return isToolSyncHealth(health) |
no test coverage detected