Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-19 17:56:24 +00:00
co-authored by renee-png
parent 862b6d2c04
commit 0267b30094
+21
View File
@@ -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,