(parsed: ParsedToolAddress)
| 4143 | rows.map((row) => rowToTool(row).address); |
| 4144 | |
| 4145 | const toolRowsForConnectionWhere = (parsed: ParsedToolAddress) => (b: AnyCb) => |
| 4146 | b.and( |
| 4147 | byOwner(parsed.owner)(b), |
| 4148 | b("integration", "=", String(parsed.integration)), |
| 4149 | b("connection", "=", String(parsed.connection)), |
| 4150 | ); |
| 4151 | |
| 4152 | const searchToolRowsForConnection = ( |
| 4153 | parsed: ParsedToolAddress, |
no test coverage detected