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