Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-23 21:32:25 +00:00
co-authored by renee-png
parent a0ac547c5d
commit bdcb8a4d80
+31
View File
@@ -59,6 +59,7 @@ import { Route as DocumentsTemplatesNewRouteImport } from './routes/documents.te
import { Route as DocumentsTemplatesTemplateIdRouteImport } from './routes/documents.templates.$templateId'
import { Route as DocumentsPleadingNewRouteImport } from './routes/documents.pleading.new'
import { Route as ClientsClientIdFeesRouteImport } from './routes/clients.$clientId.fees'
import { Route as ApiPublicProcessTaskRemindersRouteImport } from './routes/api/public/process-task-reminders'
import { Route as LovableEmailTransactionalSendRouteImport } from './routes/lovable/email/transactional/send'
import { Route as LovableEmailTransactionalPreviewRouteImport } from './routes/lovable/email/transactional/preview'
import { Route as LovableEmailQueueProcessRouteImport } from './routes/lovable/email/queue/process'
@@ -314,6 +315,12 @@ const ClientsClientIdFeesRoute = ClientsClientIdFeesRouteImport.update({
path: '/fees',
getParentRoute: () => ClientsClientIdRoute,
} as any)
const ApiPublicProcessTaskRemindersRoute =
ApiPublicProcessTaskRemindersRouteImport.update({
id: '/api/public/process-task-reminders',
path: '/api/public/process-task-reminders',
getParentRoute: () => rootRouteImport,
} as any)
const LovableEmailTransactionalSendRoute =
LovableEmailTransactionalSendRouteImport.update({
id: '/lovable/email/transactional/send',
@@ -377,6 +384,7 @@ export interface FileRoutesByFullPath {
'/settings/': typeof SettingsIndexRoute
'/status/': typeof StatusIndexRoute
'/tasks/': typeof TasksIndexRoute
'/api/public/process-task-reminders': typeof ApiPublicProcessTaskRemindersRoute
'/clients/$clientId/fees': typeof ClientsClientIdFeesRoute
'/documents/pleading/new': typeof DocumentsPleadingNewRoute
'/documents/templates/$templateId': typeof DocumentsTemplatesTemplateIdRoute
@@ -431,6 +439,7 @@ export interface FileRoutesByTo {
'/settings': typeof SettingsIndexRoute
'/status': typeof StatusIndexRoute
'/tasks': typeof TasksIndexRoute
'/api/public/process-task-reminders': typeof ApiPublicProcessTaskRemindersRoute
'/clients/$clientId/fees': typeof ClientsClientIdFeesRoute
'/documents/pleading/new': typeof DocumentsPleadingNewRoute
'/documents/templates/$templateId': typeof DocumentsTemplatesTemplateIdRoute
@@ -487,6 +496,7 @@ export interface FileRoutesById {
'/settings/': typeof SettingsIndexRoute
'/status/': typeof StatusIndexRoute
'/tasks/': typeof TasksIndexRoute
'/api/public/process-task-reminders': typeof ApiPublicProcessTaskRemindersRoute
'/clients/$clientId/fees': typeof ClientsClientIdFeesRoute
'/documents/pleading/new': typeof DocumentsPleadingNewRoute
'/documents/templates/$templateId': typeof DocumentsTemplatesTemplateIdRoute
@@ -544,6 +554,7 @@ export interface FileRouteTypes {
| '/settings/'
| '/status/'
| '/tasks/'
| '/api/public/process-task-reminders'
| '/clients/$clientId/fees'
| '/documents/pleading/new'
| '/documents/templates/$templateId'
@@ -598,6 +609,7 @@ export interface FileRouteTypes {
| '/settings'
| '/status'
| '/tasks'
| '/api/public/process-task-reminders'
| '/clients/$clientId/fees'
| '/documents/pleading/new'
| '/documents/templates/$templateId'
@@ -653,6 +665,7 @@ export interface FileRouteTypes {
| '/settings/'
| '/status/'
| '/tasks/'
| '/api/public/process-task-reminders'
| '/clients/$clientId/fees'
| '/documents/pleading/new'
| '/documents/templates/$templateId'
@@ -698,6 +711,7 @@ export interface RootRouteChildren {
ReportsIndexRoute: typeof ReportsIndexRoute
StatusIndexRoute: typeof StatusIndexRoute
TasksIndexRoute: typeof TasksIndexRoute
ApiPublicProcessTaskRemindersRoute: typeof ApiPublicProcessTaskRemindersRoute
DocumentsPleadingNewRoute: typeof DocumentsPleadingNewRoute
DocumentsTemplatesTemplateIdRoute: typeof DocumentsTemplatesTemplateIdRoute
DocumentsTemplatesNewRoute: typeof DocumentsTemplatesNewRoute
@@ -1060,6 +1074,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof ClientsClientIdFeesRouteImport
parentRoute: typeof ClientsClientIdRoute
}
'/api/public/process-task-reminders': {
id: '/api/public/process-task-reminders'
path: '/api/public/process-task-reminders'
fullPath: '/api/public/process-task-reminders'
preLoaderRoute: typeof ApiPublicProcessTaskRemindersRouteImport
parentRoute: typeof rootRouteImport
}
'/lovable/email/transactional/send': {
id: '/lovable/email/transactional/send'
path: '/lovable/email/transactional/send'
@@ -1173,6 +1194,7 @@ const rootRouteChildren: RootRouteChildren = {
ReportsIndexRoute: ReportsIndexRoute,
StatusIndexRoute: StatusIndexRoute,
TasksIndexRoute: TasksIndexRoute,
ApiPublicProcessTaskRemindersRoute: ApiPublicProcessTaskRemindersRoute,
DocumentsPleadingNewRoute: DocumentsPleadingNewRoute,
DocumentsTemplatesTemplateIdRoute: DocumentsTemplatesTemplateIdRoute,
DocumentsTemplatesNewRoute: DocumentsTemplatesNewRoute,
@@ -1185,3 +1207,12 @@ const rootRouteChildren: RootRouteChildren = {
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()
import type { getRouter } from './router.tsx'
import type { createStart } from '@tanstack/react-start'
declare module '@tanstack/react-start' {
interface Register {
ssr: true
router: Awaited<ReturnType<typeof getRouter>>
}
}