From 9c468f17cb1d9a0c548409b1b6ad06152a2e1ba1 Mon Sep 17 00:00:00 2001 From: Lukas May Date: Fri, 6 Mar 2026 21:44:55 +0100 Subject: [PATCH] chore: update generated route tree --- apps/web/src/routeTree.gen.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/apps/web/src/routeTree.gen.ts b/apps/web/src/routeTree.gen.ts index 411612e..1c12f5f 100644 --- a/apps/web/src/routeTree.gen.ts +++ b/apps/web/src/routeTree.gen.ts @@ -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