(
parsed: ParsedToolAddress,
)
| 4167 | }); |
| 4168 | |
| 4169 | const findToolRowsForConnection = ( |
| 4170 | parsed: ParsedToolAddress, |
| 4171 | ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> => |
| 4172 | core.findMany("tool", { |
| 4173 | where: toolRowsForConnectionWhere(parsed), |
| 4174 | orderBy: ["name", "asc"], |
| 4175 | limit: TOOL_SUGGESTION_LIMIT, |
| 4176 | select: TOOL_INVOCATION_COLUMNS, |
| 4177 | }); |
| 4178 | |
| 4179 | const execute = ( |
| 4180 | address: ToolAddress, |
no test coverage detected