chore(frontend): add generated route tree for Docker build
This commit is contained in:
@@ -9,6 +9,7 @@
|
|||||||
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
|
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
|
||||||
|
|
||||||
import { Route as rootRouteImport } from './routes/__root'
|
import { Route as rootRouteImport } from './routes/__root'
|
||||||
|
import { Route as ResetPasswordRouteImport } from './routes/reset-password'
|
||||||
import { Route as OnboardRouteImport } from './routes/onboard'
|
import { Route as OnboardRouteImport } from './routes/onboard'
|
||||||
import { Route as LoginRouteImport } from './routes/login'
|
import { Route as LoginRouteImport } from './routes/login'
|
||||||
import { Route as AppRouteRouteImport } from './routes/_app/route'
|
import { Route as AppRouteRouteImport } from './routes/_app/route'
|
||||||
@@ -21,6 +22,11 @@ import { Route as ComplexSlugBookingIndexRouteImport } from './routes/$complexSl
|
|||||||
import { Route as ComplexSlugBookingConfirmedBookingCodeRouteImport } from './routes/$complexSlug/booking/confirmed/$bookingCode'
|
import { Route as ComplexSlugBookingConfirmedBookingCodeRouteImport } from './routes/$complexSlug/booking/confirmed/$bookingCode'
|
||||||
import { Route as AppAuthenticatedComplexSlugEditRouteImport } from './routes/_app/_authenticated/complex/$slug/edit'
|
import { Route as AppAuthenticatedComplexSlugEditRouteImport } from './routes/_app/_authenticated/complex/$slug/edit'
|
||||||
|
|
||||||
|
const ResetPasswordRoute = ResetPasswordRouteImport.update({
|
||||||
|
id: '/reset-password',
|
||||||
|
path: '/reset-password',
|
||||||
|
getParentRoute: () => rootRouteImport,
|
||||||
|
} as any)
|
||||||
const OnboardRoute = OnboardRouteImport.update({
|
const OnboardRoute = OnboardRouteImport.update({
|
||||||
id: '/onboard',
|
id: '/onboard',
|
||||||
path: '/onboard',
|
path: '/onboard',
|
||||||
@@ -81,6 +87,7 @@ export interface FileRoutesByFullPath {
|
|||||||
'/': typeof AppAuthenticatedIndexRoute
|
'/': typeof AppAuthenticatedIndexRoute
|
||||||
'/login': typeof LoginRoute
|
'/login': typeof LoginRoute
|
||||||
'/onboard': typeof OnboardRoute
|
'/onboard': typeof OnboardRoute
|
||||||
|
'/reset-password': typeof ResetPasswordRoute
|
||||||
'/$complexSlug/booking': typeof ComplexSlugBookingRouteWithChildren
|
'/$complexSlug/booking': typeof ComplexSlugBookingRouteWithChildren
|
||||||
'/about': typeof AppAboutRoute
|
'/about': typeof AppAboutRoute
|
||||||
'/profile': typeof AppProfileRoute
|
'/profile': typeof AppProfileRoute
|
||||||
@@ -92,6 +99,7 @@ export interface FileRoutesByTo {
|
|||||||
'/': typeof AppAuthenticatedIndexRoute
|
'/': typeof AppAuthenticatedIndexRoute
|
||||||
'/login': typeof LoginRoute
|
'/login': typeof LoginRoute
|
||||||
'/onboard': typeof OnboardRoute
|
'/onboard': typeof OnboardRoute
|
||||||
|
'/reset-password': typeof ResetPasswordRoute
|
||||||
'/about': typeof AppAboutRoute
|
'/about': typeof AppAboutRoute
|
||||||
'/profile': typeof AppProfileRoute
|
'/profile': typeof AppProfileRoute
|
||||||
'/$complexSlug/booking': typeof ComplexSlugBookingIndexRoute
|
'/$complexSlug/booking': typeof ComplexSlugBookingIndexRoute
|
||||||
@@ -103,6 +111,7 @@ export interface FileRoutesById {
|
|||||||
'/_app': typeof AppRouteRouteWithChildren
|
'/_app': typeof AppRouteRouteWithChildren
|
||||||
'/login': typeof LoginRoute
|
'/login': typeof LoginRoute
|
||||||
'/onboard': typeof OnboardRoute
|
'/onboard': typeof OnboardRoute
|
||||||
|
'/reset-password': typeof ResetPasswordRoute
|
||||||
'/_app/_authenticated': typeof AppAuthenticatedRouteRouteWithChildren
|
'/_app/_authenticated': typeof AppAuthenticatedRouteRouteWithChildren
|
||||||
'/$complexSlug/booking': typeof ComplexSlugBookingRouteWithChildren
|
'/$complexSlug/booking': typeof ComplexSlugBookingRouteWithChildren
|
||||||
'/_app/about': typeof AppAboutRoute
|
'/_app/about': typeof AppAboutRoute
|
||||||
@@ -118,6 +127,7 @@ export interface FileRouteTypes {
|
|||||||
| '/'
|
| '/'
|
||||||
| '/login'
|
| '/login'
|
||||||
| '/onboard'
|
| '/onboard'
|
||||||
|
| '/reset-password'
|
||||||
| '/$complexSlug/booking'
|
| '/$complexSlug/booking'
|
||||||
| '/about'
|
| '/about'
|
||||||
| '/profile'
|
| '/profile'
|
||||||
@@ -129,6 +139,7 @@ export interface FileRouteTypes {
|
|||||||
| '/'
|
| '/'
|
||||||
| '/login'
|
| '/login'
|
||||||
| '/onboard'
|
| '/onboard'
|
||||||
|
| '/reset-password'
|
||||||
| '/about'
|
| '/about'
|
||||||
| '/profile'
|
| '/profile'
|
||||||
| '/$complexSlug/booking'
|
| '/$complexSlug/booking'
|
||||||
@@ -139,6 +150,7 @@ export interface FileRouteTypes {
|
|||||||
| '/_app'
|
| '/_app'
|
||||||
| '/login'
|
| '/login'
|
||||||
| '/onboard'
|
| '/onboard'
|
||||||
|
| '/reset-password'
|
||||||
| '/_app/_authenticated'
|
| '/_app/_authenticated'
|
||||||
| '/$complexSlug/booking'
|
| '/$complexSlug/booking'
|
||||||
| '/_app/about'
|
| '/_app/about'
|
||||||
@@ -153,11 +165,19 @@ export interface RootRouteChildren {
|
|||||||
AppRouteRoute: typeof AppRouteRouteWithChildren
|
AppRouteRoute: typeof AppRouteRouteWithChildren
|
||||||
LoginRoute: typeof LoginRoute
|
LoginRoute: typeof LoginRoute
|
||||||
OnboardRoute: typeof OnboardRoute
|
OnboardRoute: typeof OnboardRoute
|
||||||
|
ResetPasswordRoute: typeof ResetPasswordRoute
|
||||||
ComplexSlugBookingRoute: typeof ComplexSlugBookingRouteWithChildren
|
ComplexSlugBookingRoute: typeof ComplexSlugBookingRouteWithChildren
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module '@tanstack/react-router' {
|
declare module '@tanstack/react-router' {
|
||||||
interface FileRoutesByPath {
|
interface FileRoutesByPath {
|
||||||
|
'/reset-password': {
|
||||||
|
id: '/reset-password'
|
||||||
|
path: '/reset-password'
|
||||||
|
fullPath: '/reset-password'
|
||||||
|
preLoaderRoute: typeof ResetPasswordRouteImport
|
||||||
|
parentRoute: typeof rootRouteImport
|
||||||
|
}
|
||||||
'/onboard': {
|
'/onboard': {
|
||||||
id: '/onboard'
|
id: '/onboard'
|
||||||
path: '/onboard'
|
path: '/onboard'
|
||||||
@@ -287,6 +307,7 @@ const rootRouteChildren: RootRouteChildren = {
|
|||||||
AppRouteRoute: AppRouteRouteWithChildren,
|
AppRouteRoute: AppRouteRouteWithChildren,
|
||||||
LoginRoute: LoginRoute,
|
LoginRoute: LoginRoute,
|
||||||
OnboardRoute: OnboardRoute,
|
OnboardRoute: OnboardRoute,
|
||||||
|
ResetPasswordRoute: ResetPasswordRoute,
|
||||||
ComplexSlugBookingRoute: ComplexSlugBookingRouteWithChildren,
|
ComplexSlugBookingRoute: ComplexSlugBookingRouteWithChildren,
|
||||||
}
|
}
|
||||||
export const routeTree = rootRouteImport
|
export const routeTree = rootRouteImport
|
||||||
|
|||||||
Reference in New Issue
Block a user