(parsed: ParsedToolAddress)
| 6315 | rows.map((row) => rowToTool(row).address); |
| 6316 | |
| 6317 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 6318 | b.and( |
| 6319 | byOwner(parsed.owner)(b), |
| 6320 | b("integration", "=", String(parsed.integration)), |
| 6321 | b("connection", "=", String(parsed.connection)), |
| 6322 | ); |
| 6323 | |
| 6324 | const searchToolRowsForConnection = ( |
| 6325 | parsed: ParsedToolAddress, |
no test coverage detected