Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
d14b0cff42
commit
f0ec108548
@@ -18,6 +18,7 @@ import { Route as StatusIndexRouteImport } from './routes/status.index'
|
||||
import { Route as SettingsIndexRouteImport } from './routes/settings.index'
|
||||
import { Route as ReportsIndexRouteImport } from './routes/reports.index'
|
||||
import { Route as PaymentsIndexRouteImport } from './routes/payments.index'
|
||||
import { Route as PaymentPlansIndexRouteImport } from './routes/payment-plans.index'
|
||||
import { Route as MessagesIndexRouteImport } from './routes/messages.index'
|
||||
import { Route as InvoicesIndexRouteImport } from './routes/invoices.index'
|
||||
import { Route as InboxIndexRouteImport } from './routes/inbox.index'
|
||||
@@ -113,6 +114,11 @@ const PaymentsIndexRoute = PaymentsIndexRouteImport.update({
|
||||
path: '/payments/',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const PaymentPlansIndexRoute = PaymentPlansIndexRouteImport.update({
|
||||
id: '/payment-plans/',
|
||||
path: '/payment-plans/',
|
||||
getParentRoute: () => rootRouteImport,
|
||||
} as any)
|
||||
const MessagesIndexRoute = MessagesIndexRouteImport.update({
|
||||
id: '/messages/',
|
||||
path: '/messages/',
|
||||
@@ -407,6 +413,7 @@ export interface FileRoutesByFullPath {
|
||||
'/inbox/': typeof InboxIndexRoute
|
||||
'/invoices/': typeof InvoicesIndexRoute
|
||||
'/messages/': typeof MessagesIndexRoute
|
||||
'/payment-plans/': typeof PaymentPlansIndexRoute
|
||||
'/payments/': typeof PaymentsIndexRoute
|
||||
'/reports/': typeof ReportsIndexRoute
|
||||
'/settings/': typeof SettingsIndexRoute
|
||||
@@ -466,6 +473,7 @@ export interface FileRoutesByTo {
|
||||
'/inbox': typeof InboxIndexRoute
|
||||
'/invoices': typeof InvoicesIndexRoute
|
||||
'/messages': typeof MessagesIndexRoute
|
||||
'/payment-plans': typeof PaymentPlansIndexRoute
|
||||
'/payments': typeof PaymentsIndexRoute
|
||||
'/reports': typeof ReportsIndexRoute
|
||||
'/settings': typeof SettingsIndexRoute
|
||||
@@ -527,6 +535,7 @@ export interface FileRoutesById {
|
||||
'/inbox/': typeof InboxIndexRoute
|
||||
'/invoices/': typeof InvoicesIndexRoute
|
||||
'/messages/': typeof MessagesIndexRoute
|
||||
'/payment-plans/': typeof PaymentPlansIndexRoute
|
||||
'/payments/': typeof PaymentsIndexRoute
|
||||
'/reports/': typeof ReportsIndexRoute
|
||||
'/settings/': typeof SettingsIndexRoute
|
||||
@@ -589,6 +598,7 @@ export interface FileRouteTypes {
|
||||
| '/inbox/'
|
||||
| '/invoices/'
|
||||
| '/messages/'
|
||||
| '/payment-plans/'
|
||||
| '/payments/'
|
||||
| '/reports/'
|
||||
| '/settings/'
|
||||
@@ -648,6 +658,7 @@ export interface FileRouteTypes {
|
||||
| '/inbox'
|
||||
| '/invoices'
|
||||
| '/messages'
|
||||
| '/payment-plans'
|
||||
| '/payments'
|
||||
| '/reports'
|
||||
| '/settings'
|
||||
@@ -708,6 +719,7 @@ export interface FileRouteTypes {
|
||||
| '/inbox/'
|
||||
| '/invoices/'
|
||||
| '/messages/'
|
||||
| '/payment-plans/'
|
||||
| '/payments/'
|
||||
| '/reports/'
|
||||
| '/settings/'
|
||||
@@ -759,6 +771,7 @@ export interface RootRouteChildren {
|
||||
InboxIndexRoute: typeof InboxIndexRoute
|
||||
InvoicesIndexRoute: typeof InvoicesIndexRoute
|
||||
MessagesIndexRoute: typeof MessagesIndexRoute
|
||||
PaymentPlansIndexRoute: typeof PaymentPlansIndexRoute
|
||||
PaymentsIndexRoute: typeof PaymentsIndexRoute
|
||||
ReportsIndexRoute: typeof ReportsIndexRoute
|
||||
StatusIndexRoute: typeof StatusIndexRoute
|
||||
@@ -839,6 +852,13 @@ declare module '@tanstack/react-router' {
|
||||
preLoaderRoute: typeof PaymentsIndexRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/payment-plans/': {
|
||||
id: '/payment-plans/'
|
||||
path: '/payment-plans'
|
||||
fullPath: '/payment-plans/'
|
||||
preLoaderRoute: typeof PaymentPlansIndexRouteImport
|
||||
parentRoute: typeof rootRouteImport
|
||||
}
|
||||
'/messages/': {
|
||||
id: '/messages/'
|
||||
path: '/messages'
|
||||
@@ -1276,6 +1296,7 @@ const rootRouteChildren: RootRouteChildren = {
|
||||
InboxIndexRoute: InboxIndexRoute,
|
||||
InvoicesIndexRoute: InvoicesIndexRoute,
|
||||
MessagesIndexRoute: MessagesIndexRoute,
|
||||
PaymentPlansIndexRoute: PaymentPlansIndexRoute,
|
||||
PaymentsIndexRoute: PaymentsIndexRoute,
|
||||
ReportsIndexRoute: ReportsIndexRoute,
|
||||
StatusIndexRoute: StatusIndexRoute,
|
||||
|
||||
Reference in New Issue
Block a user