|
@@ -9,7 +9,6 @@
|
|
|
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
|
|
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
|
|
|
|
|
|
|
|
import { Route as rootRouteImport } from './routes/__root'
|
|
import { Route as rootRouteImport } from './routes/__root'
|
|
|
-import { Route as ClerkRouteRouteImport } from './routes/clerk/route'
|
|
|
|
|
import { Route as AuthenticatedRouteRouteImport } from './routes/_authenticated/route'
|
|
import { Route as AuthenticatedRouteRouteImport } from './routes/_authenticated/route'
|
|
|
import { Route as AuthenticatedIndexRouteImport } from './routes/_authenticated/index'
|
|
import { Route as AuthenticatedIndexRouteImport } from './routes/_authenticated/index'
|
|
|
import { Route as errors503RouteImport } from './routes/(errors)/503'
|
|
import { Route as errors503RouteImport } from './routes/(errors)/503'
|
|
@@ -18,8 +17,6 @@ import { Route as errors404RouteImport } from './routes/(errors)/404'
|
|
|
import { Route as errors403RouteImport } from './routes/(errors)/403'
|
|
import { Route as errors403RouteImport } from './routes/(errors)/403'
|
|
|
import { Route as errors401RouteImport } from './routes/(errors)/401'
|
|
import { Route as errors401RouteImport } from './routes/(errors)/401'
|
|
|
import { Route as authSignInRouteImport } from './routes/(auth)/sign-in'
|
|
import { Route as authSignInRouteImport } from './routes/(auth)/sign-in'
|
|
|
-import { Route as ClerkAuthenticatedRouteRouteImport } from './routes/clerk/_authenticated/route'
|
|
|
|
|
-import { Route as ClerkauthRouteRouteImport } from './routes/clerk/(auth)/route'
|
|
|
|
|
import { Route as AuthenticatedSettingsRouteRouteImport } from './routes/_authenticated/settings/route'
|
|
import { Route as AuthenticatedSettingsRouteRouteImport } from './routes/_authenticated/settings/route'
|
|
|
import { Route as AuthenticatedUsersIndexRouteImport } from './routes/_authenticated/users/index'
|
|
import { Route as AuthenticatedUsersIndexRouteImport } from './routes/_authenticated/users/index'
|
|
|
import { Route as AuthenticatedTasksIndexRouteImport } from './routes/_authenticated/tasks/index'
|
|
import { Route as AuthenticatedTasksIndexRouteImport } from './routes/_authenticated/tasks/index'
|
|
@@ -27,21 +24,12 @@ import { Route as AuthenticatedSettingsIndexRouteImport } from './routes/_authen
|
|
|
import { Route as AuthenticatedPostsIndexRouteImport } from './routes/_authenticated/posts/index'
|
|
import { Route as AuthenticatedPostsIndexRouteImport } from './routes/_authenticated/posts/index'
|
|
|
import { Route as AuthenticatedHelpCenterIndexRouteImport } from './routes/_authenticated/help-center/index'
|
|
import { Route as AuthenticatedHelpCenterIndexRouteImport } from './routes/_authenticated/help-center/index'
|
|
|
import { Route as AuthenticatedChatsIndexRouteImport } from './routes/_authenticated/chats/index'
|
|
import { Route as AuthenticatedChatsIndexRouteImport } from './routes/_authenticated/chats/index'
|
|
|
-import { Route as AuthenticatedAppsIndexRouteImport } from './routes/_authenticated/apps/index'
|
|
|
|
|
-import { Route as ClerkAuthenticatedUserManagementRouteImport } from './routes/clerk/_authenticated/user-management'
|
|
|
|
|
-import { Route as ClerkauthSignUpRouteImport } from './routes/clerk/(auth)/sign-up'
|
|
|
|
|
-import { Route as ClerkauthSignInRouteImport } from './routes/clerk/(auth)/sign-in'
|
|
|
|
|
import { Route as AuthenticatedSettingsNotificationsRouteImport } from './routes/_authenticated/settings/notifications'
|
|
import { Route as AuthenticatedSettingsNotificationsRouteImport } from './routes/_authenticated/settings/notifications'
|
|
|
import { Route as AuthenticatedSettingsDisplayRouteImport } from './routes/_authenticated/settings/display'
|
|
import { Route as AuthenticatedSettingsDisplayRouteImport } from './routes/_authenticated/settings/display'
|
|
|
import { Route as AuthenticatedSettingsAppearanceRouteImport } from './routes/_authenticated/settings/appearance'
|
|
import { Route as AuthenticatedSettingsAppearanceRouteImport } from './routes/_authenticated/settings/appearance'
|
|
|
import { Route as AuthenticatedSettingsAccountRouteImport } from './routes/_authenticated/settings/account'
|
|
import { Route as AuthenticatedSettingsAccountRouteImport } from './routes/_authenticated/settings/account'
|
|
|
import { Route as AuthenticatedErrorsErrorRouteImport } from './routes/_authenticated/errors/$error'
|
|
import { Route as AuthenticatedErrorsErrorRouteImport } from './routes/_authenticated/errors/$error'
|
|
|
|
|
|
|
|
-const ClerkRouteRoute = ClerkRouteRouteImport.update({
|
|
|
|
|
- id: '/clerk',
|
|
|
|
|
- path: '/clerk',
|
|
|
|
|
- getParentRoute: () => rootRouteImport,
|
|
|
|
|
-} as any)
|
|
|
|
|
const AuthenticatedRouteRoute = AuthenticatedRouteRouteImport.update({
|
|
const AuthenticatedRouteRoute = AuthenticatedRouteRouteImport.update({
|
|
|
id: '/_authenticated',
|
|
id: '/_authenticated',
|
|
|
getParentRoute: () => rootRouteImport,
|
|
getParentRoute: () => rootRouteImport,
|
|
@@ -81,14 +69,6 @@ const authSignInRoute = authSignInRouteImport.update({
|
|
|
path: '/sign-in',
|
|
path: '/sign-in',
|
|
|
getParentRoute: () => rootRouteImport,
|
|
getParentRoute: () => rootRouteImport,
|
|
|
} as any)
|
|
} as any)
|
|
|
-const ClerkAuthenticatedRouteRoute = ClerkAuthenticatedRouteRouteImport.update({
|
|
|
|
|
- id: '/_authenticated',
|
|
|
|
|
- getParentRoute: () => ClerkRouteRoute,
|
|
|
|
|
-} as any)
|
|
|
|
|
-const ClerkauthRouteRoute = ClerkauthRouteRouteImport.update({
|
|
|
|
|
- id: '/(auth)',
|
|
|
|
|
- getParentRoute: () => ClerkRouteRoute,
|
|
|
|
|
-} as any)
|
|
|
|
|
const AuthenticatedSettingsRouteRoute =
|
|
const AuthenticatedSettingsRouteRoute =
|
|
|
AuthenticatedSettingsRouteRouteImport.update({
|
|
AuthenticatedSettingsRouteRouteImport.update({
|
|
|
id: '/settings',
|
|
id: '/settings',
|
|
@@ -127,27 +107,6 @@ const AuthenticatedChatsIndexRoute = AuthenticatedChatsIndexRouteImport.update({
|
|
|
path: '/chats/',
|
|
path: '/chats/',
|
|
|
getParentRoute: () => AuthenticatedRouteRoute,
|
|
getParentRoute: () => AuthenticatedRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
-const AuthenticatedAppsIndexRoute = AuthenticatedAppsIndexRouteImport.update({
|
|
|
|
|
- id: '/apps/',
|
|
|
|
|
- path: '/apps/',
|
|
|
|
|
- getParentRoute: () => AuthenticatedRouteRoute,
|
|
|
|
|
-} as any)
|
|
|
|
|
-const ClerkAuthenticatedUserManagementRoute =
|
|
|
|
|
- ClerkAuthenticatedUserManagementRouteImport.update({
|
|
|
|
|
- id: '/user-management',
|
|
|
|
|
- path: '/user-management',
|
|
|
|
|
- getParentRoute: () => ClerkAuthenticatedRouteRoute,
|
|
|
|
|
- } as any)
|
|
|
|
|
-const ClerkauthSignUpRoute = ClerkauthSignUpRouteImport.update({
|
|
|
|
|
- id: '/sign-up',
|
|
|
|
|
- path: '/sign-up',
|
|
|
|
|
- getParentRoute: () => ClerkauthRouteRoute,
|
|
|
|
|
-} as any)
|
|
|
|
|
-const ClerkauthSignInRoute = ClerkauthSignInRouteImport.update({
|
|
|
|
|
- id: '/sign-in',
|
|
|
|
|
- path: '/sign-in',
|
|
|
|
|
- getParentRoute: () => ClerkauthRouteRoute,
|
|
|
|
|
-} as any)
|
|
|
|
|
const AuthenticatedSettingsNotificationsRoute =
|
|
const AuthenticatedSettingsNotificationsRoute =
|
|
|
AuthenticatedSettingsNotificationsRouteImport.update({
|
|
AuthenticatedSettingsNotificationsRouteImport.update({
|
|
|
id: '/notifications',
|
|
id: '/notifications',
|
|
@@ -181,7 +140,6 @@ const AuthenticatedErrorsErrorRoute =
|
|
|
|
|
|
|
|
export interface FileRoutesByFullPath {
|
|
export interface FileRoutesByFullPath {
|
|
|
'/': typeof AuthenticatedIndexRoute
|
|
'/': typeof AuthenticatedIndexRoute
|
|
|
- '/clerk': typeof ClerkAuthenticatedRouteRouteWithChildren
|
|
|
|
|
'/settings': typeof AuthenticatedSettingsRouteRouteWithChildren
|
|
'/settings': typeof AuthenticatedSettingsRouteRouteWithChildren
|
|
|
'/sign-in': typeof authSignInRoute
|
|
'/sign-in': typeof authSignInRoute
|
|
|
'/401': typeof errors401Route
|
|
'/401': typeof errors401Route
|
|
@@ -194,10 +152,6 @@ export interface FileRoutesByFullPath {
|
|
|
'/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
|
|
'/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
|
|
|
'/settings/display': typeof AuthenticatedSettingsDisplayRoute
|
|
'/settings/display': typeof AuthenticatedSettingsDisplayRoute
|
|
|
'/settings/notifications': typeof AuthenticatedSettingsNotificationsRoute
|
|
'/settings/notifications': typeof AuthenticatedSettingsNotificationsRoute
|
|
|
- '/clerk/sign-in': typeof ClerkauthSignInRoute
|
|
|
|
|
- '/clerk/sign-up': typeof ClerkauthSignUpRoute
|
|
|
|
|
- '/clerk/user-management': typeof ClerkAuthenticatedUserManagementRoute
|
|
|
|
|
- '/apps/': typeof AuthenticatedAppsIndexRoute
|
|
|
|
|
'/chats/': typeof AuthenticatedChatsIndexRoute
|
|
'/chats/': typeof AuthenticatedChatsIndexRoute
|
|
|
'/help-center/': typeof AuthenticatedHelpCenterIndexRoute
|
|
'/help-center/': typeof AuthenticatedHelpCenterIndexRoute
|
|
|
'/posts/': typeof AuthenticatedPostsIndexRoute
|
|
'/posts/': typeof AuthenticatedPostsIndexRoute
|
|
@@ -206,7 +160,6 @@ export interface FileRoutesByFullPath {
|
|
|
'/users/': typeof AuthenticatedUsersIndexRoute
|
|
'/users/': typeof AuthenticatedUsersIndexRoute
|
|
|
}
|
|
}
|
|
|
export interface FileRoutesByTo {
|
|
export interface FileRoutesByTo {
|
|
|
- '/clerk': typeof ClerkAuthenticatedRouteRouteWithChildren
|
|
|
|
|
'/sign-in': typeof authSignInRoute
|
|
'/sign-in': typeof authSignInRoute
|
|
|
'/401': typeof errors401Route
|
|
'/401': typeof errors401Route
|
|
|
'/403': typeof errors403Route
|
|
'/403': typeof errors403Route
|
|
@@ -219,10 +172,6 @@ export interface FileRoutesByTo {
|
|
|
'/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
|
|
'/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
|
|
|
'/settings/display': typeof AuthenticatedSettingsDisplayRoute
|
|
'/settings/display': typeof AuthenticatedSettingsDisplayRoute
|
|
|
'/settings/notifications': typeof AuthenticatedSettingsNotificationsRoute
|
|
'/settings/notifications': typeof AuthenticatedSettingsNotificationsRoute
|
|
|
- '/clerk/sign-in': typeof ClerkauthSignInRoute
|
|
|
|
|
- '/clerk/sign-up': typeof ClerkauthSignUpRoute
|
|
|
|
|
- '/clerk/user-management': typeof ClerkAuthenticatedUserManagementRoute
|
|
|
|
|
- '/apps': typeof AuthenticatedAppsIndexRoute
|
|
|
|
|
'/chats': typeof AuthenticatedChatsIndexRoute
|
|
'/chats': typeof AuthenticatedChatsIndexRoute
|
|
|
'/help-center': typeof AuthenticatedHelpCenterIndexRoute
|
|
'/help-center': typeof AuthenticatedHelpCenterIndexRoute
|
|
|
'/posts': typeof AuthenticatedPostsIndexRoute
|
|
'/posts': typeof AuthenticatedPostsIndexRoute
|
|
@@ -233,10 +182,7 @@ export interface FileRoutesByTo {
|
|
|
export interface FileRoutesById {
|
|
export interface FileRoutesById {
|
|
|
__root__: typeof rootRouteImport
|
|
__root__: typeof rootRouteImport
|
|
|
'/_authenticated': typeof AuthenticatedRouteRouteWithChildren
|
|
'/_authenticated': typeof AuthenticatedRouteRouteWithChildren
|
|
|
- '/clerk': typeof ClerkRouteRouteWithChildren
|
|
|
|
|
'/_authenticated/settings': typeof AuthenticatedSettingsRouteRouteWithChildren
|
|
'/_authenticated/settings': typeof AuthenticatedSettingsRouteRouteWithChildren
|
|
|
- '/clerk/(auth)': typeof ClerkauthRouteRouteWithChildren
|
|
|
|
|
- '/clerk/_authenticated': typeof ClerkAuthenticatedRouteRouteWithChildren
|
|
|
|
|
'/(auth)/sign-in': typeof authSignInRoute
|
|
'/(auth)/sign-in': typeof authSignInRoute
|
|
|
'/(errors)/401': typeof errors401Route
|
|
'/(errors)/401': typeof errors401Route
|
|
|
'/(errors)/403': typeof errors403Route
|
|
'/(errors)/403': typeof errors403Route
|
|
@@ -249,10 +195,6 @@ export interface FileRoutesById {
|
|
|
'/_authenticated/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
|
|
'/_authenticated/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
|
|
|
'/_authenticated/settings/display': typeof AuthenticatedSettingsDisplayRoute
|
|
'/_authenticated/settings/display': typeof AuthenticatedSettingsDisplayRoute
|
|
|
'/_authenticated/settings/notifications': typeof AuthenticatedSettingsNotificationsRoute
|
|
'/_authenticated/settings/notifications': typeof AuthenticatedSettingsNotificationsRoute
|
|
|
- '/clerk/(auth)/sign-in': typeof ClerkauthSignInRoute
|
|
|
|
|
- '/clerk/(auth)/sign-up': typeof ClerkauthSignUpRoute
|
|
|
|
|
- '/clerk/_authenticated/user-management': typeof ClerkAuthenticatedUserManagementRoute
|
|
|
|
|
- '/_authenticated/apps/': typeof AuthenticatedAppsIndexRoute
|
|
|
|
|
'/_authenticated/chats/': typeof AuthenticatedChatsIndexRoute
|
|
'/_authenticated/chats/': typeof AuthenticatedChatsIndexRoute
|
|
|
'/_authenticated/help-center/': typeof AuthenticatedHelpCenterIndexRoute
|
|
'/_authenticated/help-center/': typeof AuthenticatedHelpCenterIndexRoute
|
|
|
'/_authenticated/posts/': typeof AuthenticatedPostsIndexRoute
|
|
'/_authenticated/posts/': typeof AuthenticatedPostsIndexRoute
|
|
@@ -264,7 +206,6 @@ export interface FileRouteTypes {
|
|
|
fileRoutesByFullPath: FileRoutesByFullPath
|
|
fileRoutesByFullPath: FileRoutesByFullPath
|
|
|
fullPaths:
|
|
fullPaths:
|
|
|
| '/'
|
|
| '/'
|
|
|
- | '/clerk'
|
|
|
|
|
| '/settings'
|
|
| '/settings'
|
|
|
| '/sign-in'
|
|
| '/sign-in'
|
|
|
| '/401'
|
|
| '/401'
|
|
@@ -277,10 +218,6 @@ export interface FileRouteTypes {
|
|
|
| '/settings/appearance'
|
|
| '/settings/appearance'
|
|
|
| '/settings/display'
|
|
| '/settings/display'
|
|
|
| '/settings/notifications'
|
|
| '/settings/notifications'
|
|
|
- | '/clerk/sign-in'
|
|
|
|
|
- | '/clerk/sign-up'
|
|
|
|
|
- | '/clerk/user-management'
|
|
|
|
|
- | '/apps/'
|
|
|
|
|
| '/chats/'
|
|
| '/chats/'
|
|
|
| '/help-center/'
|
|
| '/help-center/'
|
|
|
| '/posts/'
|
|
| '/posts/'
|
|
@@ -289,7 +226,6 @@ export interface FileRouteTypes {
|
|
|
| '/users/'
|
|
| '/users/'
|
|
|
fileRoutesByTo: FileRoutesByTo
|
|
fileRoutesByTo: FileRoutesByTo
|
|
|
to:
|
|
to:
|
|
|
- | '/clerk'
|
|
|
|
|
| '/sign-in'
|
|
| '/sign-in'
|
|
|
| '/401'
|
|
| '/401'
|
|
|
| '/403'
|
|
| '/403'
|
|
@@ -302,10 +238,6 @@ export interface FileRouteTypes {
|
|
|
| '/settings/appearance'
|
|
| '/settings/appearance'
|
|
|
| '/settings/display'
|
|
| '/settings/display'
|
|
|
| '/settings/notifications'
|
|
| '/settings/notifications'
|
|
|
- | '/clerk/sign-in'
|
|
|
|
|
- | '/clerk/sign-up'
|
|
|
|
|
- | '/clerk/user-management'
|
|
|
|
|
- | '/apps'
|
|
|
|
|
| '/chats'
|
|
| '/chats'
|
|
|
| '/help-center'
|
|
| '/help-center'
|
|
|
| '/posts'
|
|
| '/posts'
|
|
@@ -315,10 +247,7 @@ export interface FileRouteTypes {
|
|
|
id:
|
|
id:
|
|
|
| '__root__'
|
|
| '__root__'
|
|
|
| '/_authenticated'
|
|
| '/_authenticated'
|
|
|
- | '/clerk'
|
|
|
|
|
| '/_authenticated/settings'
|
|
| '/_authenticated/settings'
|
|
|
- | '/clerk/(auth)'
|
|
|
|
|
- | '/clerk/_authenticated'
|
|
|
|
|
| '/(auth)/sign-in'
|
|
| '/(auth)/sign-in'
|
|
|
| '/(errors)/401'
|
|
| '/(errors)/401'
|
|
|
| '/(errors)/403'
|
|
| '/(errors)/403'
|
|
@@ -331,10 +260,6 @@ export interface FileRouteTypes {
|
|
|
| '/_authenticated/settings/appearance'
|
|
| '/_authenticated/settings/appearance'
|
|
|
| '/_authenticated/settings/display'
|
|
| '/_authenticated/settings/display'
|
|
|
| '/_authenticated/settings/notifications'
|
|
| '/_authenticated/settings/notifications'
|
|
|
- | '/clerk/(auth)/sign-in'
|
|
|
|
|
- | '/clerk/(auth)/sign-up'
|
|
|
|
|
- | '/clerk/_authenticated/user-management'
|
|
|
|
|
- | '/_authenticated/apps/'
|
|
|
|
|
| '/_authenticated/chats/'
|
|
| '/_authenticated/chats/'
|
|
|
| '/_authenticated/help-center/'
|
|
| '/_authenticated/help-center/'
|
|
|
| '/_authenticated/posts/'
|
|
| '/_authenticated/posts/'
|
|
@@ -345,7 +270,6 @@ export interface FileRouteTypes {
|
|
|
}
|
|
}
|
|
|
export interface RootRouteChildren {
|
|
export interface RootRouteChildren {
|
|
|
AuthenticatedRouteRoute: typeof AuthenticatedRouteRouteWithChildren
|
|
AuthenticatedRouteRoute: typeof AuthenticatedRouteRouteWithChildren
|
|
|
- ClerkRouteRoute: typeof ClerkRouteRouteWithChildren
|
|
|
|
|
authSignInRoute: typeof authSignInRoute
|
|
authSignInRoute: typeof authSignInRoute
|
|
|
errors401Route: typeof errors401Route
|
|
errors401Route: typeof errors401Route
|
|
|
errors403Route: typeof errors403Route
|
|
errors403Route: typeof errors403Route
|
|
@@ -356,13 +280,6 @@ export interface RootRouteChildren {
|
|
|
|
|
|
|
|
declare module '@tanstack/react-router' {
|
|
declare module '@tanstack/react-router' {
|
|
|
interface FileRoutesByPath {
|
|
interface FileRoutesByPath {
|
|
|
- '/clerk': {
|
|
|
|
|
- id: '/clerk'
|
|
|
|
|
- path: '/clerk'
|
|
|
|
|
- fullPath: '/clerk'
|
|
|
|
|
- preLoaderRoute: typeof ClerkRouteRouteImport
|
|
|
|
|
- parentRoute: typeof rootRouteImport
|
|
|
|
|
- }
|
|
|
|
|
'/_authenticated': {
|
|
'/_authenticated': {
|
|
|
id: '/_authenticated'
|
|
id: '/_authenticated'
|
|
|
path: ''
|
|
path: ''
|
|
@@ -419,20 +336,6 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof authSignInRouteImport
|
|
preLoaderRoute: typeof authSignInRouteImport
|
|
|
parentRoute: typeof rootRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
|
}
|
|
}
|
|
|
- '/clerk/_authenticated': {
|
|
|
|
|
- id: '/clerk/_authenticated'
|
|
|
|
|
- path: ''
|
|
|
|
|
- fullPath: '/clerk'
|
|
|
|
|
- preLoaderRoute: typeof ClerkAuthenticatedRouteRouteImport
|
|
|
|
|
- parentRoute: typeof ClerkRouteRoute
|
|
|
|
|
- }
|
|
|
|
|
- '/clerk/(auth)': {
|
|
|
|
|
- id: '/clerk/(auth)'
|
|
|
|
|
- path: ''
|
|
|
|
|
- fullPath: '/clerk'
|
|
|
|
|
- preLoaderRoute: typeof ClerkauthRouteRouteImport
|
|
|
|
|
- parentRoute: typeof ClerkRouteRoute
|
|
|
|
|
- }
|
|
|
|
|
'/_authenticated/settings': {
|
|
'/_authenticated/settings': {
|
|
|
id: '/_authenticated/settings'
|
|
id: '/_authenticated/settings'
|
|
|
path: '/settings'
|
|
path: '/settings'
|
|
@@ -482,34 +385,6 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof AuthenticatedChatsIndexRouteImport
|
|
preLoaderRoute: typeof AuthenticatedChatsIndexRouteImport
|
|
|
parentRoute: typeof AuthenticatedRouteRoute
|
|
parentRoute: typeof AuthenticatedRouteRoute
|
|
|
}
|
|
}
|
|
|
- '/_authenticated/apps/': {
|
|
|
|
|
- id: '/_authenticated/apps/'
|
|
|
|
|
- path: '/apps'
|
|
|
|
|
- fullPath: '/apps/'
|
|
|
|
|
- preLoaderRoute: typeof AuthenticatedAppsIndexRouteImport
|
|
|
|
|
- parentRoute: typeof AuthenticatedRouteRoute
|
|
|
|
|
- }
|
|
|
|
|
- '/clerk/_authenticated/user-management': {
|
|
|
|
|
- id: '/clerk/_authenticated/user-management'
|
|
|
|
|
- path: '/user-management'
|
|
|
|
|
- fullPath: '/clerk/user-management'
|
|
|
|
|
- preLoaderRoute: typeof ClerkAuthenticatedUserManagementRouteImport
|
|
|
|
|
- parentRoute: typeof ClerkAuthenticatedRouteRoute
|
|
|
|
|
- }
|
|
|
|
|
- '/clerk/(auth)/sign-up': {
|
|
|
|
|
- id: '/clerk/(auth)/sign-up'
|
|
|
|
|
- path: '/sign-up'
|
|
|
|
|
- fullPath: '/clerk/sign-up'
|
|
|
|
|
- preLoaderRoute: typeof ClerkauthSignUpRouteImport
|
|
|
|
|
- parentRoute: typeof ClerkauthRouteRoute
|
|
|
|
|
- }
|
|
|
|
|
- '/clerk/(auth)/sign-in': {
|
|
|
|
|
- id: '/clerk/(auth)/sign-in'
|
|
|
|
|
- path: '/sign-in'
|
|
|
|
|
- fullPath: '/clerk/sign-in'
|
|
|
|
|
- preLoaderRoute: typeof ClerkauthSignInRouteImport
|
|
|
|
|
- parentRoute: typeof ClerkauthRouteRoute
|
|
|
|
|
- }
|
|
|
|
|
'/_authenticated/settings/notifications': {
|
|
'/_authenticated/settings/notifications': {
|
|
|
id: '/_authenticated/settings/notifications'
|
|
id: '/_authenticated/settings/notifications'
|
|
|
path: '/notifications'
|
|
path: '/notifications'
|
|
@@ -575,7 +450,6 @@ interface AuthenticatedRouteRouteChildren {
|
|
|
AuthenticatedSettingsRouteRoute: typeof AuthenticatedSettingsRouteRouteWithChildren
|
|
AuthenticatedSettingsRouteRoute: typeof AuthenticatedSettingsRouteRouteWithChildren
|
|
|
AuthenticatedIndexRoute: typeof AuthenticatedIndexRoute
|
|
AuthenticatedIndexRoute: typeof AuthenticatedIndexRoute
|
|
|
AuthenticatedErrorsErrorRoute: typeof AuthenticatedErrorsErrorRoute
|
|
AuthenticatedErrorsErrorRoute: typeof AuthenticatedErrorsErrorRoute
|
|
|
- AuthenticatedAppsIndexRoute: typeof AuthenticatedAppsIndexRoute
|
|
|
|
|
AuthenticatedChatsIndexRoute: typeof AuthenticatedChatsIndexRoute
|
|
AuthenticatedChatsIndexRoute: typeof AuthenticatedChatsIndexRoute
|
|
|
AuthenticatedHelpCenterIndexRoute: typeof AuthenticatedHelpCenterIndexRoute
|
|
AuthenticatedHelpCenterIndexRoute: typeof AuthenticatedHelpCenterIndexRoute
|
|
|
AuthenticatedPostsIndexRoute: typeof AuthenticatedPostsIndexRoute
|
|
AuthenticatedPostsIndexRoute: typeof AuthenticatedPostsIndexRoute
|
|
@@ -587,7 +461,6 @@ const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = {
|
|
|
AuthenticatedSettingsRouteRoute: AuthenticatedSettingsRouteRouteWithChildren,
|
|
AuthenticatedSettingsRouteRoute: AuthenticatedSettingsRouteRouteWithChildren,
|
|
|
AuthenticatedIndexRoute: AuthenticatedIndexRoute,
|
|
AuthenticatedIndexRoute: AuthenticatedIndexRoute,
|
|
|
AuthenticatedErrorsErrorRoute: AuthenticatedErrorsErrorRoute,
|
|
AuthenticatedErrorsErrorRoute: AuthenticatedErrorsErrorRoute,
|
|
|
- AuthenticatedAppsIndexRoute: AuthenticatedAppsIndexRoute,
|
|
|
|
|
AuthenticatedChatsIndexRoute: AuthenticatedChatsIndexRoute,
|
|
AuthenticatedChatsIndexRoute: AuthenticatedChatsIndexRoute,
|
|
|
AuthenticatedHelpCenterIndexRoute: AuthenticatedHelpCenterIndexRoute,
|
|
AuthenticatedHelpCenterIndexRoute: AuthenticatedHelpCenterIndexRoute,
|
|
|
AuthenticatedPostsIndexRoute: AuthenticatedPostsIndexRoute,
|
|
AuthenticatedPostsIndexRoute: AuthenticatedPostsIndexRoute,
|
|
@@ -598,52 +471,8 @@ const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = {
|
|
|
const AuthenticatedRouteRouteWithChildren =
|
|
const AuthenticatedRouteRouteWithChildren =
|
|
|
AuthenticatedRouteRoute._addFileChildren(AuthenticatedRouteRouteChildren)
|
|
AuthenticatedRouteRoute._addFileChildren(AuthenticatedRouteRouteChildren)
|
|
|
|
|
|
|
|
-interface ClerkauthRouteRouteChildren {
|
|
|
|
|
- ClerkauthSignInRoute: typeof ClerkauthSignInRoute
|
|
|
|
|
- ClerkauthSignUpRoute: typeof ClerkauthSignUpRoute
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-const ClerkauthRouteRouteChildren: ClerkauthRouteRouteChildren = {
|
|
|
|
|
- ClerkauthSignInRoute: ClerkauthSignInRoute,
|
|
|
|
|
- ClerkauthSignUpRoute: ClerkauthSignUpRoute,
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-const ClerkauthRouteRouteWithChildren = ClerkauthRouteRoute._addFileChildren(
|
|
|
|
|
- ClerkauthRouteRouteChildren,
|
|
|
|
|
-)
|
|
|
|
|
-
|
|
|
|
|
-interface ClerkAuthenticatedRouteRouteChildren {
|
|
|
|
|
- ClerkAuthenticatedUserManagementRoute: typeof ClerkAuthenticatedUserManagementRoute
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-const ClerkAuthenticatedRouteRouteChildren: ClerkAuthenticatedRouteRouteChildren =
|
|
|
|
|
- {
|
|
|
|
|
- ClerkAuthenticatedUserManagementRoute:
|
|
|
|
|
- ClerkAuthenticatedUserManagementRoute,
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
-const ClerkAuthenticatedRouteRouteWithChildren =
|
|
|
|
|
- ClerkAuthenticatedRouteRoute._addFileChildren(
|
|
|
|
|
- ClerkAuthenticatedRouteRouteChildren,
|
|
|
|
|
- )
|
|
|
|
|
-
|
|
|
|
|
-interface ClerkRouteRouteChildren {
|
|
|
|
|
- ClerkauthRouteRoute: typeof ClerkauthRouteRouteWithChildren
|
|
|
|
|
- ClerkAuthenticatedRouteRoute: typeof ClerkAuthenticatedRouteRouteWithChildren
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-const ClerkRouteRouteChildren: ClerkRouteRouteChildren = {
|
|
|
|
|
- ClerkauthRouteRoute: ClerkauthRouteRouteWithChildren,
|
|
|
|
|
- ClerkAuthenticatedRouteRoute: ClerkAuthenticatedRouteRouteWithChildren,
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-const ClerkRouteRouteWithChildren = ClerkRouteRoute._addFileChildren(
|
|
|
|
|
- ClerkRouteRouteChildren,
|
|
|
|
|
-)
|
|
|
|
|
-
|
|
|
|
|
const rootRouteChildren: RootRouteChildren = {
|
|
const rootRouteChildren: RootRouteChildren = {
|
|
|
AuthenticatedRouteRoute: AuthenticatedRouteRouteWithChildren,
|
|
AuthenticatedRouteRoute: AuthenticatedRouteRouteWithChildren,
|
|
|
- ClerkRouteRoute: ClerkRouteRouteWithChildren,
|
|
|
|
|
authSignInRoute: authSignInRoute,
|
|
authSignInRoute: authSignInRoute,
|
|
|
errors401Route: errors401Route,
|
|
errors401Route: errors401Route,
|
|
|
errors403Route: errors403Route,
|
|
errors403Route: errors403Route,
|