(parsed: ParsedToolAddress)
| 3601 | rows.map((row) => rowToTool(row).address); |
| 3602 | |
| 3603 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 3604 | b.and( |
| 3605 | byOwner(parsed.owner)(b), |
| 3606 | b("integration", "=", String(parsed.integration)), |
| 3607 | b("connection", "=", String(parsed.connection)), |
| 3608 | ); |
| 3609 | |
| 3610 | const searchToolRowsForConnection = ( |
| 3611 | parsed: ParsedToolAddress, |
no test coverage detected