Skip to content

Commit

Permalink
Merge pull request #51 from kinde-oss/dave/types/authUrl
Browse files Browse the repository at this point in the history
Types for authUrlParams
  • Loading branch information
DaveOrDead authored Oct 26, 2023
2 parents 6673d22 + 37ba4fc commit d3916fb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export type KindeClientOptions = {
client_id?: string;
redirect_uri: string;
domain: string;
authUrlParams: object;
is_dangerously_use_local_storage?: boolean;
logout_uri?: string;
on_redirect_callback?: (user: KindeUser, appState?: object) => void;
Expand Down Expand Up @@ -85,13 +84,13 @@ export type OrgOptions = {
export type AuthOptions = {
org_code?: string;
app_state?: object;
authUrlParams?: object;
};

export type RedirectOptions = OrgOptions &
AuthOptions & {
start_page?: string;
is_create_org?: boolean;
authUrlParams?: object;
};

export type KindeClient = {
Expand Down

0 comments on commit d3916fb

Please sign in to comment.