(
parsed: ParsedToolAddress,
)
| 5718 | }); |
| 5719 | |
| 5720 | const findToolRowsForConnection = ( |
| 5721 | parsed: ParsedToolAddress, |
| 5722 | ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> => |
| 5723 | core.findMany("tool", { |
| 5724 | where: toolRowsForConnectionWhere(parsed), |
| 5725 | orderBy: ["name", "asc"], |
| 5726 | limit: TOOL_SUGGESTION_LIMIT, |
| 5727 | select: TOOL_INVOCATION_COLUMNS, |
| 5728 | }); |
| 5729 | |
| 5730 | const execute = ( |
| 5731 | address: ToolAddress, |
no test coverage detected