(
parsed: ParsedToolAddress,
)
| 3609 | }); |
| 3610 | |
| 3611 | const findToolRowsForConnection = ( |
| 3612 | parsed: ParsedToolAddress, |
| 3613 | ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> => |
| 3614 | core.findMany("tool", { |
| 3615 | where: toolRowsForConnectionWhere(parsed), |
| 3616 | orderBy: ["name", "asc"], |
| 3617 | limit: TOOL_SUGGESTION_LIMIT, |
| 3618 | select: TOOL_INVOCATION_COLUMNS, |
| 3619 | }); |
| 3620 | |
| 3621 | const execute = ( |
| 3622 | address: ToolAddress, |
no test coverage detected