routeTree.gen.ts 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776
  1. /* eslint-disable */
  2. // @ts-nocheck
  3. // noinspection JSUnusedGlobalSymbols
  4. // This file was automatically generated by TanStack Router.
  5. // You should NOT make any changes in this file as it will be overwritten.
  6. // Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
  7. import { createFileRoute } from '@tanstack/react-router'
  8. // Import Routes
  9. import { Route as rootRoute } from './routes/__root'
  10. import { Route as AuthenticatedRouteImport } from './routes/_authenticated/route'
  11. import { Route as AuthenticatedIndexImport } from './routes/_authenticated/index'
  12. import { Route as authSignInImport } from './routes/(auth)/sign-in'
  13. import { Route as authOtpImport } from './routes/(auth)/otp'
  14. import { Route as auth500Import } from './routes/(auth)/500'
  15. import { Route as AuthenticatedDashboardIndexImport } from './routes/_authenticated/dashboard/index'
  16. // Create Virtual Routes
  17. const errors503LazyImport = createFileRoute('/(errors)/503')()
  18. const errors500LazyImport = createFileRoute('/(errors)/500')()
  19. const errors404LazyImport = createFileRoute('/(errors)/404')()
  20. const errors403LazyImport = createFileRoute('/(errors)/403')()
  21. const errors401LazyImport = createFileRoute('/(errors)/401')()
  22. const authSignUpLazyImport = createFileRoute('/(auth)/sign-up')()
  23. const authSignIn2LazyImport = createFileRoute('/(auth)/sign-in-2')()
  24. const authForgotPasswordLazyImport = createFileRoute(
  25. '/(auth)/forgot-password',
  26. )()
  27. const AuthenticatedSettingsRouteLazyImport = createFileRoute(
  28. '/_authenticated/settings',
  29. )()
  30. const AuthenticatedTasksIndexLazyImport = createFileRoute(
  31. '/_authenticated/tasks/',
  32. )()
  33. const AuthenticatedSettingsIndexLazyImport = createFileRoute(
  34. '/_authenticated/settings/',
  35. )()
  36. const AuthenticatedChatsIndexLazyImport = createFileRoute(
  37. '/_authenticated/chats/',
  38. )()
  39. const AuthenticatedAppsIndexLazyImport = createFileRoute(
  40. '/_authenticated/apps/',
  41. )()
  42. const AuthenticatedSettingsNotificationsLazyImport = createFileRoute(
  43. '/_authenticated/settings/notifications',
  44. )()
  45. const AuthenticatedSettingsDisplayLazyImport = createFileRoute(
  46. '/_authenticated/settings/display',
  47. )()
  48. const AuthenticatedSettingsAppearanceLazyImport = createFileRoute(
  49. '/_authenticated/settings/appearance',
  50. )()
  51. const AuthenticatedSettingsAccountLazyImport = createFileRoute(
  52. '/_authenticated/settings/account',
  53. )()
  54. // Create/Update Routes
  55. const AuthenticatedRouteRoute = AuthenticatedRouteImport.update({
  56. id: '/_authenticated',
  57. getParentRoute: () => rootRoute,
  58. } as any)
  59. const AuthenticatedIndexRoute = AuthenticatedIndexImport.update({
  60. id: '/',
  61. path: '/',
  62. getParentRoute: () => AuthenticatedRouteRoute,
  63. } as any)
  64. const errors503LazyRoute = errors503LazyImport
  65. .update({
  66. id: '/(errors)/503',
  67. path: '/503',
  68. getParentRoute: () => rootRoute,
  69. } as any)
  70. .lazy(() => import('./routes/(errors)/503.lazy').then((d) => d.Route))
  71. const errors500LazyRoute = errors500LazyImport
  72. .update({
  73. id: '/(errors)/500',
  74. path: '/500',
  75. getParentRoute: () => rootRoute,
  76. } as any)
  77. .lazy(() => import('./routes/(errors)/500.lazy').then((d) => d.Route))
  78. const errors404LazyRoute = errors404LazyImport
  79. .update({
  80. id: '/(errors)/404',
  81. path: '/404',
  82. getParentRoute: () => rootRoute,
  83. } as any)
  84. .lazy(() => import('./routes/(errors)/404.lazy').then((d) => d.Route))
  85. const errors403LazyRoute = errors403LazyImport
  86. .update({
  87. id: '/(errors)/403',
  88. path: '/403',
  89. getParentRoute: () => rootRoute,
  90. } as any)
  91. .lazy(() => import('./routes/(errors)/403.lazy').then((d) => d.Route))
  92. const errors401LazyRoute = errors401LazyImport
  93. .update({
  94. id: '/(errors)/401',
  95. path: '/401',
  96. getParentRoute: () => rootRoute,
  97. } as any)
  98. .lazy(() => import('./routes/(errors)/401.lazy').then((d) => d.Route))
  99. const authSignUpLazyRoute = authSignUpLazyImport
  100. .update({
  101. id: '/(auth)/sign-up',
  102. path: '/sign-up',
  103. getParentRoute: () => rootRoute,
  104. } as any)
  105. .lazy(() => import('./routes/(auth)/sign-up.lazy').then((d) => d.Route))
  106. const authSignIn2LazyRoute = authSignIn2LazyImport
  107. .update({
  108. id: '/(auth)/sign-in-2',
  109. path: '/sign-in-2',
  110. getParentRoute: () => rootRoute,
  111. } as any)
  112. .lazy(() => import('./routes/(auth)/sign-in-2.lazy').then((d) => d.Route))
  113. const authForgotPasswordLazyRoute = authForgotPasswordLazyImport
  114. .update({
  115. id: '/(auth)/forgot-password',
  116. path: '/forgot-password',
  117. getParentRoute: () => rootRoute,
  118. } as any)
  119. .lazy(() =>
  120. import('./routes/(auth)/forgot-password.lazy').then((d) => d.Route),
  121. )
  122. const AuthenticatedSettingsRouteLazyRoute =
  123. AuthenticatedSettingsRouteLazyImport.update({
  124. id: '/settings',
  125. path: '/settings',
  126. getParentRoute: () => AuthenticatedRouteRoute,
  127. } as any).lazy(() =>
  128. import('./routes/_authenticated/settings/route.lazy').then((d) => d.Route),
  129. )
  130. const authSignInRoute = authSignInImport.update({
  131. id: '/(auth)/sign-in',
  132. path: '/sign-in',
  133. getParentRoute: () => rootRoute,
  134. } as any)
  135. const authOtpRoute = authOtpImport.update({
  136. id: '/(auth)/otp',
  137. path: '/otp',
  138. getParentRoute: () => rootRoute,
  139. } as any)
  140. const auth500Route = auth500Import.update({
  141. id: '/(auth)/500',
  142. path: '/500',
  143. getParentRoute: () => rootRoute,
  144. } as any)
  145. const AuthenticatedTasksIndexLazyRoute =
  146. AuthenticatedTasksIndexLazyImport.update({
  147. id: '/tasks/',
  148. path: '/tasks/',
  149. getParentRoute: () => AuthenticatedRouteRoute,
  150. } as any).lazy(() =>
  151. import('./routes/_authenticated/tasks/index.lazy').then((d) => d.Route),
  152. )
  153. const AuthenticatedSettingsIndexLazyRoute =
  154. AuthenticatedSettingsIndexLazyImport.update({
  155. id: '/',
  156. path: '/',
  157. getParentRoute: () => AuthenticatedSettingsRouteLazyRoute,
  158. } as any).lazy(() =>
  159. import('./routes/_authenticated/settings/index.lazy').then((d) => d.Route),
  160. )
  161. const AuthenticatedChatsIndexLazyRoute =
  162. AuthenticatedChatsIndexLazyImport.update({
  163. id: '/chats/',
  164. path: '/chats/',
  165. getParentRoute: () => AuthenticatedRouteRoute,
  166. } as any).lazy(() =>
  167. import('./routes/_authenticated/chats/index.lazy').then((d) => d.Route),
  168. )
  169. const AuthenticatedAppsIndexLazyRoute = AuthenticatedAppsIndexLazyImport.update(
  170. {
  171. id: '/apps/',
  172. path: '/apps/',
  173. getParentRoute: () => AuthenticatedRouteRoute,
  174. } as any,
  175. ).lazy(() =>
  176. import('./routes/_authenticated/apps/index.lazy').then((d) => d.Route),
  177. )
  178. const AuthenticatedDashboardIndexRoute =
  179. AuthenticatedDashboardIndexImport.update({
  180. id: '/dashboard/',
  181. path: '/dashboard/',
  182. getParentRoute: () => AuthenticatedRouteRoute,
  183. } as any)
  184. const AuthenticatedSettingsNotificationsLazyRoute =
  185. AuthenticatedSettingsNotificationsLazyImport.update({
  186. id: '/notifications',
  187. path: '/notifications',
  188. getParentRoute: () => AuthenticatedSettingsRouteLazyRoute,
  189. } as any).lazy(() =>
  190. import('./routes/_authenticated/settings/notifications.lazy').then(
  191. (d) => d.Route,
  192. ),
  193. )
  194. const AuthenticatedSettingsDisplayLazyRoute =
  195. AuthenticatedSettingsDisplayLazyImport.update({
  196. id: '/display',
  197. path: '/display',
  198. getParentRoute: () => AuthenticatedSettingsRouteLazyRoute,
  199. } as any).lazy(() =>
  200. import('./routes/_authenticated/settings/display.lazy').then(
  201. (d) => d.Route,
  202. ),
  203. )
  204. const AuthenticatedSettingsAppearanceLazyRoute =
  205. AuthenticatedSettingsAppearanceLazyImport.update({
  206. id: '/appearance',
  207. path: '/appearance',
  208. getParentRoute: () => AuthenticatedSettingsRouteLazyRoute,
  209. } as any).lazy(() =>
  210. import('./routes/_authenticated/settings/appearance.lazy').then(
  211. (d) => d.Route,
  212. ),
  213. )
  214. const AuthenticatedSettingsAccountLazyRoute =
  215. AuthenticatedSettingsAccountLazyImport.update({
  216. id: '/account',
  217. path: '/account',
  218. getParentRoute: () => AuthenticatedSettingsRouteLazyRoute,
  219. } as any).lazy(() =>
  220. import('./routes/_authenticated/settings/account.lazy').then(
  221. (d) => d.Route,
  222. ),
  223. )
  224. // Populate the FileRoutesByPath interface
  225. declare module '@tanstack/react-router' {
  226. interface FileRoutesByPath {
  227. '/_authenticated': {
  228. id: '/_authenticated'
  229. path: ''
  230. fullPath: ''
  231. preLoaderRoute: typeof AuthenticatedRouteImport
  232. parentRoute: typeof rootRoute
  233. }
  234. '/(auth)/500': {
  235. id: '/(auth)/500'
  236. path: '/500'
  237. fullPath: '/500'
  238. preLoaderRoute: typeof auth500Import
  239. parentRoute: typeof rootRoute
  240. }
  241. '/(auth)/otp': {
  242. id: '/(auth)/otp'
  243. path: '/otp'
  244. fullPath: '/otp'
  245. preLoaderRoute: typeof authOtpImport
  246. parentRoute: typeof rootRoute
  247. }
  248. '/(auth)/sign-in': {
  249. id: '/(auth)/sign-in'
  250. path: '/sign-in'
  251. fullPath: '/sign-in'
  252. preLoaderRoute: typeof authSignInImport
  253. parentRoute: typeof rootRoute
  254. }
  255. '/_authenticated/settings': {
  256. id: '/_authenticated/settings'
  257. path: '/settings'
  258. fullPath: '/settings'
  259. preLoaderRoute: typeof AuthenticatedSettingsRouteLazyImport
  260. parentRoute: typeof AuthenticatedRouteImport
  261. }
  262. '/(auth)/forgot-password': {
  263. id: '/(auth)/forgot-password'
  264. path: '/forgot-password'
  265. fullPath: '/forgot-password'
  266. preLoaderRoute: typeof authForgotPasswordLazyImport
  267. parentRoute: typeof rootRoute
  268. }
  269. '/(auth)/sign-in-2': {
  270. id: '/(auth)/sign-in-2'
  271. path: '/sign-in-2'
  272. fullPath: '/sign-in-2'
  273. preLoaderRoute: typeof authSignIn2LazyImport
  274. parentRoute: typeof rootRoute
  275. }
  276. '/(auth)/sign-up': {
  277. id: '/(auth)/sign-up'
  278. path: '/sign-up'
  279. fullPath: '/sign-up'
  280. preLoaderRoute: typeof authSignUpLazyImport
  281. parentRoute: typeof rootRoute
  282. }
  283. '/(errors)/401': {
  284. id: '/(errors)/401'
  285. path: '/401'
  286. fullPath: '/401'
  287. preLoaderRoute: typeof errors401LazyImport
  288. parentRoute: typeof rootRoute
  289. }
  290. '/(errors)/403': {
  291. id: '/(errors)/403'
  292. path: '/403'
  293. fullPath: '/403'
  294. preLoaderRoute: typeof errors403LazyImport
  295. parentRoute: typeof rootRoute
  296. }
  297. '/(errors)/404': {
  298. id: '/(errors)/404'
  299. path: '/404'
  300. fullPath: '/404'
  301. preLoaderRoute: typeof errors404LazyImport
  302. parentRoute: typeof rootRoute
  303. }
  304. '/(errors)/500': {
  305. id: '/(errors)/500'
  306. path: '/500'
  307. fullPath: '/500'
  308. preLoaderRoute: typeof errors500LazyImport
  309. parentRoute: typeof rootRoute
  310. }
  311. '/(errors)/503': {
  312. id: '/(errors)/503'
  313. path: '/503'
  314. fullPath: '/503'
  315. preLoaderRoute: typeof errors503LazyImport
  316. parentRoute: typeof rootRoute
  317. }
  318. '/_authenticated/': {
  319. id: '/_authenticated/'
  320. path: '/'
  321. fullPath: '/'
  322. preLoaderRoute: typeof AuthenticatedIndexImport
  323. parentRoute: typeof AuthenticatedRouteImport
  324. }
  325. '/_authenticated/settings/account': {
  326. id: '/_authenticated/settings/account'
  327. path: '/account'
  328. fullPath: '/settings/account'
  329. preLoaderRoute: typeof AuthenticatedSettingsAccountLazyImport
  330. parentRoute: typeof AuthenticatedSettingsRouteLazyImport
  331. }
  332. '/_authenticated/settings/appearance': {
  333. id: '/_authenticated/settings/appearance'
  334. path: '/appearance'
  335. fullPath: '/settings/appearance'
  336. preLoaderRoute: typeof AuthenticatedSettingsAppearanceLazyImport
  337. parentRoute: typeof AuthenticatedSettingsRouteLazyImport
  338. }
  339. '/_authenticated/settings/display': {
  340. id: '/_authenticated/settings/display'
  341. path: '/display'
  342. fullPath: '/settings/display'
  343. preLoaderRoute: typeof AuthenticatedSettingsDisplayLazyImport
  344. parentRoute: typeof AuthenticatedSettingsRouteLazyImport
  345. }
  346. '/_authenticated/settings/notifications': {
  347. id: '/_authenticated/settings/notifications'
  348. path: '/notifications'
  349. fullPath: '/settings/notifications'
  350. preLoaderRoute: typeof AuthenticatedSettingsNotificationsLazyImport
  351. parentRoute: typeof AuthenticatedSettingsRouteLazyImport
  352. }
  353. '/_authenticated/dashboard/': {
  354. id: '/_authenticated/dashboard/'
  355. path: '/dashboard'
  356. fullPath: '/dashboard'
  357. preLoaderRoute: typeof AuthenticatedDashboardIndexImport
  358. parentRoute: typeof AuthenticatedRouteImport
  359. }
  360. '/_authenticated/apps/': {
  361. id: '/_authenticated/apps/'
  362. path: '/apps'
  363. fullPath: '/apps'
  364. preLoaderRoute: typeof AuthenticatedAppsIndexLazyImport
  365. parentRoute: typeof AuthenticatedRouteImport
  366. }
  367. '/_authenticated/chats/': {
  368. id: '/_authenticated/chats/'
  369. path: '/chats'
  370. fullPath: '/chats'
  371. preLoaderRoute: typeof AuthenticatedChatsIndexLazyImport
  372. parentRoute: typeof AuthenticatedRouteImport
  373. }
  374. '/_authenticated/settings/': {
  375. id: '/_authenticated/settings/'
  376. path: '/'
  377. fullPath: '/settings/'
  378. preLoaderRoute: typeof AuthenticatedSettingsIndexLazyImport
  379. parentRoute: typeof AuthenticatedSettingsRouteLazyImport
  380. }
  381. '/_authenticated/tasks/': {
  382. id: '/_authenticated/tasks/'
  383. path: '/tasks'
  384. fullPath: '/tasks'
  385. preLoaderRoute: typeof AuthenticatedTasksIndexLazyImport
  386. parentRoute: typeof AuthenticatedRouteImport
  387. }
  388. }
  389. }
  390. // Create and export the route tree
  391. interface AuthenticatedSettingsRouteLazyRouteChildren {
  392. AuthenticatedSettingsAccountLazyRoute: typeof AuthenticatedSettingsAccountLazyRoute
  393. AuthenticatedSettingsAppearanceLazyRoute: typeof AuthenticatedSettingsAppearanceLazyRoute
  394. AuthenticatedSettingsDisplayLazyRoute: typeof AuthenticatedSettingsDisplayLazyRoute
  395. AuthenticatedSettingsNotificationsLazyRoute: typeof AuthenticatedSettingsNotificationsLazyRoute
  396. AuthenticatedSettingsIndexLazyRoute: typeof AuthenticatedSettingsIndexLazyRoute
  397. }
  398. const AuthenticatedSettingsRouteLazyRouteChildren: AuthenticatedSettingsRouteLazyRouteChildren =
  399. {
  400. AuthenticatedSettingsAccountLazyRoute:
  401. AuthenticatedSettingsAccountLazyRoute,
  402. AuthenticatedSettingsAppearanceLazyRoute:
  403. AuthenticatedSettingsAppearanceLazyRoute,
  404. AuthenticatedSettingsDisplayLazyRoute:
  405. AuthenticatedSettingsDisplayLazyRoute,
  406. AuthenticatedSettingsNotificationsLazyRoute:
  407. AuthenticatedSettingsNotificationsLazyRoute,
  408. AuthenticatedSettingsIndexLazyRoute: AuthenticatedSettingsIndexLazyRoute,
  409. }
  410. const AuthenticatedSettingsRouteLazyRouteWithChildren =
  411. AuthenticatedSettingsRouteLazyRoute._addFileChildren(
  412. AuthenticatedSettingsRouteLazyRouteChildren,
  413. )
  414. interface AuthenticatedRouteRouteChildren {
  415. AuthenticatedSettingsRouteLazyRoute: typeof AuthenticatedSettingsRouteLazyRouteWithChildren
  416. AuthenticatedIndexRoute: typeof AuthenticatedIndexRoute
  417. AuthenticatedDashboardIndexRoute: typeof AuthenticatedDashboardIndexRoute
  418. AuthenticatedAppsIndexLazyRoute: typeof AuthenticatedAppsIndexLazyRoute
  419. AuthenticatedChatsIndexLazyRoute: typeof AuthenticatedChatsIndexLazyRoute
  420. AuthenticatedTasksIndexLazyRoute: typeof AuthenticatedTasksIndexLazyRoute
  421. }
  422. const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = {
  423. AuthenticatedSettingsRouteLazyRoute:
  424. AuthenticatedSettingsRouteLazyRouteWithChildren,
  425. AuthenticatedIndexRoute: AuthenticatedIndexRoute,
  426. AuthenticatedDashboardIndexRoute: AuthenticatedDashboardIndexRoute,
  427. AuthenticatedAppsIndexLazyRoute: AuthenticatedAppsIndexLazyRoute,
  428. AuthenticatedChatsIndexLazyRoute: AuthenticatedChatsIndexLazyRoute,
  429. AuthenticatedTasksIndexLazyRoute: AuthenticatedTasksIndexLazyRoute,
  430. }
  431. const AuthenticatedRouteRouteWithChildren =
  432. AuthenticatedRouteRoute._addFileChildren(AuthenticatedRouteRouteChildren)
  433. export interface FileRoutesByFullPath {
  434. '': typeof AuthenticatedRouteRouteWithChildren
  435. '/500': typeof errors500LazyRoute
  436. '/otp': typeof authOtpRoute
  437. '/sign-in': typeof authSignInRoute
  438. '/settings': typeof AuthenticatedSettingsRouteLazyRouteWithChildren
  439. '/forgot-password': typeof authForgotPasswordLazyRoute
  440. '/sign-in-2': typeof authSignIn2LazyRoute
  441. '/sign-up': typeof authSignUpLazyRoute
  442. '/401': typeof errors401LazyRoute
  443. '/403': typeof errors403LazyRoute
  444. '/404': typeof errors404LazyRoute
  445. '/503': typeof errors503LazyRoute
  446. '/': typeof AuthenticatedIndexRoute
  447. '/settings/account': typeof AuthenticatedSettingsAccountLazyRoute
  448. '/settings/appearance': typeof AuthenticatedSettingsAppearanceLazyRoute
  449. '/settings/display': typeof AuthenticatedSettingsDisplayLazyRoute
  450. '/settings/notifications': typeof AuthenticatedSettingsNotificationsLazyRoute
  451. '/dashboard': typeof AuthenticatedDashboardIndexRoute
  452. '/apps': typeof AuthenticatedAppsIndexLazyRoute
  453. '/chats': typeof AuthenticatedChatsIndexLazyRoute
  454. '/settings/': typeof AuthenticatedSettingsIndexLazyRoute
  455. '/tasks': typeof AuthenticatedTasksIndexLazyRoute
  456. }
  457. export interface FileRoutesByTo {
  458. '/500': typeof errors500LazyRoute
  459. '/otp': typeof authOtpRoute
  460. '/sign-in': typeof authSignInRoute
  461. '/forgot-password': typeof authForgotPasswordLazyRoute
  462. '/sign-in-2': typeof authSignIn2LazyRoute
  463. '/sign-up': typeof authSignUpLazyRoute
  464. '/401': typeof errors401LazyRoute
  465. '/403': typeof errors403LazyRoute
  466. '/404': typeof errors404LazyRoute
  467. '/503': typeof errors503LazyRoute
  468. '/': typeof AuthenticatedIndexRoute
  469. '/settings/account': typeof AuthenticatedSettingsAccountLazyRoute
  470. '/settings/appearance': typeof AuthenticatedSettingsAppearanceLazyRoute
  471. '/settings/display': typeof AuthenticatedSettingsDisplayLazyRoute
  472. '/settings/notifications': typeof AuthenticatedSettingsNotificationsLazyRoute
  473. '/dashboard': typeof AuthenticatedDashboardIndexRoute
  474. '/apps': typeof AuthenticatedAppsIndexLazyRoute
  475. '/chats': typeof AuthenticatedChatsIndexLazyRoute
  476. '/settings': typeof AuthenticatedSettingsIndexLazyRoute
  477. '/tasks': typeof AuthenticatedTasksIndexLazyRoute
  478. }
  479. export interface FileRoutesById {
  480. __root__: typeof rootRoute
  481. '/_authenticated': typeof AuthenticatedRouteRouteWithChildren
  482. '/(auth)/500': typeof auth500Route
  483. '/(auth)/otp': typeof authOtpRoute
  484. '/(auth)/sign-in': typeof authSignInRoute
  485. '/_authenticated/settings': typeof AuthenticatedSettingsRouteLazyRouteWithChildren
  486. '/(auth)/forgot-password': typeof authForgotPasswordLazyRoute
  487. '/(auth)/sign-in-2': typeof authSignIn2LazyRoute
  488. '/(auth)/sign-up': typeof authSignUpLazyRoute
  489. '/(errors)/401': typeof errors401LazyRoute
  490. '/(errors)/403': typeof errors403LazyRoute
  491. '/(errors)/404': typeof errors404LazyRoute
  492. '/(errors)/500': typeof errors500LazyRoute
  493. '/(errors)/503': typeof errors503LazyRoute
  494. '/_authenticated/': typeof AuthenticatedIndexRoute
  495. '/_authenticated/settings/account': typeof AuthenticatedSettingsAccountLazyRoute
  496. '/_authenticated/settings/appearance': typeof AuthenticatedSettingsAppearanceLazyRoute
  497. '/_authenticated/settings/display': typeof AuthenticatedSettingsDisplayLazyRoute
  498. '/_authenticated/settings/notifications': typeof AuthenticatedSettingsNotificationsLazyRoute
  499. '/_authenticated/dashboard/': typeof AuthenticatedDashboardIndexRoute
  500. '/_authenticated/apps/': typeof AuthenticatedAppsIndexLazyRoute
  501. '/_authenticated/chats/': typeof AuthenticatedChatsIndexLazyRoute
  502. '/_authenticated/settings/': typeof AuthenticatedSettingsIndexLazyRoute
  503. '/_authenticated/tasks/': typeof AuthenticatedTasksIndexLazyRoute
  504. }
  505. export interface FileRouteTypes {
  506. fileRoutesByFullPath: FileRoutesByFullPath
  507. fullPaths:
  508. | ''
  509. | '/500'
  510. | '/otp'
  511. | '/sign-in'
  512. | '/settings'
  513. | '/forgot-password'
  514. | '/sign-in-2'
  515. | '/sign-up'
  516. | '/401'
  517. | '/403'
  518. | '/404'
  519. | '/503'
  520. | '/'
  521. | '/settings/account'
  522. | '/settings/appearance'
  523. | '/settings/display'
  524. | '/settings/notifications'
  525. | '/dashboard'
  526. | '/apps'
  527. | '/chats'
  528. | '/settings/'
  529. | '/tasks'
  530. fileRoutesByTo: FileRoutesByTo
  531. to:
  532. | '/500'
  533. | '/otp'
  534. | '/sign-in'
  535. | '/forgot-password'
  536. | '/sign-in-2'
  537. | '/sign-up'
  538. | '/401'
  539. | '/403'
  540. | '/404'
  541. | '/503'
  542. | '/'
  543. | '/settings/account'
  544. | '/settings/appearance'
  545. | '/settings/display'
  546. | '/settings/notifications'
  547. | '/dashboard'
  548. | '/apps'
  549. | '/chats'
  550. | '/settings'
  551. | '/tasks'
  552. id:
  553. | '__root__'
  554. | '/_authenticated'
  555. | '/(auth)/500'
  556. | '/(auth)/otp'
  557. | '/(auth)/sign-in'
  558. | '/_authenticated/settings'
  559. | '/(auth)/forgot-password'
  560. | '/(auth)/sign-in-2'
  561. | '/(auth)/sign-up'
  562. | '/(errors)/401'
  563. | '/(errors)/403'
  564. | '/(errors)/404'
  565. | '/(errors)/500'
  566. | '/(errors)/503'
  567. | '/_authenticated/'
  568. | '/_authenticated/settings/account'
  569. | '/_authenticated/settings/appearance'
  570. | '/_authenticated/settings/display'
  571. | '/_authenticated/settings/notifications'
  572. | '/_authenticated/dashboard/'
  573. | '/_authenticated/apps/'
  574. | '/_authenticated/chats/'
  575. | '/_authenticated/settings/'
  576. | '/_authenticated/tasks/'
  577. fileRoutesById: FileRoutesById
  578. }
  579. export interface RootRouteChildren {
  580. AuthenticatedRouteRoute: typeof AuthenticatedRouteRouteWithChildren
  581. auth500Route: typeof auth500Route
  582. authOtpRoute: typeof authOtpRoute
  583. authSignInRoute: typeof authSignInRoute
  584. authForgotPasswordLazyRoute: typeof authForgotPasswordLazyRoute
  585. authSignIn2LazyRoute: typeof authSignIn2LazyRoute
  586. authSignUpLazyRoute: typeof authSignUpLazyRoute
  587. errors401LazyRoute: typeof errors401LazyRoute
  588. errors403LazyRoute: typeof errors403LazyRoute
  589. errors404LazyRoute: typeof errors404LazyRoute
  590. errors500LazyRoute: typeof errors500LazyRoute
  591. errors503LazyRoute: typeof errors503LazyRoute
  592. }
  593. const rootRouteChildren: RootRouteChildren = {
  594. AuthenticatedRouteRoute: AuthenticatedRouteRouteWithChildren,
  595. auth500Route: auth500Route,
  596. authOtpRoute: authOtpRoute,
  597. authSignInRoute: authSignInRoute,
  598. authForgotPasswordLazyRoute: authForgotPasswordLazyRoute,
  599. authSignIn2LazyRoute: authSignIn2LazyRoute,
  600. authSignUpLazyRoute: authSignUpLazyRoute,
  601. errors401LazyRoute: errors401LazyRoute,
  602. errors403LazyRoute: errors403LazyRoute,
  603. errors404LazyRoute: errors404LazyRoute,
  604. errors500LazyRoute: errors500LazyRoute,
  605. errors503LazyRoute: errors503LazyRoute,
  606. }
  607. export const routeTree = rootRoute
  608. ._addFileChildren(rootRouteChildren)
  609. ._addFileTypes<FileRouteTypes>()
  610. /* ROUTE_MANIFEST_START
  611. {
  612. "routes": {
  613. "__root__": {
  614. "filePath": "__root.tsx",
  615. "children": [
  616. "/_authenticated",
  617. "/(auth)/500",
  618. "/(auth)/otp",
  619. "/(auth)/sign-in",
  620. "/(auth)/forgot-password",
  621. "/(auth)/sign-in-2",
  622. "/(auth)/sign-up",
  623. "/(errors)/401",
  624. "/(errors)/403",
  625. "/(errors)/404",
  626. "/(errors)/500",
  627. "/(errors)/503"
  628. ]
  629. },
  630. "/_authenticated": {
  631. "filePath": "_authenticated/route.tsx",
  632. "children": [
  633. "/_authenticated/settings",
  634. "/_authenticated/",
  635. "/_authenticated/dashboard/",
  636. "/_authenticated/apps/",
  637. "/_authenticated/chats/",
  638. "/_authenticated/tasks/"
  639. ]
  640. },
  641. "/(auth)/500": {
  642. "filePath": "(auth)/500.tsx"
  643. },
  644. "/(auth)/otp": {
  645. "filePath": "(auth)/otp.tsx"
  646. },
  647. "/(auth)/sign-in": {
  648. "filePath": "(auth)/sign-in.tsx"
  649. },
  650. "/_authenticated/settings": {
  651. "filePath": "_authenticated/settings/route.lazy.tsx",
  652. "parent": "/_authenticated",
  653. "children": [
  654. "/_authenticated/settings/account",
  655. "/_authenticated/settings/appearance",
  656. "/_authenticated/settings/display",
  657. "/_authenticated/settings/notifications",
  658. "/_authenticated/settings/"
  659. ]
  660. },
  661. "/(auth)/forgot-password": {
  662. "filePath": "(auth)/forgot-password.lazy.tsx"
  663. },
  664. "/(auth)/sign-in-2": {
  665. "filePath": "(auth)/sign-in-2.lazy.tsx"
  666. },
  667. "/(auth)/sign-up": {
  668. "filePath": "(auth)/sign-up.lazy.tsx"
  669. },
  670. "/(errors)/401": {
  671. "filePath": "(errors)/401.lazy.tsx"
  672. },
  673. "/(errors)/403": {
  674. "filePath": "(errors)/403.lazy.tsx"
  675. },
  676. "/(errors)/404": {
  677. "filePath": "(errors)/404.lazy.tsx"
  678. },
  679. "/(errors)/500": {
  680. "filePath": "(errors)/500.lazy.tsx"
  681. },
  682. "/(errors)/503": {
  683. "filePath": "(errors)/503.lazy.tsx"
  684. },
  685. "/_authenticated/": {
  686. "filePath": "_authenticated/index.tsx",
  687. "parent": "/_authenticated"
  688. },
  689. "/_authenticated/settings/account": {
  690. "filePath": "_authenticated/settings/account.lazy.tsx",
  691. "parent": "/_authenticated/settings"
  692. },
  693. "/_authenticated/settings/appearance": {
  694. "filePath": "_authenticated/settings/appearance.lazy.tsx",
  695. "parent": "/_authenticated/settings"
  696. },
  697. "/_authenticated/settings/display": {
  698. "filePath": "_authenticated/settings/display.lazy.tsx",
  699. "parent": "/_authenticated/settings"
  700. },
  701. "/_authenticated/settings/notifications": {
  702. "filePath": "_authenticated/settings/notifications.lazy.tsx",
  703. "parent": "/_authenticated/settings"
  704. },
  705. "/_authenticated/dashboard/": {
  706. "filePath": "_authenticated/dashboard/index.tsx",
  707. "parent": "/_authenticated"
  708. },
  709. "/_authenticated/apps/": {
  710. "filePath": "_authenticated/apps/index.lazy.tsx",
  711. "parent": "/_authenticated"
  712. },
  713. "/_authenticated/chats/": {
  714. "filePath": "_authenticated/chats/index.lazy.tsx",
  715. "parent": "/_authenticated"
  716. },
  717. "/_authenticated/settings/": {
  718. "filePath": "_authenticated/settings/index.lazy.tsx",
  719. "parent": "/_authenticated/settings"
  720. },
  721. "/_authenticated/tasks/": {
  722. "filePath": "_authenticated/tasks/index.lazy.tsx",
  723. "parent": "/_authenticated"
  724. }
  725. }
  726. }
  727. ROUTE_MANIFEST_END */