Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
515bf890c6
commit
601bb79469
@@ -41,6 +41,7 @@ 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 PayIdRouteImport } from './routes/pay.$id'
|
||||
import { Route as PSlugRouteImport } from './routes/p.$slug'
|
||||
import { Route as InvoicesNewRouteImport } from './routes/invoices.new'
|
||||
import { Route as InvoicesInvoiceIdRouteImport } from './routes/invoices.$invoiceId'
|
||||
import { Route as HooksPollImapRouteImport } from './routes/hooks/poll-imap'
|
||||
@@ -54,6 +55,7 @@ import { Route as ApiStripeWebhookRouteImport } from './routes/api.stripe-webhoo
|
||||
import { Route as AdminUsersRouteImport } from './routes/admin.users'
|
||||
import { Route as SettingsPublicPagesIndexRouteImport } from './routes/settings.public-pages.index'
|
||||
import { Route as DocumentsTemplatesIndexRouteImport } from './routes/documents.templates.index'
|
||||
import { Route as SettingsPublicPagesPageIdRouteImport } from './routes/settings.public-pages.$pageId'
|
||||
import { Route as LovableEmailSuppressionRouteImport } from './routes/lovable/email/suppression'
|
||||
import { Route as InvoicesNewClientIdRouteImport } from './routes/invoices.new.$clientId'
|
||||
import { Route as DocumentsTemplatesNewRouteImport } from './routes/documents.templates.new'
|
||||
@@ -225,6 +227,11 @@ const PayIdRoute = PayIdRouteImport.update({
|
||||
path: '/pay/$id',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const PSlugRoute = PSlugRouteImport.update({
|
||||
id: '/p/$slug',
|
||||
path: '/p/$slug',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const InvoicesNewRoute = InvoicesNewRouteImport.update({
|
||||
id: '/invoices/new',
|
||||
path: '/invoices/new',
|
||||
@@ -291,6 +298,12 @@ const DocumentsTemplatesIndexRoute = DocumentsTemplatesIndexRouteImport.update({
|
||||
path: '/documents/templates/',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const SettingsPublicPagesPageIdRoute =
|
||||
SettingsPublicPagesPageIdRouteImport.update({
|
||||
id: '/public-pages/$pageId',
|
||||
path: '/public-pages/$pageId',
|
||||
getParentRoute: () => SettingsRoute,
|
||||
} as any)
|
||||
const LovableEmailSuppressionRoute = LovableEmailSuppressionRouteImport.update({
|
||||
id: '/lovable/email/suppression',
|
||||
path: '/lovable/email/suppression',
|
||||
@@ -363,6 +376,7 @@ export interface FileRoutesByFullPath {
|
||||
'/hooks/poll-imap': typeof HooksPollImapRoute
|
||||
'/invoices/$invoiceId': typeof InvoicesInvoiceIdRoute
|
||||
'/invoices/new': typeof InvoicesNewRouteWithChildren
|
||||
'/p/$slug': typeof PSlugRoute
|
||||
'/pay/$id': typeof PayIdRoute
|
||||
'/settings/client-fields': typeof SettingsClientFieldsRoute
|
||||
'/settings/custom-fields': typeof SettingsCustomFieldsRoute
|
||||
@@ -398,6 +412,7 @@ export interface FileRoutesByFullPath {
|
||||
'/documents/templates/new': typeof DocumentsTemplatesNewRoute
|
||||
'/invoices/new/$clientId': typeof InvoicesNewClientIdRoute
|
||||
'/lovable/email/suppression': typeof LovableEmailSuppressionRoute
|
||||
'/settings/public-pages/$pageId': typeof SettingsPublicPagesPageIdRoute
|
||||
'/documents/templates/': typeof DocumentsTemplatesIndexRoute
|
||||
'/settings/public-pages/': typeof SettingsPublicPagesIndexRoute
|
||||
'/lovable/email/queue/process': typeof LovableEmailQueueProcessRoute
|
||||
@@ -419,6 +434,7 @@ export interface FileRoutesByTo {
|
||||
'/hooks/poll-imap': typeof HooksPollImapRoute
|
||||
'/invoices/$invoiceId': typeof InvoicesInvoiceIdRoute
|
||||
'/invoices/new': typeof InvoicesNewRouteWithChildren
|
||||
'/p/$slug': typeof PSlugRoute
|
||||
'/pay/$id': typeof PayIdRoute
|
||||
'/settings/client-fields': typeof SettingsClientFieldsRoute
|
||||
'/settings/custom-fields': typeof SettingsCustomFieldsRoute
|
||||
@@ -454,6 +470,7 @@ export interface FileRoutesByTo {
|
||||
'/documents/templates/new': typeof DocumentsTemplatesNewRoute
|
||||
'/invoices/new/$clientId': typeof InvoicesNewClientIdRoute
|
||||
'/lovable/email/suppression': typeof LovableEmailSuppressionRoute
|
||||
'/settings/public-pages/$pageId': typeof SettingsPublicPagesPageIdRoute
|
||||
'/documents/templates': typeof DocumentsTemplatesIndexRoute
|
||||
'/settings/public-pages': typeof SettingsPublicPagesIndexRoute
|
||||
'/lovable/email/queue/process': typeof LovableEmailQueueProcessRoute
|
||||
@@ -477,6 +494,7 @@ export interface FileRoutesById {
|
||||
'/hooks/poll-imap': typeof HooksPollImapRoute
|
||||
'/invoices/$invoiceId': typeof InvoicesInvoiceIdRoute
|
||||
'/invoices/new': typeof InvoicesNewRouteWithChildren
|
||||
'/p/$slug': typeof PSlugRoute
|
||||
'/pay/$id': typeof PayIdRoute
|
||||
'/settings/client-fields': typeof SettingsClientFieldsRoute
|
||||
'/settings/custom-fields': typeof SettingsCustomFieldsRoute
|
||||
@@ -512,6 +530,7 @@ export interface FileRoutesById {
|
||||
'/documents/templates/new': typeof DocumentsTemplatesNewRoute
|
||||
'/invoices/new/$clientId': typeof InvoicesNewClientIdRoute
|
||||
'/lovable/email/suppression': typeof LovableEmailSuppressionRoute
|
||||
'/settings/public-pages/$pageId': typeof SettingsPublicPagesPageIdRoute
|
||||
'/documents/templates/': typeof DocumentsTemplatesIndexRoute
|
||||
'/settings/public-pages/': typeof SettingsPublicPagesIndexRoute
|
||||
'/lovable/email/queue/process': typeof LovableEmailQueueProcessRoute
|
||||
@@ -536,6 +555,7 @@ export interface FileRouteTypes {
|
||||
| '/hooks/poll-imap'
|
||||
| '/invoices/$invoiceId'
|
||||
| '/invoices/new'
|
||||
| '/p/$slug'
|
||||
| '/pay/$id'
|
||||
| '/settings/client-fields'
|
||||
| '/settings/custom-fields'
|
||||
@@ -571,6 +591,7 @@ export interface FileRouteTypes {
|
||||
| '/documents/templates/new'
|
||||
| '/invoices/new/$clientId'
|
||||
| '/lovable/email/suppression'
|
||||
| '/settings/public-pages/$pageId'
|
||||
| '/documents/templates/'
|
||||
| '/settings/public-pages/'
|
||||
| '/lovable/email/queue/process'
|
||||
@@ -592,6 +613,7 @@ export interface FileRouteTypes {
|
||||
| '/hooks/poll-imap'
|
||||
| '/invoices/$invoiceId'
|
||||
| '/invoices/new'
|
||||
| '/p/$slug'
|
||||
| '/pay/$id'
|
||||
| '/settings/client-fields'
|
||||
| '/settings/custom-fields'
|
||||
@@ -627,6 +649,7 @@ export interface FileRouteTypes {
|
||||
| '/documents/templates/new'
|
||||
| '/invoices/new/$clientId'
|
||||
| '/lovable/email/suppression'
|
||||
| '/settings/public-pages/$pageId'
|
||||
| '/documents/templates'
|
||||
| '/settings/public-pages'
|
||||
| '/lovable/email/queue/process'
|
||||
@@ -649,6 +672,7 @@ export interface FileRouteTypes {
|
||||
| '/hooks/poll-imap'
|
||||
| '/invoices/$invoiceId'
|
||||
| '/invoices/new'
|
||||
| '/p/$slug'
|
||||
| '/pay/$id'
|
||||
| '/settings/client-fields'
|
||||
| '/settings/custom-fields'
|
||||
@@ -684,6 +708,7 @@ export interface FileRouteTypes {
|
||||
| '/documents/templates/new'
|
||||
| '/invoices/new/$clientId'
|
||||
| '/lovable/email/suppression'
|
||||
| '/settings/public-pages/$pageId'
|
||||
| '/documents/templates/'
|
||||
| '/settings/public-pages/'
|
||||
| '/lovable/email/queue/process'
|
||||
@@ -707,6 +732,7 @@ export interface RootRouteChildren {
|
||||
HooksPollImapRoute: typeof HooksPollImapRoute
|
||||
InvoicesInvoiceIdRoute: typeof InvoicesInvoiceIdRoute
|
||||
InvoicesNewRoute: typeof InvoicesNewRouteWithChildren
|
||||
PSlugRoute: typeof PSlugRoute
|
||||
PayIdRoute: typeof PayIdRoute
|
||||
ArchiveIndexRoute: typeof ArchiveIndexRoute
|
||||
CalendarIndexRoute: typeof CalendarIndexRoute
|
||||
@@ -961,6 +987,13 @@ declare module '@tanstack/react-router' {
|
||||
preLoaderRoute: typeof PayIdRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/p/$slug': {
|
||||
id: '/p/$slug'
|
||||
path: '/p/$slug'
|
||||
fullPath: '/p/$slug'
|
||||
preLoaderRoute: typeof PSlugRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/invoices/new': {
|
||||
id: '/invoices/new'
|
||||
path: '/invoices/new'
|
||||
@@ -1052,6 +1085,13 @@ declare module '@tanstack/react-router' {
|
||||
preLoaderRoute: typeof DocumentsTemplatesIndexRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/settings/public-pages/$pageId': {
|
||||
id: '/settings/public-pages/$pageId'
|
||||
path: '/public-pages/$pageId'
|
||||
fullPath: '/settings/public-pages/$pageId'
|
||||
preLoaderRoute: typeof SettingsPublicPagesPageIdRouteImport
|
||||
parentRoute: typeof SettingsRoute
|
||||
}
|
||||
'/lovable/email/suppression': {
|
||||
id: '/lovable/email/suppression'
|
||||
path: '/lovable/email/suppression'
|
||||
@@ -1137,6 +1177,7 @@ interface SettingsRouteChildren {
|
||||
SettingsWorkflowRoute: typeof SettingsWorkflowRoute
|
||||
SettingsWorkflowsRoute: typeof SettingsWorkflowsRoute
|
||||
SettingsIndexRoute: typeof SettingsIndexRoute
|
||||
SettingsPublicPagesPageIdRoute: typeof SettingsPublicPagesPageIdRoute
|
||||
SettingsPublicPagesIndexRoute: typeof SettingsPublicPagesIndexRoute
|
||||
}
|
||||
|
||||
@@ -1152,6 +1193,7 @@ const SettingsRouteChildren: SettingsRouteChildren = {
|
||||
SettingsWorkflowRoute: SettingsWorkflowRoute,
|
||||
SettingsWorkflowsRoute: SettingsWorkflowsRoute,
|
||||
SettingsIndexRoute: SettingsIndexRoute,
|
||||
SettingsPublicPagesPageIdRoute: SettingsPublicPagesPageIdRoute,
|
||||
SettingsPublicPagesIndexRoute: SettingsPublicPagesIndexRoute,
|
||||
}
|
||||
|
||||
@@ -1199,6 +1241,7 @@ const rootRouteChildren: RootRouteChildren = {
|
||||
HooksPollImapRoute: HooksPollImapRoute,
|
||||
InvoicesInvoiceIdRoute: InvoicesInvoiceIdRoute,
|
||||
InvoicesNewRoute: InvoicesNewRouteWithChildren,
|
||||
PSlugRoute: PSlugRoute,
|
||||
PayIdRoute: PayIdRoute,
|
||||
ArchiveIndexRoute: ArchiveIndexRoute,
|
||||
CalendarIndexRoute: CalendarIndexRoute,
|
||||
|
||||
Reference in New Issue
Block a user