@@ -15,13 +15,14 @@ import {
1515import { addClerkPrefix , isAbsoluteUrl , stripScheme } from '@clerk/shared/url' ;
1616import { allSettled , handleValueOrFn , noop } from '@clerk/shared/utils' ;
1717import type {
18+ __internal_CheckoutProps ,
1819 __internal_ComponentNavigationContext ,
20+ __internal_PlanDetailsProps ,
1921 __internal_UserVerificationModalProps ,
2022 AuthenticateWithCoinbaseWalletParams ,
2123 AuthenticateWithGoogleOneTapParams ,
2224 AuthenticateWithMetamaskParams ,
2325 AuthenticateWithOKXWalletParams ,
24- CheckoutProps ,
2526 Clerk as ClerkInterface ,
2627 ClerkAPIError ,
2728 ClerkAuthenticateWithWeb3Params ,
@@ -49,7 +50,6 @@ import type {
4950 OrganizationResource ,
5051 OrganizationSwitcherProps ,
5152 PendingSessionResource ,
52- PlanDetailsProps ,
5353 PricingTableProps ,
5454 PublicKeyCredentialCreationOptionsWithoutExtensions ,
5555 PublicKeyCredentialRequestOptionsWithoutExtensions ,
@@ -546,7 +546,7 @@ export class Clerk implements ClerkInterface {
546546 void this . #componentControls. ensureMounted ( ) . then ( controls => controls . closeModal ( 'signIn' ) ) ;
547547 } ;
548548
549- public __internal_openCheckout = ( props ?: CheckoutProps ) : void => {
549+ public __internal_openCheckout = ( props ?: __internal_CheckoutProps ) : void => {
550550 this . assertComponentsReady ( this . #componentControls) ;
551551 if ( disabledBillingFeature ( this , this . environment ) ) {
552552 if ( this . #instanceType === 'development' ) {
@@ -575,7 +575,7 @@ export class Clerk implements ClerkInterface {
575575 void this . #componentControls. ensureMounted ( ) . then ( controls => controls . closeDrawer ( 'checkout' ) ) ;
576576 } ;
577577
578- public __internal_openPlanDetails = ( props ?: PlanDetailsProps ) : void => {
578+ public __internal_openPlanDetails = ( props ?: __internal_PlanDetailsProps ) : void => {
579579 this . assertComponentsReady ( this . #componentControls) ;
580580 if ( disabledBillingFeature ( this , this . environment ) ) {
581581 if ( this . #instanceType === 'development' ) {
0 commit comments