@@ -23,9 +23,15 @@ 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 PodcastsLazyRouteImport = createFileRoute ( '/podcasts' ) ( )
2627const PlaygroundLazyRouteImport = createFileRoute ( '/playground' ) ( )
2728const LoginLazyRouteImport = createFileRoute ( '/login' ) ( )
2829
30+ const PodcastsLazyRoute = PodcastsLazyRouteImport . update ( {
31+ id : '/podcasts' ,
32+ path : '/podcasts' ,
33+ getParentRoute : ( ) => rootRouteImport ,
34+ } as any ) . lazy ( ( ) => import ( './routes/podcasts.lazy' ) . then ( ( d ) => d . Route ) )
2935const PlaygroundLazyRoute = PlaygroundLazyRouteImport . update ( {
3036 id : '/playground' ,
3137 path : '/playground' ,
@@ -98,6 +104,7 @@ export interface FileRoutesByFullPath {
98104 '/authenticate-success' : typeof AuthenticateSuccessRoute
99105 '/login' : typeof LoginLazyRoute
100106 '/playground' : typeof PlaygroundLazyRoute
107+ '/podcasts' : typeof PodcastsLazyRoute
101108 '/account-inbox/$inboxId' : typeof AccountInboxInboxIdRoute
102109 '/friends/$accountAddress' : typeof FriendsAccountAddressRoute
103110 '/space/$spaceId' : typeof SpaceSpaceIdRouteWithChildren
@@ -113,6 +120,7 @@ export interface FileRoutesByTo {
113120 '/authenticate-success' : typeof AuthenticateSuccessRoute
114121 '/login' : typeof LoginLazyRoute
115122 '/playground' : typeof PlaygroundLazyRoute
123+ '/podcasts' : typeof PodcastsLazyRoute
116124 '/account-inbox/$inboxId' : typeof AccountInboxInboxIdRoute
117125 '/friends/$accountAddress' : typeof FriendsAccountAddressRoute
118126 '/space/$spaceId/chat' : typeof SpaceSpaceIdChatRoute
@@ -128,6 +136,7 @@ export interface FileRoutesById {
128136 '/authenticate-success' : typeof AuthenticateSuccessRoute
129137 '/login' : typeof LoginLazyRoute
130138 '/playground' : typeof PlaygroundLazyRoute
139+ '/podcasts' : typeof PodcastsLazyRoute
131140 '/account-inbox/$inboxId' : typeof AccountInboxInboxIdRoute
132141 '/friends/$accountAddress' : typeof FriendsAccountAddressRoute
133142 '/space/$spaceId' : typeof SpaceSpaceIdRouteWithChildren
@@ -145,6 +154,7 @@ export interface FileRouteTypes {
145154 | '/authenticate-success'
146155 | '/login'
147156 | '/playground'
157+ | '/podcasts'
148158 | '/account-inbox/$inboxId'
149159 | '/friends/$accountAddress'
150160 | '/space/$spaceId'
@@ -160,6 +170,7 @@ export interface FileRouteTypes {
160170 | '/authenticate-success'
161171 | '/login'
162172 | '/playground'
173+ | '/podcasts'
163174 | '/account-inbox/$inboxId'
164175 | '/friends/$accountAddress'
165176 | '/space/$spaceId/chat'
@@ -174,6 +185,7 @@ export interface FileRouteTypes {
174185 | '/authenticate-success'
175186 | '/login'
176187 | '/playground'
188+ | '/podcasts'
177189 | '/account-inbox/$inboxId'
178190 | '/friends/$accountAddress'
179191 | '/space/$spaceId'
@@ -190,13 +202,21 @@ export interface RootRouteChildren {
190202 AuthenticateSuccessRoute : typeof AuthenticateSuccessRoute
191203 LoginLazyRoute : typeof LoginLazyRoute
192204 PlaygroundLazyRoute : typeof PlaygroundLazyRoute
205+ PodcastsLazyRoute : typeof PodcastsLazyRoute
193206 AccountInboxInboxIdRoute : typeof AccountInboxInboxIdRoute
194207 FriendsAccountAddressRoute : typeof FriendsAccountAddressRoute
195208 SpaceSpaceIdRoute : typeof SpaceSpaceIdRouteWithChildren
196209}
197210
198211declare module '@tanstack/react-router' {
199212 interface FileRoutesByPath {
213+ '/podcasts' : {
214+ id : '/podcasts'
215+ path : '/podcasts'
216+ fullPath : '/podcasts'
217+ preLoaderRoute : typeof PodcastsLazyRouteImport
218+ parentRoute : typeof rootRouteImport
219+ }
200220 '/playground' : {
201221 id : '/playground'
202222 path : '/playground'
@@ -318,6 +338,7 @@ const rootRouteChildren: RootRouteChildren = {
318338 AuthenticateSuccessRoute : AuthenticateSuccessRoute ,
319339 LoginLazyRoute : LoginLazyRoute ,
320340 PlaygroundLazyRoute : PlaygroundLazyRoute ,
341+ PodcastsLazyRoute : PodcastsLazyRoute ,
321342 AccountInboxInboxIdRoute : AccountInboxInboxIdRoute ,
322343 FriendsAccountAddressRoute : FriendsAccountAddressRoute ,
323344 SpaceSpaceIdRoute : SpaceSpaceIdRouteWithChildren ,
0 commit comments