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

UpdateOAuthClientParams

Parameters for updating an existing OAuth client. All fields are optional. Only provided fields will be updated. Only relevant when the OAuth 2.1 server is enabled in Supabase Auth.

type UpdateOAuthClientParams = {
client_name?: string;
client_uri?: string;
logo_uri?: string;
redirect_uris?: string[];
grant_types?: OAuthClientGrantType[];
}
;

§Type

§
{
client_name?: string;
client_uri?: string;
logo_uri?: string;
redirect_uris?: string[];
grant_types?: OAuthClientGrantType[];
}
[src]