(parsed: ParsedToolAddress)
| 5694 | rows.map((row) => rowToTool(row).address); |
| 5695 | |
| 5696 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 5697 | b.and( |
| 5698 | byOwner(parsed.owner)(b), |
| 5699 | b("integration", "=", String(parsed.integration)), |
| 5700 | b("connection", "=", String(parsed.connection)), |
| 5701 | ); |
| 5702 | |
| 5703 | const searchToolRowsForConnection = ( |
| 5704 | parsed: ParsedToolAddress, |
no test coverage detected