From bdcb8a4d8090b74bbe1c428ff2c3ef735430d287 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 21:32:25 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routeTree.gen.ts | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/routeTree.gen.ts b/src/routeTree.gen.ts index c40c56e..2bfd7a6 100644 --- a/src/routeTree.gen.ts +++ b/src/routeTree.gen.ts @@ -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() + +import type { getRouter } from './router.tsx' +import type { createStart } from '@tanstack/react-start' +declare module '@tanstack/react-start' { + interface Register { + ssr: true + router: Awaited> + } +}