@@ -20,6 +20,7 @@ import { Route as DataVisualizationRouteRouteImport } from './routes/data-visual
2020import { Route as ChartInferenceRouteRouteImport } from './routes/chart-inference.route'
2121import { Route as ArrowAnalyticsRouteRouteImport } from './routes/arrow-analytics.route'
2222import { Route as AnalyticsRouteRouteImport } from './routes/analytics.route'
23+ import { Route as AgentRouteRouteImport } from './routes/agent.route'
2324import { Route as IndexRouteImport } from './routes/index'
2425
2526const TypeSafetyRouteRoute = TypeSafetyRouteRouteImport . update ( {
@@ -77,6 +78,11 @@ const AnalyticsRouteRoute = AnalyticsRouteRouteImport.update({
7778 path : '/analytics' ,
7879 getParentRoute : ( ) => rootRouteImport ,
7980} as any )
81+ const AgentRouteRoute = AgentRouteRouteImport . update ( {
82+ id : '/agent' ,
83+ path : '/agent' ,
84+ getParentRoute : ( ) => rootRouteImport ,
85+ } as any )
8086const IndexRoute = IndexRouteImport . update ( {
8187 id : '/' ,
8288 path : '/' ,
@@ -85,6 +91,7 @@ const IndexRoute = IndexRouteImport.update({
8591
8692export interface FileRoutesByFullPath {
8793 '/' : typeof IndexRoute
94+ '/agent' : typeof AgentRouteRoute
8895 '/analytics' : typeof AnalyticsRouteRoute
8996 '/arrow-analytics' : typeof ArrowAnalyticsRouteRoute
9097 '/chart-inference' : typeof ChartInferenceRouteRoute
@@ -99,6 +106,7 @@ export interface FileRoutesByFullPath {
99106}
100107export interface FileRoutesByTo {
101108 '/' : typeof IndexRoute
109+ '/agent' : typeof AgentRouteRoute
102110 '/analytics' : typeof AnalyticsRouteRoute
103111 '/arrow-analytics' : typeof ArrowAnalyticsRouteRoute
104112 '/chart-inference' : typeof ChartInferenceRouteRoute
@@ -114,6 +122,7 @@ export interface FileRoutesByTo {
114122export interface FileRoutesById {
115123 __root__ : typeof rootRouteImport
116124 '/' : typeof IndexRoute
125+ '/agent' : typeof AgentRouteRoute
117126 '/analytics' : typeof AnalyticsRouteRoute
118127 '/arrow-analytics' : typeof ArrowAnalyticsRouteRoute
119128 '/chart-inference' : typeof ChartInferenceRouteRoute
@@ -130,6 +139,7 @@ export interface FileRouteTypes {
130139 fileRoutesByFullPath : FileRoutesByFullPath
131140 fullPaths :
132141 | '/'
142+ | '/agent'
133143 | '/analytics'
134144 | '/arrow-analytics'
135145 | '/chart-inference'
@@ -144,6 +154,7 @@ export interface FileRouteTypes {
144154 fileRoutesByTo : FileRoutesByTo
145155 to :
146156 | '/'
157+ | '/agent'
147158 | '/analytics'
148159 | '/arrow-analytics'
149160 | '/chart-inference'
@@ -158,6 +169,7 @@ export interface FileRouteTypes {
158169 id :
159170 | '__root__'
160171 | '/'
172+ | '/agent'
161173 | '/analytics'
162174 | '/arrow-analytics'
163175 | '/chart-inference'
@@ -173,6 +185,7 @@ export interface FileRouteTypes {
173185}
174186export interface RootRouteChildren {
175187 IndexRoute : typeof IndexRoute
188+ AgentRouteRoute : typeof AgentRouteRoute
176189 AnalyticsRouteRoute : typeof AnalyticsRouteRoute
177190 ArrowAnalyticsRouteRoute : typeof ArrowAnalyticsRouteRoute
178191 ChartInferenceRouteRoute : typeof ChartInferenceRouteRoute
@@ -265,6 +278,13 @@ declare module '@tanstack/react-router' {
265278 preLoaderRoute : typeof AnalyticsRouteRouteImport
266279 parentRoute : typeof rootRouteImport
267280 }
281+ '/agent' : {
282+ id : '/agent'
283+ path : '/agent'
284+ fullPath : '/agent'
285+ preLoaderRoute : typeof AgentRouteRouteImport
286+ parentRoute : typeof rootRouteImport
287+ }
268288 '/' : {
269289 id : '/'
270290 path : '/'
@@ -277,6 +297,7 @@ declare module '@tanstack/react-router' {
277297
278298const rootRouteChildren : RootRouteChildren = {
279299 IndexRoute : IndexRoute ,
300+ AgentRouteRoute : AgentRouteRoute ,
280301 AnalyticsRouteRoute : AnalyticsRouteRoute ,
281302 ArrowAnalyticsRouteRoute : ArrowAnalyticsRouteRoute ,
282303 ChartInferenceRouteRoute : ChartInferenceRouteRoute ,
0 commit comments