From ddccc882a2daba2265e2feb081c01fea2e38fb58 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 17:14:50 +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 8faeb78..2711e30 100644 --- a/src/routeTree.gen.ts +++ b/src/routeTree.gen.ts @@ -36,6 +36,7 @@ import { Route as SettingsImapRouteImport } from './routes/settings.imap' import { Route as SettingsFormTemplatesRouteImport } from './routes/settings.form-templates' import { Route as SettingsFeesRouteImport } from './routes/settings.fees' import { Route as SettingsCustomFieldsRouteImport } from './routes/settings.custom-fields' +import { Route as SettingsClientFieldsRouteImport } from './routes/settings.client-fields' import { Route as InvoicesInvoiceIdRouteImport } from './routes/invoices.$invoiceId' import { Route as HooksPollImapRouteImport } from './routes/hooks/poll-imap' import { Route as ContactsContactIdRouteImport } from './routes/contacts.$contactId' @@ -184,6 +185,11 @@ const SettingsCustomFieldsRoute = SettingsCustomFieldsRouteImport.update({ path: '/custom-fields', getParentRoute: () => SettingsRoute, } as any) +const SettingsClientFieldsRoute = SettingsClientFieldsRouteImport.update({ + id: '/client-fields', + path: '/client-fields', + getParentRoute: () => SettingsRoute, +} as any) const InvoicesInvoiceIdRoute = InvoicesInvoiceIdRouteImport.update({ id: '/invoices/$invoiceId', path: '/invoices/$invoiceId', @@ -259,6 +265,7 @@ export interface FileRoutesByFullPath { '/contacts/$contactId': typeof ContactsContactIdRoute '/hooks/poll-imap': typeof HooksPollImapRoute '/invoices/$invoiceId': typeof InvoicesInvoiceIdRoute + '/settings/client-fields': typeof SettingsClientFieldsRoute '/settings/custom-fields': typeof SettingsCustomFieldsRoute '/settings/fees': typeof SettingsFeesRoute '/settings/form-templates': typeof SettingsFormTemplatesRoute @@ -299,6 +306,7 @@ export interface FileRoutesByTo { '/contacts/$contactId': typeof ContactsContactIdRoute '/hooks/poll-imap': typeof HooksPollImapRoute '/invoices/$invoiceId': typeof InvoicesInvoiceIdRoute + '/settings/client-fields': typeof SettingsClientFieldsRoute '/settings/custom-fields': typeof SettingsCustomFieldsRoute '/settings/fees': typeof SettingsFeesRoute '/settings/form-templates': typeof SettingsFormTemplatesRoute @@ -341,6 +349,7 @@ export interface FileRoutesById { '/contacts/$contactId': typeof ContactsContactIdRoute '/hooks/poll-imap': typeof HooksPollImapRoute '/invoices/$invoiceId': typeof InvoicesInvoiceIdRoute + '/settings/client-fields': typeof SettingsClientFieldsRoute '/settings/custom-fields': typeof SettingsCustomFieldsRoute '/settings/fees': typeof SettingsFeesRoute '/settings/form-templates': typeof SettingsFormTemplatesRoute @@ -384,6 +393,7 @@ export interface FileRouteTypes { | '/contacts/$contactId' | '/hooks/poll-imap' | '/invoices/$invoiceId' + | '/settings/client-fields' | '/settings/custom-fields' | '/settings/fees' | '/settings/form-templates' @@ -424,6 +434,7 @@ export interface FileRouteTypes { | '/contacts/$contactId' | '/hooks/poll-imap' | '/invoices/$invoiceId' + | '/settings/client-fields' | '/settings/custom-fields' | '/settings/fees' | '/settings/form-templates' @@ -465,6 +476,7 @@ export interface FileRouteTypes { | '/contacts/$contactId' | '/hooks/poll-imap' | '/invoices/$invoiceId' + | '/settings/client-fields' | '/settings/custom-fields' | '/settings/fees' | '/settings/form-templates' @@ -717,6 +729,13 @@ declare module '@tanstack/react-router' { preLoaderRoute: typeof SettingsCustomFieldsRouteImport parentRoute: typeof SettingsRoute } + '/settings/client-fields': { + id: '/settings/client-fields' + path: '/client-fields' + fullPath: '/settings/client-fields' + preLoaderRoute: typeof SettingsClientFieldsRouteImport + parentRoute: typeof SettingsRoute + } '/invoices/$invoiceId': { id: '/invoices/$invoiceId' path: '/invoices/$invoiceId' @@ -805,6 +824,7 @@ declare module '@tanstack/react-router' { } interface SettingsRouteChildren { + SettingsClientFieldsRoute: typeof SettingsClientFieldsRoute SettingsCustomFieldsRoute: typeof SettingsCustomFieldsRoute SettingsFeesRoute: typeof SettingsFeesRoute SettingsFormTemplatesRoute: typeof SettingsFormTemplatesRoute @@ -818,6 +838,7 @@ interface SettingsRouteChildren { } const SettingsRouteChildren: SettingsRouteChildren = { + SettingsClientFieldsRoute: SettingsClientFieldsRoute, SettingsCustomFieldsRoute: SettingsCustomFieldsRoute, SettingsFeesRoute: SettingsFeesRoute, SettingsFormTemplatesRoute: SettingsFormTemplatesRoute,