fix: regenerate route tree to include reports/daily route #8
@@ -27,6 +27,7 @@ import { Route as AuthenticatedFilesIndexRouteImport } from './routes/_authentic
|
|||||||
import { Route as AuthenticatedAccountsIndexRouteImport } from './routes/_authenticated/accounts/index'
|
import { Route as AuthenticatedAccountsIndexRouteImport } from './routes/_authenticated/accounts/index'
|
||||||
import { Route as AuthenticatedRolesNewRouteImport } from './routes/_authenticated/roles/new'
|
import { Route as AuthenticatedRolesNewRouteImport } from './routes/_authenticated/roles/new'
|
||||||
import { Route as AuthenticatedRolesRoleIdRouteImport } from './routes/_authenticated/roles/$roleId'
|
import { Route as AuthenticatedRolesRoleIdRouteImport } from './routes/_authenticated/roles/$roleId'
|
||||||
|
import { Route as AuthenticatedReportsDailyRouteImport } from './routes/_authenticated/reports/daily'
|
||||||
import { Route as AuthenticatedRepairsTemplatesRouteImport } from './routes/_authenticated/repairs/templates'
|
import { Route as AuthenticatedRepairsTemplatesRouteImport } from './routes/_authenticated/repairs/templates'
|
||||||
import { Route as AuthenticatedRepairsNewRouteImport } from './routes/_authenticated/repairs/new'
|
import { Route as AuthenticatedRepairsNewRouteImport } from './routes/_authenticated/repairs/new'
|
||||||
import { Route as AuthenticatedRepairsTicketIdRouteImport } from './routes/_authenticated/repairs/$ticketId'
|
import { Route as AuthenticatedRepairsTicketIdRouteImport } from './routes/_authenticated/repairs/$ticketId'
|
||||||
@@ -152,6 +153,12 @@ const AuthenticatedRolesRoleIdRoute =
|
|||||||
path: '/roles/$roleId',
|
path: '/roles/$roleId',
|
||||||
getParentRoute: () => AuthenticatedRoute,
|
getParentRoute: () => AuthenticatedRoute,
|
||||||
} as any)
|
} as any)
|
||||||
|
const AuthenticatedReportsDailyRoute =
|
||||||
|
AuthenticatedReportsDailyRouteImport.update({
|
||||||
|
id: '/reports/daily',
|
||||||
|
path: '/reports/daily',
|
||||||
|
getParentRoute: () => AuthenticatedRoute,
|
||||||
|
} as any)
|
||||||
const AuthenticatedRepairsTemplatesRoute =
|
const AuthenticatedRepairsTemplatesRoute =
|
||||||
AuthenticatedRepairsTemplatesRouteImport.update({
|
AuthenticatedRepairsTemplatesRouteImport.update({
|
||||||
id: '/repairs/templates',
|
id: '/repairs/templates',
|
||||||
@@ -344,6 +351,7 @@ export interface FileRoutesByFullPath {
|
|||||||
'/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
'/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
||||||
'/repairs/new': typeof AuthenticatedRepairsNewRoute
|
'/repairs/new': typeof AuthenticatedRepairsNewRoute
|
||||||
'/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
'/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
||||||
|
'/reports/daily': typeof AuthenticatedReportsDailyRoute
|
||||||
'/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
'/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
||||||
'/roles/new': typeof AuthenticatedRolesNewRoute
|
'/roles/new': typeof AuthenticatedRolesNewRoute
|
||||||
'/accounts/': typeof AuthenticatedAccountsIndexRoute
|
'/accounts/': typeof AuthenticatedAccountsIndexRoute
|
||||||
@@ -391,6 +399,7 @@ export interface FileRoutesByTo {
|
|||||||
'/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
'/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
||||||
'/repairs/new': typeof AuthenticatedRepairsNewRoute
|
'/repairs/new': typeof AuthenticatedRepairsNewRoute
|
||||||
'/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
'/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
||||||
|
'/reports/daily': typeof AuthenticatedReportsDailyRoute
|
||||||
'/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
'/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
||||||
'/roles/new': typeof AuthenticatedRolesNewRoute
|
'/roles/new': typeof AuthenticatedRolesNewRoute
|
||||||
'/accounts': typeof AuthenticatedAccountsIndexRoute
|
'/accounts': typeof AuthenticatedAccountsIndexRoute
|
||||||
@@ -441,6 +450,7 @@ export interface FileRoutesById {
|
|||||||
'/_authenticated/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
'/_authenticated/repairs/$ticketId': typeof AuthenticatedRepairsTicketIdRoute
|
||||||
'/_authenticated/repairs/new': typeof AuthenticatedRepairsNewRoute
|
'/_authenticated/repairs/new': typeof AuthenticatedRepairsNewRoute
|
||||||
'/_authenticated/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
'/_authenticated/repairs/templates': typeof AuthenticatedRepairsTemplatesRoute
|
||||||
|
'/_authenticated/reports/daily': typeof AuthenticatedReportsDailyRoute
|
||||||
'/_authenticated/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
'/_authenticated/roles/$roleId': typeof AuthenticatedRolesRoleIdRoute
|
||||||
'/_authenticated/roles/new': typeof AuthenticatedRolesNewRoute
|
'/_authenticated/roles/new': typeof AuthenticatedRolesNewRoute
|
||||||
'/_authenticated/accounts/': typeof AuthenticatedAccountsIndexRoute
|
'/_authenticated/accounts/': typeof AuthenticatedAccountsIndexRoute
|
||||||
@@ -491,6 +501,7 @@ export interface FileRouteTypes {
|
|||||||
| '/repairs/$ticketId'
|
| '/repairs/$ticketId'
|
||||||
| '/repairs/new'
|
| '/repairs/new'
|
||||||
| '/repairs/templates'
|
| '/repairs/templates'
|
||||||
|
| '/reports/daily'
|
||||||
| '/roles/$roleId'
|
| '/roles/$roleId'
|
||||||
| '/roles/new'
|
| '/roles/new'
|
||||||
| '/accounts/'
|
| '/accounts/'
|
||||||
@@ -538,6 +549,7 @@ export interface FileRouteTypes {
|
|||||||
| '/repairs/$ticketId'
|
| '/repairs/$ticketId'
|
||||||
| '/repairs/new'
|
| '/repairs/new'
|
||||||
| '/repairs/templates'
|
| '/repairs/templates'
|
||||||
|
| '/reports/daily'
|
||||||
| '/roles/$roleId'
|
| '/roles/$roleId'
|
||||||
| '/roles/new'
|
| '/roles/new'
|
||||||
| '/accounts'
|
| '/accounts'
|
||||||
@@ -587,6 +599,7 @@ export interface FileRouteTypes {
|
|||||||
| '/_authenticated/repairs/$ticketId'
|
| '/_authenticated/repairs/$ticketId'
|
||||||
| '/_authenticated/repairs/new'
|
| '/_authenticated/repairs/new'
|
||||||
| '/_authenticated/repairs/templates'
|
| '/_authenticated/repairs/templates'
|
||||||
|
| '/_authenticated/reports/daily'
|
||||||
| '/_authenticated/roles/$roleId'
|
| '/_authenticated/roles/$roleId'
|
||||||
| '/_authenticated/roles/new'
|
| '/_authenticated/roles/new'
|
||||||
| '/_authenticated/accounts/'
|
| '/_authenticated/accounts/'
|
||||||
@@ -752,6 +765,13 @@ declare module '@tanstack/react-router' {
|
|||||||
preLoaderRoute: typeof AuthenticatedRolesRoleIdRouteImport
|
preLoaderRoute: typeof AuthenticatedRolesRoleIdRouteImport
|
||||||
parentRoute: typeof AuthenticatedRoute
|
parentRoute: typeof AuthenticatedRoute
|
||||||
}
|
}
|
||||||
|
'/_authenticated/reports/daily': {
|
||||||
|
id: '/_authenticated/reports/daily'
|
||||||
|
path: '/reports/daily'
|
||||||
|
fullPath: '/reports/daily'
|
||||||
|
preLoaderRoute: typeof AuthenticatedReportsDailyRouteImport
|
||||||
|
parentRoute: typeof AuthenticatedRoute
|
||||||
|
}
|
||||||
'/_authenticated/repairs/templates': {
|
'/_authenticated/repairs/templates': {
|
||||||
id: '/_authenticated/repairs/templates'
|
id: '/_authenticated/repairs/templates'
|
||||||
path: '/repairs/templates'
|
path: '/repairs/templates'
|
||||||
@@ -1004,6 +1024,7 @@ interface AuthenticatedRouteChildren {
|
|||||||
AuthenticatedRepairsTicketIdRoute: typeof AuthenticatedRepairsTicketIdRoute
|
AuthenticatedRepairsTicketIdRoute: typeof AuthenticatedRepairsTicketIdRoute
|
||||||
AuthenticatedRepairsNewRoute: typeof AuthenticatedRepairsNewRoute
|
AuthenticatedRepairsNewRoute: typeof AuthenticatedRepairsNewRoute
|
||||||
AuthenticatedRepairsTemplatesRoute: typeof AuthenticatedRepairsTemplatesRoute
|
AuthenticatedRepairsTemplatesRoute: typeof AuthenticatedRepairsTemplatesRoute
|
||||||
|
AuthenticatedReportsDailyRoute: typeof AuthenticatedReportsDailyRoute
|
||||||
AuthenticatedRolesRoleIdRoute: typeof AuthenticatedRolesRoleIdRoute
|
AuthenticatedRolesRoleIdRoute: typeof AuthenticatedRolesRoleIdRoute
|
||||||
AuthenticatedRolesNewRoute: typeof AuthenticatedRolesNewRoute
|
AuthenticatedRolesNewRoute: typeof AuthenticatedRolesNewRoute
|
||||||
AuthenticatedAccountsIndexRoute: typeof AuthenticatedAccountsIndexRoute
|
AuthenticatedAccountsIndexRoute: typeof AuthenticatedAccountsIndexRoute
|
||||||
@@ -1047,6 +1068,7 @@ const AuthenticatedRouteChildren: AuthenticatedRouteChildren = {
|
|||||||
AuthenticatedRepairsTicketIdRoute: AuthenticatedRepairsTicketIdRoute,
|
AuthenticatedRepairsTicketIdRoute: AuthenticatedRepairsTicketIdRoute,
|
||||||
AuthenticatedRepairsNewRoute: AuthenticatedRepairsNewRoute,
|
AuthenticatedRepairsNewRoute: AuthenticatedRepairsNewRoute,
|
||||||
AuthenticatedRepairsTemplatesRoute: AuthenticatedRepairsTemplatesRoute,
|
AuthenticatedRepairsTemplatesRoute: AuthenticatedRepairsTemplatesRoute,
|
||||||
|
AuthenticatedReportsDailyRoute: AuthenticatedReportsDailyRoute,
|
||||||
AuthenticatedRolesRoleIdRoute: AuthenticatedRolesRoleIdRoute,
|
AuthenticatedRolesRoleIdRoute: AuthenticatedRolesRoleIdRoute,
|
||||||
AuthenticatedRolesNewRoute: AuthenticatedRolesNewRoute,
|
AuthenticatedRolesNewRoute: AuthenticatedRolesNewRoute,
|
||||||
AuthenticatedAccountsIndexRoute: AuthenticatedAccountsIndexRoute,
|
AuthenticatedAccountsIndexRoute: AuthenticatedAccountsIndexRoute,
|
||||||
|
|||||||
Reference in New Issue
Block a user