You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Your Clerk [Publishable Key](!publishable-key). */
@@ -317,6 +336,7 @@ export interface Clerk {
317
336
318
337
/**
319
338
* Indicates whether the instance is being loaded in a standard browser environment. Set to `false` on native platforms where cookies cannot be set. When `undefined`, Clerk assumes a standard browser.
339
+
*
320
340
* @inline
321
341
*/
322
342
isStandardBrowser: boolean|undefined;
@@ -350,6 +370,7 @@ export interface Clerk {
350
370
* `effect()` that can be used to subscribe to changes from Signals.
351
371
*
352
372
* @hidden
373
+
*
353
374
* @experimental This experimental API is subject to change.
354
375
*/
355
376
__internal_state: State;
@@ -398,6 +419,7 @@ export interface Clerk {
398
419
399
420
/**
400
421
* Closes the Clerk Checkout drawer.
422
+
*
401
423
* @hidden
402
424
*/
403
425
__internal_closeCheckout: ()=>void;
@@ -412,6 +434,7 @@ export interface Clerk {
412
434
413
435
/**
414
436
* Closes the Clerk PlanDetails drawer.
437
+
*
415
438
* @hidden
416
439
*/
417
440
__internal_closePlanDetails: ()=>void;
@@ -426,6 +449,7 @@ export interface Clerk {
426
449
427
450
/**
428
451
* Closes the Clerk SubscriptionDetails drawer.
452
+
*
429
453
* @hidden
430
454
*/
431
455
__internal_closeSubscriptionDetails: ()=>void;
@@ -440,12 +464,14 @@ export interface Clerk {
440
464
441
465
/**
442
466
* Closes the Clerk user verification modal.
467
+
*
443
468
* @hidden
444
469
*/
445
470
__internal_closeReverification: ()=>void;
446
471
447
472
/**
448
473
* Attempts to enable a environment setting from a development instance, prompting if disabled.
474
+
*
449
475
* @hidden
450
476
*/
451
477
__internal_attemptToEnableEnvironmentSetting: (
@@ -454,12 +480,14 @@ export interface Clerk {
454
480
455
481
/**
456
482
* Opens the Clerk Enable Organizations prompt for development instance
* Completes an email link verification flow started by `Clerk.client.signIn.createEmailLinkFlow` or `Clerk.client.signUp.createEmailLinkFlow`, by processing the verification results from the redirect URL query parameters. This method should be called after the user is redirected back from visiting the verification link in their email.
1133
+
*
1103
1134
* @param params - Allows you to define the URLs where the user should be redirected to on successful verification or pending/completed sign-up or sign-in attempts. If the email link is successfully verified on another device, there's a callback function parameter that allows custom code execution.
1104
1135
* @param customNavigate - A function that overrides Clerk's default navigation behavior, allowing custom handling of navigation during sign-up and sign-in flows.
1105
1136
*/
@@ -1385,6 +1416,7 @@ export type ClerkOptions = ClerkOptionsNavigation &
1385
1416
localization?: LocalizationResource;
1386
1417
/**
1387
1418
* Indicates whether Clerk should poll against Clerk's backend every 5 minutes.
0 commit comments