(scope: string | null | undefined)
| 387 | * the connection carries no scope (static credentials, or an OAuth AS that |
| 388 | * omitted scope). */ |
| 389 | const oauthScopeCount = (scope: string | null | undefined): number | null => |
| 390 | scope == null ? null : scope.split(/\s+/).filter(Boolean).length; |
| 391 | |
| 392 | /** Lean projection for `connections.list`. Summarizes `oauthScope` and health |
| 393 | * diagnostics unless `verbose`, where the full grant string is included too. */ |
no outgoing calls
no test coverage detected