(
parsed: ParsedToolAddress,
)
| 4326 | }); |
| 4327 | |
| 4328 | const findToolRowsForConnection = ( |
| 4329 | parsed: ParsedToolAddress, |
| 4330 | ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> => |
| 4331 | core.findMany("tool", { |
| 4332 | where: toolRowsForConnectionWhere(parsed), |
| 4333 | orderBy: ["name", "asc"], |
| 4334 | limit: TOOL_SUGGESTION_LIMIT, |
| 4335 | select: TOOL_INVOCATION_COLUMNS, |
| 4336 | }); |
| 4337 | |
| 4338 | const execute = ( |
| 4339 | address: ToolAddress, |
no test coverage detected