@@ -23,6 +23,7 @@ import { Route as FormdataContextRouteImport } from './routes/formdata-context'
2323import { Route as EnvOnlyRouteImport } from './routes/env-only'
2424import { Route as DeadCodePreserveRouteImport } from './routes/dead-code-preserve'
2525import { Route as ConsistentRouteImport } from './routes/consistent'
26+ import { Route as AsyncValidationRouteImport } from './routes/async-validation'
2627import { Route as IndexRouteImport } from './routes/index'
2728import { Route as RedirectTestIndexRouteImport } from './routes/redirect-test/index'
2829import { Route as RedirectTestSsrIndexRouteImport } from './routes/redirect-test-ssr/index'
@@ -116,6 +117,11 @@ const ConsistentRoute = ConsistentRouteImport.update({
116117 path : '/consistent' ,
117118 getParentRoute : ( ) => rootRouteImport ,
118119} as any )
120+ const AsyncValidationRoute = AsyncValidationRouteImport . update ( {
121+ id : '/async-validation' ,
122+ path : '/async-validation' ,
123+ getParentRoute : ( ) => rootRouteImport ,
124+ } as any )
119125const IndexRoute = IndexRouteImport . update ( {
120126 id : '/' ,
121127 path : '/' ,
@@ -237,6 +243,7 @@ const FormdataRedirectTargetNameRoute =
237243
238244export interface FileRoutesByFullPath {
239245 '/' : typeof IndexRoute
246+ '/async-validation' : typeof AsyncValidationRoute
240247 '/consistent' : typeof ConsistentRoute
241248 '/dead-code-preserve' : typeof DeadCodePreserveRoute
242249 '/env-only' : typeof EnvOnlyRoute
@@ -275,6 +282,7 @@ export interface FileRoutesByFullPath {
275282}
276283export interface FileRoutesByTo {
277284 '/' : typeof IndexRoute
285+ '/async-validation' : typeof AsyncValidationRoute
278286 '/consistent' : typeof ConsistentRoute
279287 '/dead-code-preserve' : typeof DeadCodePreserveRoute
280288 '/env-only' : typeof EnvOnlyRoute
@@ -314,6 +322,7 @@ export interface FileRoutesByTo {
314322export interface FileRoutesById {
315323 __root__ : typeof rootRouteImport
316324 '/' : typeof IndexRoute
325+ '/async-validation' : typeof AsyncValidationRoute
317326 '/consistent' : typeof ConsistentRoute
318327 '/dead-code-preserve' : typeof DeadCodePreserveRoute
319328 '/env-only' : typeof EnvOnlyRoute
@@ -354,6 +363,7 @@ export interface FileRouteTypes {
354363 fileRoutesByFullPath : FileRoutesByFullPath
355364 fullPaths :
356365 | '/'
366+ | '/async-validation'
357367 | '/consistent'
358368 | '/dead-code-preserve'
359369 | '/env-only'
@@ -392,6 +402,7 @@ export interface FileRouteTypes {
392402 fileRoutesByTo : FileRoutesByTo
393403 to :
394404 | '/'
405+ | '/async-validation'
395406 | '/consistent'
396407 | '/dead-code-preserve'
397408 | '/env-only'
@@ -430,6 +441,7 @@ export interface FileRouteTypes {
430441 id :
431442 | '__root__'
432443 | '/'
444+ | '/async-validation'
433445 | '/consistent'
434446 | '/dead-code-preserve'
435447 | '/env-only'
@@ -469,6 +481,7 @@ export interface FileRouteTypes {
469481}
470482export interface RootRouteChildren {
471483 IndexRoute : typeof IndexRoute
484+ AsyncValidationRoute : typeof AsyncValidationRoute
472485 ConsistentRoute : typeof ConsistentRoute
473486 DeadCodePreserveRoute : typeof DeadCodePreserveRoute
474487 EnvOnlyRoute : typeof EnvOnlyRoute
@@ -606,6 +619,13 @@ declare module '@tanstack/react-router' {
606619 preLoaderRoute : typeof ConsistentRouteImport
607620 parentRoute : typeof rootRouteImport
608621 }
622+ '/async-validation' : {
623+ id : '/async-validation'
624+ path : '/async-validation'
625+ fullPath : '/async-validation'
626+ preLoaderRoute : typeof AsyncValidationRouteImport
627+ parentRoute : typeof rootRouteImport
628+ }
609629 '/' : {
610630 id : '/'
611631 path : '/'
@@ -765,6 +785,7 @@ declare module '@tanstack/react-router' {
765785
766786const rootRouteChildren : RootRouteChildren = {
767787 IndexRoute : IndexRoute ,
788+ AsyncValidationRoute : AsyncValidationRoute ,
768789 ConsistentRoute : ConsistentRoute ,
769790 DeadCodePreserveRoute : DeadCodePreserveRoute ,
770791 EnvOnlyRoute : EnvOnlyRoute ,
0 commit comments