(integration: string, query: string | undefined)
| 1272 | // results, formatting, and telemetry match a hand-written |
| 1273 | // `tools.search({ namespace })` call. |
| 1274 | const searchNamespaceCode = (integration: string, query: string | undefined): string => |
| 1275 | `return tools.search(${JSON.stringify({ query: query ?? "", namespace: integration })})`; |
| 1276 | |
| 1277 | /** What the caller could bind an unresolved role to. Best effort: the |
| 1278 | * connections port is optional, and a failure to enumerate must not |
no outgoing calls
no test coverage detected