(parsed: ParsedToolAddress)
| 3684 | rows.map((row) => rowToTool(row).address); |
| 3685 | |
| 3686 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 3687 | b.and( |
| 3688 | byOwner(parsed.owner)(b), |
| 3689 | b("integration", "=", String(parsed.integration)), |
| 3690 | b("connection", "=", String(parsed.connection)), |
| 3691 | ); |
| 3692 | |
| 3693 | const searchToolRowsForConnection = ( |
| 3694 | parsed: ParsedToolAddress, |
no test coverage detected