(parsed: ParsedToolAddress)
| 3337 | rows.map((row) => rowToTool(row).address); |
| 3338 | |
| 3339 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 3340 | b.and( |
| 3341 | byOwner(parsed.owner)(b), |
| 3342 | b("integration", "=", String(parsed.integration)), |
| 3343 | b("connection", "=", String(parsed.connection)), |
| 3344 | ); |
| 3345 | |
| 3346 | const searchToolRowsForConnection = ( |
| 3347 | parsed: ParsedToolAddress, |
no test coverage detected