chore: update generated route tree

This commit is contained in:
Lukas May
2026-03-06 21:44:55 +01:00
parent 346d62ef8d
commit 9c468f17cb

View File

@@ -17,6 +17,7 @@ import { Route as AgentsRouteImport } from './routes/agents'
import { Route as IndexRouteImport } from './routes/index'
import { Route as SettingsIndexRouteImport } from './routes/settings/index'
import { Route as InitiativesIndexRouteImport } from './routes/initiatives/index'
import { Route as ErrandsIndexRouteImport } from './routes/errands/index'
import { Route as SettingsProjectsRouteImport } from './routes/settings/projects'
import { Route as SettingsHealthRouteImport } from './routes/settings/health'
import { Route as InitiativesIdRouteImport } from './routes/initiatives/$id'
@@ -61,6 +62,11 @@ const InitiativesIndexRoute = InitiativesIndexRouteImport.update({
path: '/initiatives/',
getParentRoute: () => rootRouteImport,
} as any)
const ErrandsIndexRoute = ErrandsIndexRouteImport.update({
id: '/errands/',
path: '/errands/',
getParentRoute: () => rootRouteImport,
} as any)
const SettingsProjectsRoute = SettingsProjectsRouteImport.update({
id: '/projects',
path: '/projects',
@@ -87,6 +93,7 @@ export interface FileRoutesByFullPath {
'/initiatives/$id': typeof InitiativesIdRoute
'/settings/health': typeof SettingsHealthRoute
'/settings/projects': typeof SettingsProjectsRoute
'/errands/': typeof ErrandsIndexRoute
'/initiatives/': typeof InitiativesIndexRoute
'/settings/': typeof SettingsIndexRoute
}
@@ -99,6 +106,7 @@ export interface FileRoutesByTo {
'/initiatives/$id': typeof InitiativesIdRoute
'/settings/health': typeof SettingsHealthRoute
'/settings/projects': typeof SettingsProjectsRoute
'/errands': typeof ErrandsIndexRoute
'/initiatives': typeof InitiativesIndexRoute
'/settings': typeof SettingsIndexRoute
}
@@ -113,6 +121,7 @@ export interface FileRoutesById {
'/initiatives/$id': typeof InitiativesIdRoute
'/settings/health': typeof SettingsHealthRoute
'/settings/projects': typeof SettingsProjectsRoute
'/errands/': typeof ErrandsIndexRoute
'/initiatives/': typeof InitiativesIndexRoute
'/settings/': typeof SettingsIndexRoute
}
@@ -128,6 +137,7 @@ export interface FileRouteTypes {
| '/initiatives/$id'
| '/settings/health'
| '/settings/projects'
| '/errands/'
| '/initiatives/'
| '/settings/'
fileRoutesByTo: FileRoutesByTo
@@ -140,6 +150,7 @@ export interface FileRouteTypes {
| '/initiatives/$id'
| '/settings/health'
| '/settings/projects'
| '/errands'
| '/initiatives'
| '/settings'
id:
@@ -153,6 +164,7 @@ export interface FileRouteTypes {
| '/initiatives/$id'
| '/settings/health'
| '/settings/projects'
| '/errands/'
| '/initiatives/'
| '/settings/'
fileRoutesById: FileRoutesById
@@ -165,6 +177,7 @@ export interface RootRouteChildren {
RadarRoute: typeof RadarRoute
SettingsRoute: typeof SettingsRouteWithChildren
InitiativesIdRoute: typeof InitiativesIdRoute
ErrandsIndexRoute: typeof ErrandsIndexRoute
InitiativesIndexRoute: typeof InitiativesIndexRoute
}
@@ -226,6 +239,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof InitiativesIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/errands/': {
id: '/errands/'
path: '/errands'
fullPath: '/errands/'
preLoaderRoute: typeof ErrandsIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/settings/projects': {
id: '/settings/projects'
path: '/projects'
@@ -274,6 +294,7 @@ const rootRouteChildren: RootRouteChildren = {
RadarRoute: RadarRoute,
SettingsRoute: SettingsRouteWithChildren,
InitiativesIdRoute: InitiativesIdRoute,
ErrandsIndexRoute: ErrandsIndexRoute,
InitiativesIndexRoute: InitiativesIndexRoute,
}
export const routeTree = rootRouteImport