TTMT.ManageWebGUI/src/routeTree.gen.ts

286 lines
9.7 KiB
TypeScript
Raw Normal View History

2025-08-11 23:21:36 +07:00
/* eslint-disable */
// @ts-nocheck
// noinspection JSUnusedGlobalSymbols
// This file was automatically generated by TanStack Router.
// You should NOT make any changes in this file as it will be overwritten.
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
import { Route as rootRouteImport } from './routes/__root'
import { Route as AuthenticatedRouteImport } from './routes/_authenticated'
import { Route as AuthRouteImport } from './routes/_auth'
import { Route as IndexRouteImport } from './routes/index'
import { Route as AuthenticatedRoomIndexRouteImport } from './routes/_authenticated/room/index'
2025-10-20 16:46:17 +07:00
import { Route as AuthenticatedDeviceIndexRouteImport } from './routes/_authenticated/device/index'
2025-09-24 16:13:57 +07:00
import { Route as AuthenticatedCommandIndexRouteImport } from './routes/_authenticated/command/index'
2025-10-06 15:52:48 +07:00
import { Route as AuthenticatedBlacklistIndexRouteImport } from './routes/_authenticated/blacklist/index'
2025-08-11 23:21:36 +07:00
import { Route as AuthenticatedAppsIndexRouteImport } from './routes/_authenticated/apps/index'
2025-09-10 09:59:17 +07:00
import { Route as AuthenticatedAgentIndexRouteImport } from './routes/_authenticated/agent/index'
2025-08-11 23:21:36 +07:00
import { Route as AuthLoginIndexRouteImport } from './routes/_auth/login/index'
import { Route as AuthenticatedRoomRoomNameIndexRouteImport } from './routes/_authenticated/room/$roomName/index'
const AuthenticatedRoute = AuthenticatedRouteImport.update({
id: '/_authenticated',
getParentRoute: () => rootRouteImport,
} as any)
const AuthRoute = AuthRouteImport.update({
id: '/_auth',
getParentRoute: () => rootRouteImport,
} as any)
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRouteImport,
} as any)
const AuthenticatedRoomIndexRoute = AuthenticatedRoomIndexRouteImport.update({
id: '/room/',
path: '/room/',
getParentRoute: () => AuthenticatedRoute,
} as any)
2025-10-20 16:46:17 +07:00
const AuthenticatedDeviceIndexRoute =
AuthenticatedDeviceIndexRouteImport.update({
id: '/device/',
path: '/device/',
getParentRoute: () => AuthenticatedRoute,
} as any)
2025-09-24 16:13:57 +07:00
const AuthenticatedCommandIndexRoute =
AuthenticatedCommandIndexRouteImport.update({
id: '/command/',
path: '/command/',
getParentRoute: () => AuthenticatedRoute,
} as any)
2025-10-06 15:52:48 +07:00
const AuthenticatedBlacklistIndexRoute =
AuthenticatedBlacklistIndexRouteImport.update({
id: '/blacklist/',
path: '/blacklist/',
getParentRoute: () => AuthenticatedRoute,
} as any)
2025-08-11 23:21:36 +07:00
const AuthenticatedAppsIndexRoute = AuthenticatedAppsIndexRouteImport.update({
id: '/apps/',
path: '/apps/',
getParentRoute: () => AuthenticatedRoute,
} as any)
2025-09-10 09:59:17 +07:00
const AuthenticatedAgentIndexRoute = AuthenticatedAgentIndexRouteImport.update({
id: '/agent/',
path: '/agent/',
getParentRoute: () => AuthenticatedRoute,
} as any)
2025-08-11 23:21:36 +07:00
const AuthLoginIndexRoute = AuthLoginIndexRouteImport.update({
id: '/login/',
path: '/login/',
getParentRoute: () => AuthRoute,
} as any)
const AuthenticatedRoomRoomNameIndexRoute =
AuthenticatedRoomRoomNameIndexRouteImport.update({
id: '/room/$roomName/',
path: '/room/$roomName/',
getParentRoute: () => AuthenticatedRoute,
} as any)
export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/login': typeof AuthLoginIndexRoute
2025-09-10 09:59:17 +07:00
'/agent': typeof AuthenticatedAgentIndexRoute
2025-08-11 23:21:36 +07:00
'/apps': typeof AuthenticatedAppsIndexRoute
2025-10-06 15:52:48 +07:00
'/blacklist': typeof AuthenticatedBlacklistIndexRoute
2025-09-24 16:13:57 +07:00
'/command': typeof AuthenticatedCommandIndexRoute
2025-10-20 16:46:17 +07:00
'/device': typeof AuthenticatedDeviceIndexRoute
2025-08-11 23:21:36 +07:00
'/room': typeof AuthenticatedRoomIndexRoute
'/room/$roomName': typeof AuthenticatedRoomRoomNameIndexRoute
}
export interface FileRoutesByTo {
'/': typeof IndexRoute
'/login': typeof AuthLoginIndexRoute
2025-09-10 09:59:17 +07:00
'/agent': typeof AuthenticatedAgentIndexRoute
2025-08-11 23:21:36 +07:00
'/apps': typeof AuthenticatedAppsIndexRoute
2025-10-06 15:52:48 +07:00
'/blacklist': typeof AuthenticatedBlacklistIndexRoute
2025-09-24 16:13:57 +07:00
'/command': typeof AuthenticatedCommandIndexRoute
2025-10-20 16:46:17 +07:00
'/device': typeof AuthenticatedDeviceIndexRoute
2025-08-11 23:21:36 +07:00
'/room': typeof AuthenticatedRoomIndexRoute
'/room/$roomName': typeof AuthenticatedRoomRoomNameIndexRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/_auth': typeof AuthRouteWithChildren
'/_authenticated': typeof AuthenticatedRouteWithChildren
'/_auth/login/': typeof AuthLoginIndexRoute
2025-09-10 09:59:17 +07:00
'/_authenticated/agent/': typeof AuthenticatedAgentIndexRoute
2025-08-11 23:21:36 +07:00
'/_authenticated/apps/': typeof AuthenticatedAppsIndexRoute
2025-10-06 15:52:48 +07:00
'/_authenticated/blacklist/': typeof AuthenticatedBlacklistIndexRoute
2025-09-24 16:13:57 +07:00
'/_authenticated/command/': typeof AuthenticatedCommandIndexRoute
2025-10-20 16:46:17 +07:00
'/_authenticated/device/': typeof AuthenticatedDeviceIndexRoute
2025-08-11 23:21:36 +07:00
'/_authenticated/room/': typeof AuthenticatedRoomIndexRoute
'/_authenticated/room/$roomName/': typeof AuthenticatedRoomRoomNameIndexRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
2025-09-24 16:13:57 +07:00
fullPaths:
| '/'
| '/login'
| '/agent'
| '/apps'
2025-10-06 15:52:48 +07:00
| '/blacklist'
2025-09-24 16:13:57 +07:00
| '/command'
2025-10-20 16:46:17 +07:00
| '/device'
2025-09-24 16:13:57 +07:00
| '/room'
| '/room/$roomName'
2025-08-11 23:21:36 +07:00
fileRoutesByTo: FileRoutesByTo
2025-09-24 16:13:57 +07:00
to:
| '/'
| '/login'
| '/agent'
| '/apps'
2025-10-06 15:52:48 +07:00
| '/blacklist'
2025-09-24 16:13:57 +07:00
| '/command'
2025-10-20 16:46:17 +07:00
| '/device'
2025-09-24 16:13:57 +07:00
| '/room'
| '/room/$roomName'
2025-08-11 23:21:36 +07:00
id:
| '__root__'
| '/'
| '/_auth'
| '/_authenticated'
| '/_auth/login/'
2025-09-10 09:59:17 +07:00
| '/_authenticated/agent/'
2025-08-11 23:21:36 +07:00
| '/_authenticated/apps/'
2025-10-06 15:52:48 +07:00
| '/_authenticated/blacklist/'
2025-09-24 16:13:57 +07:00
| '/_authenticated/command/'
2025-10-20 16:46:17 +07:00
| '/_authenticated/device/'
2025-08-11 23:21:36 +07:00
| '/_authenticated/room/'
| '/_authenticated/room/$roomName/'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
AuthRoute: typeof AuthRouteWithChildren
AuthenticatedRoute: typeof AuthenticatedRouteWithChildren
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/_authenticated': {
id: '/_authenticated'
path: ''
fullPath: ''
preLoaderRoute: typeof AuthenticatedRouteImport
parentRoute: typeof rootRouteImport
}
'/_auth': {
id: '/_auth'
path: ''
fullPath: ''
preLoaderRoute: typeof AuthRouteImport
parentRoute: typeof rootRouteImport
}
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexRouteImport
parentRoute: typeof rootRouteImport
}
'/_authenticated/room/': {
id: '/_authenticated/room/'
path: '/room'
fullPath: '/room'
preLoaderRoute: typeof AuthenticatedRoomIndexRouteImport
parentRoute: typeof AuthenticatedRoute
}
2025-10-20 16:46:17 +07:00
'/_authenticated/device/': {
id: '/_authenticated/device/'
path: '/device'
fullPath: '/device'
preLoaderRoute: typeof AuthenticatedDeviceIndexRouteImport
parentRoute: typeof AuthenticatedRoute
}
2025-09-24 16:13:57 +07:00
'/_authenticated/command/': {
id: '/_authenticated/command/'
path: '/command'
fullPath: '/command'
preLoaderRoute: typeof AuthenticatedCommandIndexRouteImport
parentRoute: typeof AuthenticatedRoute
}
2025-10-06 15:52:48 +07:00
'/_authenticated/blacklist/': {
id: '/_authenticated/blacklist/'
path: '/blacklist'
fullPath: '/blacklist'
preLoaderRoute: typeof AuthenticatedBlacklistIndexRouteImport
parentRoute: typeof AuthenticatedRoute
}
2025-08-11 23:21:36 +07:00
'/_authenticated/apps/': {
id: '/_authenticated/apps/'
path: '/apps'
fullPath: '/apps'
preLoaderRoute: typeof AuthenticatedAppsIndexRouteImport
parentRoute: typeof AuthenticatedRoute
}
2025-09-10 09:59:17 +07:00
'/_authenticated/agent/': {
id: '/_authenticated/agent/'
path: '/agent'
fullPath: '/agent'
preLoaderRoute: typeof AuthenticatedAgentIndexRouteImport
parentRoute: typeof AuthenticatedRoute
}
2025-08-11 23:21:36 +07:00
'/_auth/login/': {
id: '/_auth/login/'
path: '/login'
fullPath: '/login'
preLoaderRoute: typeof AuthLoginIndexRouteImport
parentRoute: typeof AuthRoute
}
'/_authenticated/room/$roomName/': {
id: '/_authenticated/room/$roomName/'
path: '/room/$roomName'
fullPath: '/room/$roomName'
preLoaderRoute: typeof AuthenticatedRoomRoomNameIndexRouteImport
parentRoute: typeof AuthenticatedRoute
}
}
}
interface AuthRouteChildren {
AuthLoginIndexRoute: typeof AuthLoginIndexRoute
}
const AuthRouteChildren: AuthRouteChildren = {
AuthLoginIndexRoute: AuthLoginIndexRoute,
}
const AuthRouteWithChildren = AuthRoute._addFileChildren(AuthRouteChildren)
interface AuthenticatedRouteChildren {
2025-09-10 09:59:17 +07:00
AuthenticatedAgentIndexRoute: typeof AuthenticatedAgentIndexRoute
2025-08-11 23:21:36 +07:00
AuthenticatedAppsIndexRoute: typeof AuthenticatedAppsIndexRoute
2025-10-06 15:52:48 +07:00
AuthenticatedBlacklistIndexRoute: typeof AuthenticatedBlacklistIndexRoute
2025-09-24 16:13:57 +07:00
AuthenticatedCommandIndexRoute: typeof AuthenticatedCommandIndexRoute
2025-10-20 16:46:17 +07:00
AuthenticatedDeviceIndexRoute: typeof AuthenticatedDeviceIndexRoute
2025-08-11 23:21:36 +07:00
AuthenticatedRoomIndexRoute: typeof AuthenticatedRoomIndexRoute
AuthenticatedRoomRoomNameIndexRoute: typeof AuthenticatedRoomRoomNameIndexRoute
}
const AuthenticatedRouteChildren: AuthenticatedRouteChildren = {
2025-09-10 09:59:17 +07:00
AuthenticatedAgentIndexRoute: AuthenticatedAgentIndexRoute,
2025-08-11 23:21:36 +07:00
AuthenticatedAppsIndexRoute: AuthenticatedAppsIndexRoute,
2025-10-06 15:52:48 +07:00
AuthenticatedBlacklistIndexRoute: AuthenticatedBlacklistIndexRoute,
2025-09-24 16:13:57 +07:00
AuthenticatedCommandIndexRoute: AuthenticatedCommandIndexRoute,
2025-10-20 16:46:17 +07:00
AuthenticatedDeviceIndexRoute: AuthenticatedDeviceIndexRoute,
2025-08-11 23:21:36 +07:00
AuthenticatedRoomIndexRoute: AuthenticatedRoomIndexRoute,
AuthenticatedRoomRoomNameIndexRoute: AuthenticatedRoomRoomNameIndexRoute,
}
const AuthenticatedRouteWithChildren = AuthenticatedRoute._addFileChildren(
AuthenticatedRouteChildren,
)
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
AuthRoute: AuthRouteWithChildren,
AuthenticatedRoute: AuthenticatedRouteWithChildren,
}
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()