@@ -25,6 +25,7 @@ import { Route as DataVisualizationRouteRouteImport } from './routes/data-visual
2525import { Route as ChartInferenceRouteRouteImport } from './routes/chart-inference.route'
2626import { Route as ArrowAnalyticsRouteRouteImport } from './routes/arrow-analytics.route'
2727import { Route as AnalyticsRouteRouteImport } from './routes/analytics.route'
28+ import { Route as AgentChatFullRouteRouteImport } from './routes/agent-chat-full.route'
2829import { Route as AgentRouteRouteImport } from './routes/agent.route'
2930import { Route as IndexRouteImport } from './routes/index'
3031
@@ -108,6 +109,11 @@ const AnalyticsRouteRoute = AnalyticsRouteRouteImport.update({
108109 path : '/analytics' ,
109110 getParentRoute : ( ) => rootRouteImport ,
110111} as any )
112+ const AgentChatFullRouteRoute = AgentChatFullRouteRouteImport . update ( {
113+ id : '/agent-chat-full' ,
114+ path : '/agent-chat-full' ,
115+ getParentRoute : ( ) => rootRouteImport ,
116+ } as any )
111117const AgentRouteRoute = AgentRouteRouteImport . update ( {
112118 id : '/agent' ,
113119 path : '/agent' ,
@@ -122,6 +128,7 @@ const IndexRoute = IndexRouteImport.update({
122128export interface FileRoutesByFullPath {
123129 '/' : typeof IndexRoute
124130 '/agent' : typeof AgentRouteRoute
131+ '/agent-chat-full' : typeof AgentChatFullRouteRoute
125132 '/analytics' : typeof AnalyticsRouteRoute
126133 '/arrow-analytics' : typeof ArrowAnalyticsRouteRoute
127134 '/chart-inference' : typeof ChartInferenceRouteRoute
@@ -142,6 +149,7 @@ export interface FileRoutesByFullPath {
142149export interface FileRoutesByTo {
143150 '/' : typeof IndexRoute
144151 '/agent' : typeof AgentRouteRoute
152+ '/agent-chat-full' : typeof AgentChatFullRouteRoute
145153 '/analytics' : typeof AnalyticsRouteRoute
146154 '/arrow-analytics' : typeof ArrowAnalyticsRouteRoute
147155 '/chart-inference' : typeof ChartInferenceRouteRoute
@@ -163,6 +171,7 @@ export interface FileRoutesById {
163171 __root__ : typeof rootRouteImport
164172 '/' : typeof IndexRoute
165173 '/agent' : typeof AgentRouteRoute
174+ '/agent-chat-full' : typeof AgentChatFullRouteRoute
166175 '/analytics' : typeof AnalyticsRouteRoute
167176 '/arrow-analytics' : typeof ArrowAnalyticsRouteRoute
168177 '/chart-inference' : typeof ChartInferenceRouteRoute
@@ -185,6 +194,7 @@ export interface FileRouteTypes {
185194 fullPaths :
186195 | '/'
187196 | '/agent'
197+ | '/agent-chat-full'
188198 | '/analytics'
189199 | '/arrow-analytics'
190200 | '/chart-inference'
@@ -205,6 +215,7 @@ export interface FileRouteTypes {
205215 to :
206216 | '/'
207217 | '/agent'
218+ | '/agent-chat-full'
208219 | '/analytics'
209220 | '/arrow-analytics'
210221 | '/chart-inference'
@@ -225,6 +236,7 @@ export interface FileRouteTypes {
225236 | '__root__'
226237 | '/'
227238 | '/agent'
239+ | '/agent-chat-full'
228240 | '/analytics'
229241 | '/arrow-analytics'
230242 | '/chart-inference'
@@ -246,6 +258,7 @@ export interface FileRouteTypes {
246258export interface RootRouteChildren {
247259 IndexRoute : typeof IndexRoute
248260 AgentRouteRoute : typeof AgentRouteRoute
261+ AgentChatFullRouteRoute : typeof AgentChatFullRouteRoute
249262 AnalyticsRouteRoute : typeof AnalyticsRouteRoute
250263 ArrowAnalyticsRouteRoute : typeof ArrowAnalyticsRouteRoute
251264 ChartInferenceRouteRoute : typeof ChartInferenceRouteRoute
@@ -378,6 +391,13 @@ declare module '@tanstack/react-router' {
378391 preLoaderRoute : typeof AnalyticsRouteRouteImport
379392 parentRoute : typeof rootRouteImport
380393 }
394+ '/agent-chat-full' : {
395+ id : '/agent-chat-full'
396+ path : '/agent-chat-full'
397+ fullPath : '/agent-chat-full'
398+ preLoaderRoute : typeof AgentChatFullRouteRouteImport
399+ parentRoute : typeof rootRouteImport
400+ }
381401 '/agent' : {
382402 id : '/agent'
383403 path : '/agent'
@@ -398,6 +418,7 @@ declare module '@tanstack/react-router' {
398418const rootRouteChildren : RootRouteChildren = {
399419 IndexRoute : IndexRoute ,
400420 AgentRouteRoute : AgentRouteRoute ,
421+ AgentChatFullRouteRoute : AgentChatFullRouteRoute ,
401422 AnalyticsRouteRoute : AnalyticsRouteRoute ,
402423 ArrowAnalyticsRouteRoute : ArrowAnalyticsRouteRoute ,
403424 ChartInferenceRouteRoute : ChartInferenceRouteRoute ,
0 commit comments