@@ -2,7 +2,6 @@ import type { ClerkGlobalHookError } from '@/errors/globalHookError';
22
33import type { ClerkUIConstructor } from '../ui/types' ;
44import type { APIKeysNamespace } from './apiKeys' ;
5- import type { OAuthApplicationNamespace } from './oauthApplication' ;
65import type {
76 BillingCheckoutResource ,
87 BillingNamespace ,
@@ -20,6 +19,7 @@ import type { DisplayThemeJSON } from './json';
2019import type { LocalizationResource } from './localization' ;
2120import type { DomainOrProxyUrl , MultiDomainAndOrProxy } from './multiDomain' ;
2221import type { OAuthProvider , OAuthScope } from './oauth' ;
22+ import type { OAuthApplicationNamespace } from './oauthApplication' ;
2323import type { OrganizationResource } from './organization' ;
2424import type { OrganizationCustomRoleKey } from './organizationMembership' ;
2525import type { ClerkPaginationParams } from './pagination' ;
@@ -169,6 +169,7 @@ export type SetActiveNavigate = (params: {
169169 session : SessionResource ;
170170 /**
171171 * Decorate the destination URL to enable Safari ITP cookie refresh when needed.
172+ *
172173 * @see {@link DecorateUrl }
173174 */
174175 decorateUrl : DecorateUrl ;
@@ -2502,21 +2503,25 @@ export type IsomorphicClerkOptions = Without<ClerkOptions, 'isSatellite'> & {
25022503 Clerk ?: ClerkProp ;
25032504 /**
25042505 * The URL that `@clerk/clerk-js` should be hot-loaded from.
2506+ *
25052507 * @internal
25062508 */
25072509 __internal_clerkJSUrl ?: string ;
25082510 /**
25092511 * The npm version for `@clerk/clerk-js`.
2512+ *
25102513 * @internal
25112514 */
25122515 __internal_clerkJSVersion ?: string ;
25132516 /**
25142517 * The URL that `@clerk/ui` should be hot-loaded from.
2518+ *
25152519 * @internal
25162520 */
25172521 __internal_clerkUIUrl ?: string ;
25182522 /**
25192523 * The npm version for `@clerk/ui`.
2524+ *
25202525 * @internal
25212526 */
25222527 __internal_clerkUIVersion ?: string ;
0 commit comments