MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / grantedScopesFromRow

Function grantedScopesFromRow

packages/core/sdk/src/executor.ts:588–594  ·  view source on GitHub ↗
(row: {
  readonly oauth_scope?: unknown;
})

Source from the content-addressed store, hash-verified

586 * token endpoint) into the credential's `grantedScopes`. Undefined when the
587 * row carries none, so scope comparisons downstream fail open. */
588const grantedScopesFromRow = (row: {
589 readonly oauth_scope?: unknown;
590}): readonly string[] | undefined => {
591 if (row.oauth_scope == null) return undefined;
592 const scopes = String(row.oauth_scope).split(/\s+/).filter(Boolean);
593 return scopes.length > 0 ? scopes : undefined;
594};
595
596/** The canonical credential variable for a single-secret connection. OAuth tokens
597 * and the primary apiKey value resolve through it. */

Callers 2

connectionCheckHealthFunction · 0.85
executeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected