chore(quick-260411-0zq): regenerate route tree with updated search params
- Route tree picks up validateSearch for /global-items/ route - Also adds /setups/ route entry that was missing from previous generation
This commit is contained in:
@@ -12,6 +12,7 @@ import { Route as rootRouteImport } from './routes/__root'
|
|||||||
import { Route as SettingsRouteImport } from './routes/settings'
|
import { Route as SettingsRouteImport } from './routes/settings'
|
||||||
import { Route as LoginRouteImport } from './routes/login'
|
import { Route as LoginRouteImport } from './routes/login'
|
||||||
import { Route as IndexRouteImport } from './routes/index'
|
import { Route as IndexRouteImport } from './routes/index'
|
||||||
|
import { Route as SetupsIndexRouteImport } from './routes/setups/index'
|
||||||
import { Route as GlobalItemsIndexRouteImport } from './routes/global-items/index'
|
import { Route as GlobalItemsIndexRouteImport } from './routes/global-items/index'
|
||||||
import { Route as CollectionIndexRouteImport } from './routes/collection/index'
|
import { Route as CollectionIndexRouteImport } from './routes/collection/index'
|
||||||
import { Route as UsersUserIdRouteImport } from './routes/users/$userId'
|
import { Route as UsersUserIdRouteImport } from './routes/users/$userId'
|
||||||
@@ -36,6 +37,11 @@ const IndexRoute = IndexRouteImport.update({
|
|||||||
path: '/',
|
path: '/',
|
||||||
getParentRoute: () => rootRouteImport,
|
getParentRoute: () => rootRouteImport,
|
||||||
} as any)
|
} as any)
|
||||||
|
const SetupsIndexRoute = SetupsIndexRouteImport.update({
|
||||||
|
id: '/setups/',
|
||||||
|
path: '/setups/',
|
||||||
|
getParentRoute: () => rootRouteImport,
|
||||||
|
} as any)
|
||||||
const GlobalItemsIndexRoute = GlobalItemsIndexRouteImport.update({
|
const GlobalItemsIndexRoute = GlobalItemsIndexRouteImport.update({
|
||||||
id: '/global-items/',
|
id: '/global-items/',
|
||||||
path: '/global-items/',
|
path: '/global-items/',
|
||||||
@@ -88,6 +94,7 @@ export interface FileRoutesByFullPath {
|
|||||||
'/users/$userId': typeof UsersUserIdRoute
|
'/users/$userId': typeof UsersUserIdRoute
|
||||||
'/collection/': typeof CollectionIndexRoute
|
'/collection/': typeof CollectionIndexRoute
|
||||||
'/global-items/': typeof GlobalItemsIndexRoute
|
'/global-items/': typeof GlobalItemsIndexRoute
|
||||||
|
'/setups/': typeof SetupsIndexRoute
|
||||||
'/threads/$threadId/': typeof ThreadsThreadIdIndexRoute
|
'/threads/$threadId/': typeof ThreadsThreadIdIndexRoute
|
||||||
'/threads/$threadId/candidates/$candidateId': typeof ThreadsThreadIdCandidatesCandidateIdRoute
|
'/threads/$threadId/candidates/$candidateId': typeof ThreadsThreadIdCandidatesCandidateIdRoute
|
||||||
}
|
}
|
||||||
@@ -101,6 +108,7 @@ export interface FileRoutesByTo {
|
|||||||
'/users/$userId': typeof UsersUserIdRoute
|
'/users/$userId': typeof UsersUserIdRoute
|
||||||
'/collection': typeof CollectionIndexRoute
|
'/collection': typeof CollectionIndexRoute
|
||||||
'/global-items': typeof GlobalItemsIndexRoute
|
'/global-items': typeof GlobalItemsIndexRoute
|
||||||
|
'/setups': typeof SetupsIndexRoute
|
||||||
'/threads/$threadId': typeof ThreadsThreadIdIndexRoute
|
'/threads/$threadId': typeof ThreadsThreadIdIndexRoute
|
||||||
'/threads/$threadId/candidates/$candidateId': typeof ThreadsThreadIdCandidatesCandidateIdRoute
|
'/threads/$threadId/candidates/$candidateId': typeof ThreadsThreadIdCandidatesCandidateIdRoute
|
||||||
}
|
}
|
||||||
@@ -115,6 +123,7 @@ export interface FileRoutesById {
|
|||||||
'/users/$userId': typeof UsersUserIdRoute
|
'/users/$userId': typeof UsersUserIdRoute
|
||||||
'/collection/': typeof CollectionIndexRoute
|
'/collection/': typeof CollectionIndexRoute
|
||||||
'/global-items/': typeof GlobalItemsIndexRoute
|
'/global-items/': typeof GlobalItemsIndexRoute
|
||||||
|
'/setups/': typeof SetupsIndexRoute
|
||||||
'/threads/$threadId/': typeof ThreadsThreadIdIndexRoute
|
'/threads/$threadId/': typeof ThreadsThreadIdIndexRoute
|
||||||
'/threads/$threadId/candidates/$candidateId': typeof ThreadsThreadIdCandidatesCandidateIdRoute
|
'/threads/$threadId/candidates/$candidateId': typeof ThreadsThreadIdCandidatesCandidateIdRoute
|
||||||
}
|
}
|
||||||
@@ -130,6 +139,7 @@ export interface FileRouteTypes {
|
|||||||
| '/users/$userId'
|
| '/users/$userId'
|
||||||
| '/collection/'
|
| '/collection/'
|
||||||
| '/global-items/'
|
| '/global-items/'
|
||||||
|
| '/setups/'
|
||||||
| '/threads/$threadId/'
|
| '/threads/$threadId/'
|
||||||
| '/threads/$threadId/candidates/$candidateId'
|
| '/threads/$threadId/candidates/$candidateId'
|
||||||
fileRoutesByTo: FileRoutesByTo
|
fileRoutesByTo: FileRoutesByTo
|
||||||
@@ -143,6 +153,7 @@ export interface FileRouteTypes {
|
|||||||
| '/users/$userId'
|
| '/users/$userId'
|
||||||
| '/collection'
|
| '/collection'
|
||||||
| '/global-items'
|
| '/global-items'
|
||||||
|
| '/setups'
|
||||||
| '/threads/$threadId'
|
| '/threads/$threadId'
|
||||||
| '/threads/$threadId/candidates/$candidateId'
|
| '/threads/$threadId/candidates/$candidateId'
|
||||||
id:
|
id:
|
||||||
@@ -156,6 +167,7 @@ export interface FileRouteTypes {
|
|||||||
| '/users/$userId'
|
| '/users/$userId'
|
||||||
| '/collection/'
|
| '/collection/'
|
||||||
| '/global-items/'
|
| '/global-items/'
|
||||||
|
| '/setups/'
|
||||||
| '/threads/$threadId/'
|
| '/threads/$threadId/'
|
||||||
| '/threads/$threadId/candidates/$candidateId'
|
| '/threads/$threadId/candidates/$candidateId'
|
||||||
fileRoutesById: FileRoutesById
|
fileRoutesById: FileRoutesById
|
||||||
@@ -170,6 +182,7 @@ export interface RootRouteChildren {
|
|||||||
UsersUserIdRoute: typeof UsersUserIdRoute
|
UsersUserIdRoute: typeof UsersUserIdRoute
|
||||||
CollectionIndexRoute: typeof CollectionIndexRoute
|
CollectionIndexRoute: typeof CollectionIndexRoute
|
||||||
GlobalItemsIndexRoute: typeof GlobalItemsIndexRoute
|
GlobalItemsIndexRoute: typeof GlobalItemsIndexRoute
|
||||||
|
SetupsIndexRoute: typeof SetupsIndexRoute
|
||||||
ThreadsThreadIdIndexRoute: typeof ThreadsThreadIdIndexRoute
|
ThreadsThreadIdIndexRoute: typeof ThreadsThreadIdIndexRoute
|
||||||
ThreadsThreadIdCandidatesCandidateIdRoute: typeof ThreadsThreadIdCandidatesCandidateIdRoute
|
ThreadsThreadIdCandidatesCandidateIdRoute: typeof ThreadsThreadIdCandidatesCandidateIdRoute
|
||||||
}
|
}
|
||||||
@@ -197,6 +210,13 @@ declare module '@tanstack/react-router' {
|
|||||||
preLoaderRoute: typeof IndexRouteImport
|
preLoaderRoute: typeof IndexRouteImport
|
||||||
parentRoute: typeof rootRouteImport
|
parentRoute: typeof rootRouteImport
|
||||||
}
|
}
|
||||||
|
'/setups/': {
|
||||||
|
id: '/setups/'
|
||||||
|
path: '/setups'
|
||||||
|
fullPath: '/setups/'
|
||||||
|
preLoaderRoute: typeof SetupsIndexRouteImport
|
||||||
|
parentRoute: typeof rootRouteImport
|
||||||
|
}
|
||||||
'/global-items/': {
|
'/global-items/': {
|
||||||
id: '/global-items/'
|
id: '/global-items/'
|
||||||
path: '/global-items'
|
path: '/global-items'
|
||||||
@@ -266,6 +286,7 @@ const rootRouteChildren: RootRouteChildren = {
|
|||||||
UsersUserIdRoute: UsersUserIdRoute,
|
UsersUserIdRoute: UsersUserIdRoute,
|
||||||
CollectionIndexRoute: CollectionIndexRoute,
|
CollectionIndexRoute: CollectionIndexRoute,
|
||||||
GlobalItemsIndexRoute: GlobalItemsIndexRoute,
|
GlobalItemsIndexRoute: GlobalItemsIndexRoute,
|
||||||
|
SetupsIndexRoute: SetupsIndexRoute,
|
||||||
ThreadsThreadIdIndexRoute: ThreadsThreadIdIndexRoute,
|
ThreadsThreadIdIndexRoute: ThreadsThreadIdIndexRoute,
|
||||||
ThreadsThreadIdCandidatesCandidateIdRoute:
|
ThreadsThreadIdCandidatesCandidateIdRoute:
|
||||||
ThreadsThreadIdCandidatesCandidateIdRoute,
|
ThreadsThreadIdCandidatesCandidateIdRoute,
|
||||||
|
|||||||
Reference in New Issue
Block a user