(
parsed: ParsedToolAddress,
)
| 4280 | }); |
| 4281 | |
| 4282 | const findToolRowsForConnection = ( |
| 4283 | parsed: ParsedToolAddress, |
| 4284 | ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> => |
| 4285 | core.findMany("tool", { |
| 4286 | where: toolRowsForConnectionWhere(parsed), |
| 4287 | orderBy: ["name", "asc"], |
| 4288 | limit: TOOL_SUGGESTION_LIMIT, |
| 4289 | select: TOOL_INVOCATION_COLUMNS, |
| 4290 | }); |
| 4291 | |
| 4292 | const execute = ( |
| 4293 | address: ToolAddress, |
no test coverage detected