Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

OAuthAuthorizationDetails

import type { OAuthAuthorizationDetails } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";

OAuth authorization details for the consent flow. Only relevant when the OAuth 2.1 server is enabled in Supabase Auth.

type OAuthAuthorizationDetails = {
authorization_id: string;
redirect_url?: string;
user: {
id: string;
email: string;
}
;
scope: string;
}
;

§Type

§
{
authorization_id: string;
redirect_url?: string;
user: {
id: string;
email: string;
}
;
scope: string;
}
[src]