From 2596186ab41c096aca39032b4d981955eae8f896 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 21:09:02 +0000 Subject: [PATCH] Terminal --- src/routeTree.gen.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/routeTree.gen.ts b/src/routeTree.gen.ts index a73f2b9..f53cb98 100644 --- a/src/routeTree.gen.ts +++ b/src/routeTree.gen.ts @@ -13,6 +13,7 @@ import { Route as AuthRouteImport } from './routes/auth' import { Route as AuthenticatedRouteRouteImport } from './routes/_authenticated/route' import { Route as IndexRouteImport } from './routes/index' import { Route as IntakeTokenRouteImport } from './routes/intake.$token' +import { Route as AuthenticatedVacationRouteImport } from './routes/_authenticated/vacation' import { Route as AuthenticatedStudentsRouteImport } from './routes/_authenticated/students' import { Route as AuthenticatedReportsRouteImport } from './routes/_authenticated/reports' import { Route as AuthenticatedReceivablesRouteImport } from './routes/_authenticated/receivables' @@ -53,6 +54,11 @@ const IntakeTokenRoute = IntakeTokenRouteImport.update({ path: '/intake/$token', getParentRoute: () => rootRouteImport, } as any) +const AuthenticatedVacationRoute = AuthenticatedVacationRouteImport.update({ + id: '/vacation', + path: '/vacation', + getParentRoute: () => AuthenticatedRouteRoute, +} as any) const AuthenticatedStudentsRoute = AuthenticatedStudentsRouteImport.update({ id: '/students', path: '/students', @@ -175,6 +181,7 @@ export interface FileRoutesByFullPath { '/receivables': typeof AuthenticatedReceivablesRoute '/reports': typeof AuthenticatedReportsRoute '/students': typeof AuthenticatedStudentsRouteWithChildren + '/vacation': typeof AuthenticatedVacationRoute '/intake/$token': typeof IntakeTokenRoute '/classes/$id': typeof AuthenticatedClassesIdRoute '/invoice/$id': typeof AuthenticatedInvoiceIdRoute @@ -198,6 +205,7 @@ export interface FileRoutesByTo { '/plans': typeof AuthenticatedPlansRoute '/receivables': typeof AuthenticatedReceivablesRoute '/reports': typeof AuthenticatedReportsRoute + '/vacation': typeof AuthenticatedVacationRoute '/intake/$token': typeof IntakeTokenRoute '/classes/$id': typeof AuthenticatedClassesIdRoute '/invoice/$id': typeof AuthenticatedInvoiceIdRoute @@ -225,6 +233,7 @@ export interface FileRoutesById { '/_authenticated/receivables': typeof AuthenticatedReceivablesRoute '/_authenticated/reports': typeof AuthenticatedReportsRoute '/_authenticated/students': typeof AuthenticatedStudentsRouteWithChildren + '/_authenticated/vacation': typeof AuthenticatedVacationRoute '/intake/$token': typeof IntakeTokenRoute '/_authenticated/classes/$id': typeof AuthenticatedClassesIdRoute '/_authenticated/invoice/$id': typeof AuthenticatedInvoiceIdRoute @@ -252,6 +261,7 @@ export interface FileRouteTypes { | '/receivables' | '/reports' | '/students' + | '/vacation' | '/intake/$token' | '/classes/$id' | '/invoice/$id' @@ -275,6 +285,7 @@ export interface FileRouteTypes { | '/plans' | '/receivables' | '/reports' + | '/vacation' | '/intake/$token' | '/classes/$id' | '/invoice/$id' @@ -301,6 +312,7 @@ export interface FileRouteTypes { | '/_authenticated/receivables' | '/_authenticated/reports' | '/_authenticated/students' + | '/_authenticated/vacation' | '/intake/$token' | '/_authenticated/classes/$id' | '/_authenticated/invoice/$id' @@ -347,6 +359,13 @@ declare module '@tanstack/react-router' { preLoaderRoute: typeof IntakeTokenRouteImport parentRoute: typeof rootRouteImport } + '/_authenticated/vacation': { + id: '/_authenticated/vacation' + path: '/vacation' + fullPath: '/vacation' + preLoaderRoute: typeof AuthenticatedVacationRouteImport + parentRoute: typeof AuthenticatedRouteRoute + } '/_authenticated/students': { id: '/_authenticated/students' path: '/students' @@ -535,6 +554,7 @@ interface AuthenticatedRouteRouteChildren { AuthenticatedReceivablesRoute: typeof AuthenticatedReceivablesRoute AuthenticatedReportsRoute: typeof AuthenticatedReportsRoute AuthenticatedStudentsRoute: typeof AuthenticatedStudentsRouteWithChildren + AuthenticatedVacationRoute: typeof AuthenticatedVacationRoute AuthenticatedInvoiceIdRoute: typeof AuthenticatedInvoiceIdRoute } @@ -553,6 +573,7 @@ const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = { AuthenticatedReceivablesRoute: AuthenticatedReceivablesRoute, AuthenticatedReportsRoute: AuthenticatedReportsRoute, AuthenticatedStudentsRoute: AuthenticatedStudentsRouteWithChildren, + AuthenticatedVacationRoute: AuthenticatedVacationRoute, AuthenticatedInvoiceIdRoute: AuthenticatedInvoiceIdRoute, }