@@ -2,11 +2,12 @@ import { inBrowser } from '@clerk/shared/browser';
22import { clerkEvents , createClerkEventBus } from '@clerk/shared/clerkEventBus' ;
33import { loadClerkJSScript , loadClerkUIScript } from '@clerk/shared/loadClerkJsScript' ;
44import type {
5+ __experimental_ConfigureSSOProps ,
56 __internal_AttemptToEnableEnvironmentSettingParams ,
67 __internal_AttemptToEnableEnvironmentSettingResult ,
78 __internal_CheckoutProps ,
89 __internal_EnableOrganizationsPromptProps ,
9- OAuthConsentProps ,
10+ __internal_OAuthConsentProps ,
1011 __internal_PlanDetailsProps ,
1112 __internal_SubscriptionDetailsProps ,
1213 __internal_UserVerificationModalProps ,
@@ -25,7 +26,6 @@ import type {
2526 ClerkOptions ,
2627 ClerkStatus ,
2728 ClientResource ,
28- __experimental_ConfigureSSOProps ,
2929 CreateOrganizationParams ,
3030 CreateOrganizationProps ,
3131 DomainOrProxyUrl ,
@@ -37,7 +37,6 @@ import type {
3737 ListenerOptions ,
3838 LoadedClerk ,
3939 OAuthApplicationNamespace ,
40- OAuthConsentProps ,
4140 OrganizationListProps ,
4241 OrganizationProfileProps ,
4342 OrganizationResource ,
@@ -161,7 +160,7 @@ export class IsomorphicClerk implements IsomorphicLoadedClerk {
161160 private premountPricingTableNodes = new Map < HTMLDivElement , PricingTableProps | undefined > ( ) ;
162161 private premountAPIKeysNodes = new Map < HTMLDivElement , APIKeysProps | undefined > ( ) ;
163162 private premountConfigureSSONodes = new Map < HTMLDivElement , __experimental_ConfigureSSOProps | undefined > ( ) ;
164- private premountOAuthConsentNodes = new Map < HTMLDivElement , OAuthConsentProps | undefined > ( ) ;
163+ private premountOAuthConsentNodes = new Map < HTMLDivElement , __internal_OAuthConsentProps | undefined > ( ) ;
165164 private premountTaskChooseOrganizationNodes = new Map < HTMLDivElement , TaskChooseOrganizationProps | undefined > ( ) ;
166165 private premountTaskResetPasswordNodes = new Map < HTMLDivElement , TaskResetPasswordProps | undefined > ( ) ;
167166 private premountTaskSetupMFANodes = new Map < HTMLDivElement , TaskSetupMFAProps | undefined > ( ) ;
@@ -1305,7 +1304,7 @@ export class IsomorphicClerk implements IsomorphicLoadedClerk {
13051304 }
13061305 } ;
13071306
1308- __internal_mountOAuthConsent = ( node : HTMLDivElement , props ?: OAuthConsentProps ) => {
1307+ __internal_mountOAuthConsent = ( node : HTMLDivElement , props ?: __internal_OAuthConsentProps ) => {
13091308 if ( this . clerkjs && this . loaded ) {
13101309 this . clerkjs . __internal_mountOAuthConsent ( node , props ) ;
13111310 } else {
@@ -1321,7 +1320,7 @@ export class IsomorphicClerk implements IsomorphicLoadedClerk {
13211320 }
13221321 } ;
13231322
1324- mountOAuthConsent = ( node : HTMLDivElement , props ?: OAuthConsentProps ) => {
1323+ mountOAuthConsent = ( node : HTMLDivElement , props ?: __internal_OAuthConsentProps ) => {
13251324 this . __internal_mountOAuthConsent ( node , props ) ;
13261325 } ;
13271326
0 commit comments