@@ -38,6 +38,7 @@ import { Route as AuthenticatedSettingsNotificationsRouteImport } from './routes
3838import { Route as AuthenticatedSettingsDisplayRouteImport } from './routes/_authenticated/settings/display'
3939import { Route as AuthenticatedSettingsAppearanceRouteImport } from './routes/_authenticated/settings/appearance'
4040import { Route as AuthenticatedSettingsAccountRouteImport } from './routes/_authenticated/settings/account'
41+ import { Route as AuthenticatedErrorsErrorRouteImport } from './routes/_authenticated/errors/$error'
4142
4243const ClerkRouteRoute = ClerkRouteRouteImport . update ( {
4344 id : '/clerk' ,
@@ -189,6 +190,12 @@ const AuthenticatedSettingsAccountRoute =
189190 path : '/account' ,
190191 getParentRoute : ( ) => AuthenticatedSettingsRouteRoute ,
191192 } as any )
193+ const AuthenticatedErrorsErrorRoute =
194+ AuthenticatedErrorsErrorRouteImport . update ( {
195+ id : '/errors/$error' ,
196+ path : '/errors/$error' ,
197+ getParentRoute : ( ) => AuthenticatedRouteRoute ,
198+ } as any )
192199
193200export interface FileRoutesByFullPath {
194201 '/clerk' : typeof ClerkAuthenticatedRouteRouteWithChildren
@@ -205,6 +212,7 @@ export interface FileRoutesByFullPath {
205212 '/500' : typeof errors500Route
206213 '/503' : typeof errors503Route
207214 '/' : typeof AuthenticatedIndexRoute
215+ '/errors/$error' : typeof AuthenticatedErrorsErrorRoute
208216 '/settings/account' : typeof AuthenticatedSettingsAccountRoute
209217 '/settings/appearance' : typeof AuthenticatedSettingsAppearanceRoute
210218 '/settings/display' : typeof AuthenticatedSettingsDisplayRoute
@@ -232,6 +240,7 @@ export interface FileRoutesByTo {
232240 '/500' : typeof errors500Route
233241 '/503' : typeof errors503Route
234242 '/' : typeof AuthenticatedIndexRoute
243+ '/errors/$error' : typeof AuthenticatedErrorsErrorRoute
235244 '/settings/account' : typeof AuthenticatedSettingsAccountRoute
236245 '/settings/appearance' : typeof AuthenticatedSettingsAppearanceRoute
237246 '/settings/display' : typeof AuthenticatedSettingsDisplayRoute
@@ -264,6 +273,7 @@ export interface FileRoutesById {
264273 '/(errors)/500' : typeof errors500Route
265274 '/(errors)/503' : typeof errors503Route
266275 '/_authenticated/' : typeof AuthenticatedIndexRoute
276+ '/_authenticated/errors/$error' : typeof AuthenticatedErrorsErrorRoute
267277 '/_authenticated/settings/account' : typeof AuthenticatedSettingsAccountRoute
268278 '/_authenticated/settings/appearance' : typeof AuthenticatedSettingsAppearanceRoute
269279 '/_authenticated/settings/display' : typeof AuthenticatedSettingsDisplayRoute
@@ -295,6 +305,7 @@ export interface FileRouteTypes {
295305 | '/500'
296306 | '/503'
297307 | '/'
308+ | '/errors/$error'
298309 | '/settings/account'
299310 | '/settings/appearance'
300311 | '/settings/display'
@@ -322,6 +333,7 @@ export interface FileRouteTypes {
322333 | '/500'
323334 | '/503'
324335 | '/'
336+ | '/errors/$error'
325337 | '/settings/account'
326338 | '/settings/appearance'
327339 | '/settings/display'
@@ -353,6 +365,7 @@ export interface FileRouteTypes {
353365 | '/(errors)/500'
354366 | '/(errors)/503'
355367 | '/_authenticated/'
368+ | '/_authenticated/errors/$error'
356369 | '/_authenticated/settings/account'
357370 | '/_authenticated/settings/appearance'
358371 | '/_authenticated/settings/display'
@@ -588,6 +601,13 @@ declare module '@tanstack/react-router' {
588601 preLoaderRoute : typeof AuthenticatedSettingsAccountRouteImport
589602 parentRoute : typeof AuthenticatedSettingsRouteRoute
590603 }
604+ '/_authenticated/errors/$error' : {
605+ id : '/_authenticated/errors/$error'
606+ path : '/errors/$error'
607+ fullPath : '/errors/$error'
608+ preLoaderRoute : typeof AuthenticatedErrorsErrorRouteImport
609+ parentRoute : typeof AuthenticatedRouteRoute
610+ }
591611 }
592612}
593613
@@ -617,6 +637,7 @@ const AuthenticatedSettingsRouteRouteWithChildren =
617637interface AuthenticatedRouteRouteChildren {
618638 AuthenticatedSettingsRouteRoute : typeof AuthenticatedSettingsRouteRouteWithChildren
619639 AuthenticatedIndexRoute : typeof AuthenticatedIndexRoute
640+ AuthenticatedErrorsErrorRoute : typeof AuthenticatedErrorsErrorRoute
620641 AuthenticatedAppsIndexRoute : typeof AuthenticatedAppsIndexRoute
621642 AuthenticatedChatsIndexRoute : typeof AuthenticatedChatsIndexRoute
622643 AuthenticatedHelpCenterIndexRoute : typeof AuthenticatedHelpCenterIndexRoute
@@ -627,6 +648,7 @@ interface AuthenticatedRouteRouteChildren {
627648const AuthenticatedRouteRouteChildren : AuthenticatedRouteRouteChildren = {
628649 AuthenticatedSettingsRouteRoute : AuthenticatedSettingsRouteRouteWithChildren ,
629650 AuthenticatedIndexRoute : AuthenticatedIndexRoute ,
651+ AuthenticatedErrorsErrorRoute : AuthenticatedErrorsErrorRoute ,
630652 AuthenticatedAppsIndexRoute : AuthenticatedAppsIndexRoute ,
631653 AuthenticatedChatsIndexRoute : AuthenticatedChatsIndexRoute ,
632654 AuthenticatedHelpCenterIndexRoute : AuthenticatedHelpCenterIndexRoute ,
0 commit comments