| |
|
|
| |
|
|
| |
|
|
| |
| |
| |
|
|
| import { Route as rootRouteImport } from './routes/__root' |
| import { Route as WikiRouteImport } from './routes/wiki' |
| import { Route as TerminalRouteImport } from './routes/terminal' |
| import { Route as SpecRouteImport } from './routes/spec' |
| import { Route as SetupRouteImport } from './routes/setup' |
| import { Route as SettingsRouteImport } from './routes/settings' |
| import { Route as RunningAgentsRouteImport } from './routes/running-agents' |
| import { Route as ProjectSettingsRouteImport } from './routes/project-settings' |
| import { Route as OverviewRouteImport } from './routes/overview' |
| import { Route as NotificationsRouteImport } from './routes/notifications' |
| import { Route as MemoryRouteImport } from './routes/memory' |
| import { Route as LoginRouteImport } from './routes/login' |
| import { Route as LoggedOutRouteImport } from './routes/logged-out' |
| import { Route as InterviewRouteImport } from './routes/interview' |
| import { Route as IdeationRouteImport } from './routes/ideation' |
| import { Route as GraphRouteImport } from './routes/graph' |
| import { Route as GithubPrsRouteImport } from './routes/github-prs' |
| import { Route as GithubIssuesRouteImport } from './routes/github-issues' |
| import { Route as FileEditorRouteImport } from './routes/file-editor' |
| import { Route as DashboardRouteImport } from './routes/dashboard' |
| import { Route as ContextRouteImport } from './routes/context' |
| import { Route as BoardRouteImport } from './routes/board' |
| import { Route as AgentRouteImport } from './routes/agent' |
| import { Route as IndexRouteImport } from './routes/index' |
|
|
| const WikiRoute = WikiRouteImport.update({ |
| id: '/wiki', |
| path: '/wiki', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const TerminalRoute = TerminalRouteImport.update({ |
| id: '/terminal', |
| path: '/terminal', |
| getParentRoute: () => rootRouteImport, |
| } as any).lazy(() => import('./routes/terminal.lazy').then((d) => d.Route)) |
| const SpecRoute = SpecRouteImport.update({ |
| id: '/spec', |
| path: '/spec', |
| getParentRoute: () => rootRouteImport, |
| } as any).lazy(() => import('./routes/spec.lazy').then((d) => d.Route)) |
| const SetupRoute = SetupRouteImport.update({ |
| id: '/setup', |
| path: '/setup', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const SettingsRoute = SettingsRouteImport.update({ |
| id: '/settings', |
| path: '/settings', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const RunningAgentsRoute = RunningAgentsRouteImport.update({ |
| id: '/running-agents', |
| path: '/running-agents', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const ProjectSettingsRoute = ProjectSettingsRouteImport.update({ |
| id: '/project-settings', |
| path: '/project-settings', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const OverviewRoute = OverviewRouteImport.update({ |
| id: '/overview', |
| path: '/overview', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const NotificationsRoute = NotificationsRouteImport.update({ |
| id: '/notifications', |
| path: '/notifications', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const MemoryRoute = MemoryRouteImport.update({ |
| id: '/memory', |
| path: '/memory', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const LoginRoute = LoginRouteImport.update({ |
| id: '/login', |
| path: '/login', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const LoggedOutRoute = LoggedOutRouteImport.update({ |
| id: '/logged-out', |
| path: '/logged-out', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const InterviewRoute = InterviewRouteImport.update({ |
| id: '/interview', |
| path: '/interview', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const IdeationRoute = IdeationRouteImport.update({ |
| id: '/ideation', |
| path: '/ideation', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const GraphRoute = GraphRouteImport.update({ |
| id: '/graph', |
| path: '/graph', |
| getParentRoute: () => rootRouteImport, |
| } as any).lazy(() => import('./routes/graph.lazy').then((d) => d.Route)) |
| const GithubPrsRoute = GithubPrsRouteImport.update({ |
| id: '/github-prs', |
| path: '/github-prs', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const GithubIssuesRoute = GithubIssuesRouteImport.update({ |
| id: '/github-issues', |
| path: '/github-issues', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const FileEditorRoute = FileEditorRouteImport.update({ |
| id: '/file-editor', |
| path: '/file-editor', |
| getParentRoute: () => rootRouteImport, |
| } as any).lazy(() => import('./routes/file-editor.lazy').then((d) => d.Route)) |
| const DashboardRoute = DashboardRouteImport.update({ |
| id: '/dashboard', |
| path: '/dashboard', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const ContextRoute = ContextRouteImport.update({ |
| id: '/context', |
| path: '/context', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const BoardRoute = BoardRouteImport.update({ |
| id: '/board', |
| path: '/board', |
| getParentRoute: () => rootRouteImport, |
| } as any).lazy(() => import('./routes/board.lazy').then((d) => d.Route)) |
| const AgentRoute = AgentRouteImport.update({ |
| id: '/agent', |
| path: '/agent', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const IndexRoute = IndexRouteImport.update({ |
| id: '/', |
| path: '/', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
|
|
| export interface FileRoutesByFullPath { |
| '/': typeof IndexRoute |
| '/agent': typeof AgentRoute |
| '/board': typeof BoardRoute |
| '/context': typeof ContextRoute |
| '/dashboard': typeof DashboardRoute |
| '/file-editor': typeof FileEditorRoute |
| '/github-issues': typeof GithubIssuesRoute |
| '/github-prs': typeof GithubPrsRoute |
| '/graph': typeof GraphRoute |
| '/ideation': typeof IdeationRoute |
| '/interview': typeof InterviewRoute |
| '/logged-out': typeof LoggedOutRoute |
| '/login': typeof LoginRoute |
| '/memory': typeof MemoryRoute |
| '/notifications': typeof NotificationsRoute |
| '/overview': typeof OverviewRoute |
| '/project-settings': typeof ProjectSettingsRoute |
| '/running-agents': typeof RunningAgentsRoute |
| '/settings': typeof SettingsRoute |
| '/setup': typeof SetupRoute |
| '/spec': typeof SpecRoute |
| '/terminal': typeof TerminalRoute |
| '/wiki': typeof WikiRoute |
| } |
| export interface FileRoutesByTo { |
| '/': typeof IndexRoute |
| '/agent': typeof AgentRoute |
| '/board': typeof BoardRoute |
| '/context': typeof ContextRoute |
| '/dashboard': typeof DashboardRoute |
| '/file-editor': typeof FileEditorRoute |
| '/github-issues': typeof GithubIssuesRoute |
| '/github-prs': typeof GithubPrsRoute |
| '/graph': typeof GraphRoute |
| '/ideation': typeof IdeationRoute |
| '/interview': typeof InterviewRoute |
| '/logged-out': typeof LoggedOutRoute |
| '/login': typeof LoginRoute |
| '/memory': typeof MemoryRoute |
| '/notifications': typeof NotificationsRoute |
| '/overview': typeof OverviewRoute |
| '/project-settings': typeof ProjectSettingsRoute |
| '/running-agents': typeof RunningAgentsRoute |
| '/settings': typeof SettingsRoute |
| '/setup': typeof SetupRoute |
| '/spec': typeof SpecRoute |
| '/terminal': typeof TerminalRoute |
| '/wiki': typeof WikiRoute |
| } |
| export interface FileRoutesById { |
| __root__: typeof rootRouteImport |
| '/': typeof IndexRoute |
| '/agent': typeof AgentRoute |
| '/board': typeof BoardRoute |
| '/context': typeof ContextRoute |
| '/dashboard': typeof DashboardRoute |
| '/file-editor': typeof FileEditorRoute |
| '/github-issues': typeof GithubIssuesRoute |
| '/github-prs': typeof GithubPrsRoute |
| '/graph': typeof GraphRoute |
| '/ideation': typeof IdeationRoute |
| '/interview': typeof InterviewRoute |
| '/logged-out': typeof LoggedOutRoute |
| '/login': typeof LoginRoute |
| '/memory': typeof MemoryRoute |
| '/notifications': typeof NotificationsRoute |
| '/overview': typeof OverviewRoute |
| '/project-settings': typeof ProjectSettingsRoute |
| '/running-agents': typeof RunningAgentsRoute |
| '/settings': typeof SettingsRoute |
| '/setup': typeof SetupRoute |
| '/spec': typeof SpecRoute |
| '/terminal': typeof TerminalRoute |
| '/wiki': typeof WikiRoute |
| } |
| export interface FileRouteTypes { |
| fileRoutesByFullPath: FileRoutesByFullPath |
| fullPaths: |
| | '/' |
| | '/agent' |
| | '/board' |
| | '/context' |
| | '/dashboard' |
| | '/file-editor' |
| | '/github-issues' |
| | '/github-prs' |
| | '/graph' |
| | '/ideation' |
| | '/interview' |
| | '/logged-out' |
| | '/login' |
| | '/memory' |
| | '/notifications' |
| | '/overview' |
| | '/project-settings' |
| | '/running-agents' |
| | '/settings' |
| | '/setup' |
| | '/spec' |
| | '/terminal' |
| | '/wiki' |
| fileRoutesByTo: FileRoutesByTo |
| to: |
| | '/' |
| | '/agent' |
| | '/board' |
| | '/context' |
| | '/dashboard' |
| | '/file-editor' |
| | '/github-issues' |
| | '/github-prs' |
| | '/graph' |
| | '/ideation' |
| | '/interview' |
| | '/logged-out' |
| | '/login' |
| | '/memory' |
| | '/notifications' |
| | '/overview' |
| | '/project-settings' |
| | '/running-agents' |
| | '/settings' |
| | '/setup' |
| | '/spec' |
| | '/terminal' |
| | '/wiki' |
| id: |
| | '__root__' |
| | '/' |
| | '/agent' |
| | '/board' |
| | '/context' |
| | '/dashboard' |
| | '/file-editor' |
| | '/github-issues' |
| | '/github-prs' |
| | '/graph' |
| | '/ideation' |
| | '/interview' |
| | '/logged-out' |
| | '/login' |
| | '/memory' |
| | '/notifications' |
| | '/overview' |
| | '/project-settings' |
| | '/running-agents' |
| | '/settings' |
| | '/setup' |
| | '/spec' |
| | '/terminal' |
| | '/wiki' |
| fileRoutesById: FileRoutesById |
| } |
| export interface RootRouteChildren { |
| IndexRoute: typeof IndexRoute |
| AgentRoute: typeof AgentRoute |
| BoardRoute: typeof BoardRoute |
| ContextRoute: typeof ContextRoute |
| DashboardRoute: typeof DashboardRoute |
| FileEditorRoute: typeof FileEditorRoute |
| GithubIssuesRoute: typeof GithubIssuesRoute |
| GithubPrsRoute: typeof GithubPrsRoute |
| GraphRoute: typeof GraphRoute |
| IdeationRoute: typeof IdeationRoute |
| InterviewRoute: typeof InterviewRoute |
| LoggedOutRoute: typeof LoggedOutRoute |
| LoginRoute: typeof LoginRoute |
| MemoryRoute: typeof MemoryRoute |
| NotificationsRoute: typeof NotificationsRoute |
| OverviewRoute: typeof OverviewRoute |
| ProjectSettingsRoute: typeof ProjectSettingsRoute |
| RunningAgentsRoute: typeof RunningAgentsRoute |
| SettingsRoute: typeof SettingsRoute |
| SetupRoute: typeof SetupRoute |
| SpecRoute: typeof SpecRoute |
| TerminalRoute: typeof TerminalRoute |
| WikiRoute: typeof WikiRoute |
| } |
|
|
| declare module '@tanstack/react-router' { |
| interface FileRoutesByPath { |
| '/wiki': { |
| id: '/wiki' |
| path: '/wiki' |
| fullPath: '/wiki' |
| preLoaderRoute: typeof WikiRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/terminal': { |
| id: '/terminal' |
| path: '/terminal' |
| fullPath: '/terminal' |
| preLoaderRoute: typeof TerminalRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/spec': { |
| id: '/spec' |
| path: '/spec' |
| fullPath: '/spec' |
| preLoaderRoute: typeof SpecRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/setup': { |
| id: '/setup' |
| path: '/setup' |
| fullPath: '/setup' |
| preLoaderRoute: typeof SetupRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/settings': { |
| id: '/settings' |
| path: '/settings' |
| fullPath: '/settings' |
| preLoaderRoute: typeof SettingsRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/running-agents': { |
| id: '/running-agents' |
| path: '/running-agents' |
| fullPath: '/running-agents' |
| preLoaderRoute: typeof RunningAgentsRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/project-settings': { |
| id: '/project-settings' |
| path: '/project-settings' |
| fullPath: '/project-settings' |
| preLoaderRoute: typeof ProjectSettingsRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/overview': { |
| id: '/overview' |
| path: '/overview' |
| fullPath: '/overview' |
| preLoaderRoute: typeof OverviewRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/notifications': { |
| id: '/notifications' |
| path: '/notifications' |
| fullPath: '/notifications' |
| preLoaderRoute: typeof NotificationsRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/memory': { |
| id: '/memory' |
| path: '/memory' |
| fullPath: '/memory' |
| preLoaderRoute: typeof MemoryRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/login': { |
| id: '/login' |
| path: '/login' |
| fullPath: '/login' |
| preLoaderRoute: typeof LoginRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/logged-out': { |
| id: '/logged-out' |
| path: '/logged-out' |
| fullPath: '/logged-out' |
| preLoaderRoute: typeof LoggedOutRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/interview': { |
| id: '/interview' |
| path: '/interview' |
| fullPath: '/interview' |
| preLoaderRoute: typeof InterviewRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/ideation': { |
| id: '/ideation' |
| path: '/ideation' |
| fullPath: '/ideation' |
| preLoaderRoute: typeof IdeationRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/graph': { |
| id: '/graph' |
| path: '/graph' |
| fullPath: '/graph' |
| preLoaderRoute: typeof GraphRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/github-prs': { |
| id: '/github-prs' |
| path: '/github-prs' |
| fullPath: '/github-prs' |
| preLoaderRoute: typeof GithubPrsRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/github-issues': { |
| id: '/github-issues' |
| path: '/github-issues' |
| fullPath: '/github-issues' |
| preLoaderRoute: typeof GithubIssuesRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/file-editor': { |
| id: '/file-editor' |
| path: '/file-editor' |
| fullPath: '/file-editor' |
| preLoaderRoute: typeof FileEditorRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/dashboard': { |
| id: '/dashboard' |
| path: '/dashboard' |
| fullPath: '/dashboard' |
| preLoaderRoute: typeof DashboardRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/context': { |
| id: '/context' |
| path: '/context' |
| fullPath: '/context' |
| preLoaderRoute: typeof ContextRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/board': { |
| id: '/board' |
| path: '/board' |
| fullPath: '/board' |
| preLoaderRoute: typeof BoardRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/agent': { |
| id: '/agent' |
| path: '/agent' |
| fullPath: '/agent' |
| preLoaderRoute: typeof AgentRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/': { |
| id: '/' |
| path: '/' |
| fullPath: '/' |
| preLoaderRoute: typeof IndexRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| } |
| } |
|
|
| const rootRouteChildren: RootRouteChildren = { |
| IndexRoute: IndexRoute, |
| AgentRoute: AgentRoute, |
| BoardRoute: BoardRoute, |
| ContextRoute: ContextRoute, |
| DashboardRoute: DashboardRoute, |
| FileEditorRoute: FileEditorRoute, |
| GithubIssuesRoute: GithubIssuesRoute, |
| GithubPrsRoute: GithubPrsRoute, |
| GraphRoute: GraphRoute, |
| IdeationRoute: IdeationRoute, |
| InterviewRoute: InterviewRoute, |
| LoggedOutRoute: LoggedOutRoute, |
| LoginRoute: LoginRoute, |
| MemoryRoute: MemoryRoute, |
| NotificationsRoute: NotificationsRoute, |
| OverviewRoute: OverviewRoute, |
| ProjectSettingsRoute: ProjectSettingsRoute, |
| RunningAgentsRoute: RunningAgentsRoute, |
| SettingsRoute: SettingsRoute, |
| SetupRoute: SetupRoute, |
| SpecRoute: SpecRoute, |
| TerminalRoute: TerminalRoute, |
| WikiRoute: WikiRoute, |
| } |
| export const routeTree = rootRouteImport |
| ._addFileChildren(rootRouteChildren) |
| ._addFileTypes<FileRouteTypes>() |
|
|