File tree Expand file tree Collapse file tree 4 files changed +15
-13
lines changed Expand file tree Collapse file tree 4 files changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ export type CheckoutCtx = __internal_CheckoutProps & {
134
134
} & NewSubscriptionRedirectUrl ;
135
135
136
136
export type SessionTasksCtx = {
137
- redirectUrlComplete ? : string ;
137
+ redirectUrlComplete : string ;
138
138
currentTaskContainer ?: React . RefObject < HTMLDivElement > | null ;
139
139
} ;
140
140
Original file line number Diff line number Diff line change @@ -12,18 +12,19 @@ import React from 'react';
12
12
import { useEnforceCorrectRoutingProps } from './hooks/useEnforceRoutingProps' ;
13
13
14
14
export {
15
+ APIKeys ,
15
16
CreateOrganization ,
17
+ GoogleOneTap ,
16
18
OrganizationList ,
17
19
OrganizationSwitcher ,
20
+ PricingTable ,
18
21
SignInButton ,
19
22
SignInWithMetamaskButton ,
20
23
SignOutButton ,
21
24
SignUpButton ,
25
+ TaskSelectOrganization ,
22
26
UserButton ,
23
- GoogleOneTap ,
24
27
Waitlist ,
25
- PricingTable ,
26
- APIKeys ,
27
28
} from '@clerk/clerk-react' ;
28
29
29
30
// The assignment of UserProfile with BaseUserProfile props is used
Original file line number Diff line number Diff line change 4
4
*/
5
5
export {
6
6
AuthenticateWithRedirectCallback ,
7
- ClerkLoaded ,
8
- ClerkLoading ,
9
7
ClerkDegraded ,
10
8
ClerkFailed ,
9
+ ClerkLoaded ,
10
+ ClerkLoading ,
11
11
RedirectToCreateOrganization ,
12
12
RedirectToOrganizationProfile ,
13
13
RedirectToSignIn ,
@@ -20,22 +20,23 @@ export {
20
20
* If you do, app router will break.
21
21
*/
22
22
export {
23
+ APIKeys ,
23
24
CreateOrganization ,
25
+ GoogleOneTap ,
24
26
OrganizationList ,
25
27
OrganizationProfile ,
26
28
OrganizationSwitcher ,
29
+ PricingTable ,
27
30
SignIn ,
28
31
SignInButton ,
29
32
SignInWithMetamaskButton ,
30
33
SignOutButton ,
31
34
SignUp ,
32
35
SignUpButton ,
36
+ TaskSelectOrganization ,
33
37
UserButton ,
34
38
UserProfile ,
35
- GoogleOneTap ,
36
39
Waitlist ,
37
- PricingTable ,
38
- APIKeys ,
39
40
} from './client-boundary/uiComponents' ;
40
41
41
42
/**
@@ -48,12 +49,12 @@ export {
48
49
useEmailLink ,
49
50
useOrganization ,
50
51
useOrganizationList ,
52
+ useReverification ,
51
53
useSession ,
52
54
useSessionList ,
53
55
useSignIn ,
54
56
useSignUp ,
55
57
useUser ,
56
- useReverification ,
57
58
} from './client-boundary/hooks' ;
58
59
59
60
/**
Original file line number Diff line number Diff line change @@ -2055,9 +2055,8 @@ export type SignUpButtonProps = (SignUpButtonPropsModal | ButtonPropsRedirect) &
2055
2055
export type TaskSelectOrganizationProps = {
2056
2056
/**
2057
2057
* Full URL or path to navigate to after successfully resolving all tasks
2058
- * @default undefined
2059
2058
*/
2060
- redirectUrlComplete ? : string ;
2059
+ redirectUrlComplete : string ;
2061
2060
appearance ?: TaskSelectOrganizationTheme ;
2062
2061
} ;
2063
2062
@@ -2131,8 +2130,9 @@ export interface AuthenticateWithGoogleOneTapParams {
2131
2130
export interface __internal_NavigateToTaskIfAvailableParams {
2132
2131
/**
2133
2132
* Full URL or path to navigate to after successfully resolving all tasks
2133
+ * @default undefined
2134
2134
*/
2135
- redirectUrlComplete : string ;
2135
+ redirectUrlComplete ? : string ;
2136
2136
}
2137
2137
2138
2138
export interface LoadedClerk extends Clerk {
You can’t perform that action at this time.
0 commit comments