Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-05-01 14:42:26 +00:00
co-authored by renee-png
parent 287160cedf
commit 526ce6fad7
+21
View File
@@ -13,6 +13,7 @@ import { Route as SetupRouteImport } from './routes/setup'
import { Route as SettingsRouteImport } from './routes/settings'
import { Route as LoginRouteImport } from './routes/login'
import { Route as IndexRouteImport } from './routes/index'
import { Route as TrustIndexRouteImport } from './routes/trust.index'
import { Route as TasksIndexRouteImport } from './routes/tasks.index'
import { Route as StatusIndexRouteImport } from './routes/status.index'
import { Route as SettingsIndexRouteImport } from './routes/settings.index'
@@ -89,6 +90,11 @@ const IndexRoute = IndexRouteImport.update({
path: '/',
getParentRoute: () => rootRouteImport,
} as any)
const TrustIndexRoute = TrustIndexRouteImport.update({
id: '/trust/',
path: '/trust/',
getParentRoute: () => rootRouteImport,
} as any)
const TasksIndexRoute = TasksIndexRouteImport.update({
id: '/tasks/',
path: '/tasks/',
@@ -419,6 +425,7 @@ export interface FileRoutesByFullPath {
'/settings/': typeof SettingsIndexRoute
'/status/': typeof StatusIndexRoute
'/tasks/': typeof TasksIndexRoute
'/trust/': typeof TrustIndexRoute
'/api/public/process-task-reminders': typeof ApiPublicProcessTaskRemindersRoute
'/clients/$clientId/fees': typeof ClientsClientIdFeesRoute
'/documents/pleading/new': typeof DocumentsPleadingNewRoute
@@ -479,6 +486,7 @@ export interface FileRoutesByTo {
'/settings': typeof SettingsIndexRoute
'/status': typeof StatusIndexRoute
'/tasks': typeof TasksIndexRoute
'/trust': typeof TrustIndexRoute
'/api/public/process-task-reminders': typeof ApiPublicProcessTaskRemindersRoute
'/clients/$clientId/fees': typeof ClientsClientIdFeesRoute
'/documents/pleading/new': typeof DocumentsPleadingNewRoute
@@ -541,6 +549,7 @@ export interface FileRoutesById {
'/settings/': typeof SettingsIndexRoute
'/status/': typeof StatusIndexRoute
'/tasks/': typeof TasksIndexRoute
'/trust/': typeof TrustIndexRoute
'/api/public/process-task-reminders': typeof ApiPublicProcessTaskRemindersRoute
'/clients/$clientId/fees': typeof ClientsClientIdFeesRoute
'/documents/pleading/new': typeof DocumentsPleadingNewRoute
@@ -604,6 +613,7 @@ export interface FileRouteTypes {
| '/settings/'
| '/status/'
| '/tasks/'
| '/trust/'
| '/api/public/process-task-reminders'
| '/clients/$clientId/fees'
| '/documents/pleading/new'
@@ -664,6 +674,7 @@ export interface FileRouteTypes {
| '/settings'
| '/status'
| '/tasks'
| '/trust'
| '/api/public/process-task-reminders'
| '/clients/$clientId/fees'
| '/documents/pleading/new'
@@ -725,6 +736,7 @@ export interface FileRouteTypes {
| '/settings/'
| '/status/'
| '/tasks/'
| '/trust/'
| '/api/public/process-task-reminders'
| '/clients/$clientId/fees'
| '/documents/pleading/new'
@@ -776,6 +788,7 @@ export interface RootRouteChildren {
ReportsIndexRoute: typeof ReportsIndexRoute
StatusIndexRoute: typeof StatusIndexRoute
TasksIndexRoute: typeof TasksIndexRoute
TrustIndexRoute: typeof TrustIndexRoute
ApiPublicProcessTaskRemindersRoute: typeof ApiPublicProcessTaskRemindersRoute
DocumentsPleadingNewRoute: typeof DocumentsPleadingNewRoute
DocumentsTemplatesTemplateIdRoute: typeof DocumentsTemplatesTemplateIdRoute
@@ -817,6 +830,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof IndexRouteImport
parentRoute: typeof rootRouteImport
}
'/trust/': {
id: '/trust/'
path: '/trust'
fullPath: '/trust/'
preLoaderRoute: typeof TrustIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/tasks/': {
id: '/tasks/'
path: '/tasks'
@@ -1301,6 +1321,7 @@ const rootRouteChildren: RootRouteChildren = {
ReportsIndexRoute: ReportsIndexRoute,
StatusIndexRoute: StatusIndexRoute,
TasksIndexRoute: TasksIndexRoute,
TrustIndexRoute: TrustIndexRoute,
ApiPublicProcessTaskRemindersRoute: ApiPublicProcessTaskRemindersRoute,
DocumentsPleadingNewRoute: DocumentsPleadingNewRoute,
DocumentsTemplatesTemplateIdRoute: DocumentsTemplatesTemplateIdRoute,