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

OAuthAuthorizationDetails

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_uri?: string;
user: {
id: string;
email: string;
}
;
scope: string;
}
;

§Type

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