Terminal
This commit is contained in:
@@ -13,6 +13,7 @@ import { Route as AuthRouteImport } from './routes/auth'
|
|||||||
import { Route as AuthenticatedRouteRouteImport } from './routes/_authenticated/route'
|
import { Route as AuthenticatedRouteRouteImport } from './routes/_authenticated/route'
|
||||||
import { Route as IndexRouteImport } from './routes/index'
|
import { Route as IndexRouteImport } from './routes/index'
|
||||||
import { Route as IntakeTokenRouteImport } from './routes/intake.$token'
|
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 AuthenticatedStudentsRouteImport } from './routes/_authenticated/students'
|
||||||
import { Route as AuthenticatedReportsRouteImport } from './routes/_authenticated/reports'
|
import { Route as AuthenticatedReportsRouteImport } from './routes/_authenticated/reports'
|
||||||
import { Route as AuthenticatedReceivablesRouteImport } from './routes/_authenticated/receivables'
|
import { Route as AuthenticatedReceivablesRouteImport } from './routes/_authenticated/receivables'
|
||||||
@@ -53,6 +54,11 @@ const IntakeTokenRoute = IntakeTokenRouteImport.update({
|
|||||||
path: '/intake/$token',
|
path: '/intake/$token',
|
||||||
getParentRoute: () => rootRouteImport,
|
getParentRoute: () => rootRouteImport,
|
||||||
} as any)
|
} as any)
|
||||||
|
const AuthenticatedVacationRoute = AuthenticatedVacationRouteImport.update({
|
||||||
|
id: '/vacation',
|
||||||
|
path: '/vacation',
|
||||||
|
getParentRoute: () => AuthenticatedRouteRoute,
|
||||||
|
} as any)
|
||||||
const AuthenticatedStudentsRoute = AuthenticatedStudentsRouteImport.update({
|
const AuthenticatedStudentsRoute = AuthenticatedStudentsRouteImport.update({
|
||||||
id: '/students',
|
id: '/students',
|
||||||
path: '/students',
|
path: '/students',
|
||||||
@@ -175,6 +181,7 @@ export interface FileRoutesByFullPath {
|
|||||||
'/receivables': typeof AuthenticatedReceivablesRoute
|
'/receivables': typeof AuthenticatedReceivablesRoute
|
||||||
'/reports': typeof AuthenticatedReportsRoute
|
'/reports': typeof AuthenticatedReportsRoute
|
||||||
'/students': typeof AuthenticatedStudentsRouteWithChildren
|
'/students': typeof AuthenticatedStudentsRouteWithChildren
|
||||||
|
'/vacation': typeof AuthenticatedVacationRoute
|
||||||
'/intake/$token': typeof IntakeTokenRoute
|
'/intake/$token': typeof IntakeTokenRoute
|
||||||
'/classes/$id': typeof AuthenticatedClassesIdRoute
|
'/classes/$id': typeof AuthenticatedClassesIdRoute
|
||||||
'/invoice/$id': typeof AuthenticatedInvoiceIdRoute
|
'/invoice/$id': typeof AuthenticatedInvoiceIdRoute
|
||||||
@@ -198,6 +205,7 @@ export interface FileRoutesByTo {
|
|||||||
'/plans': typeof AuthenticatedPlansRoute
|
'/plans': typeof AuthenticatedPlansRoute
|
||||||
'/receivables': typeof AuthenticatedReceivablesRoute
|
'/receivables': typeof AuthenticatedReceivablesRoute
|
||||||
'/reports': typeof AuthenticatedReportsRoute
|
'/reports': typeof AuthenticatedReportsRoute
|
||||||
|
'/vacation': typeof AuthenticatedVacationRoute
|
||||||
'/intake/$token': typeof IntakeTokenRoute
|
'/intake/$token': typeof IntakeTokenRoute
|
||||||
'/classes/$id': typeof AuthenticatedClassesIdRoute
|
'/classes/$id': typeof AuthenticatedClassesIdRoute
|
||||||
'/invoice/$id': typeof AuthenticatedInvoiceIdRoute
|
'/invoice/$id': typeof AuthenticatedInvoiceIdRoute
|
||||||
@@ -225,6 +233,7 @@ export interface FileRoutesById {
|
|||||||
'/_authenticated/receivables': typeof AuthenticatedReceivablesRoute
|
'/_authenticated/receivables': typeof AuthenticatedReceivablesRoute
|
||||||
'/_authenticated/reports': typeof AuthenticatedReportsRoute
|
'/_authenticated/reports': typeof AuthenticatedReportsRoute
|
||||||
'/_authenticated/students': typeof AuthenticatedStudentsRouteWithChildren
|
'/_authenticated/students': typeof AuthenticatedStudentsRouteWithChildren
|
||||||
|
'/_authenticated/vacation': typeof AuthenticatedVacationRoute
|
||||||
'/intake/$token': typeof IntakeTokenRoute
|
'/intake/$token': typeof IntakeTokenRoute
|
||||||
'/_authenticated/classes/$id': typeof AuthenticatedClassesIdRoute
|
'/_authenticated/classes/$id': typeof AuthenticatedClassesIdRoute
|
||||||
'/_authenticated/invoice/$id': typeof AuthenticatedInvoiceIdRoute
|
'/_authenticated/invoice/$id': typeof AuthenticatedInvoiceIdRoute
|
||||||
@@ -252,6 +261,7 @@ export interface FileRouteTypes {
|
|||||||
| '/receivables'
|
| '/receivables'
|
||||||
| '/reports'
|
| '/reports'
|
||||||
| '/students'
|
| '/students'
|
||||||
|
| '/vacation'
|
||||||
| '/intake/$token'
|
| '/intake/$token'
|
||||||
| '/classes/$id'
|
| '/classes/$id'
|
||||||
| '/invoice/$id'
|
| '/invoice/$id'
|
||||||
@@ -275,6 +285,7 @@ export interface FileRouteTypes {
|
|||||||
| '/plans'
|
| '/plans'
|
||||||
| '/receivables'
|
| '/receivables'
|
||||||
| '/reports'
|
| '/reports'
|
||||||
|
| '/vacation'
|
||||||
| '/intake/$token'
|
| '/intake/$token'
|
||||||
| '/classes/$id'
|
| '/classes/$id'
|
||||||
| '/invoice/$id'
|
| '/invoice/$id'
|
||||||
@@ -301,6 +312,7 @@ export interface FileRouteTypes {
|
|||||||
| '/_authenticated/receivables'
|
| '/_authenticated/receivables'
|
||||||
| '/_authenticated/reports'
|
| '/_authenticated/reports'
|
||||||
| '/_authenticated/students'
|
| '/_authenticated/students'
|
||||||
|
| '/_authenticated/vacation'
|
||||||
| '/intake/$token'
|
| '/intake/$token'
|
||||||
| '/_authenticated/classes/$id'
|
| '/_authenticated/classes/$id'
|
||||||
| '/_authenticated/invoice/$id'
|
| '/_authenticated/invoice/$id'
|
||||||
@@ -347,6 +359,13 @@ declare module '@tanstack/react-router' {
|
|||||||
preLoaderRoute: typeof IntakeTokenRouteImport
|
preLoaderRoute: typeof IntakeTokenRouteImport
|
||||||
parentRoute: typeof rootRouteImport
|
parentRoute: typeof rootRouteImport
|
||||||
}
|
}
|
||||||
|
'/_authenticated/vacation': {
|
||||||
|
id: '/_authenticated/vacation'
|
||||||
|
path: '/vacation'
|
||||||
|
fullPath: '/vacation'
|
||||||
|
preLoaderRoute: typeof AuthenticatedVacationRouteImport
|
||||||
|
parentRoute: typeof AuthenticatedRouteRoute
|
||||||
|
}
|
||||||
'/_authenticated/students': {
|
'/_authenticated/students': {
|
||||||
id: '/_authenticated/students'
|
id: '/_authenticated/students'
|
||||||
path: '/students'
|
path: '/students'
|
||||||
@@ -535,6 +554,7 @@ interface AuthenticatedRouteRouteChildren {
|
|||||||
AuthenticatedReceivablesRoute: typeof AuthenticatedReceivablesRoute
|
AuthenticatedReceivablesRoute: typeof AuthenticatedReceivablesRoute
|
||||||
AuthenticatedReportsRoute: typeof AuthenticatedReportsRoute
|
AuthenticatedReportsRoute: typeof AuthenticatedReportsRoute
|
||||||
AuthenticatedStudentsRoute: typeof AuthenticatedStudentsRouteWithChildren
|
AuthenticatedStudentsRoute: typeof AuthenticatedStudentsRouteWithChildren
|
||||||
|
AuthenticatedVacationRoute: typeof AuthenticatedVacationRoute
|
||||||
AuthenticatedInvoiceIdRoute: typeof AuthenticatedInvoiceIdRoute
|
AuthenticatedInvoiceIdRoute: typeof AuthenticatedInvoiceIdRoute
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -553,6 +573,7 @@ const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = {
|
|||||||
AuthenticatedReceivablesRoute: AuthenticatedReceivablesRoute,
|
AuthenticatedReceivablesRoute: AuthenticatedReceivablesRoute,
|
||||||
AuthenticatedReportsRoute: AuthenticatedReportsRoute,
|
AuthenticatedReportsRoute: AuthenticatedReportsRoute,
|
||||||
AuthenticatedStudentsRoute: AuthenticatedStudentsRouteWithChildren,
|
AuthenticatedStudentsRoute: AuthenticatedStudentsRouteWithChildren,
|
||||||
|
AuthenticatedVacationRoute: AuthenticatedVacationRoute,
|
||||||
AuthenticatedInvoiceIdRoute: AuthenticatedInvoiceIdRoute,
|
AuthenticatedInvoiceIdRoute: AuthenticatedInvoiceIdRoute,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user