|
|
@@ -38,6 +38,7 @@ import { Route as AuthenticatedSettingsNotificationsRouteImport } from './routes
|
|
|
import { Route as AuthenticatedSettingsDisplayRouteImport } from './routes/_authenticated/settings/display'
|
|
|
import { Route as AuthenticatedSettingsAppearanceRouteImport } from './routes/_authenticated/settings/appearance'
|
|
|
import { Route as AuthenticatedSettingsAccountRouteImport } from './routes/_authenticated/settings/account'
|
|
|
+import { Route as AuthenticatedErrorsErrorRouteImport } from './routes/_authenticated/errors/$error'
|
|
|
|
|
|
const ClerkRouteRoute = ClerkRouteRouteImport.update({
|
|
|
id: '/clerk',
|
|
|
@@ -189,6 +190,12 @@ const AuthenticatedSettingsAccountRoute =
|
|
|
path: '/account',
|
|
|
getParentRoute: () => AuthenticatedSettingsRouteRoute,
|
|
|
} as any)
|
|
|
+const AuthenticatedErrorsErrorRoute =
|
|
|
+ AuthenticatedErrorsErrorRouteImport.update({
|
|
|
+ id: '/errors/$error',
|
|
|
+ path: '/errors/$error',
|
|
|
+ getParentRoute: () => AuthenticatedRouteRoute,
|
|
|
+ } as any)
|
|
|
|
|
|
export interface FileRoutesByFullPath {
|
|
|
'/clerk': typeof ClerkAuthenticatedRouteRouteWithChildren
|
|
|
@@ -205,6 +212,7 @@ export interface FileRoutesByFullPath {
|
|
|
'/500': typeof errors500Route
|
|
|
'/503': typeof errors503Route
|
|
|
'/': typeof AuthenticatedIndexRoute
|
|
|
+ '/errors/$error': typeof AuthenticatedErrorsErrorRoute
|
|
|
'/settings/account': typeof AuthenticatedSettingsAccountRoute
|
|
|
'/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
|
|
|
'/settings/display': typeof AuthenticatedSettingsDisplayRoute
|
|
|
@@ -232,6 +240,7 @@ export interface FileRoutesByTo {
|
|
|
'/500': typeof errors500Route
|
|
|
'/503': typeof errors503Route
|
|
|
'/': typeof AuthenticatedIndexRoute
|
|
|
+ '/errors/$error': typeof AuthenticatedErrorsErrorRoute
|
|
|
'/settings/account': typeof AuthenticatedSettingsAccountRoute
|
|
|
'/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
|
|
|
'/settings/display': typeof AuthenticatedSettingsDisplayRoute
|
|
|
@@ -264,6 +273,7 @@ export interface FileRoutesById {
|
|
|
'/(errors)/500': typeof errors500Route
|
|
|
'/(errors)/503': typeof errors503Route
|
|
|
'/_authenticated/': typeof AuthenticatedIndexRoute
|
|
|
+ '/_authenticated/errors/$error': typeof AuthenticatedErrorsErrorRoute
|
|
|
'/_authenticated/settings/account': typeof AuthenticatedSettingsAccountRoute
|
|
|
'/_authenticated/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
|
|
|
'/_authenticated/settings/display': typeof AuthenticatedSettingsDisplayRoute
|
|
|
@@ -295,6 +305,7 @@ export interface FileRouteTypes {
|
|
|
| '/500'
|
|
|
| '/503'
|
|
|
| '/'
|
|
|
+ | '/errors/$error'
|
|
|
| '/settings/account'
|
|
|
| '/settings/appearance'
|
|
|
| '/settings/display'
|
|
|
@@ -322,6 +333,7 @@ export interface FileRouteTypes {
|
|
|
| '/500'
|
|
|
| '/503'
|
|
|
| '/'
|
|
|
+ | '/errors/$error'
|
|
|
| '/settings/account'
|
|
|
| '/settings/appearance'
|
|
|
| '/settings/display'
|
|
|
@@ -353,6 +365,7 @@ export interface FileRouteTypes {
|
|
|
| '/(errors)/500'
|
|
|
| '/(errors)/503'
|
|
|
| '/_authenticated/'
|
|
|
+ | '/_authenticated/errors/$error'
|
|
|
| '/_authenticated/settings/account'
|
|
|
| '/_authenticated/settings/appearance'
|
|
|
| '/_authenticated/settings/display'
|
|
|
@@ -588,6 +601,13 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof AuthenticatedSettingsAccountRouteImport
|
|
|
parentRoute: typeof AuthenticatedSettingsRouteRoute
|
|
|
}
|
|
|
+ '/_authenticated/errors/$error': {
|
|
|
+ id: '/_authenticated/errors/$error'
|
|
|
+ path: '/errors/$error'
|
|
|
+ fullPath: '/errors/$error'
|
|
|
+ preLoaderRoute: typeof AuthenticatedErrorsErrorRouteImport
|
|
|
+ parentRoute: typeof AuthenticatedRouteRoute
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -617,6 +637,7 @@ const AuthenticatedSettingsRouteRouteWithChildren =
|
|
|
interface AuthenticatedRouteRouteChildren {
|
|
|
AuthenticatedSettingsRouteRoute: typeof AuthenticatedSettingsRouteRouteWithChildren
|
|
|
AuthenticatedIndexRoute: typeof AuthenticatedIndexRoute
|
|
|
+ AuthenticatedErrorsErrorRoute: typeof AuthenticatedErrorsErrorRoute
|
|
|
AuthenticatedAppsIndexRoute: typeof AuthenticatedAppsIndexRoute
|
|
|
AuthenticatedChatsIndexRoute: typeof AuthenticatedChatsIndexRoute
|
|
|
AuthenticatedHelpCenterIndexRoute: typeof AuthenticatedHelpCenterIndexRoute
|
|
|
@@ -627,6 +648,7 @@ interface AuthenticatedRouteRouteChildren {
|
|
|
const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = {
|
|
|
AuthenticatedSettingsRouteRoute: AuthenticatedSettingsRouteRouteWithChildren,
|
|
|
AuthenticatedIndexRoute: AuthenticatedIndexRoute,
|
|
|
+ AuthenticatedErrorsErrorRoute: AuthenticatedErrorsErrorRoute,
|
|
|
AuthenticatedAppsIndexRoute: AuthenticatedAppsIndexRoute,
|
|
|
AuthenticatedChatsIndexRoute: AuthenticatedChatsIndexRoute,
|
|
|
AuthenticatedHelpCenterIndexRoute: AuthenticatedHelpCenterIndexRoute,
|