chore(36-02): regenerate routeTree.gen.ts with /admin and /admin/ routes

This commit is contained in:
2026-04-19 20:49:19 +02:00
parent 8f62edc91d
commit 72473bc5c5

View File

@@ -12,10 +12,12 @@ import { Route as rootRouteImport } from './routes/__root'
import { Route as SettingsRouteImport } from './routes/settings'
import { Route as ProfileRouteImport } from './routes/profile'
import { Route as LoginRouteImport } from './routes/login'
import { Route as AdminRouteImport } from './routes/admin'
import { Route as IndexRouteImport } from './routes/index'
import { Route as SetupsIndexRouteImport } from './routes/setups/index'
import { Route as GlobalItemsIndexRouteImport } from './routes/global-items/index'
import { Route as CollectionIndexRouteImport } from './routes/collection/index'
import { Route as AdminIndexRouteImport } from './routes/admin/index'
import { Route as UsersUserIdRouteImport } from './routes/users/$userId'
import { Route as SetupsSetupIdRouteImport } from './routes/setups/$setupId'
import { Route as ItemsItemIdRouteImport } from './routes/items/$itemId'
@@ -38,6 +40,11 @@ const LoginRoute = LoginRouteImport.update({
path: '/login',
getParentRoute: () => rootRouteImport,
} as any)
const AdminRoute = AdminRouteImport.update({
id: '/admin',
path: '/admin',
getParentRoute: () => rootRouteImport,
} as any)
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
@@ -58,6 +65,11 @@ const CollectionIndexRoute = CollectionIndexRouteImport.update({
path: '/collection/',
getParentRoute: () => rootRouteImport,
} as any)
const AdminIndexRoute = AdminIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => AdminRoute,
} as any)
const UsersUserIdRoute = UsersUserIdRouteImport.update({
id: '/users/$userId',
path: '/users/$userId',
@@ -92,6 +104,7 @@ const ThreadsThreadIdCandidatesCandidateIdRoute =
export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/admin': typeof AdminRouteWithChildren
'/login': typeof LoginRoute
'/profile': typeof ProfileRoute
'/settings': typeof SettingsRoute
@@ -99,6 +112,7 @@ export interface FileRoutesByFullPath {
'/items/$itemId': typeof ItemsItemIdRoute
'/setups/$setupId': typeof SetupsSetupIdRoute
'/users/$userId': typeof UsersUserIdRoute
'/admin/': typeof AdminIndexRoute
'/collection/': typeof CollectionIndexRoute
'/global-items/': typeof GlobalItemsIndexRoute
'/setups/': typeof SetupsIndexRoute
@@ -114,6 +128,7 @@ export interface FileRoutesByTo {
'/items/$itemId': typeof ItemsItemIdRoute
'/setups/$setupId': typeof SetupsSetupIdRoute
'/users/$userId': typeof UsersUserIdRoute
'/admin': typeof AdminIndexRoute
'/collection': typeof CollectionIndexRoute
'/global-items': typeof GlobalItemsIndexRoute
'/setups': typeof SetupsIndexRoute
@@ -123,6 +138,7 @@ export interface FileRoutesByTo {
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/admin': typeof AdminRouteWithChildren
'/login': typeof LoginRoute
'/profile': typeof ProfileRoute
'/settings': typeof SettingsRoute
@@ -130,6 +146,7 @@ export interface FileRoutesById {
'/items/$itemId': typeof ItemsItemIdRoute
'/setups/$setupId': typeof SetupsSetupIdRoute
'/users/$userId': typeof UsersUserIdRoute
'/admin/': typeof AdminIndexRoute
'/collection/': typeof CollectionIndexRoute
'/global-items/': typeof GlobalItemsIndexRoute
'/setups/': typeof SetupsIndexRoute
@@ -140,6 +157,7 @@ export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths:
| '/'
| '/admin'
| '/login'
| '/profile'
| '/settings'
@@ -147,6 +165,7 @@ export interface FileRouteTypes {
| '/items/$itemId'
| '/setups/$setupId'
| '/users/$userId'
| '/admin/'
| '/collection/'
| '/global-items/'
| '/setups/'
@@ -162,6 +181,7 @@ export interface FileRouteTypes {
| '/items/$itemId'
| '/setups/$setupId'
| '/users/$userId'
| '/admin'
| '/collection'
| '/global-items'
| '/setups'
@@ -170,6 +190,7 @@ export interface FileRouteTypes {
id:
| '__root__'
| '/'
| '/admin'
| '/login'
| '/profile'
| '/settings'
@@ -177,6 +198,7 @@ export interface FileRouteTypes {
| '/items/$itemId'
| '/setups/$setupId'
| '/users/$userId'
| '/admin/'
| '/collection/'
| '/global-items/'
| '/setups/'
@@ -186,6 +208,7 @@ export interface FileRouteTypes {
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
AdminRoute: typeof AdminRouteWithChildren
LoginRoute: typeof LoginRoute
ProfileRoute: typeof ProfileRoute
SettingsRoute: typeof SettingsRoute
@@ -223,6 +246,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof LoginRouteImport
parentRoute: typeof rootRouteImport
}
'/admin': {
id: '/admin'
path: '/admin'
fullPath: '/admin'
preLoaderRoute: typeof AdminRouteImport
parentRoute: typeof rootRouteImport
}
'/': {
id: '/'
path: '/'
@@ -251,6 +281,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof CollectionIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/admin/': {
id: '/admin/'
path: '/'
fullPath: '/admin/'
preLoaderRoute: typeof AdminIndexRouteImport
parentRoute: typeof AdminRoute
}
'/users/$userId': {
id: '/users/$userId'
path: '/users/$userId'
@@ -296,8 +333,19 @@ declare module '@tanstack/react-router' {
}
}
interface AdminRouteChildren {
AdminIndexRoute: typeof AdminIndexRoute
}
const AdminRouteChildren: AdminRouteChildren = {
AdminIndexRoute: AdminIndexRoute,
}
const AdminRouteWithChildren = AdminRoute._addFileChildren(AdminRouteChildren)
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
AdminRoute: AdminRouteWithChildren,
LoginRoute: LoginRoute,
ProfileRoute: ProfileRoute,
SettingsRoute: SettingsRoute,