(
parsed: ParsedToolAddress,
)
| 4254 | }); |
| 4255 | |
| 4256 | const findToolRowsForConnection = ( |
| 4257 | parsed: ParsedToolAddress, |
| 4258 | ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> => |
| 4259 | core.findMany("tool", { |
| 4260 | where: toolRowsForConnectionWhere(parsed), |
| 4261 | orderBy: ["name", "asc"], |
| 4262 | limit: TOOL_SUGGESTION_LIMIT, |
| 4263 | select: TOOL_INVOCATION_COLUMNS, |
| 4264 | }); |
| 4265 | |
| 4266 | const execute = ( |
| 4267 | address: ToolAddress, |
no test coverage detected