(parsed: ParsedToolAddress)
| 4256 | rows.map((row) => rowToTool(row).address); |
| 4257 | |
| 4258 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 4259 | b.and( |
| 4260 | byOwner(parsed.owner)(b), |
| 4261 | b("integration", "=", String(parsed.integration)), |
| 4262 | b("connection", "=", String(parsed.connection)), |
| 4263 | ); |
| 4264 | |
| 4265 | const searchToolRowsForConnection = ( |
| 4266 | parsed: ParsedToolAddress, |
no test coverage detected