(b: AnyCb)
| 3279 | b("connection", "=", String(ref.name)), |
| 3280 | ); |
| 3281 | const connectionWhere = (b: AnyCb) => |
| 3282 | b.and( |
| 3283 | byOwner(owner)(b), |
| 3284 | b("integration", "=", String(ref.integration)), |
| 3285 | b("name", "=", String(ref.name)), |
| 3286 | ); |
| 3287 | const syncedSet = (row: ConnectionRow | null) => { |
| 3288 | const health = row ? Option.getOrNull(decodeLastHealth(row.last_health)) : null; |
| 3289 | return isToolSyncHealth(health) |
no test coverage detected