(integration: string, verbose: boolean)
| 49 | }; |
| 50 | |
| 51 | const listCode = (integration: string, verbose: boolean) => ` |
| 52 | const res = await tools.executor.coreTools.connections.list(${JSON.stringify( |
| 53 | verbose ? { integration, verbose: true } : { integration }, |
| 54 | )}); |
| 55 | return res.ok ? res.data : res; |
| 56 | `; |
| 57 | |
| 58 | scenario( |
| 59 | "Connections · list summarizes OAuth scope to a count by default and returns the full grant under verbose", |
no outgoing calls
no test coverage detected