1111import { Route as rootRouteImport } from './routes/__root'
1212import { Route as IndexRouteImport } from './routes/index'
1313import { Route as ScoresIndexRouteImport } from './routes/scores/index'
14+ import { Route as BrunoIndexRouteImport } from './routes/bruno/index'
1415import { Route as AuthLoginRouteImport } from './routes/auth/login'
1516
1617const IndexRoute = IndexRouteImport . update ( {
@@ -23,6 +24,11 @@ const ScoresIndexRoute = ScoresIndexRouteImport.update({
2324 path : '/scores/' ,
2425 getParentRoute : ( ) => rootRouteImport ,
2526} as any )
27+ const BrunoIndexRoute = BrunoIndexRouteImport . update ( {
28+ id : '/bruno/' ,
29+ path : '/bruno/' ,
30+ getParentRoute : ( ) => rootRouteImport ,
31+ } as any )
2632const AuthLoginRoute = AuthLoginRouteImport . update ( {
2733 id : '/auth/login' ,
2834 path : '/auth/login' ,
@@ -32,30 +38,34 @@ const AuthLoginRoute = AuthLoginRouteImport.update({
3238export interface FileRoutesByFullPath {
3339 '/' : typeof IndexRoute
3440 '/auth/login' : typeof AuthLoginRoute
41+ '/bruno/' : typeof BrunoIndexRoute
3542 '/scores/' : typeof ScoresIndexRoute
3643}
3744export interface FileRoutesByTo {
3845 '/' : typeof IndexRoute
3946 '/auth/login' : typeof AuthLoginRoute
47+ '/bruno' : typeof BrunoIndexRoute
4048 '/scores' : typeof ScoresIndexRoute
4149}
4250export interface FileRoutesById {
4351 __root__ : typeof rootRouteImport
4452 '/' : typeof IndexRoute
4553 '/auth/login' : typeof AuthLoginRoute
54+ '/bruno/' : typeof BrunoIndexRoute
4655 '/scores/' : typeof ScoresIndexRoute
4756}
4857export interface FileRouteTypes {
4958 fileRoutesByFullPath : FileRoutesByFullPath
50- fullPaths : '/' | '/auth/login' | '/scores/'
59+ fullPaths : '/' | '/auth/login' | '/bruno/' | '/ scores/'
5160 fileRoutesByTo : FileRoutesByTo
52- to : '/' | '/auth/login' | '/scores'
53- id : '__root__' | '/' | '/auth/login' | '/scores/'
61+ to : '/' | '/auth/login' | '/bruno' | '/ scores'
62+ id : '__root__' | '/' | '/auth/login' | '/bruno/' | '/ scores/'
5463 fileRoutesById : FileRoutesById
5564}
5665export interface RootRouteChildren {
5766 IndexRoute : typeof IndexRoute
5867 AuthLoginRoute : typeof AuthLoginRoute
68+ BrunoIndexRoute : typeof BrunoIndexRoute
5969 ScoresIndexRoute : typeof ScoresIndexRoute
6070}
6171
@@ -75,6 +85,13 @@ declare module '@tanstack/react-router' {
7585 preLoaderRoute : typeof ScoresIndexRouteImport
7686 parentRoute : typeof rootRouteImport
7787 }
88+ '/bruno/' : {
89+ id : '/bruno/'
90+ path : '/bruno'
91+ fullPath : '/bruno/'
92+ preLoaderRoute : typeof BrunoIndexRouteImport
93+ parentRoute : typeof rootRouteImport
94+ }
7895 '/auth/login' : {
7996 id : '/auth/login'
8097 path : '/auth/login'
@@ -88,6 +105,7 @@ declare module '@tanstack/react-router' {
88105const rootRouteChildren : RootRouteChildren = {
89106 IndexRoute : IndexRoute ,
90107 AuthLoginRoute : AuthLoginRoute ,
108+ BrunoIndexRoute : BrunoIndexRoute ,
91109 ScoresIndexRoute : ScoresIndexRoute ,
92110}
93111export const routeTree = rootRouteImport
0 commit comments