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

    Interface AuthorizationCode

    Authorization code data structure

    interface AuthorizationCode {
        client_id: string;
        client_type?: "cimd";
        code: string;
        code_challenge?: string;
        code_challenge_method?: string;
        created_at: number;
        expires_at: number;
        providerTokens: ProviderTokens;
        redirect_uri: string;
        scope: string;
    }
    Index
    client_id: string
    client_type?: "cimd"

    Set for CIMD public clients; absent for DCR registrations.

    code: string
    code_challenge?: string
    code_challenge_method?: string
    created_at: number
    expires_at: number
    providerTokens: ProviderTokens

    Google provider tokens obtained during authorization

    redirect_uri: string
    scope: string