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

OAuthClient

OAuth client object returned from the OAuth 2.1 server. Only relevant when the OAuth 2.1 server is enabled in Supabase Auth.

type OAuthClient = {
client_id: string;
client_name: string;
client_secret?: string;
client_type: OAuthClientType;
token_endpoint_auth_method: string;
registration_type: OAuthClientRegistrationType;
client_uri?: string;
redirect_uris: string[];
grant_types: OAuthClientGrantType[];
response_types: OAuthClientResponseType[];
scope?: string;
created_at: string;
updated_at: string;
}
;

§Type

§
{
client_id: string;
client_name: string;
client_secret?: string;
client_type: OAuthClientType;
token_endpoint_auth_method: string;
registration_type: OAuthClientRegistrationType;
client_uri?: string;
redirect_uris: string[];
grant_types: OAuthClientGrantType[];
response_types: OAuthClientResponseType[];
scope?: string;
created_at: string;
updated_at: string;
}
[src]