|
10 | 10 |
|
11 | 11 | import { Route as rootRouteImport } from './routes/__root' |
12 | 12 | import { Route as WorldRouteImport } from './routes/world' |
| 13 | +import { Route as VtCapitalRouteImport } from './routes/vt-capital' |
13 | 14 | import { Route as TerminalRouteImport } from './routes/terminal' |
14 | 15 | import { Route as TasksRouteImport } from './routes/tasks' |
15 | 16 | import { Route as Swarm2RouteImport } from './routes/swarm2' |
@@ -37,6 +38,7 @@ import { Route as SettingsProvidersRouteImport } from './routes/settings/provide |
37 | 38 | import { Route as ReserveConfirmRouteImport } from './routes/reserve/confirm' |
38 | 39 | import { Route as ChatSessionKeyRouteImport } from './routes/chat/$sessionKey' |
39 | 40 | import { Route as ApiWorkspaceRouteImport } from './routes/api/workspace' |
| 41 | +import { Route as ApiVtCapitalRouteImport } from './routes/api/vt-capital' |
40 | 42 | import { Route as ApiTerminalStreamRouteImport } from './routes/api/terminal-stream' |
41 | 43 | import { Route as ApiTerminalResizeRouteImport } from './routes/api/terminal-resize' |
42 | 44 | import { Route as ApiTerminalInputRouteImport } from './routes/api/terminal-input' |
@@ -156,6 +158,11 @@ const WorldRoute = WorldRouteImport.update({ |
156 | 158 | path: '/world', |
157 | 159 | getParentRoute: () => rootRouteImport, |
158 | 160 | } as any) |
| 161 | +const VtCapitalRoute = VtCapitalRouteImport.update({ |
| 162 | + id: '/vt-capital', |
| 163 | + path: '/vt-capital', |
| 164 | + getParentRoute: () => rootRouteImport, |
| 165 | +} as any) |
159 | 166 | const TerminalRoute = TerminalRouteImport.update({ |
160 | 167 | id: '/terminal', |
161 | 168 | path: '/terminal', |
@@ -291,6 +298,11 @@ const ApiWorkspaceRoute = ApiWorkspaceRouteImport.update({ |
291 | 298 | path: '/api/workspace', |
292 | 299 | getParentRoute: () => rootRouteImport, |
293 | 300 | } as any) |
| 301 | +const ApiVtCapitalRoute = ApiVtCapitalRouteImport.update({ |
| 302 | + id: '/api/vt-capital', |
| 303 | + path: '/api/vt-capital', |
| 304 | + getParentRoute: () => rootRouteImport, |
| 305 | +} as any) |
294 | 306 | const ApiTerminalStreamRoute = ApiTerminalStreamRouteImport.update({ |
295 | 307 | id: '/api/terminal-stream', |
296 | 308 | path: '/api/terminal-stream', |
@@ -884,6 +896,7 @@ export interface FileRoutesByFullPath { |
884 | 896 | '/swarm2': typeof Swarm2Route |
885 | 897 | '/tasks': typeof TasksRoute |
886 | 898 | '/terminal': typeof TerminalRoute |
| 899 | + '/vt-capital': typeof VtCapitalRoute |
887 | 900 | '/world': typeof WorldRoute |
888 | 901 | '/api/artifacts': typeof ApiArtifactsRouteWithChildren |
889 | 902 | '/api/auth': typeof ApiAuthRoute |
@@ -951,6 +964,7 @@ export interface FileRoutesByFullPath { |
951 | 964 | '/api/terminal-input': typeof ApiTerminalInputRoute |
952 | 965 | '/api/terminal-resize': typeof ApiTerminalResizeRoute |
953 | 966 | '/api/terminal-stream': typeof ApiTerminalStreamRoute |
| 967 | + '/api/vt-capital': typeof ApiVtCapitalRoute |
954 | 968 | '/api/workspace': typeof ApiWorkspaceRoute |
955 | 969 | '/chat/$sessionKey': typeof ChatSessionKeyRoute |
956 | 970 | '/reserve/confirm': typeof ReserveConfirmRoute |
@@ -1026,6 +1040,7 @@ export interface FileRoutesByTo { |
1026 | 1040 | '/swarm2': typeof Swarm2Route |
1027 | 1041 | '/tasks': typeof TasksRoute |
1028 | 1042 | '/terminal': typeof TerminalRoute |
| 1043 | + '/vt-capital': typeof VtCapitalRoute |
1029 | 1044 | '/world': typeof WorldRoute |
1030 | 1045 | '/api/artifacts': typeof ApiArtifactsRouteWithChildren |
1031 | 1046 | '/api/auth': typeof ApiAuthRoute |
@@ -1093,6 +1108,7 @@ export interface FileRoutesByTo { |
1093 | 1108 | '/api/terminal-input': typeof ApiTerminalInputRoute |
1094 | 1109 | '/api/terminal-resize': typeof ApiTerminalResizeRoute |
1095 | 1110 | '/api/terminal-stream': typeof ApiTerminalStreamRoute |
| 1111 | + '/api/vt-capital': typeof ApiVtCapitalRoute |
1096 | 1112 | '/api/workspace': typeof ApiWorkspaceRoute |
1097 | 1113 | '/chat/$sessionKey': typeof ChatSessionKeyRoute |
1098 | 1114 | '/reserve/confirm': typeof ReserveConfirmRoute |
@@ -1170,6 +1186,7 @@ export interface FileRoutesById { |
1170 | 1186 | '/swarm2': typeof Swarm2Route |
1171 | 1187 | '/tasks': typeof TasksRoute |
1172 | 1188 | '/terminal': typeof TerminalRoute |
| 1189 | + '/vt-capital': typeof VtCapitalRoute |
1173 | 1190 | '/world': typeof WorldRoute |
1174 | 1191 | '/api/artifacts': typeof ApiArtifactsRouteWithChildren |
1175 | 1192 | '/api/auth': typeof ApiAuthRoute |
@@ -1237,6 +1254,7 @@ export interface FileRoutesById { |
1237 | 1254 | '/api/terminal-input': typeof ApiTerminalInputRoute |
1238 | 1255 | '/api/terminal-resize': typeof ApiTerminalResizeRoute |
1239 | 1256 | '/api/terminal-stream': typeof ApiTerminalStreamRoute |
| 1257 | + '/api/vt-capital': typeof ApiVtCapitalRoute |
1240 | 1258 | '/api/workspace': typeof ApiWorkspaceRoute |
1241 | 1259 | '/chat/$sessionKey': typeof ChatSessionKeyRoute |
1242 | 1260 | '/reserve/confirm': typeof ReserveConfirmRoute |
@@ -1315,6 +1333,7 @@ export interface FileRouteTypes { |
1315 | 1333 | | '/swarm2' |
1316 | 1334 | | '/tasks' |
1317 | 1335 | | '/terminal' |
| 1336 | + | '/vt-capital' |
1318 | 1337 | | '/world' |
1319 | 1338 | | '/api/artifacts' |
1320 | 1339 | | '/api/auth' |
@@ -1382,6 +1401,7 @@ export interface FileRouteTypes { |
1382 | 1401 | | '/api/terminal-input' |
1383 | 1402 | | '/api/terminal-resize' |
1384 | 1403 | | '/api/terminal-stream' |
| 1404 | + | '/api/vt-capital' |
1385 | 1405 | | '/api/workspace' |
1386 | 1406 | | '/chat/$sessionKey' |
1387 | 1407 | | '/reserve/confirm' |
@@ -1457,6 +1477,7 @@ export interface FileRouteTypes { |
1457 | 1477 | | '/swarm2' |
1458 | 1478 | | '/tasks' |
1459 | 1479 | | '/terminal' |
| 1480 | + | '/vt-capital' |
1460 | 1481 | | '/world' |
1461 | 1482 | | '/api/artifacts' |
1462 | 1483 | | '/api/auth' |
@@ -1524,6 +1545,7 @@ export interface FileRouteTypes { |
1524 | 1545 | | '/api/terminal-input' |
1525 | 1546 | | '/api/terminal-resize' |
1526 | 1547 | | '/api/terminal-stream' |
| 1548 | + | '/api/vt-capital' |
1527 | 1549 | | '/api/workspace' |
1528 | 1550 | | '/chat/$sessionKey' |
1529 | 1551 | | '/reserve/confirm' |
@@ -1600,6 +1622,7 @@ export interface FileRouteTypes { |
1600 | 1622 | | '/swarm2' |
1601 | 1623 | | '/tasks' |
1602 | 1624 | | '/terminal' |
| 1625 | + | '/vt-capital' |
1603 | 1626 | | '/world' |
1604 | 1627 | | '/api/artifacts' |
1605 | 1628 | | '/api/auth' |
@@ -1667,6 +1690,7 @@ export interface FileRouteTypes { |
1667 | 1690 | | '/api/terminal-input' |
1668 | 1691 | | '/api/terminal-resize' |
1669 | 1692 | | '/api/terminal-stream' |
| 1693 | + | '/api/vt-capital' |
1670 | 1694 | | '/api/workspace' |
1671 | 1695 | | '/chat/$sessionKey' |
1672 | 1696 | | '/reserve/confirm' |
@@ -1744,6 +1768,7 @@ export interface RootRouteChildren { |
1744 | 1768 | Swarm2Route: typeof Swarm2Route |
1745 | 1769 | TasksRoute: typeof TasksRoute |
1746 | 1770 | TerminalRoute: typeof TerminalRoute |
| 1771 | + VtCapitalRoute: typeof VtCapitalRoute |
1747 | 1772 | WorldRoute: typeof WorldRoute |
1748 | 1773 | ApiArtifactsRoute: typeof ApiArtifactsRouteWithChildren |
1749 | 1774 | ApiAuthRoute: typeof ApiAuthRoute |
@@ -1811,6 +1836,7 @@ export interface RootRouteChildren { |
1811 | 1836 | ApiTerminalInputRoute: typeof ApiTerminalInputRoute |
1812 | 1837 | ApiTerminalResizeRoute: typeof ApiTerminalResizeRoute |
1813 | 1838 | ApiTerminalStreamRoute: typeof ApiTerminalStreamRoute |
| 1839 | + ApiVtCapitalRoute: typeof ApiVtCapitalRoute |
1814 | 1840 | ApiWorkspaceRoute: typeof ApiWorkspaceRoute |
1815 | 1841 | ChatSessionKeyRoute: typeof ChatSessionKeyRoute |
1816 | 1842 | ChatIndexRoute: typeof ChatIndexRoute |
@@ -1847,6 +1873,13 @@ declare module '@tanstack/react-router' { |
1847 | 1873 | preLoaderRoute: typeof WorldRouteImport |
1848 | 1874 | parentRoute: typeof rootRouteImport |
1849 | 1875 | } |
| 1876 | + '/vt-capital': { |
| 1877 | + id: '/vt-capital' |
| 1878 | + path: '/vt-capital' |
| 1879 | + fullPath: '/vt-capital' |
| 1880 | + preLoaderRoute: typeof VtCapitalRouteImport |
| 1881 | + parentRoute: typeof rootRouteImport |
| 1882 | + } |
1850 | 1883 | '/terminal': { |
1851 | 1884 | id: '/terminal' |
1852 | 1885 | path: '/terminal' |
@@ -2036,6 +2069,13 @@ declare module '@tanstack/react-router' { |
2036 | 2069 | preLoaderRoute: typeof ApiWorkspaceRouteImport |
2037 | 2070 | parentRoute: typeof rootRouteImport |
2038 | 2071 | } |
| 2072 | + '/api/vt-capital': { |
| 2073 | + id: '/api/vt-capital' |
| 2074 | + path: '/api/vt-capital' |
| 2075 | + fullPath: '/api/vt-capital' |
| 2076 | + preLoaderRoute: typeof ApiVtCapitalRouteImport |
| 2077 | + parentRoute: typeof rootRouteImport |
| 2078 | + } |
2039 | 2079 | '/api/terminal-stream': { |
2040 | 2080 | id: '/api/terminal-stream' |
2041 | 2081 | path: '/api/terminal-stream' |
@@ -3038,6 +3078,7 @@ const rootRouteChildren: RootRouteChildren = { |
3038 | 3078 | Swarm2Route: Swarm2Route, |
3039 | 3079 | TasksRoute: TasksRoute, |
3040 | 3080 | TerminalRoute: TerminalRoute, |
| 3081 | + VtCapitalRoute: VtCapitalRoute, |
3041 | 3082 | WorldRoute: WorldRoute, |
3042 | 3083 | ApiArtifactsRoute: ApiArtifactsRouteWithChildren, |
3043 | 3084 | ApiAuthRoute: ApiAuthRoute, |
@@ -3105,6 +3146,7 @@ const rootRouteChildren: RootRouteChildren = { |
3105 | 3146 | ApiTerminalInputRoute: ApiTerminalInputRoute, |
3106 | 3147 | ApiTerminalResizeRoute: ApiTerminalResizeRoute, |
3107 | 3148 | ApiTerminalStreamRoute: ApiTerminalStreamRoute, |
| 3149 | + ApiVtCapitalRoute: ApiVtCapitalRoute, |
3108 | 3150 | ApiWorkspaceRoute: ApiWorkspaceRoute, |
3109 | 3151 | ChatSessionKeyRoute: ChatSessionKeyRoute, |
3110 | 3152 | ChatIndexRoute: ChatIndexRoute, |
|
0 commit comments