/* 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 IndexRouteImport } from './routes/index' import { Route as JobsIndexRouteImport } from './routes/jobs/index' import { Route as FlowsIndexRouteImport } from './routes/flows/index' import { Route as JobsJobIdRouteImport } from './routes/jobs/$jobId' import { Route as FlowsFlowIdRouteImport } from './routes/flows/$flowId' import { Route as ApiTrpcSplatRouteImport } from './routes/api.trpc.$' const IndexRoute = IndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => rootRouteImport, } as any) const JobsIndexRoute = JobsIndexRouteImport.update({ id: '/jobs/', path: '/jobs/', getParentRoute: () => rootRouteImport, } as any) const FlowsIndexRoute = FlowsIndexRouteImport.update({ id: '/flows/', path: '/flows/', getParentRoute: () => rootRouteImport, } as any) const JobsJobIdRoute = JobsJobIdRouteImport.update({ id: '/jobs/$jobId', path: '/jobs/$jobId', getParentRoute: () => rootRouteImport, } as any) const FlowsFlowIdRoute = FlowsFlowIdRouteImport.update({ id: '/flows/$flowId', path: '/flows/$flowId', getParentRoute: () => rootRouteImport, } as any) const ApiTrpcSplatRoute = ApiTrpcSplatRouteImport.update({ id: '/api/trpc/$', path: '/api/trpc/$', getParentRoute: () => rootRouteImport, } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute '/flows/$flowId': typeof FlowsFlowIdRoute '/jobs/$jobId': typeof JobsJobIdRoute '/flows/': typeof FlowsIndexRoute '/jobs/': typeof JobsIndexRoute '/api/trpc/$': typeof ApiTrpcSplatRoute } export interface FileRoutesByTo { '/': typeof IndexRoute '/flows/$flowId': typeof FlowsFlowIdRoute '/jobs/$jobId': typeof JobsJobIdRoute '/flows': typeof FlowsIndexRoute '/jobs': typeof JobsIndexRoute '/api/trpc/$': typeof ApiTrpcSplatRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/': typeof IndexRoute '/flows/$flowId': typeof FlowsFlowIdRoute '/jobs/$jobId': typeof JobsJobIdRoute '/flows/': typeof FlowsIndexRoute '/jobs/': typeof JobsIndexRoute '/api/trpc/$': typeof ApiTrpcSplatRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: | '/' | '/flows/$flowId' | '/jobs/$jobId' | '/flows/' | '/jobs/' | '/api/trpc/$' fileRoutesByTo: FileRoutesByTo to: | '/' | '/flows/$flowId' | '/jobs/$jobId' | '/flows' | '/jobs' | '/api/trpc/$' id: | '__root__' | '/' | '/flows/$flowId' | '/jobs/$jobId' | '/flows/' | '/jobs/' | '/api/trpc/$' fileRoutesById: FileRoutesById } export interface RootRouteChildren { IndexRoute: typeof IndexRoute FlowsFlowIdRoute: typeof FlowsFlowIdRoute JobsJobIdRoute: typeof JobsJobIdRoute FlowsIndexRoute: typeof FlowsIndexRoute JobsIndexRoute: typeof JobsIndexRoute ApiTrpcSplatRoute: typeof ApiTrpcSplatRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/': { id: '/' path: '/' fullPath: '/' preLoaderRoute: typeof IndexRouteImport parentRoute: typeof rootRouteImport } '/jobs/': { id: '/jobs/' path: '/jobs' fullPath: '/jobs/' preLoaderRoute: typeof JobsIndexRouteImport parentRoute: typeof rootRouteImport } '/flows/': { id: '/flows/' path: '/flows' fullPath: '/flows/' preLoaderRoute: typeof FlowsIndexRouteImport parentRoute: typeof rootRouteImport } '/jobs/$jobId': { id: '/jobs/$jobId' path: '/jobs/$jobId' fullPath: '/jobs/$jobId' preLoaderRoute: typeof JobsJobIdRouteImport parentRoute: typeof rootRouteImport } '/flows/$flowId': { id: '/flows/$flowId' path: '/flows/$flowId' fullPath: '/flows/$flowId' preLoaderRoute: typeof FlowsFlowIdRouteImport parentRoute: typeof rootRouteImport } '/api/trpc/$': { id: '/api/trpc/$' path: '/api/trpc/$' fullPath: '/api/trpc/$' preLoaderRoute: typeof ApiTrpcSplatRouteImport parentRoute: typeof rootRouteImport } } } const rootRouteChildren: RootRouteChildren = { IndexRoute: IndexRoute, FlowsFlowIdRoute: FlowsFlowIdRoute, JobsJobIdRoute: JobsJobIdRoute, FlowsIndexRoute: FlowsIndexRoute, JobsIndexRoute: JobsIndexRoute, ApiTrpcSplatRoute: ApiTrpcSplatRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes() import type { getRouter } from './router.tsx' import type { createStart } from '@tanstack/react-start' declare module '@tanstack/react-start' { interface Register { ssr: true router: Awaited> } }