(parsed: ParsedToolAddress)
| 4686 | rows.map((row) => rowToTool(row).address); |
| 4687 | |
| 4688 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 4689 | b.and( |
| 4690 | byOwner(parsed.owner)(b), |
| 4691 | b("integration", "=", String(parsed.integration)), |
| 4692 | b("connection", "=", String(parsed.connection)), |
| 4693 | ); |
| 4694 | |
| 4695 | const searchToolRowsForConnection = ( |
| 4696 | parsed: ParsedToolAddress, |
no test coverage detected