-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathrouteTree.gen.ts
More file actions
392 lines (379 loc) · 14.3 KB
/
Copy pathrouteTree.gen.ts
File metadata and controls
392 lines (379 loc) · 14.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
/* eslint-disable */
// @ts-nocheck
// noinspection JSUnusedGlobalSymbols
// This file was automatically generated by TanStack Router.
// You should NOT make any changes in this file as it will be overwritten.
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
import { createFileRoute } from '@tanstack/react-router'
import { Route as rootRouteImport } from './routes/__root'
import { Route as AuthenticateSuccessRouteImport } from './routes/authenticate-success'
import { Route as IndexRouteImport } from './routes/index'
import { Route as SpaceSpaceIdRouteImport } from './routes/space/$spaceId'
import { Route as FriendsAccountAddressRouteImport } from './routes/friends/$accountAddress'
import { Route as AccountInboxInboxIdRouteImport } from './routes/account-inbox/$inboxId'
import { Route as SpaceSpaceIdIndexRouteImport } from './routes/space/$spaceId/index'
import { Route as SpaceSpaceIdUsersRouteImport } from './routes/space/$spaceId/users'
import { Route as SpaceSpaceIdPublicIntegrationRouteImport } from './routes/space/$spaceId/public-integration'
import { Route as SpaceSpaceIdPlaygroundRouteImport } from './routes/space/$spaceId/playground'
import { Route as SpaceSpaceIdEventsRouteImport } from './routes/space/$spaceId/events'
import { Route as SpaceSpaceIdChatRouteImport } from './routes/space/$spaceId/chat'
const PodcastsInfiniteLazyRouteImport = createFileRoute('/podcasts-infinite')()
const PodcastsLazyRouteImport = createFileRoute('/podcasts')()
const PlaygroundLazyRouteImport = createFileRoute('/playground')()
const LoginLazyRouteImport = createFileRoute('/login')()
const BountiesLazyRouteImport = createFileRoute('/bounties')()
const PodcastsInfiniteLazyRoute = PodcastsInfiniteLazyRouteImport.update({
id: '/podcasts-infinite',
path: '/podcasts-infinite',
getParentRoute: () => rootRouteImport,
} as any).lazy(() =>
import('./routes/podcasts-infinite.lazy').then((d) => d.Route),
)
const PodcastsLazyRoute = PodcastsLazyRouteImport.update({
id: '/podcasts',
path: '/podcasts',
getParentRoute: () => rootRouteImport,
} as any).lazy(() => import('./routes/podcasts.lazy').then((d) => d.Route))
const PlaygroundLazyRoute = PlaygroundLazyRouteImport.update({
id: '/playground',
path: '/playground',
getParentRoute: () => rootRouteImport,
} as any).lazy(() => import('./routes/playground.lazy').then((d) => d.Route))
const LoginLazyRoute = LoginLazyRouteImport.update({
id: '/login',
path: '/login',
getParentRoute: () => rootRouteImport,
} as any).lazy(() => import('./routes/login.lazy').then((d) => d.Route))
const BountiesLazyRoute = BountiesLazyRouteImport.update({
id: '/bounties',
path: '/bounties',
getParentRoute: () => rootRouteImport,
} as any).lazy(() => import('./routes/bounties.lazy').then((d) => d.Route))
const AuthenticateSuccessRoute = AuthenticateSuccessRouteImport.update({
id: '/authenticate-success',
path: '/authenticate-success',
getParentRoute: () => rootRouteImport,
} as any)
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRouteImport,
} as any)
const SpaceSpaceIdRoute = SpaceSpaceIdRouteImport.update({
id: '/space/$spaceId',
path: '/space/$spaceId',
getParentRoute: () => rootRouteImport,
} as any)
const FriendsAccountAddressRoute = FriendsAccountAddressRouteImport.update({
id: '/friends/$accountAddress',
path: '/friends/$accountAddress',
getParentRoute: () => rootRouteImport,
} as any)
const AccountInboxInboxIdRoute = AccountInboxInboxIdRouteImport.update({
id: '/account-inbox/$inboxId',
path: '/account-inbox/$inboxId',
getParentRoute: () => rootRouteImport,
} as any)
const SpaceSpaceIdIndexRoute = SpaceSpaceIdIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => SpaceSpaceIdRoute,
} as any)
const SpaceSpaceIdUsersRoute = SpaceSpaceIdUsersRouteImport.update({
id: '/users',
path: '/users',
getParentRoute: () => SpaceSpaceIdRoute,
} as any)
const SpaceSpaceIdPublicIntegrationRoute =
SpaceSpaceIdPublicIntegrationRouteImport.update({
id: '/public-integration',
path: '/public-integration',
getParentRoute: () => SpaceSpaceIdRoute,
} as any)
const SpaceSpaceIdPlaygroundRoute = SpaceSpaceIdPlaygroundRouteImport.update({
id: '/playground',
path: '/playground',
getParentRoute: () => SpaceSpaceIdRoute,
} as any)
const SpaceSpaceIdEventsRoute = SpaceSpaceIdEventsRouteImport.update({
id: '/events',
path: '/events',
getParentRoute: () => SpaceSpaceIdRoute,
} as any)
const SpaceSpaceIdChatRoute = SpaceSpaceIdChatRouteImport.update({
id: '/chat',
path: '/chat',
getParentRoute: () => SpaceSpaceIdRoute,
} as any)
export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/authenticate-success': typeof AuthenticateSuccessRoute
'/bounties': typeof BountiesLazyRoute
'/login': typeof LoginLazyRoute
'/playground': typeof PlaygroundLazyRoute
'/podcasts': typeof PodcastsLazyRoute
'/podcasts-infinite': typeof PodcastsInfiniteLazyRoute
'/account-inbox/$inboxId': typeof AccountInboxInboxIdRoute
'/friends/$accountAddress': typeof FriendsAccountAddressRoute
'/space/$spaceId': typeof SpaceSpaceIdRouteWithChildren
'/space/$spaceId/chat': typeof SpaceSpaceIdChatRoute
'/space/$spaceId/events': typeof SpaceSpaceIdEventsRoute
'/space/$spaceId/playground': typeof SpaceSpaceIdPlaygroundRoute
'/space/$spaceId/public-integration': typeof SpaceSpaceIdPublicIntegrationRoute
'/space/$spaceId/users': typeof SpaceSpaceIdUsersRoute
'/space/$spaceId/': typeof SpaceSpaceIdIndexRoute
}
export interface FileRoutesByTo {
'/': typeof IndexRoute
'/authenticate-success': typeof AuthenticateSuccessRoute
'/bounties': typeof BountiesLazyRoute
'/login': typeof LoginLazyRoute
'/playground': typeof PlaygroundLazyRoute
'/podcasts': typeof PodcastsLazyRoute
'/podcasts-infinite': typeof PodcastsInfiniteLazyRoute
'/account-inbox/$inboxId': typeof AccountInboxInboxIdRoute
'/friends/$accountAddress': typeof FriendsAccountAddressRoute
'/space/$spaceId/chat': typeof SpaceSpaceIdChatRoute
'/space/$spaceId/events': typeof SpaceSpaceIdEventsRoute
'/space/$spaceId/playground': typeof SpaceSpaceIdPlaygroundRoute
'/space/$spaceId/public-integration': typeof SpaceSpaceIdPublicIntegrationRoute
'/space/$spaceId/users': typeof SpaceSpaceIdUsersRoute
'/space/$spaceId': typeof SpaceSpaceIdIndexRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/authenticate-success': typeof AuthenticateSuccessRoute
'/bounties': typeof BountiesLazyRoute
'/login': typeof LoginLazyRoute
'/playground': typeof PlaygroundLazyRoute
'/podcasts': typeof PodcastsLazyRoute
'/podcasts-infinite': typeof PodcastsInfiniteLazyRoute
'/account-inbox/$inboxId': typeof AccountInboxInboxIdRoute
'/friends/$accountAddress': typeof FriendsAccountAddressRoute
'/space/$spaceId': typeof SpaceSpaceIdRouteWithChildren
'/space/$spaceId/chat': typeof SpaceSpaceIdChatRoute
'/space/$spaceId/events': typeof SpaceSpaceIdEventsRoute
'/space/$spaceId/playground': typeof SpaceSpaceIdPlaygroundRoute
'/space/$spaceId/public-integration': typeof SpaceSpaceIdPublicIntegrationRoute
'/space/$spaceId/users': typeof SpaceSpaceIdUsersRoute
'/space/$spaceId/': typeof SpaceSpaceIdIndexRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths:
| '/'
| '/authenticate-success'
| '/bounties'
| '/login'
| '/playground'
| '/podcasts'
| '/podcasts-infinite'
| '/account-inbox/$inboxId'
| '/friends/$accountAddress'
| '/space/$spaceId'
| '/space/$spaceId/chat'
| '/space/$spaceId/events'
| '/space/$spaceId/playground'
| '/space/$spaceId/public-integration'
| '/space/$spaceId/users'
| '/space/$spaceId/'
fileRoutesByTo: FileRoutesByTo
to:
| '/'
| '/authenticate-success'
| '/bounties'
| '/login'
| '/playground'
| '/podcasts'
| '/podcasts-infinite'
| '/account-inbox/$inboxId'
| '/friends/$accountAddress'
| '/space/$spaceId/chat'
| '/space/$spaceId/events'
| '/space/$spaceId/playground'
| '/space/$spaceId/public-integration'
| '/space/$spaceId/users'
| '/space/$spaceId'
id:
| '__root__'
| '/'
| '/authenticate-success'
| '/bounties'
| '/login'
| '/playground'
| '/podcasts'
| '/podcasts-infinite'
| '/account-inbox/$inboxId'
| '/friends/$accountAddress'
| '/space/$spaceId'
| '/space/$spaceId/chat'
| '/space/$spaceId/events'
| '/space/$spaceId/playground'
| '/space/$spaceId/public-integration'
| '/space/$spaceId/users'
| '/space/$spaceId/'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
AuthenticateSuccessRoute: typeof AuthenticateSuccessRoute
BountiesLazyRoute: typeof BountiesLazyRoute
LoginLazyRoute: typeof LoginLazyRoute
PlaygroundLazyRoute: typeof PlaygroundLazyRoute
PodcastsLazyRoute: typeof PodcastsLazyRoute
PodcastsInfiniteLazyRoute: typeof PodcastsInfiniteLazyRoute
AccountInboxInboxIdRoute: typeof AccountInboxInboxIdRoute
FriendsAccountAddressRoute: typeof FriendsAccountAddressRoute
SpaceSpaceIdRoute: typeof SpaceSpaceIdRouteWithChildren
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/podcasts-infinite': {
id: '/podcasts-infinite'
path: '/podcasts-infinite'
fullPath: '/podcasts-infinite'
preLoaderRoute: typeof PodcastsInfiniteLazyRouteImport
parentRoute: typeof rootRouteImport
}
'/podcasts': {
id: '/podcasts'
path: '/podcasts'
fullPath: '/podcasts'
preLoaderRoute: typeof PodcastsLazyRouteImport
parentRoute: typeof rootRouteImport
}
'/playground': {
id: '/playground'
path: '/playground'
fullPath: '/playground'
preLoaderRoute: typeof PlaygroundLazyRouteImport
parentRoute: typeof rootRouteImport
}
'/login': {
id: '/login'
path: '/login'
fullPath: '/login'
preLoaderRoute: typeof LoginLazyRouteImport
parentRoute: typeof rootRouteImport
}
'/bounties': {
id: '/bounties'
path: '/bounties'
fullPath: '/bounties'
preLoaderRoute: typeof BountiesLazyRouteImport
parentRoute: typeof rootRouteImport
}
'/authenticate-success': {
id: '/authenticate-success'
path: '/authenticate-success'
fullPath: '/authenticate-success'
preLoaderRoute: typeof AuthenticateSuccessRouteImport
parentRoute: typeof rootRouteImport
}
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexRouteImport
parentRoute: typeof rootRouteImport
}
'/space/$spaceId': {
id: '/space/$spaceId'
path: '/space/$spaceId'
fullPath: '/space/$spaceId'
preLoaderRoute: typeof SpaceSpaceIdRouteImport
parentRoute: typeof rootRouteImport
}
'/friends/$accountAddress': {
id: '/friends/$accountAddress'
path: '/friends/$accountAddress'
fullPath: '/friends/$accountAddress'
preLoaderRoute: typeof FriendsAccountAddressRouteImport
parentRoute: typeof rootRouteImport
}
'/account-inbox/$inboxId': {
id: '/account-inbox/$inboxId'
path: '/account-inbox/$inboxId'
fullPath: '/account-inbox/$inboxId'
preLoaderRoute: typeof AccountInboxInboxIdRouteImport
parentRoute: typeof rootRouteImport
}
'/space/$spaceId/': {
id: '/space/$spaceId/'
path: '/'
fullPath: '/space/$spaceId/'
preLoaderRoute: typeof SpaceSpaceIdIndexRouteImport
parentRoute: typeof SpaceSpaceIdRoute
}
'/space/$spaceId/users': {
id: '/space/$spaceId/users'
path: '/users'
fullPath: '/space/$spaceId/users'
preLoaderRoute: typeof SpaceSpaceIdUsersRouteImport
parentRoute: typeof SpaceSpaceIdRoute
}
'/space/$spaceId/public-integration': {
id: '/space/$spaceId/public-integration'
path: '/public-integration'
fullPath: '/space/$spaceId/public-integration'
preLoaderRoute: typeof SpaceSpaceIdPublicIntegrationRouteImport
parentRoute: typeof SpaceSpaceIdRoute
}
'/space/$spaceId/playground': {
id: '/space/$spaceId/playground'
path: '/playground'
fullPath: '/space/$spaceId/playground'
preLoaderRoute: typeof SpaceSpaceIdPlaygroundRouteImport
parentRoute: typeof SpaceSpaceIdRoute
}
'/space/$spaceId/events': {
id: '/space/$spaceId/events'
path: '/events'
fullPath: '/space/$spaceId/events'
preLoaderRoute: typeof SpaceSpaceIdEventsRouteImport
parentRoute: typeof SpaceSpaceIdRoute
}
'/space/$spaceId/chat': {
id: '/space/$spaceId/chat'
path: '/chat'
fullPath: '/space/$spaceId/chat'
preLoaderRoute: typeof SpaceSpaceIdChatRouteImport
parentRoute: typeof SpaceSpaceIdRoute
}
}
}
interface SpaceSpaceIdRouteChildren {
SpaceSpaceIdChatRoute: typeof SpaceSpaceIdChatRoute
SpaceSpaceIdEventsRoute: typeof SpaceSpaceIdEventsRoute
SpaceSpaceIdPlaygroundRoute: typeof SpaceSpaceIdPlaygroundRoute
SpaceSpaceIdPublicIntegrationRoute: typeof SpaceSpaceIdPublicIntegrationRoute
SpaceSpaceIdUsersRoute: typeof SpaceSpaceIdUsersRoute
SpaceSpaceIdIndexRoute: typeof SpaceSpaceIdIndexRoute
}
const SpaceSpaceIdRouteChildren: SpaceSpaceIdRouteChildren = {
SpaceSpaceIdChatRoute: SpaceSpaceIdChatRoute,
SpaceSpaceIdEventsRoute: SpaceSpaceIdEventsRoute,
SpaceSpaceIdPlaygroundRoute: SpaceSpaceIdPlaygroundRoute,
SpaceSpaceIdPublicIntegrationRoute: SpaceSpaceIdPublicIntegrationRoute,
SpaceSpaceIdUsersRoute: SpaceSpaceIdUsersRoute,
SpaceSpaceIdIndexRoute: SpaceSpaceIdIndexRoute,
}
const SpaceSpaceIdRouteWithChildren = SpaceSpaceIdRoute._addFileChildren(
SpaceSpaceIdRouteChildren,
)
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
AuthenticateSuccessRoute: AuthenticateSuccessRoute,
BountiesLazyRoute: BountiesLazyRoute,
LoginLazyRoute: LoginLazyRoute,
PlaygroundLazyRoute: PlaygroundLazyRoute,
PodcastsLazyRoute: PodcastsLazyRoute,
PodcastsInfiniteLazyRoute: PodcastsInfiniteLazyRoute,
AccountInboxInboxIdRoute: AccountInboxInboxIdRoute,
FriendsAccountAddressRoute: FriendsAccountAddressRoute,
SpaceSpaceIdRoute: SpaceSpaceIdRouteWithChildren,
}
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()