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 AuthRouteImport } from './routes/_auth'
|
|
|
|
|
import { Route as IndexRouteImport } from './routes/index'
|
2025-12-22 14:53:19 +07:00
|
|
|
import { Route as AuthRoomIndexRouteImport } from './routes/_auth/room/index'
|
|
|
|
|
import { Route as AuthDeviceIndexRouteImport } from './routes/_auth/device/index'
|
|
|
|
|
import { Route as AuthDashboardIndexRouteImport } from './routes/_auth/dashboard/index'
|
|
|
|
|
import { Route as AuthCommandIndexRouteImport } from './routes/_auth/command/index'
|
|
|
|
|
import { Route as AuthBlacklistIndexRouteImport } from './routes/_auth/blacklist/index'
|
|
|
|
|
import { Route as AuthAppsIndexRouteImport } from './routes/_auth/apps/index'
|
|
|
|
|
import { Route as AuthAgentIndexRouteImport } from './routes/_auth/agent/index'
|
|
|
|
|
import { Route as authLoginIndexRouteImport } from './routes/(auth)/login/index'
|
|
|
|
|
import { Route as AuthRoomRoomNameIndexRouteImport } from './routes/_auth/room/$roomName/index'
|
2025-08-11 23:21:36 +07:00
|
|
|
|
|
|
|
|
const AuthRoute = AuthRouteImport.update({
|
|
|
|
|
id: '/_auth',
|
|
|
|
|
getParentRoute: () => rootRouteImport,
|
|
|
|
|
} as any)
|
|
|
|
|
const IndexRoute = IndexRouteImport.update({
|
|
|
|
|
id: '/',
|
|
|
|
|
path: '/',
|
|
|
|
|
getParentRoute: () => rootRouteImport,
|
|
|
|
|
} as any)
|
2025-12-22 14:53:19 +07:00
|
|
|
const AuthRoomIndexRoute = AuthRoomIndexRouteImport.update({
|
2025-08-11 23:21:36 +07:00
|
|
|
id: '/room/',
|
|
|
|
|
path: '/room/',
|
2025-12-22 14:53:19 +07:00
|
|
|
getParentRoute: () => AuthRoute,
|
|
|
|
|
} as any)
|
|
|
|
|
const AuthDeviceIndexRoute = AuthDeviceIndexRouteImport.update({
|
|
|
|
|
id: '/device/',
|
|
|
|
|
path: '/device/',
|
|
|
|
|
getParentRoute: () => AuthRoute,
|
|
|
|
|
} as any)
|
|
|
|
|
const AuthDashboardIndexRoute = AuthDashboardIndexRouteImport.update({
|
|
|
|
|
id: '/dashboard/',
|
|
|
|
|
path: '/dashboard/',
|
|
|
|
|
getParentRoute: () => AuthRoute,
|
|
|
|
|
} as any)
|
|
|
|
|
const AuthCommandIndexRoute = AuthCommandIndexRouteImport.update({
|
|
|
|
|
id: '/command/',
|
|
|
|
|
path: '/command/',
|
|
|
|
|
getParentRoute: () => AuthRoute,
|
2025-08-11 23:21:36 +07:00
|
|
|
} as any)
|
2025-12-22 14:53:19 +07:00
|
|
|
const AuthBlacklistIndexRoute = AuthBlacklistIndexRouteImport.update({
|
|
|
|
|
id: '/blacklist/',
|
|
|
|
|
path: '/blacklist/',
|
|
|
|
|
getParentRoute: () => AuthRoute,
|
|
|
|
|
} as any)
|
|
|
|
|
const AuthAppsIndexRoute = AuthAppsIndexRouteImport.update({
|
2025-08-11 23:21:36 +07:00
|
|
|
id: '/apps/',
|
|
|
|
|
path: '/apps/',
|
2025-12-22 14:53:19 +07:00
|
|
|
getParentRoute: () => AuthRoute,
|
2025-08-11 23:21:36 +07:00
|
|
|
} as any)
|
2025-12-22 14:53:19 +07:00
|
|
|
const AuthAgentIndexRoute = AuthAgentIndexRouteImport.update({
|
2025-09-10 09:59:17 +07:00
|
|
|
id: '/agent/',
|
|
|
|
|
path: '/agent/',
|
2025-12-22 14:53:19 +07:00
|
|
|
getParentRoute: () => AuthRoute,
|
2025-09-10 09:59:17 +07:00
|
|
|
} as any)
|
2025-12-22 14:53:19 +07:00
|
|
|
const authLoginIndexRoute = authLoginIndexRouteImport.update({
|
|
|
|
|
id: '/(auth)/login/',
|
2025-08-11 23:21:36 +07:00
|
|
|
path: '/login/',
|
2025-12-22 14:53:19 +07:00
|
|
|
getParentRoute: () => rootRouteImport,
|
|
|
|
|
} as any)
|
|
|
|
|
const AuthRoomRoomNameIndexRoute = AuthRoomRoomNameIndexRouteImport.update({
|
|
|
|
|
id: '/room/$roomName/',
|
|
|
|
|
path: '/room/$roomName/',
|
2025-08-11 23:21:36 +07:00
|
|
|
getParentRoute: () => AuthRoute,
|
|
|
|
|
} as any)
|
|
|
|
|
|
|
|
|
|
export interface FileRoutesByFullPath {
|
|
|
|
|
'/': typeof IndexRoute
|
2025-12-22 14:53:19 +07:00
|
|
|
'/login': typeof authLoginIndexRoute
|
|
|
|
|
'/agent': typeof AuthAgentIndexRoute
|
|
|
|
|
'/apps': typeof AuthAppsIndexRoute
|
|
|
|
|
'/blacklist': typeof AuthBlacklistIndexRoute
|
|
|
|
|
'/command': typeof AuthCommandIndexRoute
|
|
|
|
|
'/dashboard': typeof AuthDashboardIndexRoute
|
|
|
|
|
'/device': typeof AuthDeviceIndexRoute
|
|
|
|
|
'/room': typeof AuthRoomIndexRoute
|
|
|
|
|
'/room/$roomName': typeof AuthRoomRoomNameIndexRoute
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
|
|
|
|
export interface FileRoutesByTo {
|
|
|
|
|
'/': typeof IndexRoute
|
2025-12-22 14:53:19 +07:00
|
|
|
'/login': typeof authLoginIndexRoute
|
|
|
|
|
'/agent': typeof AuthAgentIndexRoute
|
|
|
|
|
'/apps': typeof AuthAppsIndexRoute
|
|
|
|
|
'/blacklist': typeof AuthBlacklistIndexRoute
|
|
|
|
|
'/command': typeof AuthCommandIndexRoute
|
|
|
|
|
'/dashboard': typeof AuthDashboardIndexRoute
|
|
|
|
|
'/device': typeof AuthDeviceIndexRoute
|
|
|
|
|
'/room': typeof AuthRoomIndexRoute
|
|
|
|
|
'/room/$roomName': typeof AuthRoomRoomNameIndexRoute
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
|
|
|
|
export interface FileRoutesById {
|
|
|
|
|
__root__: typeof rootRouteImport
|
|
|
|
|
'/': typeof IndexRoute
|
|
|
|
|
'/_auth': typeof AuthRouteWithChildren
|
2025-12-22 14:53:19 +07:00
|
|
|
'/(auth)/login/': typeof authLoginIndexRoute
|
|
|
|
|
'/_auth/agent/': typeof AuthAgentIndexRoute
|
|
|
|
|
'/_auth/apps/': typeof AuthAppsIndexRoute
|
|
|
|
|
'/_auth/blacklist/': typeof AuthBlacklistIndexRoute
|
|
|
|
|
'/_auth/command/': typeof AuthCommandIndexRoute
|
|
|
|
|
'/_auth/dashboard/': typeof AuthDashboardIndexRoute
|
|
|
|
|
'/_auth/device/': typeof AuthDeviceIndexRoute
|
|
|
|
|
'/_auth/room/': typeof AuthRoomIndexRoute
|
|
|
|
|
'/_auth/room/$roomName/': typeof AuthRoomRoomNameIndexRoute
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
|
|
|
|
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-12-22 14:53:19 +07:00
|
|
|
| '/dashboard'
|
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-12-22 14:53:19 +07:00
|
|
|
| '/dashboard'
|
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'
|
2025-12-22 14:53:19 +07:00
|
|
|
| '/(auth)/login/'
|
|
|
|
|
| '/_auth/agent/'
|
|
|
|
|
| '/_auth/apps/'
|
|
|
|
|
| '/_auth/blacklist/'
|
|
|
|
|
| '/_auth/command/'
|
|
|
|
|
| '/_auth/dashboard/'
|
|
|
|
|
| '/_auth/device/'
|
|
|
|
|
| '/_auth/room/'
|
|
|
|
|
| '/_auth/room/$roomName/'
|
2025-08-11 23:21:36 +07:00
|
|
|
fileRoutesById: FileRoutesById
|
|
|
|
|
}
|
|
|
|
|
export interface RootRouteChildren {
|
|
|
|
|
IndexRoute: typeof IndexRoute
|
|
|
|
|
AuthRoute: typeof AuthRouteWithChildren
|
2025-12-22 14:53:19 +07:00
|
|
|
authLoginIndexRoute: typeof authLoginIndexRoute
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
declare module '@tanstack/react-router' {
|
|
|
|
|
interface FileRoutesByPath {
|
|
|
|
|
'/_auth': {
|
|
|
|
|
id: '/_auth'
|
|
|
|
|
path: ''
|
|
|
|
|
fullPath: ''
|
|
|
|
|
preLoaderRoute: typeof AuthRouteImport
|
|
|
|
|
parentRoute: typeof rootRouteImport
|
|
|
|
|
}
|
|
|
|
|
'/': {
|
|
|
|
|
id: '/'
|
|
|
|
|
path: '/'
|
|
|
|
|
fullPath: '/'
|
|
|
|
|
preLoaderRoute: typeof IndexRouteImport
|
|
|
|
|
parentRoute: typeof rootRouteImport
|
|
|
|
|
}
|
2025-12-22 14:53:19 +07:00
|
|
|
'/_auth/room/': {
|
|
|
|
|
id: '/_auth/room/'
|
2025-08-11 23:21:36 +07:00
|
|
|
path: '/room'
|
|
|
|
|
fullPath: '/room'
|
2025-12-22 14:53:19 +07:00
|
|
|
preLoaderRoute: typeof AuthRoomIndexRouteImport
|
|
|
|
|
parentRoute: typeof AuthRoute
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
2025-12-22 14:53:19 +07:00
|
|
|
'/_auth/device/': {
|
|
|
|
|
id: '/_auth/device/'
|
2025-10-20 16:46:17 +07:00
|
|
|
path: '/device'
|
|
|
|
|
fullPath: '/device'
|
2025-12-22 14:53:19 +07:00
|
|
|
preLoaderRoute: typeof AuthDeviceIndexRouteImport
|
|
|
|
|
parentRoute: typeof AuthRoute
|
|
|
|
|
}
|
|
|
|
|
'/_auth/dashboard/': {
|
|
|
|
|
id: '/_auth/dashboard/'
|
|
|
|
|
path: '/dashboard'
|
|
|
|
|
fullPath: '/dashboard'
|
|
|
|
|
preLoaderRoute: typeof AuthDashboardIndexRouteImport
|
|
|
|
|
parentRoute: typeof AuthRoute
|
2025-10-20 16:46:17 +07:00
|
|
|
}
|
2025-12-22 14:53:19 +07:00
|
|
|
'/_auth/command/': {
|
|
|
|
|
id: '/_auth/command/'
|
2025-09-24 16:13:57 +07:00
|
|
|
path: '/command'
|
|
|
|
|
fullPath: '/command'
|
2025-12-22 14:53:19 +07:00
|
|
|
preLoaderRoute: typeof AuthCommandIndexRouteImport
|
|
|
|
|
parentRoute: typeof AuthRoute
|
2025-09-24 16:13:57 +07:00
|
|
|
}
|
2025-12-22 14:53:19 +07:00
|
|
|
'/_auth/blacklist/': {
|
|
|
|
|
id: '/_auth/blacklist/'
|
2025-10-06 15:52:48 +07:00
|
|
|
path: '/blacklist'
|
|
|
|
|
fullPath: '/blacklist'
|
2025-12-22 14:53:19 +07:00
|
|
|
preLoaderRoute: typeof AuthBlacklistIndexRouteImport
|
|
|
|
|
parentRoute: typeof AuthRoute
|
2025-10-06 15:52:48 +07:00
|
|
|
}
|
2025-12-22 14:53:19 +07:00
|
|
|
'/_auth/apps/': {
|
|
|
|
|
id: '/_auth/apps/'
|
2025-08-11 23:21:36 +07:00
|
|
|
path: '/apps'
|
|
|
|
|
fullPath: '/apps'
|
2025-12-22 14:53:19 +07:00
|
|
|
preLoaderRoute: typeof AuthAppsIndexRouteImport
|
|
|
|
|
parentRoute: typeof AuthRoute
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
2025-12-22 14:53:19 +07:00
|
|
|
'/_auth/agent/': {
|
|
|
|
|
id: '/_auth/agent/'
|
2025-09-10 09:59:17 +07:00
|
|
|
path: '/agent'
|
|
|
|
|
fullPath: '/agent'
|
2025-12-22 14:53:19 +07:00
|
|
|
preLoaderRoute: typeof AuthAgentIndexRouteImport
|
|
|
|
|
parentRoute: typeof AuthRoute
|
2025-09-10 09:59:17 +07:00
|
|
|
}
|
2025-12-22 14:53:19 +07:00
|
|
|
'/(auth)/login/': {
|
|
|
|
|
id: '/(auth)/login/'
|
2025-08-11 23:21:36 +07:00
|
|
|
path: '/login'
|
|
|
|
|
fullPath: '/login'
|
2025-12-22 14:53:19 +07:00
|
|
|
preLoaderRoute: typeof authLoginIndexRouteImport
|
|
|
|
|
parentRoute: typeof rootRouteImport
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
2025-12-22 14:53:19 +07:00
|
|
|
'/_auth/room/$roomName/': {
|
|
|
|
|
id: '/_auth/room/$roomName/'
|
2025-08-11 23:21:36 +07:00
|
|
|
path: '/room/$roomName'
|
|
|
|
|
fullPath: '/room/$roomName'
|
2025-12-22 14:53:19 +07:00
|
|
|
preLoaderRoute: typeof AuthRoomRoomNameIndexRouteImport
|
|
|
|
|
parentRoute: typeof AuthRoute
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface AuthRouteChildren {
|
2025-12-22 14:53:19 +07:00
|
|
|
AuthAgentIndexRoute: typeof AuthAgentIndexRoute
|
|
|
|
|
AuthAppsIndexRoute: typeof AuthAppsIndexRoute
|
|
|
|
|
AuthBlacklistIndexRoute: typeof AuthBlacklistIndexRoute
|
|
|
|
|
AuthCommandIndexRoute: typeof AuthCommandIndexRoute
|
|
|
|
|
AuthDashboardIndexRoute: typeof AuthDashboardIndexRoute
|
|
|
|
|
AuthDeviceIndexRoute: typeof AuthDeviceIndexRoute
|
|
|
|
|
AuthRoomIndexRoute: typeof AuthRoomIndexRoute
|
|
|
|
|
AuthRoomRoomNameIndexRoute: typeof AuthRoomRoomNameIndexRoute
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const AuthRouteChildren: AuthRouteChildren = {
|
2025-12-22 14:53:19 +07:00
|
|
|
AuthAgentIndexRoute: AuthAgentIndexRoute,
|
|
|
|
|
AuthAppsIndexRoute: AuthAppsIndexRoute,
|
|
|
|
|
AuthBlacklistIndexRoute: AuthBlacklistIndexRoute,
|
|
|
|
|
AuthCommandIndexRoute: AuthCommandIndexRoute,
|
|
|
|
|
AuthDashboardIndexRoute: AuthDashboardIndexRoute,
|
|
|
|
|
AuthDeviceIndexRoute: AuthDeviceIndexRoute,
|
|
|
|
|
AuthRoomIndexRoute: AuthRoomIndexRoute,
|
|
|
|
|
AuthRoomRoomNameIndexRoute: AuthRoomRoomNameIndexRoute,
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const AuthRouteWithChildren = AuthRoute._addFileChildren(AuthRouteChildren)
|
|
|
|
|
|
|
|
|
|
const rootRouteChildren: RootRouteChildren = {
|
|
|
|
|
IndexRoute: IndexRoute,
|
|
|
|
|
AuthRoute: AuthRouteWithChildren,
|
2025-12-22 14:53:19 +07:00
|
|
|
authLoginIndexRoute: authLoginIndexRoute,
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
|
|
|
|
export const routeTree = rootRouteImport
|
|
|
|
|
._addFileChildren(rootRouteChildren)
|
|
|
|
|
._addFileTypes<FileRouteTypes>()
|