eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
9 lines (8 loc) • 372 B
TypeScript
import type { ResolvedOidcAuthStrategy, RouteStrategyAuthenticationResult } from "#runtime/governance/auth/types.js";
/**
* Verifies one bearer token against a resolved OIDC strategy.
*/
export declare function authenticateOidcStrategy(input: {
readonly token: string;
readonly strategy: ResolvedOidcAuthStrategy;
}): Promise<RouteStrategyAuthenticationResult>;