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 PathlessLayoutNestedLayoutRouteBRouteImport } from './routes/_pathlessLayout/_nested-layout/route-b'
22import { Route as PathlessLayoutNestedLayoutRouteARouteImport } from './routes/_pathlessLayout/_nested-layout/route-a'
23import { Route as ProfileDidPostRkeyRouteImport } from './routes/profile.$did/post.$rkey'
24import { Route as ProfileDidPostRkeyImageIRouteImport } from './routes/profile.$did/post.$rkey.image.$i'
25
26const SettingsRoute = SettingsRouteImport.update({
27 id: '/settings',
28 path: '/settings',
29 getParentRoute: () => rootRouteImport,
30} as any)
31const SearchRoute = SearchRouteImport.update({
32 id: '/search',
33 path: '/search',
34 getParentRoute: () => rootRouteImport,
35} as any)
36const NotificationsRoute = NotificationsRouteImport.update({
37 id: '/notifications',
38 path: '/notifications',
39 getParentRoute: () => rootRouteImport,
40} as any)
41const FeedsRoute = FeedsRouteImport.update({
42 id: '/feeds',
43 path: '/feeds',
44 getParentRoute: () => rootRouteImport,
45} as any)
46const PathlessLayoutRoute = PathlessLayoutRouteImport.update({
47 id: '/_pathlessLayout',
48 getParentRoute: () => rootRouteImport,
49} as any)
50const IndexRoute = IndexRouteImport.update({
51 id: '/',
52 path: '/',
53 getParentRoute: () => rootRouteImport,
54} as any)
55const CallbackIndexRoute = CallbackIndexRouteImport.update({
56 id: '/callback/',
57 path: '/callback/',
58 getParentRoute: () => rootRouteImport,
59} as any)
60const PathlessLayoutNestedLayoutRoute =
61 PathlessLayoutNestedLayoutRouteImport.update({
62 id: '/_nested-layout',
63 getParentRoute: () => PathlessLayoutRoute,
64 } as any)
65const ProfileDidIndexRoute = ProfileDidIndexRouteImport.update({
66 id: '/profile/$did/',
67 path: '/profile/$did/',
68 getParentRoute: () => rootRouteImport,
69} as any)
70const PathlessLayoutNestedLayoutRouteBRoute =
71 PathlessLayoutNestedLayoutRouteBRouteImport.update({
72 id: '/route-b',
73 path: '/route-b',
74 getParentRoute: () => PathlessLayoutNestedLayoutRoute,
75 } as any)
76const PathlessLayoutNestedLayoutRouteARoute =
77 PathlessLayoutNestedLayoutRouteARouteImport.update({
78 id: '/route-a',
79 path: '/route-a',
80 getParentRoute: () => PathlessLayoutNestedLayoutRoute,
81 } as any)
82const ProfileDidPostRkeyRoute = ProfileDidPostRkeyRouteImport.update({
83 id: '/profile/$did/post/$rkey',
84 path: '/profile/$did/post/$rkey',
85 getParentRoute: () => rootRouteImport,
86} as any)
87const ProfileDidPostRkeyImageIRoute =
88 ProfileDidPostRkeyImageIRouteImport.update({
89 id: '/image/$i',
90 path: '/image/$i',
91 getParentRoute: () => ProfileDidPostRkeyRoute,
92 } as any)
93
94export interface FileRoutesByFullPath {
95 '/': typeof IndexRoute
96 '/feeds': typeof FeedsRoute
97 '/notifications': typeof NotificationsRoute
98 '/search': typeof SearchRoute
99 '/settings': typeof SettingsRoute
100 '/callback': typeof CallbackIndexRoute
101 '/route-a': typeof PathlessLayoutNestedLayoutRouteARoute
102 '/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute
103 '/profile/$did': typeof ProfileDidIndexRoute
104 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRouteWithChildren
105 '/profile/$did/post/$rkey/image/$i': typeof ProfileDidPostRkeyImageIRoute
106}
107export interface FileRoutesByTo {
108 '/': typeof IndexRoute
109 '/feeds': typeof FeedsRoute
110 '/notifications': typeof NotificationsRoute
111 '/search': typeof SearchRoute
112 '/settings': typeof SettingsRoute
113 '/callback': typeof CallbackIndexRoute
114 '/route-a': typeof PathlessLayoutNestedLayoutRouteARoute
115 '/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute
116 '/profile/$did': typeof ProfileDidIndexRoute
117 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRouteWithChildren
118 '/profile/$did/post/$rkey/image/$i': typeof ProfileDidPostRkeyImageIRoute
119}
120export interface FileRoutesById {
121 __root__: typeof rootRouteImport
122 '/': typeof IndexRoute
123 '/_pathlessLayout': typeof PathlessLayoutRouteWithChildren
124 '/feeds': typeof FeedsRoute
125 '/notifications': typeof NotificationsRoute
126 '/search': typeof SearchRoute
127 '/settings': typeof SettingsRoute
128 '/_pathlessLayout/_nested-layout': typeof PathlessLayoutNestedLayoutRouteWithChildren
129 '/callback/': typeof CallbackIndexRoute
130 '/_pathlessLayout/_nested-layout/route-a': typeof PathlessLayoutNestedLayoutRouteARoute
131 '/_pathlessLayout/_nested-layout/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute
132 '/profile/$did/': typeof ProfileDidIndexRoute
133 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRouteWithChildren
134 '/profile/$did/post/$rkey/image/$i': typeof ProfileDidPostRkeyImageIRoute
135}
136export interface FileRouteTypes {
137 fileRoutesByFullPath: FileRoutesByFullPath
138 fullPaths:
139 | '/'
140 | '/feeds'
141 | '/notifications'
142 | '/search'
143 | '/settings'
144 | '/callback'
145 | '/route-a'
146 | '/route-b'
147 | '/profile/$did'
148 | '/profile/$did/post/$rkey'
149 | '/profile/$did/post/$rkey/image/$i'
150 fileRoutesByTo: FileRoutesByTo
151 to:
152 | '/'
153 | '/feeds'
154 | '/notifications'
155 | '/search'
156 | '/settings'
157 | '/callback'
158 | '/route-a'
159 | '/route-b'
160 | '/profile/$did'
161 | '/profile/$did/post/$rkey'
162 | '/profile/$did/post/$rkey/image/$i'
163 id:
164 | '__root__'
165 | '/'
166 | '/_pathlessLayout'
167 | '/feeds'
168 | '/notifications'
169 | '/search'
170 | '/settings'
171 | '/_pathlessLayout/_nested-layout'
172 | '/callback/'
173 | '/_pathlessLayout/_nested-layout/route-a'
174 | '/_pathlessLayout/_nested-layout/route-b'
175 | '/profile/$did/'
176 | '/profile/$did/post/$rkey'
177 | '/profile/$did/post/$rkey/image/$i'
178 fileRoutesById: FileRoutesById
179}
180export interface RootRouteChildren {
181 IndexRoute: typeof IndexRoute
182 PathlessLayoutRoute: typeof PathlessLayoutRouteWithChildren
183 FeedsRoute: typeof FeedsRoute
184 NotificationsRoute: typeof NotificationsRoute
185 SearchRoute: typeof SearchRoute
186 SettingsRoute: typeof SettingsRoute
187 CallbackIndexRoute: typeof CallbackIndexRoute
188 ProfileDidIndexRoute: typeof ProfileDidIndexRoute
189 ProfileDidPostRkeyRoute: typeof ProfileDidPostRkeyRouteWithChildren
190}
191
192declare module '@tanstack/react-router' {
193 interface FileRoutesByPath {
194 '/settings': {
195 id: '/settings'
196 path: '/settings'
197 fullPath: '/settings'
198 preLoaderRoute: typeof SettingsRouteImport
199 parentRoute: typeof rootRouteImport
200 }
201 '/search': {
202 id: '/search'
203 path: '/search'
204 fullPath: '/search'
205 preLoaderRoute: typeof SearchRouteImport
206 parentRoute: typeof rootRouteImport
207 }
208 '/notifications': {
209 id: '/notifications'
210 path: '/notifications'
211 fullPath: '/notifications'
212 preLoaderRoute: typeof NotificationsRouteImport
213 parentRoute: typeof rootRouteImport
214 }
215 '/feeds': {
216 id: '/feeds'
217 path: '/feeds'
218 fullPath: '/feeds'
219 preLoaderRoute: typeof FeedsRouteImport
220 parentRoute: typeof rootRouteImport
221 }
222 '/_pathlessLayout': {
223 id: '/_pathlessLayout'
224 path: ''
225 fullPath: ''
226 preLoaderRoute: typeof PathlessLayoutRouteImport
227 parentRoute: typeof rootRouteImport
228 }
229 '/': {
230 id: '/'
231 path: '/'
232 fullPath: '/'
233 preLoaderRoute: typeof IndexRouteImport
234 parentRoute: typeof rootRouteImport
235 }
236 '/callback/': {
237 id: '/callback/'
238 path: '/callback'
239 fullPath: '/callback'
240 preLoaderRoute: typeof CallbackIndexRouteImport
241 parentRoute: typeof rootRouteImport
242 }
243 '/_pathlessLayout/_nested-layout': {
244 id: '/_pathlessLayout/_nested-layout'
245 path: ''
246 fullPath: ''
247 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteImport
248 parentRoute: typeof PathlessLayoutRoute
249 }
250 '/profile/$did/': {
251 id: '/profile/$did/'
252 path: '/profile/$did'
253 fullPath: '/profile/$did'
254 preLoaderRoute: typeof ProfileDidIndexRouteImport
255 parentRoute: typeof rootRouteImport
256 }
257 '/_pathlessLayout/_nested-layout/route-b': {
258 id: '/_pathlessLayout/_nested-layout/route-b'
259 path: '/route-b'
260 fullPath: '/route-b'
261 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteBRouteImport
262 parentRoute: typeof PathlessLayoutNestedLayoutRoute
263 }
264 '/_pathlessLayout/_nested-layout/route-a': {
265 id: '/_pathlessLayout/_nested-layout/route-a'
266 path: '/route-a'
267 fullPath: '/route-a'
268 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteARouteImport
269 parentRoute: typeof PathlessLayoutNestedLayoutRoute
270 }
271 '/profile/$did/post/$rkey': {
272 id: '/profile/$did/post/$rkey'
273 path: '/profile/$did/post/$rkey'
274 fullPath: '/profile/$did/post/$rkey'
275 preLoaderRoute: typeof ProfileDidPostRkeyRouteImport
276 parentRoute: typeof rootRouteImport
277 }
278 '/profile/$did/post/$rkey/image/$i': {
279 id: '/profile/$did/post/$rkey/image/$i'
280 path: '/image/$i'
281 fullPath: '/profile/$did/post/$rkey/image/$i'
282 preLoaderRoute: typeof ProfileDidPostRkeyImageIRouteImport
283 parentRoute: typeof ProfileDidPostRkeyRoute
284 }
285 }
286}
287
288interface PathlessLayoutNestedLayoutRouteChildren {
289 PathlessLayoutNestedLayoutRouteARoute: typeof PathlessLayoutNestedLayoutRouteARoute
290 PathlessLayoutNestedLayoutRouteBRoute: typeof PathlessLayoutNestedLayoutRouteBRoute
291}
292
293const PathlessLayoutNestedLayoutRouteChildren: PathlessLayoutNestedLayoutRouteChildren =
294 {
295 PathlessLayoutNestedLayoutRouteARoute:
296 PathlessLayoutNestedLayoutRouteARoute,
297 PathlessLayoutNestedLayoutRouteBRoute:
298 PathlessLayoutNestedLayoutRouteBRoute,
299 }
300
301const PathlessLayoutNestedLayoutRouteWithChildren =
302 PathlessLayoutNestedLayoutRoute._addFileChildren(
303 PathlessLayoutNestedLayoutRouteChildren,
304 )
305
306interface PathlessLayoutRouteChildren {
307 PathlessLayoutNestedLayoutRoute: typeof PathlessLayoutNestedLayoutRouteWithChildren
308}
309
310const PathlessLayoutRouteChildren: PathlessLayoutRouteChildren = {
311 PathlessLayoutNestedLayoutRoute: PathlessLayoutNestedLayoutRouteWithChildren,
312}
313
314const PathlessLayoutRouteWithChildren = PathlessLayoutRoute._addFileChildren(
315 PathlessLayoutRouteChildren,
316)
317
318interface ProfileDidPostRkeyRouteChildren {
319 ProfileDidPostRkeyImageIRoute: typeof ProfileDidPostRkeyImageIRoute
320}
321
322const ProfileDidPostRkeyRouteChildren: ProfileDidPostRkeyRouteChildren = {
323 ProfileDidPostRkeyImageIRoute: ProfileDidPostRkeyImageIRoute,
324}
325
326const ProfileDidPostRkeyRouteWithChildren =
327 ProfileDidPostRkeyRoute._addFileChildren(ProfileDidPostRkeyRouteChildren)
328
329const rootRouteChildren: RootRouteChildren = {
330 IndexRoute: IndexRoute,
331 PathlessLayoutRoute: PathlessLayoutRouteWithChildren,
332 FeedsRoute: FeedsRoute,
333 NotificationsRoute: NotificationsRoute,
334 SearchRoute: SearchRoute,
335 SettingsRoute: SettingsRoute,
336 CallbackIndexRoute: CallbackIndexRoute,
337 ProfileDidIndexRoute: ProfileDidIndexRoute,
338 ProfileDidPostRkeyRoute: ProfileDidPostRkeyRouteWithChildren,
339}
340export const routeTree = rootRouteImport
341 ._addFileChildren(rootRouteChildren)
342 ._addFileTypes<FileRouteTypes>()