an appview-less Bluesky client using Constellation and PDS Queries
reddwarf.app
frontend
spa
bluesky
reddwarf
microcosm
1/* eslint-disable */
2
3// @ts-nocheck
4
5// noinspection JSUnusedGlobalSymbols
6
7// This file was automatically generated by TanStack Router.
8// You should NOT make any changes in this file as it will be overwritten.
9// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
10
11import { Route as rootRouteImport } from './routes/__root'
12import { Route as SettingsRouteImport } from './routes/settings'
13import { Route as SearchRouteImport } from './routes/search'
14import { Route as NotificationsRouteImport } from './routes/notifications'
15import { Route as FeedsRouteImport } from './routes/feeds'
16import { Route as PathlessLayoutRouteImport } from './routes/_pathlessLayout'
17import { Route as IndexRouteImport } from './routes/index'
18import { Route as CallbackIndexRouteImport } from './routes/callback/index'
19import { Route as PathlessLayoutNestedLayoutRouteImport } from './routes/_pathlessLayout/_nested-layout'
20import { Route as ProfileDidIndexRouteImport } from './routes/profile.$did/index'
21import { Route as ProfileDidFollowsRouteImport } from './routes/profile.$did/follows'
22import { Route as ProfileDidFollowersRouteImport } from './routes/profile.$did/followers'
23import { Route as PathlessLayoutNestedLayoutRouteBRouteImport } from './routes/_pathlessLayout/_nested-layout/route-b'
24import { Route as PathlessLayoutNestedLayoutRouteARouteImport } from './routes/_pathlessLayout/_nested-layout/route-a'
25import { Route as ProfileDidPostRkeyRouteImport } from './routes/profile.$did/post.$rkey'
26import { Route as ProfileDidFeedRkeyRouteImport } from './routes/profile.$did/feed.$rkey'
27import { Route as ProfileDidPostRkeyRepostedByRouteImport } from './routes/profile.$did/post.$rkey.reposted-by'
28import { Route as ProfileDidPostRkeyQuotesRouteImport } from './routes/profile.$did/post.$rkey.quotes'
29import { Route as ProfileDidPostRkeyLikedByRouteImport } from './routes/profile.$did/post.$rkey.liked-by'
30import { Route as ProfileDidPostRkeyImageIRouteImport } from './routes/profile.$did/post.$rkey.image.$i'
31
32const SettingsRoute = SettingsRouteImport.update({
33 id: '/settings',
34 path: '/settings',
35 getParentRoute: () => rootRouteImport,
36} as any)
37const SearchRoute = SearchRouteImport.update({
38 id: '/search',
39 path: '/search',
40 getParentRoute: () => rootRouteImport,
41} as any)
42const NotificationsRoute = NotificationsRouteImport.update({
43 id: '/notifications',
44 path: '/notifications',
45 getParentRoute: () => rootRouteImport,
46} as any)
47const FeedsRoute = FeedsRouteImport.update({
48 id: '/feeds',
49 path: '/feeds',
50 getParentRoute: () => rootRouteImport,
51} as any)
52const PathlessLayoutRoute = PathlessLayoutRouteImport.update({
53 id: '/_pathlessLayout',
54 getParentRoute: () => rootRouteImport,
55} as any)
56const IndexRoute = IndexRouteImport.update({
57 id: '/',
58 path: '/',
59 getParentRoute: () => rootRouteImport,
60} as any)
61const CallbackIndexRoute = CallbackIndexRouteImport.update({
62 id: '/callback/',
63 path: '/callback/',
64 getParentRoute: () => rootRouteImport,
65} as any)
66const PathlessLayoutNestedLayoutRoute =
67 PathlessLayoutNestedLayoutRouteImport.update({
68 id: '/_nested-layout',
69 getParentRoute: () => PathlessLayoutRoute,
70 } as any)
71const ProfileDidIndexRoute = ProfileDidIndexRouteImport.update({
72 id: '/profile/$did/',
73 path: '/profile/$did/',
74 getParentRoute: () => rootRouteImport,
75} as any)
76const ProfileDidFollowsRoute = ProfileDidFollowsRouteImport.update({
77 id: '/profile/$did/follows',
78 path: '/profile/$did/follows',
79 getParentRoute: () => rootRouteImport,
80} as any)
81const ProfileDidFollowersRoute = ProfileDidFollowersRouteImport.update({
82 id: '/profile/$did/followers',
83 path: '/profile/$did/followers',
84 getParentRoute: () => rootRouteImport,
85} as any)
86const PathlessLayoutNestedLayoutRouteBRoute =
87 PathlessLayoutNestedLayoutRouteBRouteImport.update({
88 id: '/route-b',
89 path: '/route-b',
90 getParentRoute: () => PathlessLayoutNestedLayoutRoute,
91 } as any)
92const PathlessLayoutNestedLayoutRouteARoute =
93 PathlessLayoutNestedLayoutRouteARouteImport.update({
94 id: '/route-a',
95 path: '/route-a',
96 getParentRoute: () => PathlessLayoutNestedLayoutRoute,
97 } as any)
98const ProfileDidPostRkeyRoute = ProfileDidPostRkeyRouteImport.update({
99 id: '/profile/$did/post/$rkey',
100 path: '/profile/$did/post/$rkey',
101 getParentRoute: () => rootRouteImport,
102} as any)
103const ProfileDidFeedRkeyRoute = ProfileDidFeedRkeyRouteImport.update({
104 id: '/profile/$did/feed/$rkey',
105 path: '/profile/$did/feed/$rkey',
106 getParentRoute: () => rootRouteImport,
107} as any)
108const ProfileDidPostRkeyRepostedByRoute =
109 ProfileDidPostRkeyRepostedByRouteImport.update({
110 id: '/reposted-by',
111 path: '/reposted-by',
112 getParentRoute: () => ProfileDidPostRkeyRoute,
113 } as any)
114const ProfileDidPostRkeyQuotesRoute =
115 ProfileDidPostRkeyQuotesRouteImport.update({
116 id: '/quotes',
117 path: '/quotes',
118 getParentRoute: () => ProfileDidPostRkeyRoute,
119 } as any)
120const ProfileDidPostRkeyLikedByRoute =
121 ProfileDidPostRkeyLikedByRouteImport.update({
122 id: '/liked-by',
123 path: '/liked-by',
124 getParentRoute: () => ProfileDidPostRkeyRoute,
125 } as any)
126const ProfileDidPostRkeyImageIRoute =
127 ProfileDidPostRkeyImageIRouteImport.update({
128 id: '/image/$i',
129 path: '/image/$i',
130 getParentRoute: () => ProfileDidPostRkeyRoute,
131 } as any)
132
133export interface FileRoutesByFullPath {
134 '/': typeof IndexRoute
135 '/feeds': typeof FeedsRoute
136 '/notifications': typeof NotificationsRoute
137 '/search': typeof SearchRoute
138 '/settings': typeof SettingsRoute
139 '/callback': typeof CallbackIndexRoute
140 '/route-a': typeof PathlessLayoutNestedLayoutRouteARoute
141 '/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute
142 '/profile/$did/followers': typeof ProfileDidFollowersRoute
143 '/profile/$did/follows': typeof ProfileDidFollowsRoute
144 '/profile/$did': typeof ProfileDidIndexRoute
145 '/profile/$did/feed/$rkey': typeof ProfileDidFeedRkeyRoute
146 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRouteWithChildren
147 '/profile/$did/post/$rkey/liked-by': typeof ProfileDidPostRkeyLikedByRoute
148 '/profile/$did/post/$rkey/quotes': typeof ProfileDidPostRkeyQuotesRoute
149 '/profile/$did/post/$rkey/reposted-by': typeof ProfileDidPostRkeyRepostedByRoute
150 '/profile/$did/post/$rkey/image/$i': typeof ProfileDidPostRkeyImageIRoute
151}
152export interface FileRoutesByTo {
153 '/': typeof IndexRoute
154 '/feeds': typeof FeedsRoute
155 '/notifications': typeof NotificationsRoute
156 '/search': typeof SearchRoute
157 '/settings': typeof SettingsRoute
158 '/callback': typeof CallbackIndexRoute
159 '/route-a': typeof PathlessLayoutNestedLayoutRouteARoute
160 '/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute
161 '/profile/$did/followers': typeof ProfileDidFollowersRoute
162 '/profile/$did/follows': typeof ProfileDidFollowsRoute
163 '/profile/$did': typeof ProfileDidIndexRoute
164 '/profile/$did/feed/$rkey': typeof ProfileDidFeedRkeyRoute
165 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRouteWithChildren
166 '/profile/$did/post/$rkey/liked-by': typeof ProfileDidPostRkeyLikedByRoute
167 '/profile/$did/post/$rkey/quotes': typeof ProfileDidPostRkeyQuotesRoute
168 '/profile/$did/post/$rkey/reposted-by': typeof ProfileDidPostRkeyRepostedByRoute
169 '/profile/$did/post/$rkey/image/$i': typeof ProfileDidPostRkeyImageIRoute
170}
171export interface FileRoutesById {
172 __root__: typeof rootRouteImport
173 '/': typeof IndexRoute
174 '/_pathlessLayout': typeof PathlessLayoutRouteWithChildren
175 '/feeds': typeof FeedsRoute
176 '/notifications': typeof NotificationsRoute
177 '/search': typeof SearchRoute
178 '/settings': typeof SettingsRoute
179 '/_pathlessLayout/_nested-layout': typeof PathlessLayoutNestedLayoutRouteWithChildren
180 '/callback/': typeof CallbackIndexRoute
181 '/_pathlessLayout/_nested-layout/route-a': typeof PathlessLayoutNestedLayoutRouteARoute
182 '/_pathlessLayout/_nested-layout/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute
183 '/profile/$did/followers': typeof ProfileDidFollowersRoute
184 '/profile/$did/follows': typeof ProfileDidFollowsRoute
185 '/profile/$did/': typeof ProfileDidIndexRoute
186 '/profile/$did/feed/$rkey': typeof ProfileDidFeedRkeyRoute
187 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRouteWithChildren
188 '/profile/$did/post/$rkey/liked-by': typeof ProfileDidPostRkeyLikedByRoute
189 '/profile/$did/post/$rkey/quotes': typeof ProfileDidPostRkeyQuotesRoute
190 '/profile/$did/post/$rkey/reposted-by': typeof ProfileDidPostRkeyRepostedByRoute
191 '/profile/$did/post/$rkey/image/$i': typeof ProfileDidPostRkeyImageIRoute
192}
193export interface FileRouteTypes {
194 fileRoutesByFullPath: FileRoutesByFullPath
195 fullPaths:
196 | '/'
197 | '/feeds'
198 | '/notifications'
199 | '/search'
200 | '/settings'
201 | '/callback'
202 | '/route-a'
203 | '/route-b'
204 | '/profile/$did/followers'
205 | '/profile/$did/follows'
206 | '/profile/$did'
207 | '/profile/$did/feed/$rkey'
208 | '/profile/$did/post/$rkey'
209 | '/profile/$did/post/$rkey/liked-by'
210 | '/profile/$did/post/$rkey/quotes'
211 | '/profile/$did/post/$rkey/reposted-by'
212 | '/profile/$did/post/$rkey/image/$i'
213 fileRoutesByTo: FileRoutesByTo
214 to:
215 | '/'
216 | '/feeds'
217 | '/notifications'
218 | '/search'
219 | '/settings'
220 | '/callback'
221 | '/route-a'
222 | '/route-b'
223 | '/profile/$did/followers'
224 | '/profile/$did/follows'
225 | '/profile/$did'
226 | '/profile/$did/feed/$rkey'
227 | '/profile/$did/post/$rkey'
228 | '/profile/$did/post/$rkey/liked-by'
229 | '/profile/$did/post/$rkey/quotes'
230 | '/profile/$did/post/$rkey/reposted-by'
231 | '/profile/$did/post/$rkey/image/$i'
232 id:
233 | '__root__'
234 | '/'
235 | '/_pathlessLayout'
236 | '/feeds'
237 | '/notifications'
238 | '/search'
239 | '/settings'
240 | '/_pathlessLayout/_nested-layout'
241 | '/callback/'
242 | '/_pathlessLayout/_nested-layout/route-a'
243 | '/_pathlessLayout/_nested-layout/route-b'
244 | '/profile/$did/followers'
245 | '/profile/$did/follows'
246 | '/profile/$did/'
247 | '/profile/$did/feed/$rkey'
248 | '/profile/$did/post/$rkey'
249 | '/profile/$did/post/$rkey/liked-by'
250 | '/profile/$did/post/$rkey/quotes'
251 | '/profile/$did/post/$rkey/reposted-by'
252 | '/profile/$did/post/$rkey/image/$i'
253 fileRoutesById: FileRoutesById
254}
255export interface RootRouteChildren {
256 IndexRoute: typeof IndexRoute
257 PathlessLayoutRoute: typeof PathlessLayoutRouteWithChildren
258 FeedsRoute: typeof FeedsRoute
259 NotificationsRoute: typeof NotificationsRoute
260 SearchRoute: typeof SearchRoute
261 SettingsRoute: typeof SettingsRoute
262 CallbackIndexRoute: typeof CallbackIndexRoute
263 ProfileDidFollowersRoute: typeof ProfileDidFollowersRoute
264 ProfileDidFollowsRoute: typeof ProfileDidFollowsRoute
265 ProfileDidIndexRoute: typeof ProfileDidIndexRoute
266 ProfileDidFeedRkeyRoute: typeof ProfileDidFeedRkeyRoute
267 ProfileDidPostRkeyRoute: typeof ProfileDidPostRkeyRouteWithChildren
268}
269
270declare module '@tanstack/react-router' {
271 interface FileRoutesByPath {
272 '/settings': {
273 id: '/settings'
274 path: '/settings'
275 fullPath: '/settings'
276 preLoaderRoute: typeof SettingsRouteImport
277 parentRoute: typeof rootRouteImport
278 }
279 '/search': {
280 id: '/search'
281 path: '/search'
282 fullPath: '/search'
283 preLoaderRoute: typeof SearchRouteImport
284 parentRoute: typeof rootRouteImport
285 }
286 '/notifications': {
287 id: '/notifications'
288 path: '/notifications'
289 fullPath: '/notifications'
290 preLoaderRoute: typeof NotificationsRouteImport
291 parentRoute: typeof rootRouteImport
292 }
293 '/feeds': {
294 id: '/feeds'
295 path: '/feeds'
296 fullPath: '/feeds'
297 preLoaderRoute: typeof FeedsRouteImport
298 parentRoute: typeof rootRouteImport
299 }
300 '/_pathlessLayout': {
301 id: '/_pathlessLayout'
302 path: ''
303 fullPath: ''
304 preLoaderRoute: typeof PathlessLayoutRouteImport
305 parentRoute: typeof rootRouteImport
306 }
307 '/': {
308 id: '/'
309 path: '/'
310 fullPath: '/'
311 preLoaderRoute: typeof IndexRouteImport
312 parentRoute: typeof rootRouteImport
313 }
314 '/callback/': {
315 id: '/callback/'
316 path: '/callback'
317 fullPath: '/callback'
318 preLoaderRoute: typeof CallbackIndexRouteImport
319 parentRoute: typeof rootRouteImport
320 }
321 '/_pathlessLayout/_nested-layout': {
322 id: '/_pathlessLayout/_nested-layout'
323 path: ''
324 fullPath: ''
325 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteImport
326 parentRoute: typeof PathlessLayoutRoute
327 }
328 '/profile/$did/': {
329 id: '/profile/$did/'
330 path: '/profile/$did'
331 fullPath: '/profile/$did'
332 preLoaderRoute: typeof ProfileDidIndexRouteImport
333 parentRoute: typeof rootRouteImport
334 }
335 '/profile/$did/follows': {
336 id: '/profile/$did/follows'
337 path: '/profile/$did/follows'
338 fullPath: '/profile/$did/follows'
339 preLoaderRoute: typeof ProfileDidFollowsRouteImport
340 parentRoute: typeof rootRouteImport
341 }
342 '/profile/$did/followers': {
343 id: '/profile/$did/followers'
344 path: '/profile/$did/followers'
345 fullPath: '/profile/$did/followers'
346 preLoaderRoute: typeof ProfileDidFollowersRouteImport
347 parentRoute: typeof rootRouteImport
348 }
349 '/_pathlessLayout/_nested-layout/route-b': {
350 id: '/_pathlessLayout/_nested-layout/route-b'
351 path: '/route-b'
352 fullPath: '/route-b'
353 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteBRouteImport
354 parentRoute: typeof PathlessLayoutNestedLayoutRoute
355 }
356 '/_pathlessLayout/_nested-layout/route-a': {
357 id: '/_pathlessLayout/_nested-layout/route-a'
358 path: '/route-a'
359 fullPath: '/route-a'
360 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteARouteImport
361 parentRoute: typeof PathlessLayoutNestedLayoutRoute
362 }
363 '/profile/$did/post/$rkey': {
364 id: '/profile/$did/post/$rkey'
365 path: '/profile/$did/post/$rkey'
366 fullPath: '/profile/$did/post/$rkey'
367 preLoaderRoute: typeof ProfileDidPostRkeyRouteImport
368 parentRoute: typeof rootRouteImport
369 }
370 '/profile/$did/feed/$rkey': {
371 id: '/profile/$did/feed/$rkey'
372 path: '/profile/$did/feed/$rkey'
373 fullPath: '/profile/$did/feed/$rkey'
374 preLoaderRoute: typeof ProfileDidFeedRkeyRouteImport
375 parentRoute: typeof rootRouteImport
376 }
377 '/profile/$did/post/$rkey/reposted-by': {
378 id: '/profile/$did/post/$rkey/reposted-by'
379 path: '/reposted-by'
380 fullPath: '/profile/$did/post/$rkey/reposted-by'
381 preLoaderRoute: typeof ProfileDidPostRkeyRepostedByRouteImport
382 parentRoute: typeof ProfileDidPostRkeyRoute
383 }
384 '/profile/$did/post/$rkey/quotes': {
385 id: '/profile/$did/post/$rkey/quotes'
386 path: '/quotes'
387 fullPath: '/profile/$did/post/$rkey/quotes'
388 preLoaderRoute: typeof ProfileDidPostRkeyQuotesRouteImport
389 parentRoute: typeof ProfileDidPostRkeyRoute
390 }
391 '/profile/$did/post/$rkey/liked-by': {
392 id: '/profile/$did/post/$rkey/liked-by'
393 path: '/liked-by'
394 fullPath: '/profile/$did/post/$rkey/liked-by'
395 preLoaderRoute: typeof ProfileDidPostRkeyLikedByRouteImport
396 parentRoute: typeof ProfileDidPostRkeyRoute
397 }
398 '/profile/$did/post/$rkey/image/$i': {
399 id: '/profile/$did/post/$rkey/image/$i'
400 path: '/image/$i'
401 fullPath: '/profile/$did/post/$rkey/image/$i'
402 preLoaderRoute: typeof ProfileDidPostRkeyImageIRouteImport
403 parentRoute: typeof ProfileDidPostRkeyRoute
404 }
405 }
406}
407
408interface PathlessLayoutNestedLayoutRouteChildren {
409 PathlessLayoutNestedLayoutRouteARoute: typeof PathlessLayoutNestedLayoutRouteARoute
410 PathlessLayoutNestedLayoutRouteBRoute: typeof PathlessLayoutNestedLayoutRouteBRoute
411}
412
413const PathlessLayoutNestedLayoutRouteChildren: PathlessLayoutNestedLayoutRouteChildren =
414 {
415 PathlessLayoutNestedLayoutRouteARoute:
416 PathlessLayoutNestedLayoutRouteARoute,
417 PathlessLayoutNestedLayoutRouteBRoute:
418 PathlessLayoutNestedLayoutRouteBRoute,
419 }
420
421const PathlessLayoutNestedLayoutRouteWithChildren =
422 PathlessLayoutNestedLayoutRoute._addFileChildren(
423 PathlessLayoutNestedLayoutRouteChildren,
424 )
425
426interface PathlessLayoutRouteChildren {
427 PathlessLayoutNestedLayoutRoute: typeof PathlessLayoutNestedLayoutRouteWithChildren
428}
429
430const PathlessLayoutRouteChildren: PathlessLayoutRouteChildren = {
431 PathlessLayoutNestedLayoutRoute: PathlessLayoutNestedLayoutRouteWithChildren,
432}
433
434const PathlessLayoutRouteWithChildren = PathlessLayoutRoute._addFileChildren(
435 PathlessLayoutRouteChildren,
436)
437
438interface ProfileDidPostRkeyRouteChildren {
439 ProfileDidPostRkeyLikedByRoute: typeof ProfileDidPostRkeyLikedByRoute
440 ProfileDidPostRkeyQuotesRoute: typeof ProfileDidPostRkeyQuotesRoute
441 ProfileDidPostRkeyRepostedByRoute: typeof ProfileDidPostRkeyRepostedByRoute
442 ProfileDidPostRkeyImageIRoute: typeof ProfileDidPostRkeyImageIRoute
443}
444
445const ProfileDidPostRkeyRouteChildren: ProfileDidPostRkeyRouteChildren = {
446 ProfileDidPostRkeyLikedByRoute: ProfileDidPostRkeyLikedByRoute,
447 ProfileDidPostRkeyQuotesRoute: ProfileDidPostRkeyQuotesRoute,
448 ProfileDidPostRkeyRepostedByRoute: ProfileDidPostRkeyRepostedByRoute,
449 ProfileDidPostRkeyImageIRoute: ProfileDidPostRkeyImageIRoute,
450}
451
452const ProfileDidPostRkeyRouteWithChildren =
453 ProfileDidPostRkeyRoute._addFileChildren(ProfileDidPostRkeyRouteChildren)
454
455const rootRouteChildren: RootRouteChildren = {
456 IndexRoute: IndexRoute,
457 PathlessLayoutRoute: PathlessLayoutRouteWithChildren,
458 FeedsRoute: FeedsRoute,
459 NotificationsRoute: NotificationsRoute,
460 SearchRoute: SearchRoute,
461 SettingsRoute: SettingsRoute,
462 CallbackIndexRoute: CallbackIndexRoute,
463 ProfileDidFollowersRoute: ProfileDidFollowersRoute,
464 ProfileDidFollowsRoute: ProfileDidFollowsRoute,
465 ProfileDidIndexRoute: ProfileDidIndexRoute,
466 ProfileDidFeedRkeyRoute: ProfileDidFeedRkeyRoute,
467 ProfileDidPostRkeyRoute: ProfileDidPostRkeyRouteWithChildren,
468}
469export const routeTree = rootRouteImport
470 ._addFileChildren(rootRouteChildren)
471 ._addFileTypes<FileRouteTypes>()