@@ -27,6 +27,7 @@ const PodcastsInfiniteLazyRouteImport = createFileRoute('/podcasts-infinite')()
2727const PodcastsLazyRouteImport = createFileRoute ( '/podcasts' ) ( )
2828const PlaygroundLazyRouteImport = createFileRoute ( '/playground' ) ( )
2929const LoginLazyRouteImport = createFileRoute ( '/login' ) ( )
30+ const BountiesLazyRouteImport = createFileRoute ( '/bounties' ) ( )
3031
3132const PodcastsInfiniteLazyRoute = PodcastsInfiniteLazyRouteImport . update ( {
3233 id : '/podcasts-infinite' ,
@@ -50,6 +51,11 @@ const LoginLazyRoute = LoginLazyRouteImport.update({
5051 path : '/login' ,
5152 getParentRoute : ( ) => rootRouteImport ,
5253} as any ) . lazy ( ( ) => import ( './routes/login.lazy' ) . then ( ( d ) => d . Route ) )
54+ const BountiesLazyRoute = BountiesLazyRouteImport . update ( {
55+ id : '/bounties' ,
56+ path : '/bounties' ,
57+ getParentRoute : ( ) => rootRouteImport ,
58+ } as any ) . lazy ( ( ) => import ( './routes/bounties.lazy' ) . then ( ( d ) => d . Route ) )
5359const AuthenticateSuccessRoute = AuthenticateSuccessRouteImport . update ( {
5460 id : '/authenticate-success' ,
5561 path : '/authenticate-success' ,
@@ -110,6 +116,7 @@ const SpaceSpaceIdChatRoute = SpaceSpaceIdChatRouteImport.update({
110116export interface FileRoutesByFullPath {
111117 '/' : typeof IndexRoute
112118 '/authenticate-success' : typeof AuthenticateSuccessRoute
119+ '/bounties' : typeof BountiesLazyRoute
113120 '/login' : typeof LoginLazyRoute
114121 '/playground' : typeof PlaygroundLazyRoute
115122 '/podcasts' : typeof PodcastsLazyRoute
@@ -127,6 +134,7 @@ export interface FileRoutesByFullPath {
127134export interface FileRoutesByTo {
128135 '/' : typeof IndexRoute
129136 '/authenticate-success' : typeof AuthenticateSuccessRoute
137+ '/bounties' : typeof BountiesLazyRoute
130138 '/login' : typeof LoginLazyRoute
131139 '/playground' : typeof PlaygroundLazyRoute
132140 '/podcasts' : typeof PodcastsLazyRoute
@@ -144,6 +152,7 @@ export interface FileRoutesById {
144152 __root__ : typeof rootRouteImport
145153 '/' : typeof IndexRoute
146154 '/authenticate-success' : typeof AuthenticateSuccessRoute
155+ '/bounties' : typeof BountiesLazyRoute
147156 '/login' : typeof LoginLazyRoute
148157 '/playground' : typeof PlaygroundLazyRoute
149158 '/podcasts' : typeof PodcastsLazyRoute
@@ -163,6 +172,7 @@ export interface FileRouteTypes {
163172 fullPaths :
164173 | '/'
165174 | '/authenticate-success'
175+ | '/bounties'
166176 | '/login'
167177 | '/playground'
168178 | '/podcasts'
@@ -180,6 +190,7 @@ export interface FileRouteTypes {
180190 to :
181191 | '/'
182192 | '/authenticate-success'
193+ | '/bounties'
183194 | '/login'
184195 | '/playground'
185196 | '/podcasts'
@@ -196,6 +207,7 @@ export interface FileRouteTypes {
196207 | '__root__'
197208 | '/'
198209 | '/authenticate-success'
210+ | '/bounties'
199211 | '/login'
200212 | '/playground'
201213 | '/podcasts'
@@ -214,6 +226,7 @@ export interface FileRouteTypes {
214226export interface RootRouteChildren {
215227 IndexRoute : typeof IndexRoute
216228 AuthenticateSuccessRoute : typeof AuthenticateSuccessRoute
229+ BountiesLazyRoute : typeof BountiesLazyRoute
217230 LoginLazyRoute : typeof LoginLazyRoute
218231 PlaygroundLazyRoute : typeof PlaygroundLazyRoute
219232 PodcastsLazyRoute : typeof PodcastsLazyRoute
@@ -253,6 +266,13 @@ declare module '@tanstack/react-router' {
253266 preLoaderRoute : typeof LoginLazyRouteImport
254267 parentRoute : typeof rootRouteImport
255268 }
269+ '/bounties' : {
270+ id : '/bounties'
271+ path : '/bounties'
272+ fullPath : '/bounties'
273+ preLoaderRoute : typeof BountiesLazyRouteImport
274+ parentRoute : typeof rootRouteImport
275+ }
256276 '/authenticate-success' : {
257277 id : '/authenticate-success'
258278 path : '/authenticate-success'
@@ -358,6 +378,7 @@ const SpaceSpaceIdRouteWithChildren = SpaceSpaceIdRoute._addFileChildren(
358378const rootRouteChildren : RootRouteChildren = {
359379 IndexRoute : IndexRoute ,
360380 AuthenticateSuccessRoute : AuthenticateSuccessRoute ,
381+ BountiesLazyRoute : BountiesLazyRoute ,
361382 LoginLazyRoute : LoginLazyRoute ,
362383 PlaygroundLazyRoute : PlaygroundLazyRoute ,
363384 PodcastsLazyRoute : PodcastsLazyRoute ,
0 commit comments