(
parsed: ParsedToolAddress,
)
| 3361 | }); |
| 3362 | |
| 3363 | const findToolRowsForConnection = ( |
| 3364 | parsed: ParsedToolAddress, |
| 3365 | ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> => |
| 3366 | core.findMany("tool", { |
| 3367 | where: toolRowsForConnectionWhere(parsed), |
| 3368 | orderBy: ["name", "asc"], |
| 3369 | limit: TOOL_SUGGESTION_LIMIT, |
| 3370 | select: TOOL_INVOCATION_COLUMNS, |
| 3371 | }); |
| 3372 | |
| 3373 | const execute = ( |
| 3374 | address: ToolAddress, |
no test coverage detected