(parsed: ParsedToolAddress)
| 3585 | rows.map((row) => rowToTool(row).address); |
| 3586 | |
| 3587 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 3588 | b.and( |
| 3589 | byOwner(parsed.owner)(b), |
| 3590 | b("integration", "=", String(parsed.integration)), |
| 3591 | b("connection", "=", String(parsed.connection)), |
| 3592 | ); |
| 3593 | |
| 3594 | const searchToolRowsForConnection = ( |
| 3595 | parsed: ParsedToolAddress, |
no test coverage detected