(parsed: ParsedToolAddress)
| 4302 | rows.map((row) => rowToTool(row).address); |
| 4303 | |
| 4304 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 4305 | b.and( |
| 4306 | byOwner(parsed.owner)(b), |
| 4307 | b("integration", "=", String(parsed.integration)), |
| 4308 | b("connection", "=", String(parsed.connection)), |
| 4309 | ); |
| 4310 | |
| 4311 | const searchToolRowsForConnection = ( |
| 4312 | parsed: ParsedToolAddress, |
no test coverage detected