@@ -6,7 +6,7 @@ import type {
66 __internal_AttemptToEnableEnvironmentSettingResult ,
77 __internal_CheckoutProps ,
88 __internal_EnableOrganizationsPromptProps ,
9- OAuthConsentProps ,
9+ __internal_OAuthConsentProps ,
1010 __internal_PlanDetailsProps ,
1111 __internal_SubscriptionDetailsProps ,
1212 __internal_UserVerificationModalProps ,
@@ -158,7 +158,7 @@ export class IsomorphicClerk implements IsomorphicLoadedClerk {
158158 private premountWaitlistNodes = new Map < HTMLDivElement , WaitlistProps | undefined > ( ) ;
159159 private premountPricingTableNodes = new Map < HTMLDivElement , PricingTableProps | undefined > ( ) ;
160160 private premountAPIKeysNodes = new Map < HTMLDivElement , APIKeysProps | undefined > ( ) ;
161- private premountOAuthConsentNodes = new Map < HTMLDivElement , OAuthConsentProps | undefined > ( ) ;
161+ private premountOAuthConsentNodes = new Map < HTMLDivElement , __internal_OAuthConsentProps | undefined > ( ) ;
162162 private premountTaskChooseOrganizationNodes = new Map < HTMLDivElement , TaskChooseOrganizationProps | undefined > ( ) ;
163163 private premountTaskResetPasswordNodes = new Map < HTMLDivElement , TaskResetPasswordProps | undefined > ( ) ;
164164 private premountTaskSetupMFANodes = new Map < HTMLDivElement , TaskSetupMFAProps | undefined > ( ) ;
@@ -747,7 +747,7 @@ export class IsomorphicClerk implements IsomorphicLoadedClerk {
747747 } ) ;
748748
749749 this . premountOAuthConsentNodes . forEach ( ( props , node ) => {
750- clerkjs . mountOAuthConsent ( node , props ) ;
750+ clerkjs . __internal_mountOAuthConsent ( node , props ) ;
751751 } ) ;
752752
753753 this . premountTaskChooseOrganizationNodes . forEach ( ( props , node ) => {
@@ -1282,17 +1282,17 @@ export class IsomorphicClerk implements IsomorphicLoadedClerk {
12821282 }
12831283 } ;
12841284
1285- mountOAuthConsent = ( node : HTMLDivElement , props ?: OAuthConsentProps ) => {
1285+ __internal_mountOAuthConsent = ( node : HTMLDivElement , props ?: __internal_OAuthConsentProps ) => {
12861286 if ( this . clerkjs && this . loaded ) {
1287- this . clerkjs . mountOAuthConsent ( node , props ) ;
1287+ this . clerkjs . __internal_mountOAuthConsent ( node , props ) ;
12881288 } else {
12891289 this . premountOAuthConsentNodes . set ( node , props ) ;
12901290 }
12911291 } ;
12921292
1293- unmountOAuthConsent = ( node : HTMLDivElement ) => {
1293+ __internal_unmountOAuthConsent = ( node : HTMLDivElement ) => {
12941294 if ( this . clerkjs && this . loaded ) {
1295- this . clerkjs . unmountOAuthConsent ( node ) ;
1295+ this . clerkjs . __internal_unmountOAuthConsent ( node ) ;
12961296 } else {
12971297 this . premountOAuthConsentNodes . delete ( node ) ;
12981298 }
0 commit comments