@@ -13,8 +13,13 @@ import { Route as LoginRouteImport } from './routes/login'
1313import { Route as ExplorePublicKnowledgeRouteImport } from './routes/explore-public-knowledge'
1414import { Route as AuthenticateSuccessRouteImport } from './routes/authenticate-success'
1515import { Route as IndexRouteImport } from './routes/index'
16+ import { Route as ExplorePublicKnowledgeIndexRouteImport } from './routes/explore-public-knowledge/index'
1617import { Route as PublicSpaceSpaceIdRouteImport } from './routes/public-space/$space-id'
1718import { Route as PrivateSpaceSpaceIdRouteImport } from './routes/private-space/$space-id'
19+ import { Route as ExplorePublicKnowledgeProjectsRouteImport } from './routes/explore-public-knowledge/projects'
20+ import { Route as ExplorePublicKnowledgeInvestmentRountsRouteImport } from './routes/explore-public-knowledge/investment-rounts'
21+ import { Route as ExplorePublicKnowledgeDappsRouteImport } from './routes/explore-public-knowledge/dapps'
22+ import { Route as ExplorePublicKnowledgeAssetMarketRouteImport } from './routes/explore-public-knowledge/asset-market'
1823
1924const LoginRoute = LoginRouteImport . update ( {
2025 id : '/login' ,
@@ -36,6 +41,12 @@ const IndexRoute = IndexRouteImport.update({
3641 path : '/' ,
3742 getParentRoute : ( ) => rootRouteImport ,
3843} as any )
44+ const ExplorePublicKnowledgeIndexRoute =
45+ ExplorePublicKnowledgeIndexRouteImport . update ( {
46+ id : '/' ,
47+ path : '/' ,
48+ getParentRoute : ( ) => ExplorePublicKnowledgeRoute ,
49+ } as any )
3950const PublicSpaceSpaceIdRoute = PublicSpaceSpaceIdRouteImport . update ( {
4051 id : '/public-space/$space-id' ,
4152 path : '/public-space/$space-id' ,
@@ -46,31 +57,69 @@ const PrivateSpaceSpaceIdRoute = PrivateSpaceSpaceIdRouteImport.update({
4657 path : '/private-space/$space-id' ,
4758 getParentRoute : ( ) => rootRouteImport ,
4859} as any )
60+ const ExplorePublicKnowledgeProjectsRoute =
61+ ExplorePublicKnowledgeProjectsRouteImport . update ( {
62+ id : '/projects' ,
63+ path : '/projects' ,
64+ getParentRoute : ( ) => ExplorePublicKnowledgeRoute ,
65+ } as any )
66+ const ExplorePublicKnowledgeInvestmentRountsRoute =
67+ ExplorePublicKnowledgeInvestmentRountsRouteImport . update ( {
68+ id : '/investment-rounts' ,
69+ path : '/investment-rounts' ,
70+ getParentRoute : ( ) => ExplorePublicKnowledgeRoute ,
71+ } as any )
72+ const ExplorePublicKnowledgeDappsRoute =
73+ ExplorePublicKnowledgeDappsRouteImport . update ( {
74+ id : '/dapps' ,
75+ path : '/dapps' ,
76+ getParentRoute : ( ) => ExplorePublicKnowledgeRoute ,
77+ } as any )
78+ const ExplorePublicKnowledgeAssetMarketRoute =
79+ ExplorePublicKnowledgeAssetMarketRouteImport . update ( {
80+ id : '/asset-market' ,
81+ path : '/asset-market' ,
82+ getParentRoute : ( ) => ExplorePublicKnowledgeRoute ,
83+ } as any )
4984
5085export interface FileRoutesByFullPath {
5186 '/' : typeof IndexRoute
5287 '/authenticate-success' : typeof AuthenticateSuccessRoute
53- '/explore-public-knowledge' : typeof ExplorePublicKnowledgeRoute
88+ '/explore-public-knowledge' : typeof ExplorePublicKnowledgeRouteWithChildren
5489 '/login' : typeof LoginRoute
90+ '/explore-public-knowledge/asset-market' : typeof ExplorePublicKnowledgeAssetMarketRoute
91+ '/explore-public-knowledge/dapps' : typeof ExplorePublicKnowledgeDappsRoute
92+ '/explore-public-knowledge/investment-rounts' : typeof ExplorePublicKnowledgeInvestmentRountsRoute
93+ '/explore-public-knowledge/projects' : typeof ExplorePublicKnowledgeProjectsRoute
5594 '/private-space/$space-id' : typeof PrivateSpaceSpaceIdRoute
5695 '/public-space/$space-id' : typeof PublicSpaceSpaceIdRoute
96+ '/explore-public-knowledge/' : typeof ExplorePublicKnowledgeIndexRoute
5797}
5898export interface FileRoutesByTo {
5999 '/' : typeof IndexRoute
60100 '/authenticate-success' : typeof AuthenticateSuccessRoute
61- '/explore-public-knowledge' : typeof ExplorePublicKnowledgeRoute
62101 '/login' : typeof LoginRoute
102+ '/explore-public-knowledge/asset-market' : typeof ExplorePublicKnowledgeAssetMarketRoute
103+ '/explore-public-knowledge/dapps' : typeof ExplorePublicKnowledgeDappsRoute
104+ '/explore-public-knowledge/investment-rounts' : typeof ExplorePublicKnowledgeInvestmentRountsRoute
105+ '/explore-public-knowledge/projects' : typeof ExplorePublicKnowledgeProjectsRoute
63106 '/private-space/$space-id' : typeof PrivateSpaceSpaceIdRoute
64107 '/public-space/$space-id' : typeof PublicSpaceSpaceIdRoute
108+ '/explore-public-knowledge' : typeof ExplorePublicKnowledgeIndexRoute
65109}
66110export interface FileRoutesById {
67111 __root__ : typeof rootRouteImport
68112 '/' : typeof IndexRoute
69113 '/authenticate-success' : typeof AuthenticateSuccessRoute
70- '/explore-public-knowledge' : typeof ExplorePublicKnowledgeRoute
114+ '/explore-public-knowledge' : typeof ExplorePublicKnowledgeRouteWithChildren
71115 '/login' : typeof LoginRoute
116+ '/explore-public-knowledge/asset-market' : typeof ExplorePublicKnowledgeAssetMarketRoute
117+ '/explore-public-knowledge/dapps' : typeof ExplorePublicKnowledgeDappsRoute
118+ '/explore-public-knowledge/investment-rounts' : typeof ExplorePublicKnowledgeInvestmentRountsRoute
119+ '/explore-public-knowledge/projects' : typeof ExplorePublicKnowledgeProjectsRoute
72120 '/private-space/$space-id' : typeof PrivateSpaceSpaceIdRoute
73121 '/public-space/$space-id' : typeof PublicSpaceSpaceIdRoute
122+ '/explore-public-knowledge/' : typeof ExplorePublicKnowledgeIndexRoute
74123}
75124export interface FileRouteTypes {
76125 fileRoutesByFullPath : FileRoutesByFullPath
@@ -79,30 +128,44 @@ export interface FileRouteTypes {
79128 | '/authenticate-success'
80129 | '/explore-public-knowledge'
81130 | '/login'
131+ | '/explore-public-knowledge/asset-market'
132+ | '/explore-public-knowledge/dapps'
133+ | '/explore-public-knowledge/investment-rounts'
134+ | '/explore-public-knowledge/projects'
82135 | '/private-space/$space-id'
83136 | '/public-space/$space-id'
137+ | '/explore-public-knowledge/'
84138 fileRoutesByTo : FileRoutesByTo
85139 to :
86140 | '/'
87141 | '/authenticate-success'
88- | '/explore-public-knowledge'
89142 | '/login'
143+ | '/explore-public-knowledge/asset-market'
144+ | '/explore-public-knowledge/dapps'
145+ | '/explore-public-knowledge/investment-rounts'
146+ | '/explore-public-knowledge/projects'
90147 | '/private-space/$space-id'
91148 | '/public-space/$space-id'
149+ | '/explore-public-knowledge'
92150 id :
93151 | '__root__'
94152 | '/'
95153 | '/authenticate-success'
96154 | '/explore-public-knowledge'
97155 | '/login'
156+ | '/explore-public-knowledge/asset-market'
157+ | '/explore-public-knowledge/dapps'
158+ | '/explore-public-knowledge/investment-rounts'
159+ | '/explore-public-knowledge/projects'
98160 | '/private-space/$space-id'
99161 | '/public-space/$space-id'
162+ | '/explore-public-knowledge/'
100163 fileRoutesById : FileRoutesById
101164}
102165export interface RootRouteChildren {
103166 IndexRoute : typeof IndexRoute
104167 AuthenticateSuccessRoute : typeof AuthenticateSuccessRoute
105- ExplorePublicKnowledgeRoute : typeof ExplorePublicKnowledgeRoute
168+ ExplorePublicKnowledgeRoute : typeof ExplorePublicKnowledgeRouteWithChildren
106169 LoginRoute : typeof LoginRoute
107170 PrivateSpaceSpaceIdRoute : typeof PrivateSpaceSpaceIdRoute
108171 PublicSpaceSpaceIdRoute : typeof PublicSpaceSpaceIdRoute
@@ -138,6 +201,13 @@ declare module '@tanstack/react-router' {
138201 preLoaderRoute : typeof IndexRouteImport
139202 parentRoute : typeof rootRouteImport
140203 }
204+ '/explore-public-knowledge/' : {
205+ id : '/explore-public-knowledge/'
206+ path : '/'
207+ fullPath : '/explore-public-knowledge/'
208+ preLoaderRoute : typeof ExplorePublicKnowledgeIndexRouteImport
209+ parentRoute : typeof ExplorePublicKnowledgeRoute
210+ }
141211 '/public-space/$space-id' : {
142212 id : '/public-space/$space-id'
143213 path : '/public-space/$space-id'
@@ -152,13 +222,65 @@ declare module '@tanstack/react-router' {
152222 preLoaderRoute : typeof PrivateSpaceSpaceIdRouteImport
153223 parentRoute : typeof rootRouteImport
154224 }
225+ '/explore-public-knowledge/projects' : {
226+ id : '/explore-public-knowledge/projects'
227+ path : '/projects'
228+ fullPath : '/explore-public-knowledge/projects'
229+ preLoaderRoute : typeof ExplorePublicKnowledgeProjectsRouteImport
230+ parentRoute : typeof ExplorePublicKnowledgeRoute
231+ }
232+ '/explore-public-knowledge/investment-rounts' : {
233+ id : '/explore-public-knowledge/investment-rounts'
234+ path : '/investment-rounts'
235+ fullPath : '/explore-public-knowledge/investment-rounts'
236+ preLoaderRoute : typeof ExplorePublicKnowledgeInvestmentRountsRouteImport
237+ parentRoute : typeof ExplorePublicKnowledgeRoute
238+ }
239+ '/explore-public-knowledge/dapps' : {
240+ id : '/explore-public-knowledge/dapps'
241+ path : '/dapps'
242+ fullPath : '/explore-public-knowledge/dapps'
243+ preLoaderRoute : typeof ExplorePublicKnowledgeDappsRouteImport
244+ parentRoute : typeof ExplorePublicKnowledgeRoute
245+ }
246+ '/explore-public-knowledge/asset-market' : {
247+ id : '/explore-public-knowledge/asset-market'
248+ path : '/asset-market'
249+ fullPath : '/explore-public-knowledge/asset-market'
250+ preLoaderRoute : typeof ExplorePublicKnowledgeAssetMarketRouteImport
251+ parentRoute : typeof ExplorePublicKnowledgeRoute
252+ }
155253 }
156254}
157255
256+ interface ExplorePublicKnowledgeRouteChildren {
257+ ExplorePublicKnowledgeAssetMarketRoute : typeof ExplorePublicKnowledgeAssetMarketRoute
258+ ExplorePublicKnowledgeDappsRoute : typeof ExplorePublicKnowledgeDappsRoute
259+ ExplorePublicKnowledgeInvestmentRountsRoute : typeof ExplorePublicKnowledgeInvestmentRountsRoute
260+ ExplorePublicKnowledgeProjectsRoute : typeof ExplorePublicKnowledgeProjectsRoute
261+ ExplorePublicKnowledgeIndexRoute : typeof ExplorePublicKnowledgeIndexRoute
262+ }
263+
264+ const ExplorePublicKnowledgeRouteChildren : ExplorePublicKnowledgeRouteChildren =
265+ {
266+ ExplorePublicKnowledgeAssetMarketRoute :
267+ ExplorePublicKnowledgeAssetMarketRoute ,
268+ ExplorePublicKnowledgeDappsRoute : ExplorePublicKnowledgeDappsRoute ,
269+ ExplorePublicKnowledgeInvestmentRountsRoute :
270+ ExplorePublicKnowledgeInvestmentRountsRoute ,
271+ ExplorePublicKnowledgeProjectsRoute : ExplorePublicKnowledgeProjectsRoute ,
272+ ExplorePublicKnowledgeIndexRoute : ExplorePublicKnowledgeIndexRoute ,
273+ }
274+
275+ const ExplorePublicKnowledgeRouteWithChildren =
276+ ExplorePublicKnowledgeRoute . _addFileChildren (
277+ ExplorePublicKnowledgeRouteChildren ,
278+ )
279+
158280const rootRouteChildren : RootRouteChildren = {
159281 IndexRoute : IndexRoute ,
160282 AuthenticateSuccessRoute : AuthenticateSuccessRoute ,
161- ExplorePublicKnowledgeRoute : ExplorePublicKnowledgeRoute ,
283+ ExplorePublicKnowledgeRoute : ExplorePublicKnowledgeRouteWithChildren ,
162284 LoginRoute : LoginRoute ,
163285 PrivateSpaceSpaceIdRoute : PrivateSpaceSpaceIdRoute ,
164286 PublicSpaceSpaceIdRoute : PublicSpaceSpaceIdRoute ,
0 commit comments