We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a75bda2 commit 82ad9b8Copy full SHA for 82ad9b8
src/provider.tsx
@@ -87,6 +87,8 @@ export function AuthKitProvider(props: AuthKitProviderProps) {
87
signUp: client.signUp.bind(client),
88
signOut: client.signOut.bind(client),
89
switchToOrganization: client.switchToOrganization.bind(client),
90
+ getSignInUrl: client.getSignInUrl.bind(client),
91
+ getSignUpUrl: client.getSignUpUrl.bind(client)
92
});
93
setState((prev) => ({ ...prev, isLoading: false, user }));
94
src/types.ts
@@ -8,6 +8,8 @@ export type Client = Pick<
8
| "getAccessToken"
9
| "signOut"
10
| "switchToOrganization"
11
+ | "getSignInUrl"
12
+ | "getSignUpUrl"
13
>;
14
15
export type CreateClientOptions = NonNullable<
0 commit comments