From 0267b300945826edfc995dafb03e6c326dabd411 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 19 Apr 2026 17:56:24 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routeTree.gen.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/routeTree.gen.ts b/src/routeTree.gen.ts index a1a797c..e89f5d1 100644 --- a/src/routeTree.gen.ts +++ b/src/routeTree.gen.ts @@ -28,6 +28,7 @@ import { Route as CollectionsIndexRouteImport } from './routes/collections.index import { Route as ClientsIndexRouteImport } from './routes/clients.index' import { Route as CasesIndexRouteImport } from './routes/cases.index' import { Route as CalendarIndexRouteImport } from './routes/calendar.index' +import { Route as ArchiveIndexRouteImport } from './routes/archive.index' import { Route as SettingsWorkflowsRouteImport } from './routes/settings.workflows' import { Route as SettingsWorkflowRouteImport } from './routes/settings.workflow' import { Route as SettingsSmtpRouteImport } from './routes/settings.smtp' @@ -150,6 +151,11 @@ const CalendarIndexRoute = CalendarIndexRouteImport.update({ path: '/calendar/', getParentRoute: () => rootRouteImport, } as any) +const ArchiveIndexRoute = ArchiveIndexRouteImport.update({ + id: '/archive/', + path: '/archive/', + getParentRoute: () => rootRouteImport, +} as any) const SettingsWorkflowsRoute = SettingsWorkflowsRouteImport.update({ id: '/workflows', path: '/workflows', @@ -308,6 +314,7 @@ export interface FileRoutesByFullPath { '/settings/smtp': typeof SettingsSmtpRoute '/settings/workflow': typeof SettingsWorkflowRoute '/settings/workflows': typeof SettingsWorkflowsRoute + '/archive/': typeof ArchiveIndexRoute '/calendar/': typeof CalendarIndexRoute '/cases/': typeof CasesIndexRoute '/clients/': typeof ClientsIndexRoute @@ -354,6 +361,7 @@ export interface FileRoutesByTo { '/settings/smtp': typeof SettingsSmtpRoute '/settings/workflow': typeof SettingsWorkflowRoute '/settings/workflows': typeof SettingsWorkflowsRoute + '/archive': typeof ArchiveIndexRoute '/calendar': typeof CalendarIndexRoute '/cases': typeof CasesIndexRoute '/clients': typeof ClientsIndexRoute @@ -402,6 +410,7 @@ export interface FileRoutesById { '/settings/smtp': typeof SettingsSmtpRoute '/settings/workflow': typeof SettingsWorkflowRoute '/settings/workflows': typeof SettingsWorkflowsRoute + '/archive/': typeof ArchiveIndexRoute '/calendar/': typeof CalendarIndexRoute '/cases/': typeof CasesIndexRoute '/clients/': typeof ClientsIndexRoute @@ -451,6 +460,7 @@ export interface FileRouteTypes { | '/settings/smtp' | '/settings/workflow' | '/settings/workflows' + | '/archive/' | '/calendar/' | '/cases/' | '/clients/' @@ -497,6 +507,7 @@ export interface FileRouteTypes { | '/settings/smtp' | '/settings/workflow' | '/settings/workflows' + | '/archive' | '/calendar' | '/cases' | '/clients' @@ -544,6 +555,7 @@ export interface FileRouteTypes { | '/settings/smtp' | '/settings/workflow' | '/settings/workflows' + | '/archive/' | '/calendar/' | '/cases/' | '/clients/' @@ -582,6 +594,7 @@ export interface RootRouteChildren { InvoicesInvoiceIdRoute: typeof InvoicesInvoiceIdRoute InvoicesNewRoute: typeof InvoicesNewRouteWithChildren PayIdRoute: typeof PayIdRoute + ArchiveIndexRoute: typeof ArchiveIndexRoute CalendarIndexRoute: typeof CalendarIndexRoute CasesIndexRoute: typeof CasesIndexRoute ClientsIndexRoute: typeof ClientsIndexRoute @@ -737,6 +750,13 @@ declare module '@tanstack/react-router' { preLoaderRoute: typeof CalendarIndexRouteImport parentRoute: typeof rootRouteImport } + '/archive/': { + id: '/archive/' + path: '/archive' + fullPath: '/archive/' + preLoaderRoute: typeof ArchiveIndexRouteImport + parentRoute: typeof rootRouteImport + } '/settings/workflows': { id: '/settings/workflows' path: '/workflows' @@ -982,6 +1002,7 @@ const rootRouteChildren: RootRouteChildren = { InvoicesInvoiceIdRoute: InvoicesInvoiceIdRoute, InvoicesNewRoute: InvoicesNewRouteWithChildren, PayIdRoute: PayIdRoute, + ArchiveIndexRoute: ArchiveIndexRoute, CalendarIndexRoute: CalendarIndexRoute, CasesIndexRoute: CasesIndexRoute, ClientsIndexRoute: ClientsIndexRoute,