(parsed: ParsedToolAddress)
| 6195 | rows.map((row) => rowToTool(row).address); |
| 6196 | |
| 6197 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 6198 | b.and( |
| 6199 | byOwner(parsed.owner)(b), |
| 6200 | b("integration", "=", String(parsed.integration)), |
| 6201 | b("connection", "=", String(parsed.connection)), |
| 6202 | ); |
| 6203 | |
| 6204 | const searchToolRowsForConnection = ( |
| 6205 | parsed: ParsedToolAddress, |
no test coverage detected