@@ -14,6 +14,7 @@ import { Route as AppRouteImport } from './routes/_app'
1414import { Route as AppIndexRouteImport } from './routes/_app/index'
1515import { Route as PasswordResetRouteImport } from './routes/password/reset'
1616import { Route as AccountsEmailsignupRouteImport } from './routes/accounts/emailsignup'
17+ import { Route as AppTestRouteImport } from './routes/_app/test'
1718import { Route as AppExploreRouteImport } from './routes/_app/explore'
1819import { Route as AppProfile_nameRouteImport } from './routes/_app/$profile_name'
1920import { Route as AppProfile_nameIndexRouteImport } from './routes/_app/$profile_name/index'
@@ -45,6 +46,11 @@ const AccountsEmailsignupRoute = AccountsEmailsignupRouteImport.update({
4546 path : '/accounts/emailsignup' ,
4647 getParentRoute : ( ) => rootRouteImport ,
4748} as any )
49+ const AppTestRoute = AppTestRouteImport . update ( {
50+ id : '/test' ,
51+ path : '/test' ,
52+ getParentRoute : ( ) => AppRoute ,
53+ } as any )
4854const AppExploreRoute = AppExploreRouteImport . update ( {
4955 id : '/explore' ,
5056 path : '/explore' ,
@@ -81,6 +87,7 @@ export interface FileRoutesByFullPath {
8187 '/login' : typeof LoginRoute
8288 '/$profile_name' : typeof AppProfile_nameRouteWithChildren
8389 '/explore' : typeof AppExploreRoute
90+ '/test' : typeof AppTestRoute
8491 '/accounts/emailsignup' : typeof AccountsEmailsignupRoute
8592 '/password/reset' : typeof PasswordResetRoute
8693 '/' : typeof AppIndexRoute
@@ -92,6 +99,7 @@ export interface FileRoutesByFullPath {
9299export interface FileRoutesByTo {
93100 '/login' : typeof LoginRoute
94101 '/explore' : typeof AppExploreRoute
102+ '/test' : typeof AppTestRoute
95103 '/accounts/emailsignup' : typeof AccountsEmailsignupRoute
96104 '/password/reset' : typeof PasswordResetRoute
97105 '/' : typeof AppIndexRoute
@@ -106,6 +114,7 @@ export interface FileRoutesById {
106114 '/login' : typeof LoginRoute
107115 '/_app/$profile_name' : typeof AppProfile_nameRouteWithChildren
108116 '/_app/explore' : typeof AppExploreRoute
117+ '/_app/test' : typeof AppTestRoute
109118 '/accounts/emailsignup' : typeof AccountsEmailsignupRoute
110119 '/password/reset' : typeof PasswordResetRoute
111120 '/_app/' : typeof AppIndexRoute
@@ -120,6 +129,7 @@ export interface FileRouteTypes {
120129 | '/login'
121130 | '/$profile_name'
122131 | '/explore'
132+ | '/test'
123133 | '/accounts/emailsignup'
124134 | '/password/reset'
125135 | '/'
@@ -131,6 +141,7 @@ export interface FileRouteTypes {
131141 to :
132142 | '/login'
133143 | '/explore'
144+ | '/test'
134145 | '/accounts/emailsignup'
135146 | '/password/reset'
136147 | '/'
@@ -144,6 +155,7 @@ export interface FileRouteTypes {
144155 | '/login'
145156 | '/_app/$profile_name'
146157 | '/_app/explore'
158+ | '/_app/test'
147159 | '/accounts/emailsignup'
148160 | '/password/reset'
149161 | '/_app/'
@@ -198,6 +210,13 @@ declare module '@tanstack/react-router' {
198210 preLoaderRoute : typeof AccountsEmailsignupRouteImport
199211 parentRoute : typeof rootRouteImport
200212 }
213+ '/_app/test' : {
214+ id : '/_app/test'
215+ path : '/test'
216+ fullPath : '/test'
217+ preLoaderRoute : typeof AppTestRouteImport
218+ parentRoute : typeof AppRoute
219+ }
201220 '/_app/explore' : {
202221 id : '/_app/explore'
203222 path : '/explore'
@@ -254,19 +273,21 @@ const AppProfile_nameRouteChildren: AppProfile_nameRouteChildren = {
254273}
255274
256275const AppProfile_nameRouteWithChildren = AppProfile_nameRoute . _addFileChildren (
257- AppProfile_nameRouteChildren ,
276+ AppProfile_nameRouteChildren
258277)
259278
260279interface AppRouteChildren {
261280 AppProfile_nameRoute : typeof AppProfile_nameRouteWithChildren
262281 AppExploreRoute : typeof AppExploreRoute
282+ AppTestRoute : typeof AppTestRoute
263283 AppIndexRoute : typeof AppIndexRoute
264284 AppPProfile_nameRoute : typeof AppPProfile_nameRoute
265285}
266286
267287const AppRouteChildren : AppRouteChildren = {
268288 AppProfile_nameRoute : AppProfile_nameRouteWithChildren ,
269289 AppExploreRoute : AppExploreRoute ,
290+ AppTestRoute : AppTestRoute ,
270291 AppIndexRoute : AppIndexRoute ,
271292 AppPProfile_nameRoute : AppPProfile_nameRoute ,
272293}
0 commit comments