/* 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 CanvasRouteImport } from './routes/_canvas' import { Route as LayoutRouteImport } from './routes/_layout' import { Route as LoginRouteImport } from './routes/login' import { Route as RecoverPasswordRouteImport } from './routes/recover-password' import { Route as ResetPasswordRouteImport } from './routes/reset-password' import { Route as SignupRouteImport } from './routes/signup' import { Route as LayoutIndexRouteImport } from './routes/_layout/index' import { Route as LayoutAdminRouteImport } from './routes/_layout/admin' import { Route as LayoutAlertsRouteImport } from './routes/_layout/alerts' import { Route as LayoutSecretsRouteImport } from './routes/_layout/secrets' import { Route as LayoutSettingsRouteImport } from './routes/_layout/settings' import { Route as OauthAuthorizeRouteImport } from './routes/oauth.authorize' import { Route as CanvasFlowsIndexRouteImport } from './routes/_canvas/flows/index' import { Route as CanvasFlowsFlowNameRouteImport } from './routes/_canvas/flows/$flowName' import { Route as LayoutDashboardsIndexRouteImport } from './routes/_layout/dashboards/index' import { Route as LayoutDashboardsNameRouteImport } from './routes/_layout/dashboards/$name' const CanvasRoute = CanvasRouteImport.update({ id: '/_canvas', getParentRoute: () => rootRouteImport, } as any) const LayoutRoute = LayoutRouteImport.update({ id: '/_layout', getParentRoute: () => rootRouteImport, } as any) const LoginRoute = LoginRouteImport.update({ id: '/login', path: '/login', getParentRoute: () => rootRouteImport, } as any) const RecoverPasswordRoute = RecoverPasswordRouteImport.update({ id: '/recover-password', path: '/recover-password', getParentRoute: () => rootRouteImport, } as any) const ResetPasswordRoute = ResetPasswordRouteImport.update({ id: '/reset-password', path: '/reset-password', getParentRoute: () => rootRouteImport, } as any) const SignupRoute = SignupRouteImport.update({ id: '/signup', path: '/signup', getParentRoute: () => rootRouteImport, } as any) const LayoutIndexRoute = LayoutIndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => LayoutRoute, } as any) const LayoutAdminRoute = LayoutAdminRouteImport.update({ id: '/admin', path: '/admin', getParentRoute: () => LayoutRoute, } as any) const LayoutAlertsRoute = LayoutAlertsRouteImport.update({ id: '/alerts', path: '/alerts', getParentRoute: () => LayoutRoute, } as any) const LayoutSecretsRoute = LayoutSecretsRouteImport.update({ id: '/secrets', path: '/secrets', getParentRoute: () => LayoutRoute, } as any) const LayoutSettingsRoute = LayoutSettingsRouteImport.update({ id: '/settings', path: '/settings', getParentRoute: () => LayoutRoute, } as any) const OauthAuthorizeRoute = OauthAuthorizeRouteImport.update({ id: '/oauth/authorize', path: '/oauth/authorize', getParentRoute: () => rootRouteImport, } as any) const CanvasFlowsIndexRoute = CanvasFlowsIndexRouteImport.update({ id: '/flows/', path: '/flows/', getParentRoute: () => CanvasRoute, } as any) const CanvasFlowsFlowNameRoute = CanvasFlowsFlowNameRouteImport.update({ id: '/flows/$flowName', path: '/flows/$flowName', getParentRoute: () => CanvasRoute, } as any) const LayoutDashboardsIndexRoute = LayoutDashboardsIndexRouteImport.update({ id: '/dashboards/', path: '/dashboards/', getParentRoute: () => LayoutRoute, } as any) const LayoutDashboardsNameRoute = LayoutDashboardsNameRouteImport.update({ id: '/dashboards/$name', path: '/dashboards/$name', getParentRoute: () => LayoutRoute, } as any) export interface FileRoutesByFullPath { '/': typeof LayoutIndexRoute '/login': typeof LoginRoute '/recover-password': typeof RecoverPasswordRoute '/reset-password': typeof ResetPasswordRoute '/signup': typeof SignupRoute '/admin': typeof LayoutAdminRoute '/alerts': typeof LayoutAlertsRoute '/secrets': typeof LayoutSecretsRoute '/settings': typeof LayoutSettingsRoute '/oauth/authorize': typeof OauthAuthorizeRoute '/flows/$flowName': typeof CanvasFlowsFlowNameRoute '/dashboards/$name': typeof LayoutDashboardsNameRoute '/flows/': typeof CanvasFlowsIndexRoute '/dashboards/': typeof LayoutDashboardsIndexRoute } export interface FileRoutesByTo { '/': typeof LayoutIndexRoute '/login': typeof LoginRoute '/recover-password': typeof RecoverPasswordRoute '/reset-password': typeof ResetPasswordRoute '/signup': typeof SignupRoute '/admin': typeof LayoutAdminRoute '/alerts': typeof LayoutAlertsRoute '/secrets': typeof LayoutSecretsRoute '/settings': typeof LayoutSettingsRoute '/oauth/authorize': typeof OauthAuthorizeRoute '/flows/$flowName': typeof CanvasFlowsFlowNameRoute '/dashboards/$name': typeof LayoutDashboardsNameRoute '/flows': typeof CanvasFlowsIndexRoute '/dashboards': typeof LayoutDashboardsIndexRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/_canvas': typeof CanvasRouteWithChildren '/_layout': typeof LayoutRouteWithChildren '/login': typeof LoginRoute '/recover-password': typeof RecoverPasswordRoute '/reset-password': typeof ResetPasswordRoute '/signup': typeof SignupRoute '/_layout/admin': typeof LayoutAdminRoute '/_layout/alerts': typeof LayoutAlertsRoute '/_layout/secrets': typeof LayoutSecretsRoute '/_layout/settings': typeof LayoutSettingsRoute '/oauth/authorize': typeof OauthAuthorizeRoute '/_layout/': typeof LayoutIndexRoute '/_canvas/flows/$flowName': typeof CanvasFlowsFlowNameRoute '/_layout/dashboards/$name': typeof LayoutDashboardsNameRoute '/_canvas/flows/': typeof CanvasFlowsIndexRoute '/_layout/dashboards/': typeof LayoutDashboardsIndexRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: | '/' | '/login' | '/recover-password' | '/reset-password' | '/signup' | '/admin' | '/alerts' | '/secrets' | '/settings' | '/oauth/authorize' | '/flows/$flowName' | '/dashboards/$name' | '/flows/' | '/dashboards/' fileRoutesByTo: FileRoutesByTo to: | '/' | '/login' | '/recover-password' | '/reset-password' | '/signup' | '/admin' | '/alerts' | '/secrets' | '/settings' | '/oauth/authorize' | '/flows/$flowName' | '/dashboards/$name' | '/flows' | '/dashboards' id: | '__root__' | '/_canvas' | '/_layout' | '/login' | '/recover-password' | '/reset-password' | '/signup' | '/_layout/admin' | '/_layout/alerts' | '/_layout/secrets' | '/_layout/settings' | '/oauth/authorize' | '/_layout/' | '/_canvas/flows/$flowName' | '/_layout/dashboards/$name' | '/_canvas/flows/' | '/_layout/dashboards/' fileRoutesById: FileRoutesById } export interface RootRouteChildren { CanvasRoute: typeof CanvasRouteWithChildren LayoutRoute: typeof LayoutRouteWithChildren LoginRoute: typeof LoginRoute RecoverPasswordRoute: typeof RecoverPasswordRoute ResetPasswordRoute: typeof ResetPasswordRoute SignupRoute: typeof SignupRoute OauthAuthorizeRoute: typeof OauthAuthorizeRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/_canvas': { id: '/_canvas' path: '' fullPath: '/' preLoaderRoute: typeof CanvasRouteImport parentRoute: typeof rootRouteImport } '/_layout': { id: '/_layout' path: '' fullPath: '/' preLoaderRoute: typeof LayoutRouteImport parentRoute: typeof rootRouteImport } '/login': { id: '/login' path: '/login' fullPath: '/login' preLoaderRoute: typeof LoginRouteImport parentRoute: typeof rootRouteImport } '/recover-password': { id: '/recover-password' path: '/recover-password' fullPath: '/recover-password' preLoaderRoute: typeof RecoverPasswordRouteImport parentRoute: typeof rootRouteImport } '/reset-password': { id: '/reset-password' path: '/reset-password' fullPath: '/reset-password' preLoaderRoute: typeof ResetPasswordRouteImport parentRoute: typeof rootRouteImport } '/signup': { id: '/signup' path: '/signup' fullPath: '/signup' preLoaderRoute: typeof SignupRouteImport parentRoute: typeof rootRouteImport } '/_layout/': { id: '/_layout/' path: '/' fullPath: '/' preLoaderRoute: typeof LayoutIndexRouteImport parentRoute: typeof LayoutRoute } '/_layout/admin': { id: '/_layout/admin' path: '/admin' fullPath: '/admin' preLoaderRoute: typeof LayoutAdminRouteImport parentRoute: typeof LayoutRoute } '/_layout/alerts': { id: '/_layout/alerts' path: '/alerts' fullPath: '/alerts' preLoaderRoute: typeof LayoutAlertsRouteImport parentRoute: typeof LayoutRoute } '/_layout/secrets': { id: '/_layout/secrets' path: '/secrets' fullPath: '/secrets' preLoaderRoute: typeof LayoutSecretsRouteImport parentRoute: typeof LayoutRoute } '/_layout/settings': { id: '/_layout/settings' path: '/settings' fullPath: '/settings' preLoaderRoute: typeof LayoutSettingsRouteImport parentRoute: typeof LayoutRoute } '/oauth/authorize': { id: '/oauth/authorize' path: '/oauth/authorize' fullPath: '/oauth/authorize' preLoaderRoute: typeof OauthAuthorizeRouteImport parentRoute: typeof rootRouteImport } '/_canvas/flows/': { id: '/_canvas/flows/' path: '/flows' fullPath: '/flows/' preLoaderRoute: typeof CanvasFlowsIndexRouteImport parentRoute: typeof CanvasRoute } '/_canvas/flows/$flowName': { id: '/_canvas/flows/$flowName' path: '/flows/$flowName' fullPath: '/flows/$flowName' preLoaderRoute: typeof CanvasFlowsFlowNameRouteImport parentRoute: typeof CanvasRoute } '/_layout/dashboards/': { id: '/_layout/dashboards/' path: '/dashboards' fullPath: '/dashboards/' preLoaderRoute: typeof LayoutDashboardsIndexRouteImport parentRoute: typeof LayoutRoute } '/_layout/dashboards/$name': { id: '/_layout/dashboards/$name' path: '/dashboards/$name' fullPath: '/dashboards/$name' preLoaderRoute: typeof LayoutDashboardsNameRouteImport parentRoute: typeof LayoutRoute } } } interface CanvasRouteChildren { CanvasFlowsFlowNameRoute: typeof CanvasFlowsFlowNameRoute CanvasFlowsIndexRoute: typeof CanvasFlowsIndexRoute } const CanvasRouteChildren: CanvasRouteChildren = { CanvasFlowsFlowNameRoute: CanvasFlowsFlowNameRoute, CanvasFlowsIndexRoute: CanvasFlowsIndexRoute, } const CanvasRouteWithChildren = CanvasRoute._addFileChildren(CanvasRouteChildren) interface LayoutRouteChildren { LayoutAdminRoute: typeof LayoutAdminRoute LayoutAlertsRoute: typeof LayoutAlertsRoute LayoutSecretsRoute: typeof LayoutSecretsRoute LayoutSettingsRoute: typeof LayoutSettingsRoute LayoutIndexRoute: typeof LayoutIndexRoute LayoutDashboardsNameRoute: typeof LayoutDashboardsNameRoute LayoutDashboardsIndexRoute: typeof LayoutDashboardsIndexRoute } const LayoutRouteChildren: LayoutRouteChildren = { LayoutAdminRoute: LayoutAdminRoute, LayoutAlertsRoute: LayoutAlertsRoute, LayoutSecretsRoute: LayoutSecretsRoute, LayoutSettingsRoute: LayoutSettingsRoute, LayoutIndexRoute: LayoutIndexRoute, LayoutDashboardsNameRoute: LayoutDashboardsNameRoute, LayoutDashboardsIndexRoute: LayoutDashboardsIndexRoute, } const LayoutRouteWithChildren = LayoutRoute._addFileChildren(LayoutRouteChildren) const rootRouteChildren: RootRouteChildren = { CanvasRoute: CanvasRouteWithChildren, LayoutRoute: LayoutRouteWithChildren, LoginRoute: LoginRoute, RecoverPasswordRoute: RecoverPasswordRoute, ResetPasswordRoute: ResetPasswordRoute, SignupRoute: SignupRoute, OauthAuthorizeRoute: OauthAuthorizeRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes()