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

    Interface AuthInfo

    Authentication information from token verification

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

    Client ID that owns the token

    expiresAt: number

    Token expiration timestamp (milliseconds since epoch)

    providerTokens?: ProviderTokens

    Google provider tokens (if available)

    scopes: string[]

    Granted scopes

    token: string

    Bearer access token