kaneo (minimalist kanban) fork to experiment adding a tangled integration
github.com/usekaneo/kaneo
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 TestErrorRouteImport } from './routes/test-error'
13import { Route as DeviceRouteImport } from './routes/device'
14import { Route as AuthRouteImport } from './routes/auth'
15import { Route as LayoutRouteImport } from './routes/_layout'
16import { Route as IndexRouteImport } from './routes/index'
17import { Route as DeviceIndexRouteImport } from './routes/device/index'
18import { Route as PublicProjectProjectIdRouteImport } from './routes/public-project.$projectId'
19import { Route as DeviceApproveRouteImport } from './routes/device/approve'
20import { Route as AuthVerifyOtpRouteImport } from './routes/auth/verify-otp'
21import { Route as AuthSignUpRouteImport } from './routes/auth/sign-up'
22import { Route as AuthSignInRouteImport } from './routes/auth/sign-in'
23import { Route as AuthCheckEmailRouteImport } from './routes/auth/check-email'
24import { Route as LayoutAuthenticatedRouteImport } from './routes/_layout/_authenticated'
25import { Route as InvitationAcceptInviteIdRouteImport } from './routes/invitation/accept.$inviteId'
26import { Route as LayoutAuthenticatedProfileSetupRouteImport } from './routes/_layout/_authenticated/profile-setup'
27import { Route as LayoutAuthenticatedOnboardingRouteImport } from './routes/_layout/_authenticated/onboarding'
28import { Route as LayoutAuthenticatedInvitationsRouteImport } from './routes/_layout/_authenticated/invitations'
29import { Route as LayoutAuthenticatedDashboardRouteImport } from './routes/_layout/_authenticated/dashboard'
30import { Route as LayoutAuthenticatedDashboardIndexRouteImport } from './routes/_layout/_authenticated/dashboard/index'
31import { Route as LayoutAuthenticatedDashboardSettingsRouteImport } from './routes/_layout/_authenticated/dashboard/settings'
32import { Route as LayoutAuthenticatedDashboardInvitationsRouteImport } from './routes/_layout/_authenticated/dashboard/invitations'
33import { Route as LayoutAuthenticatedDashboardWorkspaceCreateRouteImport } from './routes/_layout/_authenticated/dashboard/workspace/create'
34import { Route as LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteImport } from './routes/_layout/_authenticated/dashboard/workspace/$workspaceId'
35import { Route as LayoutAuthenticatedDashboardSettingsWorkspaceRouteImport } from './routes/_layout/_authenticated/dashboard/settings/workspace'
36import { Route as LayoutAuthenticatedDashboardSettingsProjectsRouteImport } from './routes/_layout/_authenticated/dashboard/settings/projects'
37import { Route as LayoutAuthenticatedDashboardSettingsAccountRouteImport } from './routes/_layout/_authenticated/dashboard/settings/account'
38import { Route as LayoutAuthenticatedDashboardWorkspaceWorkspaceIdIndexRouteImport } from './routes/_layout/_authenticated/dashboard/workspace/$workspaceId/index'
39import { Route as LayoutAuthenticatedDashboardWorkspaceWorkspaceIdSearchRouteImport } from './routes/_layout/_authenticated/dashboard/workspace/$workspaceId/search'
40import { Route as LayoutAuthenticatedDashboardWorkspaceWorkspaceIdMembersRouteImport } from './routes/_layout/_authenticated/dashboard/workspace/$workspaceId/members'
41import { Route as LayoutAuthenticatedDashboardSettingsWorkspaceGeneralRouteImport } from './routes/_layout/_authenticated/dashboard/settings/workspace/general'
42import { Route as LayoutAuthenticatedDashboardSettingsAccountPreferencesRouteImport } from './routes/_layout/_authenticated/dashboard/settings/account/preferences'
43import { Route as LayoutAuthenticatedDashboardSettingsAccountNotificationsRouteImport } from './routes/_layout/_authenticated/dashboard/settings/account/notifications'
44import { Route as LayoutAuthenticatedDashboardSettingsAccountInformationRouteImport } from './routes/_layout/_authenticated/dashboard/settings/account/information'
45import { Route as LayoutAuthenticatedDashboardSettingsAccountDeveloperRouteImport } from './routes/_layout/_authenticated/dashboard/settings/account/developer'
46import { Route as LayoutAuthenticatedDashboardSettingsProjectsProjectIdWorkflowRouteImport } from './routes/_layout/_authenticated/dashboard/settings/projects/$projectId/workflow'
47import { Route as LayoutAuthenticatedDashboardSettingsProjectsProjectIdVisibilityRouteImport } from './routes/_layout/_authenticated/dashboard/settings/projects/$projectId/visibility'
48import { Route as LayoutAuthenticatedDashboardSettingsProjectsProjectIdIntegrationsRouteImport } from './routes/_layout/_authenticated/dashboard/settings/projects/$projectId/integrations'
49import { Route as LayoutAuthenticatedDashboardSettingsProjectsProjectIdGeneralRouteImport } from './routes/_layout/_authenticated/dashboard/settings/projects/$projectId/general'
50import { Route as LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdIndexRouteImport } from './routes/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/index'
51import { Route as LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdGanttRouteImport } from './routes/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/gantt'
52import { Route as LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBoardRouteImport } from './routes/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/board'
53import { Route as LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBacklogRouteImport } from './routes/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/backlog'
54import { Route as LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdTaskTaskIdRouteImport } from './routes/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/task/$taskId_'
55
56const TestErrorRoute = TestErrorRouteImport.update({
57 id: '/test-error',
58 path: '/test-error',
59 getParentRoute: () => rootRouteImport,
60} as any)
61const DeviceRoute = DeviceRouteImport.update({
62 id: '/device',
63 path: '/device',
64 getParentRoute: () => rootRouteImport,
65} as any)
66const AuthRoute = AuthRouteImport.update({
67 id: '/auth',
68 path: '/auth',
69 getParentRoute: () => rootRouteImport,
70} as any)
71const LayoutRoute = LayoutRouteImport.update({
72 id: '/_layout',
73 getParentRoute: () => rootRouteImport,
74} as any)
75const IndexRoute = IndexRouteImport.update({
76 id: '/',
77 path: '/',
78 getParentRoute: () => rootRouteImport,
79} as any)
80const DeviceIndexRoute = DeviceIndexRouteImport.update({
81 id: '/',
82 path: '/',
83 getParentRoute: () => DeviceRoute,
84} as any)
85const PublicProjectProjectIdRoute = PublicProjectProjectIdRouteImport.update({
86 id: '/public-project/$projectId',
87 path: '/public-project/$projectId',
88 getParentRoute: () => rootRouteImport,
89} as any)
90const DeviceApproveRoute = DeviceApproveRouteImport.update({
91 id: '/approve',
92 path: '/approve',
93 getParentRoute: () => DeviceRoute,
94} as any)
95const AuthVerifyOtpRoute = AuthVerifyOtpRouteImport.update({
96 id: '/verify-otp',
97 path: '/verify-otp',
98 getParentRoute: () => AuthRoute,
99} as any)
100const AuthSignUpRoute = AuthSignUpRouteImport.update({
101 id: '/sign-up',
102 path: '/sign-up',
103 getParentRoute: () => AuthRoute,
104} as any)
105const AuthSignInRoute = AuthSignInRouteImport.update({
106 id: '/sign-in',
107 path: '/sign-in',
108 getParentRoute: () => AuthRoute,
109} as any)
110const AuthCheckEmailRoute = AuthCheckEmailRouteImport.update({
111 id: '/check-email',
112 path: '/check-email',
113 getParentRoute: () => AuthRoute,
114} as any)
115const LayoutAuthenticatedRoute = LayoutAuthenticatedRouteImport.update({
116 id: '/_authenticated',
117 getParentRoute: () => LayoutRoute,
118} as any)
119const InvitationAcceptInviteIdRoute =
120 InvitationAcceptInviteIdRouteImport.update({
121 id: '/invitation/accept/$inviteId',
122 path: '/invitation/accept/$inviteId',
123 getParentRoute: () => rootRouteImport,
124 } as any)
125const LayoutAuthenticatedProfileSetupRoute =
126 LayoutAuthenticatedProfileSetupRouteImport.update({
127 id: '/profile-setup',
128 path: '/profile-setup',
129 getParentRoute: () => LayoutAuthenticatedRoute,
130 } as any)
131const LayoutAuthenticatedOnboardingRoute =
132 LayoutAuthenticatedOnboardingRouteImport.update({
133 id: '/onboarding',
134 path: '/onboarding',
135 getParentRoute: () => LayoutAuthenticatedRoute,
136 } as any)
137const LayoutAuthenticatedInvitationsRoute =
138 LayoutAuthenticatedInvitationsRouteImport.update({
139 id: '/invitations',
140 path: '/invitations',
141 getParentRoute: () => LayoutAuthenticatedRoute,
142 } as any)
143const LayoutAuthenticatedDashboardRoute =
144 LayoutAuthenticatedDashboardRouteImport.update({
145 id: '/dashboard',
146 path: '/dashboard',
147 getParentRoute: () => LayoutAuthenticatedRoute,
148 } as any)
149const LayoutAuthenticatedDashboardIndexRoute =
150 LayoutAuthenticatedDashboardIndexRouteImport.update({
151 id: '/',
152 path: '/',
153 getParentRoute: () => LayoutAuthenticatedDashboardRoute,
154 } as any)
155const LayoutAuthenticatedDashboardSettingsRoute =
156 LayoutAuthenticatedDashboardSettingsRouteImport.update({
157 id: '/settings',
158 path: '/settings',
159 getParentRoute: () => LayoutAuthenticatedDashboardRoute,
160 } as any)
161const LayoutAuthenticatedDashboardInvitationsRoute =
162 LayoutAuthenticatedDashboardInvitationsRouteImport.update({
163 id: '/invitations',
164 path: '/invitations',
165 getParentRoute: () => LayoutAuthenticatedDashboardRoute,
166 } as any)
167const LayoutAuthenticatedDashboardWorkspaceCreateRoute =
168 LayoutAuthenticatedDashboardWorkspaceCreateRouteImport.update({
169 id: '/workspace/create',
170 path: '/workspace/create',
171 getParentRoute: () => LayoutAuthenticatedDashboardRoute,
172 } as any)
173const LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute =
174 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteImport.update({
175 id: '/workspace/$workspaceId',
176 path: '/workspace/$workspaceId',
177 getParentRoute: () => LayoutAuthenticatedDashboardRoute,
178 } as any)
179const LayoutAuthenticatedDashboardSettingsWorkspaceRoute =
180 LayoutAuthenticatedDashboardSettingsWorkspaceRouteImport.update({
181 id: '/workspace',
182 path: '/workspace',
183 getParentRoute: () => LayoutAuthenticatedDashboardSettingsRoute,
184 } as any)
185const LayoutAuthenticatedDashboardSettingsProjectsRoute =
186 LayoutAuthenticatedDashboardSettingsProjectsRouteImport.update({
187 id: '/projects',
188 path: '/projects',
189 getParentRoute: () => LayoutAuthenticatedDashboardSettingsRoute,
190 } as any)
191const LayoutAuthenticatedDashboardSettingsAccountRoute =
192 LayoutAuthenticatedDashboardSettingsAccountRouteImport.update({
193 id: '/account',
194 path: '/account',
195 getParentRoute: () => LayoutAuthenticatedDashboardSettingsRoute,
196 } as any)
197const LayoutAuthenticatedDashboardWorkspaceWorkspaceIdIndexRoute =
198 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdIndexRouteImport.update({
199 id: '/',
200 path: '/',
201 getParentRoute: () => LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute,
202 } as any)
203const LayoutAuthenticatedDashboardWorkspaceWorkspaceIdSearchRoute =
204 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdSearchRouteImport.update({
205 id: '/search',
206 path: '/search',
207 getParentRoute: () => LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute,
208 } as any)
209const LayoutAuthenticatedDashboardWorkspaceWorkspaceIdMembersRoute =
210 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdMembersRouteImport.update({
211 id: '/members',
212 path: '/members',
213 getParentRoute: () => LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute,
214 } as any)
215const LayoutAuthenticatedDashboardSettingsWorkspaceGeneralRoute =
216 LayoutAuthenticatedDashboardSettingsWorkspaceGeneralRouteImport.update({
217 id: '/general',
218 path: '/general',
219 getParentRoute: () => LayoutAuthenticatedDashboardSettingsWorkspaceRoute,
220 } as any)
221const LayoutAuthenticatedDashboardSettingsAccountPreferencesRoute =
222 LayoutAuthenticatedDashboardSettingsAccountPreferencesRouteImport.update({
223 id: '/preferences',
224 path: '/preferences',
225 getParentRoute: () => LayoutAuthenticatedDashboardSettingsAccountRoute,
226 } as any)
227const LayoutAuthenticatedDashboardSettingsAccountNotificationsRoute =
228 LayoutAuthenticatedDashboardSettingsAccountNotificationsRouteImport.update({
229 id: '/notifications',
230 path: '/notifications',
231 getParentRoute: () => LayoutAuthenticatedDashboardSettingsAccountRoute,
232 } as any)
233const LayoutAuthenticatedDashboardSettingsAccountInformationRoute =
234 LayoutAuthenticatedDashboardSettingsAccountInformationRouteImport.update({
235 id: '/information',
236 path: '/information',
237 getParentRoute: () => LayoutAuthenticatedDashboardSettingsAccountRoute,
238 } as any)
239const LayoutAuthenticatedDashboardSettingsAccountDeveloperRoute =
240 LayoutAuthenticatedDashboardSettingsAccountDeveloperRouteImport.update({
241 id: '/developer',
242 path: '/developer',
243 getParentRoute: () => LayoutAuthenticatedDashboardSettingsAccountRoute,
244 } as any)
245const LayoutAuthenticatedDashboardSettingsProjectsProjectIdWorkflowRoute =
246 LayoutAuthenticatedDashboardSettingsProjectsProjectIdWorkflowRouteImport.update(
247 {
248 id: '/$projectId/workflow',
249 path: '/$projectId/workflow',
250 getParentRoute: () => LayoutAuthenticatedDashboardSettingsProjectsRoute,
251 } as any,
252 )
253const LayoutAuthenticatedDashboardSettingsProjectsProjectIdVisibilityRoute =
254 LayoutAuthenticatedDashboardSettingsProjectsProjectIdVisibilityRouteImport.update(
255 {
256 id: '/$projectId/visibility',
257 path: '/$projectId/visibility',
258 getParentRoute: () => LayoutAuthenticatedDashboardSettingsProjectsRoute,
259 } as any,
260 )
261const LayoutAuthenticatedDashboardSettingsProjectsProjectIdIntegrationsRoute =
262 LayoutAuthenticatedDashboardSettingsProjectsProjectIdIntegrationsRouteImport.update(
263 {
264 id: '/$projectId/integrations',
265 path: '/$projectId/integrations',
266 getParentRoute: () => LayoutAuthenticatedDashboardSettingsProjectsRoute,
267 } as any,
268 )
269const LayoutAuthenticatedDashboardSettingsProjectsProjectIdGeneralRoute =
270 LayoutAuthenticatedDashboardSettingsProjectsProjectIdGeneralRouteImport.update(
271 {
272 id: '/$projectId/general',
273 path: '/$projectId/general',
274 getParentRoute: () => LayoutAuthenticatedDashboardSettingsProjectsRoute,
275 } as any,
276 )
277const LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdIndexRoute =
278 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdIndexRouteImport.update(
279 {
280 id: '/project/$projectId/',
281 path: '/project/$projectId/',
282 getParentRoute: () =>
283 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute,
284 } as any,
285 )
286const LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdGanttRoute =
287 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdGanttRouteImport.update(
288 {
289 id: '/project/$projectId/gantt',
290 path: '/project/$projectId/gantt',
291 getParentRoute: () =>
292 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute,
293 } as any,
294 )
295const LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBoardRoute =
296 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBoardRouteImport.update(
297 {
298 id: '/project/$projectId/board',
299 path: '/project/$projectId/board',
300 getParentRoute: () =>
301 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute,
302 } as any,
303 )
304const LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBacklogRoute =
305 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBacklogRouteImport.update(
306 {
307 id: '/project/$projectId/backlog',
308 path: '/project/$projectId/backlog',
309 getParentRoute: () =>
310 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute,
311 } as any,
312 )
313const LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdTaskTaskIdRoute =
314 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdTaskTaskIdRouteImport.update(
315 {
316 id: '/project/$projectId/task/$taskId_',
317 path: '/project/$projectId/task/$taskId',
318 getParentRoute: () =>
319 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute,
320 } as any,
321 )
322
323export interface FileRoutesByFullPath {
324 '/': typeof IndexRoute
325 '/auth': typeof AuthRouteWithChildren
326 '/device': typeof DeviceRouteWithChildren
327 '/test-error': typeof TestErrorRoute
328 '/auth/check-email': typeof AuthCheckEmailRoute
329 '/auth/sign-in': typeof AuthSignInRoute
330 '/auth/sign-up': typeof AuthSignUpRoute
331 '/auth/verify-otp': typeof AuthVerifyOtpRoute
332 '/device/approve': typeof DeviceApproveRoute
333 '/public-project/$projectId': typeof PublicProjectProjectIdRoute
334 '/device/': typeof DeviceIndexRoute
335 '/dashboard': typeof LayoutAuthenticatedDashboardRouteWithChildren
336 '/invitations': typeof LayoutAuthenticatedInvitationsRoute
337 '/onboarding': typeof LayoutAuthenticatedOnboardingRoute
338 '/profile-setup': typeof LayoutAuthenticatedProfileSetupRoute
339 '/invitation/accept/$inviteId': typeof InvitationAcceptInviteIdRoute
340 '/dashboard/invitations': typeof LayoutAuthenticatedDashboardInvitationsRoute
341 '/dashboard/settings': typeof LayoutAuthenticatedDashboardSettingsRouteWithChildren
342 '/dashboard/': typeof LayoutAuthenticatedDashboardIndexRoute
343 '/dashboard/settings/account': typeof LayoutAuthenticatedDashboardSettingsAccountRouteWithChildren
344 '/dashboard/settings/projects': typeof LayoutAuthenticatedDashboardSettingsProjectsRouteWithChildren
345 '/dashboard/settings/workspace': typeof LayoutAuthenticatedDashboardSettingsWorkspaceRouteWithChildren
346 '/dashboard/workspace/$workspaceId': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteWithChildren
347 '/dashboard/workspace/create': typeof LayoutAuthenticatedDashboardWorkspaceCreateRoute
348 '/dashboard/settings/account/developer': typeof LayoutAuthenticatedDashboardSettingsAccountDeveloperRoute
349 '/dashboard/settings/account/information': typeof LayoutAuthenticatedDashboardSettingsAccountInformationRoute
350 '/dashboard/settings/account/notifications': typeof LayoutAuthenticatedDashboardSettingsAccountNotificationsRoute
351 '/dashboard/settings/account/preferences': typeof LayoutAuthenticatedDashboardSettingsAccountPreferencesRoute
352 '/dashboard/settings/workspace/general': typeof LayoutAuthenticatedDashboardSettingsWorkspaceGeneralRoute
353 '/dashboard/workspace/$workspaceId/members': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdMembersRoute
354 '/dashboard/workspace/$workspaceId/search': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdSearchRoute
355 '/dashboard/workspace/$workspaceId/': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdIndexRoute
356 '/dashboard/settings/projects/$projectId/general': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdGeneralRoute
357 '/dashboard/settings/projects/$projectId/integrations': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdIntegrationsRoute
358 '/dashboard/settings/projects/$projectId/visibility': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdVisibilityRoute
359 '/dashboard/settings/projects/$projectId/workflow': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdWorkflowRoute
360 '/dashboard/workspace/$workspaceId/project/$projectId/backlog': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBacklogRoute
361 '/dashboard/workspace/$workspaceId/project/$projectId/board': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBoardRoute
362 '/dashboard/workspace/$workspaceId/project/$projectId/gantt': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdGanttRoute
363 '/dashboard/workspace/$workspaceId/project/$projectId/': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdIndexRoute
364 '/dashboard/workspace/$workspaceId/project/$projectId/task/$taskId': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdTaskTaskIdRoute
365}
366export interface FileRoutesByTo {
367 '/': typeof IndexRoute
368 '/auth': typeof AuthRouteWithChildren
369 '/test-error': typeof TestErrorRoute
370 '/auth/check-email': typeof AuthCheckEmailRoute
371 '/auth/sign-in': typeof AuthSignInRoute
372 '/auth/sign-up': typeof AuthSignUpRoute
373 '/auth/verify-otp': typeof AuthVerifyOtpRoute
374 '/device/approve': typeof DeviceApproveRoute
375 '/public-project/$projectId': typeof PublicProjectProjectIdRoute
376 '/device': typeof DeviceIndexRoute
377 '/invitations': typeof LayoutAuthenticatedInvitationsRoute
378 '/onboarding': typeof LayoutAuthenticatedOnboardingRoute
379 '/profile-setup': typeof LayoutAuthenticatedProfileSetupRoute
380 '/invitation/accept/$inviteId': typeof InvitationAcceptInviteIdRoute
381 '/dashboard/invitations': typeof LayoutAuthenticatedDashboardInvitationsRoute
382 '/dashboard/settings': typeof LayoutAuthenticatedDashboardSettingsRouteWithChildren
383 '/dashboard': typeof LayoutAuthenticatedDashboardIndexRoute
384 '/dashboard/settings/account': typeof LayoutAuthenticatedDashboardSettingsAccountRouteWithChildren
385 '/dashboard/settings/projects': typeof LayoutAuthenticatedDashboardSettingsProjectsRouteWithChildren
386 '/dashboard/settings/workspace': typeof LayoutAuthenticatedDashboardSettingsWorkspaceRouteWithChildren
387 '/dashboard/workspace/create': typeof LayoutAuthenticatedDashboardWorkspaceCreateRoute
388 '/dashboard/settings/account/developer': typeof LayoutAuthenticatedDashboardSettingsAccountDeveloperRoute
389 '/dashboard/settings/account/information': typeof LayoutAuthenticatedDashboardSettingsAccountInformationRoute
390 '/dashboard/settings/account/notifications': typeof LayoutAuthenticatedDashboardSettingsAccountNotificationsRoute
391 '/dashboard/settings/account/preferences': typeof LayoutAuthenticatedDashboardSettingsAccountPreferencesRoute
392 '/dashboard/settings/workspace/general': typeof LayoutAuthenticatedDashboardSettingsWorkspaceGeneralRoute
393 '/dashboard/workspace/$workspaceId/members': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdMembersRoute
394 '/dashboard/workspace/$workspaceId/search': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdSearchRoute
395 '/dashboard/workspace/$workspaceId': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdIndexRoute
396 '/dashboard/settings/projects/$projectId/general': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdGeneralRoute
397 '/dashboard/settings/projects/$projectId/integrations': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdIntegrationsRoute
398 '/dashboard/settings/projects/$projectId/visibility': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdVisibilityRoute
399 '/dashboard/settings/projects/$projectId/workflow': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdWorkflowRoute
400 '/dashboard/workspace/$workspaceId/project/$projectId/backlog': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBacklogRoute
401 '/dashboard/workspace/$workspaceId/project/$projectId/board': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBoardRoute
402 '/dashboard/workspace/$workspaceId/project/$projectId/gantt': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdGanttRoute
403 '/dashboard/workspace/$workspaceId/project/$projectId': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdIndexRoute
404 '/dashboard/workspace/$workspaceId/project/$projectId/task/$taskId': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdTaskTaskIdRoute
405}
406export interface FileRoutesById {
407 __root__: typeof rootRouteImport
408 '/': typeof IndexRoute
409 '/_layout': typeof LayoutRouteWithChildren
410 '/auth': typeof AuthRouteWithChildren
411 '/device': typeof DeviceRouteWithChildren
412 '/test-error': typeof TestErrorRoute
413 '/_layout/_authenticated': typeof LayoutAuthenticatedRouteWithChildren
414 '/auth/check-email': typeof AuthCheckEmailRoute
415 '/auth/sign-in': typeof AuthSignInRoute
416 '/auth/sign-up': typeof AuthSignUpRoute
417 '/auth/verify-otp': typeof AuthVerifyOtpRoute
418 '/device/approve': typeof DeviceApproveRoute
419 '/public-project/$projectId': typeof PublicProjectProjectIdRoute
420 '/device/': typeof DeviceIndexRoute
421 '/_layout/_authenticated/dashboard': typeof LayoutAuthenticatedDashboardRouteWithChildren
422 '/_layout/_authenticated/invitations': typeof LayoutAuthenticatedInvitationsRoute
423 '/_layout/_authenticated/onboarding': typeof LayoutAuthenticatedOnboardingRoute
424 '/_layout/_authenticated/profile-setup': typeof LayoutAuthenticatedProfileSetupRoute
425 '/invitation/accept/$inviteId': typeof InvitationAcceptInviteIdRoute
426 '/_layout/_authenticated/dashboard/invitations': typeof LayoutAuthenticatedDashboardInvitationsRoute
427 '/_layout/_authenticated/dashboard/settings': typeof LayoutAuthenticatedDashboardSettingsRouteWithChildren
428 '/_layout/_authenticated/dashboard/': typeof LayoutAuthenticatedDashboardIndexRoute
429 '/_layout/_authenticated/dashboard/settings/account': typeof LayoutAuthenticatedDashboardSettingsAccountRouteWithChildren
430 '/_layout/_authenticated/dashboard/settings/projects': typeof LayoutAuthenticatedDashboardSettingsProjectsRouteWithChildren
431 '/_layout/_authenticated/dashboard/settings/workspace': typeof LayoutAuthenticatedDashboardSettingsWorkspaceRouteWithChildren
432 '/_layout/_authenticated/dashboard/workspace/$workspaceId': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteWithChildren
433 '/_layout/_authenticated/dashboard/workspace/create': typeof LayoutAuthenticatedDashboardWorkspaceCreateRoute
434 '/_layout/_authenticated/dashboard/settings/account/developer': typeof LayoutAuthenticatedDashboardSettingsAccountDeveloperRoute
435 '/_layout/_authenticated/dashboard/settings/account/information': typeof LayoutAuthenticatedDashboardSettingsAccountInformationRoute
436 '/_layout/_authenticated/dashboard/settings/account/notifications': typeof LayoutAuthenticatedDashboardSettingsAccountNotificationsRoute
437 '/_layout/_authenticated/dashboard/settings/account/preferences': typeof LayoutAuthenticatedDashboardSettingsAccountPreferencesRoute
438 '/_layout/_authenticated/dashboard/settings/workspace/general': typeof LayoutAuthenticatedDashboardSettingsWorkspaceGeneralRoute
439 '/_layout/_authenticated/dashboard/workspace/$workspaceId/members': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdMembersRoute
440 '/_layout/_authenticated/dashboard/workspace/$workspaceId/search': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdSearchRoute
441 '/_layout/_authenticated/dashboard/workspace/$workspaceId/': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdIndexRoute
442 '/_layout/_authenticated/dashboard/settings/projects/$projectId/general': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdGeneralRoute
443 '/_layout/_authenticated/dashboard/settings/projects/$projectId/integrations': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdIntegrationsRoute
444 '/_layout/_authenticated/dashboard/settings/projects/$projectId/visibility': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdVisibilityRoute
445 '/_layout/_authenticated/dashboard/settings/projects/$projectId/workflow': typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdWorkflowRoute
446 '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/backlog': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBacklogRoute
447 '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/board': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBoardRoute
448 '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/gantt': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdGanttRoute
449 '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdIndexRoute
450 '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/task/$taskId_': typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdTaskTaskIdRoute
451}
452export interface FileRouteTypes {
453 fileRoutesByFullPath: FileRoutesByFullPath
454 fullPaths:
455 | '/'
456 | '/auth'
457 | '/device'
458 | '/test-error'
459 | '/auth/check-email'
460 | '/auth/sign-in'
461 | '/auth/sign-up'
462 | '/auth/verify-otp'
463 | '/device/approve'
464 | '/public-project/$projectId'
465 | '/device/'
466 | '/dashboard'
467 | '/invitations'
468 | '/onboarding'
469 | '/profile-setup'
470 | '/invitation/accept/$inviteId'
471 | '/dashboard/invitations'
472 | '/dashboard/settings'
473 | '/dashboard/'
474 | '/dashboard/settings/account'
475 | '/dashboard/settings/projects'
476 | '/dashboard/settings/workspace'
477 | '/dashboard/workspace/$workspaceId'
478 | '/dashboard/workspace/create'
479 | '/dashboard/settings/account/developer'
480 | '/dashboard/settings/account/information'
481 | '/dashboard/settings/account/notifications'
482 | '/dashboard/settings/account/preferences'
483 | '/dashboard/settings/workspace/general'
484 | '/dashboard/workspace/$workspaceId/members'
485 | '/dashboard/workspace/$workspaceId/search'
486 | '/dashboard/workspace/$workspaceId/'
487 | '/dashboard/settings/projects/$projectId/general'
488 | '/dashboard/settings/projects/$projectId/integrations'
489 | '/dashboard/settings/projects/$projectId/visibility'
490 | '/dashboard/settings/projects/$projectId/workflow'
491 | '/dashboard/workspace/$workspaceId/project/$projectId/backlog'
492 | '/dashboard/workspace/$workspaceId/project/$projectId/board'
493 | '/dashboard/workspace/$workspaceId/project/$projectId/gantt'
494 | '/dashboard/workspace/$workspaceId/project/$projectId/'
495 | '/dashboard/workspace/$workspaceId/project/$projectId/task/$taskId'
496 fileRoutesByTo: FileRoutesByTo
497 to:
498 | '/'
499 | '/auth'
500 | '/test-error'
501 | '/auth/check-email'
502 | '/auth/sign-in'
503 | '/auth/sign-up'
504 | '/auth/verify-otp'
505 | '/device/approve'
506 | '/public-project/$projectId'
507 | '/device'
508 | '/invitations'
509 | '/onboarding'
510 | '/profile-setup'
511 | '/invitation/accept/$inviteId'
512 | '/dashboard/invitations'
513 | '/dashboard/settings'
514 | '/dashboard'
515 | '/dashboard/settings/account'
516 | '/dashboard/settings/projects'
517 | '/dashboard/settings/workspace'
518 | '/dashboard/workspace/create'
519 | '/dashboard/settings/account/developer'
520 | '/dashboard/settings/account/information'
521 | '/dashboard/settings/account/notifications'
522 | '/dashboard/settings/account/preferences'
523 | '/dashboard/settings/workspace/general'
524 | '/dashboard/workspace/$workspaceId/members'
525 | '/dashboard/workspace/$workspaceId/search'
526 | '/dashboard/workspace/$workspaceId'
527 | '/dashboard/settings/projects/$projectId/general'
528 | '/dashboard/settings/projects/$projectId/integrations'
529 | '/dashboard/settings/projects/$projectId/visibility'
530 | '/dashboard/settings/projects/$projectId/workflow'
531 | '/dashboard/workspace/$workspaceId/project/$projectId/backlog'
532 | '/dashboard/workspace/$workspaceId/project/$projectId/board'
533 | '/dashboard/workspace/$workspaceId/project/$projectId/gantt'
534 | '/dashboard/workspace/$workspaceId/project/$projectId'
535 | '/dashboard/workspace/$workspaceId/project/$projectId/task/$taskId'
536 id:
537 | '__root__'
538 | '/'
539 | '/_layout'
540 | '/auth'
541 | '/device'
542 | '/test-error'
543 | '/_layout/_authenticated'
544 | '/auth/check-email'
545 | '/auth/sign-in'
546 | '/auth/sign-up'
547 | '/auth/verify-otp'
548 | '/device/approve'
549 | '/public-project/$projectId'
550 | '/device/'
551 | '/_layout/_authenticated/dashboard'
552 | '/_layout/_authenticated/invitations'
553 | '/_layout/_authenticated/onboarding'
554 | '/_layout/_authenticated/profile-setup'
555 | '/invitation/accept/$inviteId'
556 | '/_layout/_authenticated/dashboard/invitations'
557 | '/_layout/_authenticated/dashboard/settings'
558 | '/_layout/_authenticated/dashboard/'
559 | '/_layout/_authenticated/dashboard/settings/account'
560 | '/_layout/_authenticated/dashboard/settings/projects'
561 | '/_layout/_authenticated/dashboard/settings/workspace'
562 | '/_layout/_authenticated/dashboard/workspace/$workspaceId'
563 | '/_layout/_authenticated/dashboard/workspace/create'
564 | '/_layout/_authenticated/dashboard/settings/account/developer'
565 | '/_layout/_authenticated/dashboard/settings/account/information'
566 | '/_layout/_authenticated/dashboard/settings/account/notifications'
567 | '/_layout/_authenticated/dashboard/settings/account/preferences'
568 | '/_layout/_authenticated/dashboard/settings/workspace/general'
569 | '/_layout/_authenticated/dashboard/workspace/$workspaceId/members'
570 | '/_layout/_authenticated/dashboard/workspace/$workspaceId/search'
571 | '/_layout/_authenticated/dashboard/workspace/$workspaceId/'
572 | '/_layout/_authenticated/dashboard/settings/projects/$projectId/general'
573 | '/_layout/_authenticated/dashboard/settings/projects/$projectId/integrations'
574 | '/_layout/_authenticated/dashboard/settings/projects/$projectId/visibility'
575 | '/_layout/_authenticated/dashboard/settings/projects/$projectId/workflow'
576 | '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/backlog'
577 | '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/board'
578 | '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/gantt'
579 | '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/'
580 | '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/task/$taskId_'
581 fileRoutesById: FileRoutesById
582}
583export interface RootRouteChildren {
584 IndexRoute: typeof IndexRoute
585 LayoutRoute: typeof LayoutRouteWithChildren
586 AuthRoute: typeof AuthRouteWithChildren
587 DeviceRoute: typeof DeviceRouteWithChildren
588 TestErrorRoute: typeof TestErrorRoute
589 PublicProjectProjectIdRoute: typeof PublicProjectProjectIdRoute
590 InvitationAcceptInviteIdRoute: typeof InvitationAcceptInviteIdRoute
591}
592
593declare module '@tanstack/react-router' {
594 interface FileRoutesByPath {
595 '/test-error': {
596 id: '/test-error'
597 path: '/test-error'
598 fullPath: '/test-error'
599 preLoaderRoute: typeof TestErrorRouteImport
600 parentRoute: typeof rootRouteImport
601 }
602 '/device': {
603 id: '/device'
604 path: '/device'
605 fullPath: '/device'
606 preLoaderRoute: typeof DeviceRouteImport
607 parentRoute: typeof rootRouteImport
608 }
609 '/auth': {
610 id: '/auth'
611 path: '/auth'
612 fullPath: '/auth'
613 preLoaderRoute: typeof AuthRouteImport
614 parentRoute: typeof rootRouteImport
615 }
616 '/_layout': {
617 id: '/_layout'
618 path: ''
619 fullPath: '/'
620 preLoaderRoute: typeof LayoutRouteImport
621 parentRoute: typeof rootRouteImport
622 }
623 '/': {
624 id: '/'
625 path: '/'
626 fullPath: '/'
627 preLoaderRoute: typeof IndexRouteImport
628 parentRoute: typeof rootRouteImport
629 }
630 '/device/': {
631 id: '/device/'
632 path: '/'
633 fullPath: '/device/'
634 preLoaderRoute: typeof DeviceIndexRouteImport
635 parentRoute: typeof DeviceRoute
636 }
637 '/public-project/$projectId': {
638 id: '/public-project/$projectId'
639 path: '/public-project/$projectId'
640 fullPath: '/public-project/$projectId'
641 preLoaderRoute: typeof PublicProjectProjectIdRouteImport
642 parentRoute: typeof rootRouteImport
643 }
644 '/device/approve': {
645 id: '/device/approve'
646 path: '/approve'
647 fullPath: '/device/approve'
648 preLoaderRoute: typeof DeviceApproveRouteImport
649 parentRoute: typeof DeviceRoute
650 }
651 '/auth/verify-otp': {
652 id: '/auth/verify-otp'
653 path: '/verify-otp'
654 fullPath: '/auth/verify-otp'
655 preLoaderRoute: typeof AuthVerifyOtpRouteImport
656 parentRoute: typeof AuthRoute
657 }
658 '/auth/sign-up': {
659 id: '/auth/sign-up'
660 path: '/sign-up'
661 fullPath: '/auth/sign-up'
662 preLoaderRoute: typeof AuthSignUpRouteImport
663 parentRoute: typeof AuthRoute
664 }
665 '/auth/sign-in': {
666 id: '/auth/sign-in'
667 path: '/sign-in'
668 fullPath: '/auth/sign-in'
669 preLoaderRoute: typeof AuthSignInRouteImport
670 parentRoute: typeof AuthRoute
671 }
672 '/auth/check-email': {
673 id: '/auth/check-email'
674 path: '/check-email'
675 fullPath: '/auth/check-email'
676 preLoaderRoute: typeof AuthCheckEmailRouteImport
677 parentRoute: typeof AuthRoute
678 }
679 '/_layout/_authenticated': {
680 id: '/_layout/_authenticated'
681 path: ''
682 fullPath: '/'
683 preLoaderRoute: typeof LayoutAuthenticatedRouteImport
684 parentRoute: typeof LayoutRoute
685 }
686 '/invitation/accept/$inviteId': {
687 id: '/invitation/accept/$inviteId'
688 path: '/invitation/accept/$inviteId'
689 fullPath: '/invitation/accept/$inviteId'
690 preLoaderRoute: typeof InvitationAcceptInviteIdRouteImport
691 parentRoute: typeof rootRouteImport
692 }
693 '/_layout/_authenticated/profile-setup': {
694 id: '/_layout/_authenticated/profile-setup'
695 path: '/profile-setup'
696 fullPath: '/profile-setup'
697 preLoaderRoute: typeof LayoutAuthenticatedProfileSetupRouteImport
698 parentRoute: typeof LayoutAuthenticatedRoute
699 }
700 '/_layout/_authenticated/onboarding': {
701 id: '/_layout/_authenticated/onboarding'
702 path: '/onboarding'
703 fullPath: '/onboarding'
704 preLoaderRoute: typeof LayoutAuthenticatedOnboardingRouteImport
705 parentRoute: typeof LayoutAuthenticatedRoute
706 }
707 '/_layout/_authenticated/invitations': {
708 id: '/_layout/_authenticated/invitations'
709 path: '/invitations'
710 fullPath: '/invitations'
711 preLoaderRoute: typeof LayoutAuthenticatedInvitationsRouteImport
712 parentRoute: typeof LayoutAuthenticatedRoute
713 }
714 '/_layout/_authenticated/dashboard': {
715 id: '/_layout/_authenticated/dashboard'
716 path: '/dashboard'
717 fullPath: '/dashboard'
718 preLoaderRoute: typeof LayoutAuthenticatedDashboardRouteImport
719 parentRoute: typeof LayoutAuthenticatedRoute
720 }
721 '/_layout/_authenticated/dashboard/': {
722 id: '/_layout/_authenticated/dashboard/'
723 path: '/'
724 fullPath: '/dashboard/'
725 preLoaderRoute: typeof LayoutAuthenticatedDashboardIndexRouteImport
726 parentRoute: typeof LayoutAuthenticatedDashboardRoute
727 }
728 '/_layout/_authenticated/dashboard/settings': {
729 id: '/_layout/_authenticated/dashboard/settings'
730 path: '/settings'
731 fullPath: '/dashboard/settings'
732 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsRouteImport
733 parentRoute: typeof LayoutAuthenticatedDashboardRoute
734 }
735 '/_layout/_authenticated/dashboard/invitations': {
736 id: '/_layout/_authenticated/dashboard/invitations'
737 path: '/invitations'
738 fullPath: '/dashboard/invitations'
739 preLoaderRoute: typeof LayoutAuthenticatedDashboardInvitationsRouteImport
740 parentRoute: typeof LayoutAuthenticatedDashboardRoute
741 }
742 '/_layout/_authenticated/dashboard/workspace/create': {
743 id: '/_layout/_authenticated/dashboard/workspace/create'
744 path: '/workspace/create'
745 fullPath: '/dashboard/workspace/create'
746 preLoaderRoute: typeof LayoutAuthenticatedDashboardWorkspaceCreateRouteImport
747 parentRoute: typeof LayoutAuthenticatedDashboardRoute
748 }
749 '/_layout/_authenticated/dashboard/workspace/$workspaceId': {
750 id: '/_layout/_authenticated/dashboard/workspace/$workspaceId'
751 path: '/workspace/$workspaceId'
752 fullPath: '/dashboard/workspace/$workspaceId'
753 preLoaderRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteImport
754 parentRoute: typeof LayoutAuthenticatedDashboardRoute
755 }
756 '/_layout/_authenticated/dashboard/settings/workspace': {
757 id: '/_layout/_authenticated/dashboard/settings/workspace'
758 path: '/workspace'
759 fullPath: '/dashboard/settings/workspace'
760 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsWorkspaceRouteImport
761 parentRoute: typeof LayoutAuthenticatedDashboardSettingsRoute
762 }
763 '/_layout/_authenticated/dashboard/settings/projects': {
764 id: '/_layout/_authenticated/dashboard/settings/projects'
765 path: '/projects'
766 fullPath: '/dashboard/settings/projects'
767 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsRouteImport
768 parentRoute: typeof LayoutAuthenticatedDashboardSettingsRoute
769 }
770 '/_layout/_authenticated/dashboard/settings/account': {
771 id: '/_layout/_authenticated/dashboard/settings/account'
772 path: '/account'
773 fullPath: '/dashboard/settings/account'
774 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsAccountRouteImport
775 parentRoute: typeof LayoutAuthenticatedDashboardSettingsRoute
776 }
777 '/_layout/_authenticated/dashboard/workspace/$workspaceId/': {
778 id: '/_layout/_authenticated/dashboard/workspace/$workspaceId/'
779 path: '/'
780 fullPath: '/dashboard/workspace/$workspaceId/'
781 preLoaderRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdIndexRouteImport
782 parentRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute
783 }
784 '/_layout/_authenticated/dashboard/workspace/$workspaceId/search': {
785 id: '/_layout/_authenticated/dashboard/workspace/$workspaceId/search'
786 path: '/search'
787 fullPath: '/dashboard/workspace/$workspaceId/search'
788 preLoaderRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdSearchRouteImport
789 parentRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute
790 }
791 '/_layout/_authenticated/dashboard/workspace/$workspaceId/members': {
792 id: '/_layout/_authenticated/dashboard/workspace/$workspaceId/members'
793 path: '/members'
794 fullPath: '/dashboard/workspace/$workspaceId/members'
795 preLoaderRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdMembersRouteImport
796 parentRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute
797 }
798 '/_layout/_authenticated/dashboard/settings/workspace/general': {
799 id: '/_layout/_authenticated/dashboard/settings/workspace/general'
800 path: '/general'
801 fullPath: '/dashboard/settings/workspace/general'
802 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsWorkspaceGeneralRouteImport
803 parentRoute: typeof LayoutAuthenticatedDashboardSettingsWorkspaceRoute
804 }
805 '/_layout/_authenticated/dashboard/settings/account/preferences': {
806 id: '/_layout/_authenticated/dashboard/settings/account/preferences'
807 path: '/preferences'
808 fullPath: '/dashboard/settings/account/preferences'
809 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsAccountPreferencesRouteImport
810 parentRoute: typeof LayoutAuthenticatedDashboardSettingsAccountRoute
811 }
812 '/_layout/_authenticated/dashboard/settings/account/notifications': {
813 id: '/_layout/_authenticated/dashboard/settings/account/notifications'
814 path: '/notifications'
815 fullPath: '/dashboard/settings/account/notifications'
816 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsAccountNotificationsRouteImport
817 parentRoute: typeof LayoutAuthenticatedDashboardSettingsAccountRoute
818 }
819 '/_layout/_authenticated/dashboard/settings/account/information': {
820 id: '/_layout/_authenticated/dashboard/settings/account/information'
821 path: '/information'
822 fullPath: '/dashboard/settings/account/information'
823 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsAccountInformationRouteImport
824 parentRoute: typeof LayoutAuthenticatedDashboardSettingsAccountRoute
825 }
826 '/_layout/_authenticated/dashboard/settings/account/developer': {
827 id: '/_layout/_authenticated/dashboard/settings/account/developer'
828 path: '/developer'
829 fullPath: '/dashboard/settings/account/developer'
830 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsAccountDeveloperRouteImport
831 parentRoute: typeof LayoutAuthenticatedDashboardSettingsAccountRoute
832 }
833 '/_layout/_authenticated/dashboard/settings/projects/$projectId/workflow': {
834 id: '/_layout/_authenticated/dashboard/settings/projects/$projectId/workflow'
835 path: '/$projectId/workflow'
836 fullPath: '/dashboard/settings/projects/$projectId/workflow'
837 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdWorkflowRouteImport
838 parentRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsRoute
839 }
840 '/_layout/_authenticated/dashboard/settings/projects/$projectId/visibility': {
841 id: '/_layout/_authenticated/dashboard/settings/projects/$projectId/visibility'
842 path: '/$projectId/visibility'
843 fullPath: '/dashboard/settings/projects/$projectId/visibility'
844 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdVisibilityRouteImport
845 parentRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsRoute
846 }
847 '/_layout/_authenticated/dashboard/settings/projects/$projectId/integrations': {
848 id: '/_layout/_authenticated/dashboard/settings/projects/$projectId/integrations'
849 path: '/$projectId/integrations'
850 fullPath: '/dashboard/settings/projects/$projectId/integrations'
851 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdIntegrationsRouteImport
852 parentRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsRoute
853 }
854 '/_layout/_authenticated/dashboard/settings/projects/$projectId/general': {
855 id: '/_layout/_authenticated/dashboard/settings/projects/$projectId/general'
856 path: '/$projectId/general'
857 fullPath: '/dashboard/settings/projects/$projectId/general'
858 preLoaderRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdGeneralRouteImport
859 parentRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsRoute
860 }
861 '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/': {
862 id: '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/'
863 path: '/project/$projectId'
864 fullPath: '/dashboard/workspace/$workspaceId/project/$projectId/'
865 preLoaderRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdIndexRouteImport
866 parentRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute
867 }
868 '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/gantt': {
869 id: '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/gantt'
870 path: '/project/$projectId/gantt'
871 fullPath: '/dashboard/workspace/$workspaceId/project/$projectId/gantt'
872 preLoaderRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdGanttRouteImport
873 parentRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute
874 }
875 '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/board': {
876 id: '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/board'
877 path: '/project/$projectId/board'
878 fullPath: '/dashboard/workspace/$workspaceId/project/$projectId/board'
879 preLoaderRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBoardRouteImport
880 parentRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute
881 }
882 '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/backlog': {
883 id: '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/backlog'
884 path: '/project/$projectId/backlog'
885 fullPath: '/dashboard/workspace/$workspaceId/project/$projectId/backlog'
886 preLoaderRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBacklogRouteImport
887 parentRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute
888 }
889 '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/task/$taskId_': {
890 id: '/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/task/$taskId_'
891 path: '/project/$projectId/task/$taskId'
892 fullPath: '/dashboard/workspace/$workspaceId/project/$projectId/task/$taskId'
893 preLoaderRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdTaskTaskIdRouteImport
894 parentRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute
895 }
896 }
897}
898
899interface LayoutAuthenticatedDashboardSettingsAccountRouteChildren {
900 LayoutAuthenticatedDashboardSettingsAccountDeveloperRoute: typeof LayoutAuthenticatedDashboardSettingsAccountDeveloperRoute
901 LayoutAuthenticatedDashboardSettingsAccountInformationRoute: typeof LayoutAuthenticatedDashboardSettingsAccountInformationRoute
902 LayoutAuthenticatedDashboardSettingsAccountNotificationsRoute: typeof LayoutAuthenticatedDashboardSettingsAccountNotificationsRoute
903 LayoutAuthenticatedDashboardSettingsAccountPreferencesRoute: typeof LayoutAuthenticatedDashboardSettingsAccountPreferencesRoute
904}
905
906const LayoutAuthenticatedDashboardSettingsAccountRouteChildren: LayoutAuthenticatedDashboardSettingsAccountRouteChildren =
907 {
908 LayoutAuthenticatedDashboardSettingsAccountDeveloperRoute:
909 LayoutAuthenticatedDashboardSettingsAccountDeveloperRoute,
910 LayoutAuthenticatedDashboardSettingsAccountInformationRoute:
911 LayoutAuthenticatedDashboardSettingsAccountInformationRoute,
912 LayoutAuthenticatedDashboardSettingsAccountNotificationsRoute:
913 LayoutAuthenticatedDashboardSettingsAccountNotificationsRoute,
914 LayoutAuthenticatedDashboardSettingsAccountPreferencesRoute:
915 LayoutAuthenticatedDashboardSettingsAccountPreferencesRoute,
916 }
917
918const LayoutAuthenticatedDashboardSettingsAccountRouteWithChildren =
919 LayoutAuthenticatedDashboardSettingsAccountRoute._addFileChildren(
920 LayoutAuthenticatedDashboardSettingsAccountRouteChildren,
921 )
922
923interface LayoutAuthenticatedDashboardSettingsProjectsRouteChildren {
924 LayoutAuthenticatedDashboardSettingsProjectsProjectIdGeneralRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdGeneralRoute
925 LayoutAuthenticatedDashboardSettingsProjectsProjectIdIntegrationsRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdIntegrationsRoute
926 LayoutAuthenticatedDashboardSettingsProjectsProjectIdVisibilityRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdVisibilityRoute
927 LayoutAuthenticatedDashboardSettingsProjectsProjectIdWorkflowRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsProjectIdWorkflowRoute
928}
929
930const LayoutAuthenticatedDashboardSettingsProjectsRouteChildren: LayoutAuthenticatedDashboardSettingsProjectsRouteChildren =
931 {
932 LayoutAuthenticatedDashboardSettingsProjectsProjectIdGeneralRoute:
933 LayoutAuthenticatedDashboardSettingsProjectsProjectIdGeneralRoute,
934 LayoutAuthenticatedDashboardSettingsProjectsProjectIdIntegrationsRoute:
935 LayoutAuthenticatedDashboardSettingsProjectsProjectIdIntegrationsRoute,
936 LayoutAuthenticatedDashboardSettingsProjectsProjectIdVisibilityRoute:
937 LayoutAuthenticatedDashboardSettingsProjectsProjectIdVisibilityRoute,
938 LayoutAuthenticatedDashboardSettingsProjectsProjectIdWorkflowRoute:
939 LayoutAuthenticatedDashboardSettingsProjectsProjectIdWorkflowRoute,
940 }
941
942const LayoutAuthenticatedDashboardSettingsProjectsRouteWithChildren =
943 LayoutAuthenticatedDashboardSettingsProjectsRoute._addFileChildren(
944 LayoutAuthenticatedDashboardSettingsProjectsRouteChildren,
945 )
946
947interface LayoutAuthenticatedDashboardSettingsWorkspaceRouteChildren {
948 LayoutAuthenticatedDashboardSettingsWorkspaceGeneralRoute: typeof LayoutAuthenticatedDashboardSettingsWorkspaceGeneralRoute
949}
950
951const LayoutAuthenticatedDashboardSettingsWorkspaceRouteChildren: LayoutAuthenticatedDashboardSettingsWorkspaceRouteChildren =
952 {
953 LayoutAuthenticatedDashboardSettingsWorkspaceGeneralRoute:
954 LayoutAuthenticatedDashboardSettingsWorkspaceGeneralRoute,
955 }
956
957const LayoutAuthenticatedDashboardSettingsWorkspaceRouteWithChildren =
958 LayoutAuthenticatedDashboardSettingsWorkspaceRoute._addFileChildren(
959 LayoutAuthenticatedDashboardSettingsWorkspaceRouteChildren,
960 )
961
962interface LayoutAuthenticatedDashboardSettingsRouteChildren {
963 LayoutAuthenticatedDashboardSettingsAccountRoute: typeof LayoutAuthenticatedDashboardSettingsAccountRouteWithChildren
964 LayoutAuthenticatedDashboardSettingsProjectsRoute: typeof LayoutAuthenticatedDashboardSettingsProjectsRouteWithChildren
965 LayoutAuthenticatedDashboardSettingsWorkspaceRoute: typeof LayoutAuthenticatedDashboardSettingsWorkspaceRouteWithChildren
966}
967
968const LayoutAuthenticatedDashboardSettingsRouteChildren: LayoutAuthenticatedDashboardSettingsRouteChildren =
969 {
970 LayoutAuthenticatedDashboardSettingsAccountRoute:
971 LayoutAuthenticatedDashboardSettingsAccountRouteWithChildren,
972 LayoutAuthenticatedDashboardSettingsProjectsRoute:
973 LayoutAuthenticatedDashboardSettingsProjectsRouteWithChildren,
974 LayoutAuthenticatedDashboardSettingsWorkspaceRoute:
975 LayoutAuthenticatedDashboardSettingsWorkspaceRouteWithChildren,
976 }
977
978const LayoutAuthenticatedDashboardSettingsRouteWithChildren =
979 LayoutAuthenticatedDashboardSettingsRoute._addFileChildren(
980 LayoutAuthenticatedDashboardSettingsRouteChildren,
981 )
982
983interface LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteChildren {
984 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdMembersRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdMembersRoute
985 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdSearchRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdSearchRoute
986 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdIndexRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdIndexRoute
987 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBacklogRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBacklogRoute
988 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBoardRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBoardRoute
989 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdGanttRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdGanttRoute
990 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdIndexRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdIndexRoute
991 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdTaskTaskIdRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdTaskTaskIdRoute
992}
993
994const LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteChildren: LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteChildren =
995 {
996 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdMembersRoute:
997 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdMembersRoute,
998 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdSearchRoute:
999 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdSearchRoute,
1000 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdIndexRoute:
1001 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdIndexRoute,
1002 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBacklogRoute:
1003 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBacklogRoute,
1004 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBoardRoute:
1005 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdBoardRoute,
1006 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdGanttRoute:
1007 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdGanttRoute,
1008 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdIndexRoute:
1009 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdIndexRoute,
1010 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdTaskTaskIdRoute:
1011 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdProjectProjectIdTaskTaskIdRoute,
1012 }
1013
1014const LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteWithChildren =
1015 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute._addFileChildren(
1016 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteChildren,
1017 )
1018
1019interface LayoutAuthenticatedDashboardRouteChildren {
1020 LayoutAuthenticatedDashboardInvitationsRoute: typeof LayoutAuthenticatedDashboardInvitationsRoute
1021 LayoutAuthenticatedDashboardSettingsRoute: typeof LayoutAuthenticatedDashboardSettingsRouteWithChildren
1022 LayoutAuthenticatedDashboardIndexRoute: typeof LayoutAuthenticatedDashboardIndexRoute
1023 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute: typeof LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteWithChildren
1024 LayoutAuthenticatedDashboardWorkspaceCreateRoute: typeof LayoutAuthenticatedDashboardWorkspaceCreateRoute
1025}
1026
1027const LayoutAuthenticatedDashboardRouteChildren: LayoutAuthenticatedDashboardRouteChildren =
1028 {
1029 LayoutAuthenticatedDashboardInvitationsRoute:
1030 LayoutAuthenticatedDashboardInvitationsRoute,
1031 LayoutAuthenticatedDashboardSettingsRoute:
1032 LayoutAuthenticatedDashboardSettingsRouteWithChildren,
1033 LayoutAuthenticatedDashboardIndexRoute:
1034 LayoutAuthenticatedDashboardIndexRoute,
1035 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRoute:
1036 LayoutAuthenticatedDashboardWorkspaceWorkspaceIdRouteWithChildren,
1037 LayoutAuthenticatedDashboardWorkspaceCreateRoute:
1038 LayoutAuthenticatedDashboardWorkspaceCreateRoute,
1039 }
1040
1041const LayoutAuthenticatedDashboardRouteWithChildren =
1042 LayoutAuthenticatedDashboardRoute._addFileChildren(
1043 LayoutAuthenticatedDashboardRouteChildren,
1044 )
1045
1046interface LayoutAuthenticatedRouteChildren {
1047 LayoutAuthenticatedDashboardRoute: typeof LayoutAuthenticatedDashboardRouteWithChildren
1048 LayoutAuthenticatedInvitationsRoute: typeof LayoutAuthenticatedInvitationsRoute
1049 LayoutAuthenticatedOnboardingRoute: typeof LayoutAuthenticatedOnboardingRoute
1050 LayoutAuthenticatedProfileSetupRoute: typeof LayoutAuthenticatedProfileSetupRoute
1051}
1052
1053const LayoutAuthenticatedRouteChildren: LayoutAuthenticatedRouteChildren = {
1054 LayoutAuthenticatedDashboardRoute:
1055 LayoutAuthenticatedDashboardRouteWithChildren,
1056 LayoutAuthenticatedInvitationsRoute: LayoutAuthenticatedInvitationsRoute,
1057 LayoutAuthenticatedOnboardingRoute: LayoutAuthenticatedOnboardingRoute,
1058 LayoutAuthenticatedProfileSetupRoute: LayoutAuthenticatedProfileSetupRoute,
1059}
1060
1061const LayoutAuthenticatedRouteWithChildren =
1062 LayoutAuthenticatedRoute._addFileChildren(LayoutAuthenticatedRouteChildren)
1063
1064interface LayoutRouteChildren {
1065 LayoutAuthenticatedRoute: typeof LayoutAuthenticatedRouteWithChildren
1066}
1067
1068const LayoutRouteChildren: LayoutRouteChildren = {
1069 LayoutAuthenticatedRoute: LayoutAuthenticatedRouteWithChildren,
1070}
1071
1072const LayoutRouteWithChildren =
1073 LayoutRoute._addFileChildren(LayoutRouteChildren)
1074
1075interface AuthRouteChildren {
1076 AuthCheckEmailRoute: typeof AuthCheckEmailRoute
1077 AuthSignInRoute: typeof AuthSignInRoute
1078 AuthSignUpRoute: typeof AuthSignUpRoute
1079 AuthVerifyOtpRoute: typeof AuthVerifyOtpRoute
1080}
1081
1082const AuthRouteChildren: AuthRouteChildren = {
1083 AuthCheckEmailRoute: AuthCheckEmailRoute,
1084 AuthSignInRoute: AuthSignInRoute,
1085 AuthSignUpRoute: AuthSignUpRoute,
1086 AuthVerifyOtpRoute: AuthVerifyOtpRoute,
1087}
1088
1089const AuthRouteWithChildren = AuthRoute._addFileChildren(AuthRouteChildren)
1090
1091interface DeviceRouteChildren {
1092 DeviceApproveRoute: typeof DeviceApproveRoute
1093 DeviceIndexRoute: typeof DeviceIndexRoute
1094}
1095
1096const DeviceRouteChildren: DeviceRouteChildren = {
1097 DeviceApproveRoute: DeviceApproveRoute,
1098 DeviceIndexRoute: DeviceIndexRoute,
1099}
1100
1101const DeviceRouteWithChildren =
1102 DeviceRoute._addFileChildren(DeviceRouteChildren)
1103
1104const rootRouteChildren: RootRouteChildren = {
1105 IndexRoute: IndexRoute,
1106 LayoutRoute: LayoutRouteWithChildren,
1107 AuthRoute: AuthRouteWithChildren,
1108 DeviceRoute: DeviceRouteWithChildren,
1109 TestErrorRoute: TestErrorRoute,
1110 PublicProjectProjectIdRoute: PublicProjectProjectIdRoute,
1111 InvitationAcceptInviteIdRoute: InvitationAcceptInviteIdRoute,
1112}
1113export const routeTree = rootRouteImport
1114 ._addFileChildren(rootRouteChildren)
1115 ._addFileTypes<FileRouteTypes>()