(
parsed: ParsedToolAddress,
)
| 3625 | }); |
| 3626 | |
| 3627 | const findToolRowsForConnection = ( |
| 3628 | parsed: ParsedToolAddress, |
| 3629 | ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> => |
| 3630 | core.findMany("tool", { |
| 3631 | where: toolRowsForConnectionWhere(parsed), |
| 3632 | orderBy: ["name", "asc"], |
| 3633 | limit: TOOL_SUGGESTION_LIMIT, |
| 3634 | select: TOOL_INVOCATION_COLUMNS, |
| 3635 | }); |
| 3636 | |
| 3637 | const execute = ( |
| 3638 | address: ToolAddress, |
no test coverage detected