(parsed: ParsedToolAddress)
| 4230 | rows.map((row) => rowToTool(row).address); |
| 4231 | |
| 4232 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 4233 | b.and( |
| 4234 | byOwner(parsed.owner)(b), |
| 4235 | b("integration", "=", String(parsed.integration)), |
| 4236 | b("connection", "=", String(parsed.connection)), |
| 4237 | ); |
| 4238 | |
| 4239 | const searchToolRowsForConnection = ( |
| 4240 | parsed: ParsedToolAddress, |
no test coverage detected