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

CreateOAuthClientParams

Parameters for creating a new OAuth client. Only relevant when the OAuth 2.1 server is enabled in Supabase Auth.

type CreateOAuthClientParams = {
client_name: string;
client_uri?: string;
redirect_uris: string[];
grant_types?: OAuthClientGrantType[];
response_types?: OAuthClientResponseType[];
scope?: string;
}
;

§Type

§
{
client_name: string;
client_uri?: string;
redirect_uris: string[];
grant_types?: OAuthClientGrantType[];
response_types?: OAuthClientResponseType[];
scope?: string;
}
[src]