@@ -23,10 +23,18 @@ import { Route as SpaceSpaceIdPlaygroundRouteImport } from './routes/space/$spac
2323import { Route as SpaceSpaceIdEventsRouteImport } from './routes/space/$spaceId/events'
2424import { Route as SpaceSpaceIdChatRouteImport } from './routes/space/$spaceId/chat'
2525
26+ const PodcastsInfiniteLazyRouteImport = createFileRoute ( '/podcasts-infinite' ) ( )
2627const PodcastsLazyRouteImport = createFileRoute ( '/podcasts' ) ( )
2728const PlaygroundLazyRouteImport = createFileRoute ( '/playground' ) ( )
2829const LoginLazyRouteImport = createFileRoute ( '/login' ) ( )
2930
31+ const PodcastsInfiniteLazyRoute = PodcastsInfiniteLazyRouteImport . update ( {
32+ id : '/podcasts-infinite' ,
33+ path : '/podcasts-infinite' ,
34+ getParentRoute : ( ) => rootRouteImport ,
35+ } as any ) . lazy ( ( ) =>
36+ import ( './routes/podcasts-infinite.lazy' ) . then ( ( d ) => d . Route ) ,
37+ )
3038const PodcastsLazyRoute = PodcastsLazyRouteImport . update ( {
3139 id : '/podcasts' ,
3240 path : '/podcasts' ,
@@ -105,6 +113,7 @@ export interface FileRoutesByFullPath {
105113 '/login' : typeof LoginLazyRoute
106114 '/playground' : typeof PlaygroundLazyRoute
107115 '/podcasts' : typeof PodcastsLazyRoute
116+ '/podcasts-infinite' : typeof PodcastsInfiniteLazyRoute
108117 '/account-inbox/$inboxId' : typeof AccountInboxInboxIdRoute
109118 '/friends/$accountAddress' : typeof FriendsAccountAddressRoute
110119 '/space/$spaceId' : typeof SpaceSpaceIdRouteWithChildren
@@ -121,6 +130,7 @@ export interface FileRoutesByTo {
121130 '/login' : typeof LoginLazyRoute
122131 '/playground' : typeof PlaygroundLazyRoute
123132 '/podcasts' : typeof PodcastsLazyRoute
133+ '/podcasts-infinite' : typeof PodcastsInfiniteLazyRoute
124134 '/account-inbox/$inboxId' : typeof AccountInboxInboxIdRoute
125135 '/friends/$accountAddress' : typeof FriendsAccountAddressRoute
126136 '/space/$spaceId/chat' : typeof SpaceSpaceIdChatRoute
@@ -137,6 +147,7 @@ export interface FileRoutesById {
137147 '/login' : typeof LoginLazyRoute
138148 '/playground' : typeof PlaygroundLazyRoute
139149 '/podcasts' : typeof PodcastsLazyRoute
150+ '/podcasts-infinite' : typeof PodcastsInfiniteLazyRoute
140151 '/account-inbox/$inboxId' : typeof AccountInboxInboxIdRoute
141152 '/friends/$accountAddress' : typeof FriendsAccountAddressRoute
142153 '/space/$spaceId' : typeof SpaceSpaceIdRouteWithChildren
@@ -155,6 +166,7 @@ export interface FileRouteTypes {
155166 | '/login'
156167 | '/playground'
157168 | '/podcasts'
169+ | '/podcasts-infinite'
158170 | '/account-inbox/$inboxId'
159171 | '/friends/$accountAddress'
160172 | '/space/$spaceId'
@@ -171,6 +183,7 @@ export interface FileRouteTypes {
171183 | '/login'
172184 | '/playground'
173185 | '/podcasts'
186+ | '/podcasts-infinite'
174187 | '/account-inbox/$inboxId'
175188 | '/friends/$accountAddress'
176189 | '/space/$spaceId/chat'
@@ -186,6 +199,7 @@ export interface FileRouteTypes {
186199 | '/login'
187200 | '/playground'
188201 | '/podcasts'
202+ | '/podcasts-infinite'
189203 | '/account-inbox/$inboxId'
190204 | '/friends/$accountAddress'
191205 | '/space/$spaceId'
@@ -203,13 +217,21 @@ export interface RootRouteChildren {
203217 LoginLazyRoute : typeof LoginLazyRoute
204218 PlaygroundLazyRoute : typeof PlaygroundLazyRoute
205219 PodcastsLazyRoute : typeof PodcastsLazyRoute
220+ PodcastsInfiniteLazyRoute : typeof PodcastsInfiniteLazyRoute
206221 AccountInboxInboxIdRoute : typeof AccountInboxInboxIdRoute
207222 FriendsAccountAddressRoute : typeof FriendsAccountAddressRoute
208223 SpaceSpaceIdRoute : typeof SpaceSpaceIdRouteWithChildren
209224}
210225
211226declare module '@tanstack/react-router' {
212227 interface FileRoutesByPath {
228+ '/podcasts-infinite' : {
229+ id : '/podcasts-infinite'
230+ path : '/podcasts-infinite'
231+ fullPath : '/podcasts-infinite'
232+ preLoaderRoute : typeof PodcastsInfiniteLazyRouteImport
233+ parentRoute : typeof rootRouteImport
234+ }
213235 '/podcasts' : {
214236 id : '/podcasts'
215237 path : '/podcasts'
@@ -339,6 +361,7 @@ const rootRouteChildren: RootRouteChildren = {
339361 LoginLazyRoute : LoginLazyRoute ,
340362 PlaygroundLazyRoute : PlaygroundLazyRoute ,
341363 PodcastsLazyRoute : PodcastsLazyRoute ,
364+ PodcastsInfiniteLazyRoute : PodcastsInfiniteLazyRoute ,
342365 AccountInboxInboxIdRoute : AccountInboxInboxIdRoute ,
343366 FriendsAccountAddressRoute : FriendsAccountAddressRoute ,
344367 SpaceSpaceIdRoute : SpaceSpaceIdRouteWithChildren ,
0 commit comments