@mcp-z/oauth-google
    Preparing search index...

    Interface VerificationResult

    Verification result from DCR authorization server

    interface VerificationResult {
        clientId: string;
        expiresAt: number;
        providerTokens: ProviderTokens;
        scopes: string[];
        token: string;
    }
    Index
    clientId: string

    Client ID associated with the token

    expiresAt: number

    Token expiration timestamp (milliseconds since epoch)

    providerTokens: ProviderTokens

    Provider tokens (Google access/refresh tokens)

    scopes: string[]

    OAuth scopes granted to the token

    token: string

    Bearer token that was verified