This commit is contained in:
2026-08-07 21:09:02 +00:00
parent c83ffd0006
commit 2596186ab4
+21
View File
@@ -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,
}