(
parsed: ParsedToolAddress,
)
| 4710 | }); |
| 4711 | |
| 4712 | const findToolRowsForConnection = ( |
| 4713 | parsed: ParsedToolAddress, |
| 4714 | ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> => |
| 4715 | core.findMany("tool", { |
| 4716 | where: toolRowsForConnectionWhere(parsed), |
| 4717 | orderBy: ["name", "asc"], |
| 4718 | limit: TOOL_SUGGESTION_LIMIT, |
| 4719 | select: TOOL_INVOCATION_COLUMNS, |
| 4720 | }); |
| 4721 | |
| 4722 | const execute = ( |
| 4723 | address: ToolAddress, |
no test coverage detected