routeTree.gen.ts 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  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 { Route as rootRouteImport } from './routes/__root'
  8. import { Route as ClerkRouteRouteImport } from './routes/clerk/route'
  9. import { Route as AuthenticatedRouteRouteImport } from './routes/_authenticated/route'
  10. import { Route as AuthenticatedIndexRouteImport } from './routes/_authenticated/index'
  11. import { Route as errors503RouteImport } from './routes/(errors)/503'
  12. import { Route as errors500RouteImport } from './routes/(errors)/500'
  13. import { Route as errors404RouteImport } from './routes/(errors)/404'
  14. import { Route as errors403RouteImport } from './routes/(errors)/403'
  15. import { Route as errors401RouteImport } from './routes/(errors)/401'
  16. import { Route as authSignUpRouteImport } from './routes/(auth)/sign-up'
  17. import { Route as authSignIn2RouteImport } from './routes/(auth)/sign-in-2'
  18. import { Route as authSignInRouteImport } from './routes/(auth)/sign-in'
  19. import { Route as authOtpRouteImport } from './routes/(auth)/otp'
  20. import { Route as authForgotPasswordRouteImport } from './routes/(auth)/forgot-password'
  21. import { Route as ClerkAuthenticatedRouteRouteImport } from './routes/clerk/_authenticated/route'
  22. import { Route as ClerkauthRouteRouteImport } from './routes/clerk/(auth)/route'
  23. import { Route as AuthenticatedSettingsRouteRouteImport } from './routes/_authenticated/settings/route'
  24. import { Route as AuthenticatedUsersIndexRouteImport } from './routes/_authenticated/users/index'
  25. import { Route as AuthenticatedTasksIndexRouteImport } from './routes/_authenticated/tasks/index'
  26. import { Route as AuthenticatedSettingsIndexRouteImport } from './routes/_authenticated/settings/index'
  27. import { Route as AuthenticatedHelpCenterIndexRouteImport } from './routes/_authenticated/help-center/index'
  28. import { Route as AuthenticatedChatsIndexRouteImport } from './routes/_authenticated/chats/index'
  29. import { Route as AuthenticatedAppsIndexRouteImport } from './routes/_authenticated/apps/index'
  30. import { Route as ClerkAuthenticatedUserManagementRouteImport } from './routes/clerk/_authenticated/user-management'
  31. import { Route as ClerkauthSignUpRouteImport } from './routes/clerk/(auth)/sign-up'
  32. import { Route as ClerkauthSignInRouteImport } from './routes/clerk/(auth)/sign-in'
  33. import { Route as AuthenticatedSettingsNotificationsRouteImport } from './routes/_authenticated/settings/notifications'
  34. import { Route as AuthenticatedSettingsDisplayRouteImport } from './routes/_authenticated/settings/display'
  35. import { Route as AuthenticatedSettingsAppearanceRouteImport } from './routes/_authenticated/settings/appearance'
  36. import { Route as AuthenticatedSettingsAccountRouteImport } from './routes/_authenticated/settings/account'
  37. const ClerkRouteRoute = ClerkRouteRouteImport.update({
  38. id: '/clerk',
  39. path: '/clerk',
  40. getParentRoute: () => rootRouteImport,
  41. } as any)
  42. const AuthenticatedRouteRoute = AuthenticatedRouteRouteImport.update({
  43. id: '/_authenticated',
  44. getParentRoute: () => rootRouteImport,
  45. } as any)
  46. const AuthenticatedIndexRoute = AuthenticatedIndexRouteImport.update({
  47. id: '/',
  48. path: '/',
  49. getParentRoute: () => AuthenticatedRouteRoute,
  50. } as any)
  51. const errors503Route = errors503RouteImport.update({
  52. id: '/(errors)/503',
  53. path: '/503',
  54. getParentRoute: () => rootRouteImport,
  55. } as any)
  56. const errors500Route = errors500RouteImport.update({
  57. id: '/(errors)/500',
  58. path: '/500',
  59. getParentRoute: () => rootRouteImport,
  60. } as any)
  61. const errors404Route = errors404RouteImport.update({
  62. id: '/(errors)/404',
  63. path: '/404',
  64. getParentRoute: () => rootRouteImport,
  65. } as any)
  66. const errors403Route = errors403RouteImport.update({
  67. id: '/(errors)/403',
  68. path: '/403',
  69. getParentRoute: () => rootRouteImport,
  70. } as any)
  71. const errors401Route = errors401RouteImport.update({
  72. id: '/(errors)/401',
  73. path: '/401',
  74. getParentRoute: () => rootRouteImport,
  75. } as any)
  76. const authSignUpRoute = authSignUpRouteImport.update({
  77. id: '/(auth)/sign-up',
  78. path: '/sign-up',
  79. getParentRoute: () => rootRouteImport,
  80. } as any)
  81. const authSignIn2Route = authSignIn2RouteImport.update({
  82. id: '/(auth)/sign-in-2',
  83. path: '/sign-in-2',
  84. getParentRoute: () => rootRouteImport,
  85. } as any)
  86. const authSignInRoute = authSignInRouteImport.update({
  87. id: '/(auth)/sign-in',
  88. path: '/sign-in',
  89. getParentRoute: () => rootRouteImport,
  90. } as any)
  91. const authOtpRoute = authOtpRouteImport.update({
  92. id: '/(auth)/otp',
  93. path: '/otp',
  94. getParentRoute: () => rootRouteImport,
  95. } as any)
  96. const authForgotPasswordRoute = authForgotPasswordRouteImport.update({
  97. id: '/(auth)/forgot-password',
  98. path: '/forgot-password',
  99. getParentRoute: () => rootRouteImport,
  100. } as any)
  101. const ClerkAuthenticatedRouteRoute = ClerkAuthenticatedRouteRouteImport.update({
  102. id: '/_authenticated',
  103. getParentRoute: () => ClerkRouteRoute,
  104. } as any)
  105. const ClerkauthRouteRoute = ClerkauthRouteRouteImport.update({
  106. id: '/(auth)',
  107. getParentRoute: () => ClerkRouteRoute,
  108. } as any)
  109. const AuthenticatedSettingsRouteRoute =
  110. AuthenticatedSettingsRouteRouteImport.update({
  111. id: '/settings',
  112. path: '/settings',
  113. getParentRoute: () => AuthenticatedRouteRoute,
  114. } as any)
  115. const AuthenticatedUsersIndexRoute = AuthenticatedUsersIndexRouteImport.update({
  116. id: '/users/',
  117. path: '/users/',
  118. getParentRoute: () => AuthenticatedRouteRoute,
  119. } as any)
  120. const AuthenticatedTasksIndexRoute = AuthenticatedTasksIndexRouteImport.update({
  121. id: '/tasks/',
  122. path: '/tasks/',
  123. getParentRoute: () => AuthenticatedRouteRoute,
  124. } as any)
  125. const AuthenticatedSettingsIndexRoute =
  126. AuthenticatedSettingsIndexRouteImport.update({
  127. id: '/',
  128. path: '/',
  129. getParentRoute: () => AuthenticatedSettingsRouteRoute,
  130. } as any)
  131. const AuthenticatedHelpCenterIndexRoute =
  132. AuthenticatedHelpCenterIndexRouteImport.update({
  133. id: '/help-center/',
  134. path: '/help-center/',
  135. getParentRoute: () => AuthenticatedRouteRoute,
  136. } as any)
  137. const AuthenticatedChatsIndexRoute = AuthenticatedChatsIndexRouteImport.update({
  138. id: '/chats/',
  139. path: '/chats/',
  140. getParentRoute: () => AuthenticatedRouteRoute,
  141. } as any)
  142. const AuthenticatedAppsIndexRoute = AuthenticatedAppsIndexRouteImport.update({
  143. id: '/apps/',
  144. path: '/apps/',
  145. getParentRoute: () => AuthenticatedRouteRoute,
  146. } as any)
  147. const ClerkAuthenticatedUserManagementRoute =
  148. ClerkAuthenticatedUserManagementRouteImport.update({
  149. id: '/user-management',
  150. path: '/user-management',
  151. getParentRoute: () => ClerkAuthenticatedRouteRoute,
  152. } as any)
  153. const ClerkauthSignUpRoute = ClerkauthSignUpRouteImport.update({
  154. id: '/sign-up',
  155. path: '/sign-up',
  156. getParentRoute: () => ClerkauthRouteRoute,
  157. } as any)
  158. const ClerkauthSignInRoute = ClerkauthSignInRouteImport.update({
  159. id: '/sign-in',
  160. path: '/sign-in',
  161. getParentRoute: () => ClerkauthRouteRoute,
  162. } as any)
  163. const AuthenticatedSettingsNotificationsRoute =
  164. AuthenticatedSettingsNotificationsRouteImport.update({
  165. id: '/notifications',
  166. path: '/notifications',
  167. getParentRoute: () => AuthenticatedSettingsRouteRoute,
  168. } as any)
  169. const AuthenticatedSettingsDisplayRoute =
  170. AuthenticatedSettingsDisplayRouteImport.update({
  171. id: '/display',
  172. path: '/display',
  173. getParentRoute: () => AuthenticatedSettingsRouteRoute,
  174. } as any)
  175. const AuthenticatedSettingsAppearanceRoute =
  176. AuthenticatedSettingsAppearanceRouteImport.update({
  177. id: '/appearance',
  178. path: '/appearance',
  179. getParentRoute: () => AuthenticatedSettingsRouteRoute,
  180. } as any)
  181. const AuthenticatedSettingsAccountRoute =
  182. AuthenticatedSettingsAccountRouteImport.update({
  183. id: '/account',
  184. path: '/account',
  185. getParentRoute: () => AuthenticatedSettingsRouteRoute,
  186. } as any)
  187. export interface FileRoutesByFullPath {
  188. '/clerk': typeof ClerkAuthenticatedRouteRouteWithChildren
  189. '/settings': typeof AuthenticatedSettingsRouteRouteWithChildren
  190. '/clerk/': typeof ClerkauthRouteRouteWithChildren
  191. '/forgot-password': typeof authForgotPasswordRoute
  192. '/otp': typeof authOtpRoute
  193. '/sign-in': typeof authSignInRoute
  194. '/sign-in-2': typeof authSignIn2Route
  195. '/sign-up': typeof authSignUpRoute
  196. '/401': typeof errors401Route
  197. '/403': typeof errors403Route
  198. '/404': typeof errors404Route
  199. '/500': typeof errors500Route
  200. '/503': typeof errors503Route
  201. '/': typeof AuthenticatedIndexRoute
  202. '/settings/account': typeof AuthenticatedSettingsAccountRoute
  203. '/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
  204. '/settings/display': typeof AuthenticatedSettingsDisplayRoute
  205. '/settings/notifications': typeof AuthenticatedSettingsNotificationsRoute
  206. '/clerk/sign-in': typeof ClerkauthSignInRoute
  207. '/clerk/sign-up': typeof ClerkauthSignUpRoute
  208. '/clerk/user-management': typeof ClerkAuthenticatedUserManagementRoute
  209. '/apps': typeof AuthenticatedAppsIndexRoute
  210. '/chats': typeof AuthenticatedChatsIndexRoute
  211. '/help-center': typeof AuthenticatedHelpCenterIndexRoute
  212. '/settings/': typeof AuthenticatedSettingsIndexRoute
  213. '/tasks': typeof AuthenticatedTasksIndexRoute
  214. '/users': typeof AuthenticatedUsersIndexRoute
  215. }
  216. export interface FileRoutesByTo {
  217. '/clerk': typeof ClerkAuthenticatedRouteRouteWithChildren
  218. '/forgot-password': typeof authForgotPasswordRoute
  219. '/otp': typeof authOtpRoute
  220. '/sign-in': typeof authSignInRoute
  221. '/sign-in-2': typeof authSignIn2Route
  222. '/sign-up': typeof authSignUpRoute
  223. '/401': typeof errors401Route
  224. '/403': typeof errors403Route
  225. '/404': typeof errors404Route
  226. '/500': typeof errors500Route
  227. '/503': typeof errors503Route
  228. '/': typeof AuthenticatedIndexRoute
  229. '/settings/account': typeof AuthenticatedSettingsAccountRoute
  230. '/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
  231. '/settings/display': typeof AuthenticatedSettingsDisplayRoute
  232. '/settings/notifications': typeof AuthenticatedSettingsNotificationsRoute
  233. '/clerk/sign-in': typeof ClerkauthSignInRoute
  234. '/clerk/sign-up': typeof ClerkauthSignUpRoute
  235. '/clerk/user-management': typeof ClerkAuthenticatedUserManagementRoute
  236. '/apps': typeof AuthenticatedAppsIndexRoute
  237. '/chats': typeof AuthenticatedChatsIndexRoute
  238. '/help-center': typeof AuthenticatedHelpCenterIndexRoute
  239. '/settings': typeof AuthenticatedSettingsIndexRoute
  240. '/tasks': typeof AuthenticatedTasksIndexRoute
  241. '/users': typeof AuthenticatedUsersIndexRoute
  242. }
  243. export interface FileRoutesById {
  244. __root__: typeof rootRouteImport
  245. '/_authenticated': typeof AuthenticatedRouteRouteWithChildren
  246. '/clerk': typeof ClerkRouteRouteWithChildren
  247. '/_authenticated/settings': typeof AuthenticatedSettingsRouteRouteWithChildren
  248. '/clerk/(auth)': typeof ClerkauthRouteRouteWithChildren
  249. '/clerk/_authenticated': typeof ClerkAuthenticatedRouteRouteWithChildren
  250. '/(auth)/forgot-password': typeof authForgotPasswordRoute
  251. '/(auth)/otp': typeof authOtpRoute
  252. '/(auth)/sign-in': typeof authSignInRoute
  253. '/(auth)/sign-in-2': typeof authSignIn2Route
  254. '/(auth)/sign-up': typeof authSignUpRoute
  255. '/(errors)/401': typeof errors401Route
  256. '/(errors)/403': typeof errors403Route
  257. '/(errors)/404': typeof errors404Route
  258. '/(errors)/500': typeof errors500Route
  259. '/(errors)/503': typeof errors503Route
  260. '/_authenticated/': typeof AuthenticatedIndexRoute
  261. '/_authenticated/settings/account': typeof AuthenticatedSettingsAccountRoute
  262. '/_authenticated/settings/appearance': typeof AuthenticatedSettingsAppearanceRoute
  263. '/_authenticated/settings/display': typeof AuthenticatedSettingsDisplayRoute
  264. '/_authenticated/settings/notifications': typeof AuthenticatedSettingsNotificationsRoute
  265. '/clerk/(auth)/sign-in': typeof ClerkauthSignInRoute
  266. '/clerk/(auth)/sign-up': typeof ClerkauthSignUpRoute
  267. '/clerk/_authenticated/user-management': typeof ClerkAuthenticatedUserManagementRoute
  268. '/_authenticated/apps/': typeof AuthenticatedAppsIndexRoute
  269. '/_authenticated/chats/': typeof AuthenticatedChatsIndexRoute
  270. '/_authenticated/help-center/': typeof AuthenticatedHelpCenterIndexRoute
  271. '/_authenticated/settings/': typeof AuthenticatedSettingsIndexRoute
  272. '/_authenticated/tasks/': typeof AuthenticatedTasksIndexRoute
  273. '/_authenticated/users/': typeof AuthenticatedUsersIndexRoute
  274. }
  275. export interface FileRouteTypes {
  276. fileRoutesByFullPath: FileRoutesByFullPath
  277. fullPaths:
  278. | '/clerk'
  279. | '/settings'
  280. | '/clerk/'
  281. | '/forgot-password'
  282. | '/otp'
  283. | '/sign-in'
  284. | '/sign-in-2'
  285. | '/sign-up'
  286. | '/401'
  287. | '/403'
  288. | '/404'
  289. | '/500'
  290. | '/503'
  291. | '/'
  292. | '/settings/account'
  293. | '/settings/appearance'
  294. | '/settings/display'
  295. | '/settings/notifications'
  296. | '/clerk/sign-in'
  297. | '/clerk/sign-up'
  298. | '/clerk/user-management'
  299. | '/apps'
  300. | '/chats'
  301. | '/help-center'
  302. | '/settings/'
  303. | '/tasks'
  304. | '/users'
  305. fileRoutesByTo: FileRoutesByTo
  306. to:
  307. | '/clerk'
  308. | '/forgot-password'
  309. | '/otp'
  310. | '/sign-in'
  311. | '/sign-in-2'
  312. | '/sign-up'
  313. | '/401'
  314. | '/403'
  315. | '/404'
  316. | '/500'
  317. | '/503'
  318. | '/'
  319. | '/settings/account'
  320. | '/settings/appearance'
  321. | '/settings/display'
  322. | '/settings/notifications'
  323. | '/clerk/sign-in'
  324. | '/clerk/sign-up'
  325. | '/clerk/user-management'
  326. | '/apps'
  327. | '/chats'
  328. | '/help-center'
  329. | '/settings'
  330. | '/tasks'
  331. | '/users'
  332. id:
  333. | '__root__'
  334. | '/_authenticated'
  335. | '/clerk'
  336. | '/_authenticated/settings'
  337. | '/clerk/(auth)'
  338. | '/clerk/_authenticated'
  339. | '/(auth)/forgot-password'
  340. | '/(auth)/otp'
  341. | '/(auth)/sign-in'
  342. | '/(auth)/sign-in-2'
  343. | '/(auth)/sign-up'
  344. | '/(errors)/401'
  345. | '/(errors)/403'
  346. | '/(errors)/404'
  347. | '/(errors)/500'
  348. | '/(errors)/503'
  349. | '/_authenticated/'
  350. | '/_authenticated/settings/account'
  351. | '/_authenticated/settings/appearance'
  352. | '/_authenticated/settings/display'
  353. | '/_authenticated/settings/notifications'
  354. | '/clerk/(auth)/sign-in'
  355. | '/clerk/(auth)/sign-up'
  356. | '/clerk/_authenticated/user-management'
  357. | '/_authenticated/apps/'
  358. | '/_authenticated/chats/'
  359. | '/_authenticated/help-center/'
  360. | '/_authenticated/settings/'
  361. | '/_authenticated/tasks/'
  362. | '/_authenticated/users/'
  363. fileRoutesById: FileRoutesById
  364. }
  365. export interface RootRouteChildren {
  366. AuthenticatedRouteRoute: typeof AuthenticatedRouteRouteWithChildren
  367. ClerkRouteRoute: typeof ClerkRouteRouteWithChildren
  368. authForgotPasswordRoute: typeof authForgotPasswordRoute
  369. authOtpRoute: typeof authOtpRoute
  370. authSignInRoute: typeof authSignInRoute
  371. authSignIn2Route: typeof authSignIn2Route
  372. authSignUpRoute: typeof authSignUpRoute
  373. errors401Route: typeof errors401Route
  374. errors403Route: typeof errors403Route
  375. errors404Route: typeof errors404Route
  376. errors500Route: typeof errors500Route
  377. errors503Route: typeof errors503Route
  378. }
  379. declare module '@tanstack/react-router' {
  380. interface FileRoutesByPath {
  381. '/clerk': {
  382. id: '/clerk'
  383. path: '/clerk'
  384. fullPath: '/clerk'
  385. preLoaderRoute: typeof ClerkRouteRouteImport
  386. parentRoute: typeof rootRouteImport
  387. }
  388. '/_authenticated': {
  389. id: '/_authenticated'
  390. path: ''
  391. fullPath: ''
  392. preLoaderRoute: typeof AuthenticatedRouteRouteImport
  393. parentRoute: typeof rootRouteImport
  394. }
  395. '/_authenticated/': {
  396. id: '/_authenticated/'
  397. path: '/'
  398. fullPath: '/'
  399. preLoaderRoute: typeof AuthenticatedIndexRouteImport
  400. parentRoute: typeof AuthenticatedRouteRoute
  401. }
  402. '/(errors)/503': {
  403. id: '/(errors)/503'
  404. path: '/503'
  405. fullPath: '/503'
  406. preLoaderRoute: typeof errors503RouteImport
  407. parentRoute: typeof rootRouteImport
  408. }
  409. '/(errors)/500': {
  410. id: '/(errors)/500'
  411. path: '/500'
  412. fullPath: '/500'
  413. preLoaderRoute: typeof errors500RouteImport
  414. parentRoute: typeof rootRouteImport
  415. }
  416. '/(errors)/404': {
  417. id: '/(errors)/404'
  418. path: '/404'
  419. fullPath: '/404'
  420. preLoaderRoute: typeof errors404RouteImport
  421. parentRoute: typeof rootRouteImport
  422. }
  423. '/(errors)/403': {
  424. id: '/(errors)/403'
  425. path: '/403'
  426. fullPath: '/403'
  427. preLoaderRoute: typeof errors403RouteImport
  428. parentRoute: typeof rootRouteImport
  429. }
  430. '/(errors)/401': {
  431. id: '/(errors)/401'
  432. path: '/401'
  433. fullPath: '/401'
  434. preLoaderRoute: typeof errors401RouteImport
  435. parentRoute: typeof rootRouteImport
  436. }
  437. '/(auth)/sign-up': {
  438. id: '/(auth)/sign-up'
  439. path: '/sign-up'
  440. fullPath: '/sign-up'
  441. preLoaderRoute: typeof authSignUpRouteImport
  442. parentRoute: typeof rootRouteImport
  443. }
  444. '/(auth)/sign-in-2': {
  445. id: '/(auth)/sign-in-2'
  446. path: '/sign-in-2'
  447. fullPath: '/sign-in-2'
  448. preLoaderRoute: typeof authSignIn2RouteImport
  449. parentRoute: typeof rootRouteImport
  450. }
  451. '/(auth)/sign-in': {
  452. id: '/(auth)/sign-in'
  453. path: '/sign-in'
  454. fullPath: '/sign-in'
  455. preLoaderRoute: typeof authSignInRouteImport
  456. parentRoute: typeof rootRouteImport
  457. }
  458. '/(auth)/otp': {
  459. id: '/(auth)/otp'
  460. path: '/otp'
  461. fullPath: '/otp'
  462. preLoaderRoute: typeof authOtpRouteImport
  463. parentRoute: typeof rootRouteImport
  464. }
  465. '/(auth)/forgot-password': {
  466. id: '/(auth)/forgot-password'
  467. path: '/forgot-password'
  468. fullPath: '/forgot-password'
  469. preLoaderRoute: typeof authForgotPasswordRouteImport
  470. parentRoute: typeof rootRouteImport
  471. }
  472. '/clerk/_authenticated': {
  473. id: '/clerk/_authenticated'
  474. path: ''
  475. fullPath: '/clerk'
  476. preLoaderRoute: typeof ClerkAuthenticatedRouteRouteImport
  477. parentRoute: typeof ClerkRouteRoute
  478. }
  479. '/clerk/(auth)': {
  480. id: '/clerk/(auth)'
  481. path: '/'
  482. fullPath: '/clerk/'
  483. preLoaderRoute: typeof ClerkauthRouteRouteImport
  484. parentRoute: typeof ClerkRouteRoute
  485. }
  486. '/_authenticated/settings': {
  487. id: '/_authenticated/settings'
  488. path: '/settings'
  489. fullPath: '/settings'
  490. preLoaderRoute: typeof AuthenticatedSettingsRouteRouteImport
  491. parentRoute: typeof AuthenticatedRouteRoute
  492. }
  493. '/_authenticated/users/': {
  494. id: '/_authenticated/users/'
  495. path: '/users'
  496. fullPath: '/users'
  497. preLoaderRoute: typeof AuthenticatedUsersIndexRouteImport
  498. parentRoute: typeof AuthenticatedRouteRoute
  499. }
  500. '/_authenticated/tasks/': {
  501. id: '/_authenticated/tasks/'
  502. path: '/tasks'
  503. fullPath: '/tasks'
  504. preLoaderRoute: typeof AuthenticatedTasksIndexRouteImport
  505. parentRoute: typeof AuthenticatedRouteRoute
  506. }
  507. '/_authenticated/settings/': {
  508. id: '/_authenticated/settings/'
  509. path: '/'
  510. fullPath: '/settings/'
  511. preLoaderRoute: typeof AuthenticatedSettingsIndexRouteImport
  512. parentRoute: typeof AuthenticatedSettingsRouteRoute
  513. }
  514. '/_authenticated/help-center/': {
  515. id: '/_authenticated/help-center/'
  516. path: '/help-center'
  517. fullPath: '/help-center'
  518. preLoaderRoute: typeof AuthenticatedHelpCenterIndexRouteImport
  519. parentRoute: typeof AuthenticatedRouteRoute
  520. }
  521. '/_authenticated/chats/': {
  522. id: '/_authenticated/chats/'
  523. path: '/chats'
  524. fullPath: '/chats'
  525. preLoaderRoute: typeof AuthenticatedChatsIndexRouteImport
  526. parentRoute: typeof AuthenticatedRouteRoute
  527. }
  528. '/_authenticated/apps/': {
  529. id: '/_authenticated/apps/'
  530. path: '/apps'
  531. fullPath: '/apps'
  532. preLoaderRoute: typeof AuthenticatedAppsIndexRouteImport
  533. parentRoute: typeof AuthenticatedRouteRoute
  534. }
  535. '/clerk/_authenticated/user-management': {
  536. id: '/clerk/_authenticated/user-management'
  537. path: '/user-management'
  538. fullPath: '/clerk/user-management'
  539. preLoaderRoute: typeof ClerkAuthenticatedUserManagementRouteImport
  540. parentRoute: typeof ClerkAuthenticatedRouteRoute
  541. }
  542. '/clerk/(auth)/sign-up': {
  543. id: '/clerk/(auth)/sign-up'
  544. path: '/sign-up'
  545. fullPath: '/clerk/sign-up'
  546. preLoaderRoute: typeof ClerkauthSignUpRouteImport
  547. parentRoute: typeof ClerkauthRouteRoute
  548. }
  549. '/clerk/(auth)/sign-in': {
  550. id: '/clerk/(auth)/sign-in'
  551. path: '/sign-in'
  552. fullPath: '/clerk/sign-in'
  553. preLoaderRoute: typeof ClerkauthSignInRouteImport
  554. parentRoute: typeof ClerkauthRouteRoute
  555. }
  556. '/_authenticated/settings/notifications': {
  557. id: '/_authenticated/settings/notifications'
  558. path: '/notifications'
  559. fullPath: '/settings/notifications'
  560. preLoaderRoute: typeof AuthenticatedSettingsNotificationsRouteImport
  561. parentRoute: typeof AuthenticatedSettingsRouteRoute
  562. }
  563. '/_authenticated/settings/display': {
  564. id: '/_authenticated/settings/display'
  565. path: '/display'
  566. fullPath: '/settings/display'
  567. preLoaderRoute: typeof AuthenticatedSettingsDisplayRouteImport
  568. parentRoute: typeof AuthenticatedSettingsRouteRoute
  569. }
  570. '/_authenticated/settings/appearance': {
  571. id: '/_authenticated/settings/appearance'
  572. path: '/appearance'
  573. fullPath: '/settings/appearance'
  574. preLoaderRoute: typeof AuthenticatedSettingsAppearanceRouteImport
  575. parentRoute: typeof AuthenticatedSettingsRouteRoute
  576. }
  577. '/_authenticated/settings/account': {
  578. id: '/_authenticated/settings/account'
  579. path: '/account'
  580. fullPath: '/settings/account'
  581. preLoaderRoute: typeof AuthenticatedSettingsAccountRouteImport
  582. parentRoute: typeof AuthenticatedSettingsRouteRoute
  583. }
  584. }
  585. }
  586. interface AuthenticatedSettingsRouteRouteChildren {
  587. AuthenticatedSettingsAccountRoute: typeof AuthenticatedSettingsAccountRoute
  588. AuthenticatedSettingsAppearanceRoute: typeof AuthenticatedSettingsAppearanceRoute
  589. AuthenticatedSettingsDisplayRoute: typeof AuthenticatedSettingsDisplayRoute
  590. AuthenticatedSettingsNotificationsRoute: typeof AuthenticatedSettingsNotificationsRoute
  591. AuthenticatedSettingsIndexRoute: typeof AuthenticatedSettingsIndexRoute
  592. }
  593. const AuthenticatedSettingsRouteRouteChildren: AuthenticatedSettingsRouteRouteChildren =
  594. {
  595. AuthenticatedSettingsAccountRoute: AuthenticatedSettingsAccountRoute,
  596. AuthenticatedSettingsAppearanceRoute: AuthenticatedSettingsAppearanceRoute,
  597. AuthenticatedSettingsDisplayRoute: AuthenticatedSettingsDisplayRoute,
  598. AuthenticatedSettingsNotificationsRoute:
  599. AuthenticatedSettingsNotificationsRoute,
  600. AuthenticatedSettingsIndexRoute: AuthenticatedSettingsIndexRoute,
  601. }
  602. const AuthenticatedSettingsRouteRouteWithChildren =
  603. AuthenticatedSettingsRouteRoute._addFileChildren(
  604. AuthenticatedSettingsRouteRouteChildren,
  605. )
  606. interface AuthenticatedRouteRouteChildren {
  607. AuthenticatedSettingsRouteRoute: typeof AuthenticatedSettingsRouteRouteWithChildren
  608. AuthenticatedIndexRoute: typeof AuthenticatedIndexRoute
  609. AuthenticatedAppsIndexRoute: typeof AuthenticatedAppsIndexRoute
  610. AuthenticatedChatsIndexRoute: typeof AuthenticatedChatsIndexRoute
  611. AuthenticatedHelpCenterIndexRoute: typeof AuthenticatedHelpCenterIndexRoute
  612. AuthenticatedTasksIndexRoute: typeof AuthenticatedTasksIndexRoute
  613. AuthenticatedUsersIndexRoute: typeof AuthenticatedUsersIndexRoute
  614. }
  615. const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = {
  616. AuthenticatedSettingsRouteRoute: AuthenticatedSettingsRouteRouteWithChildren,
  617. AuthenticatedIndexRoute: AuthenticatedIndexRoute,
  618. AuthenticatedAppsIndexRoute: AuthenticatedAppsIndexRoute,
  619. AuthenticatedChatsIndexRoute: AuthenticatedChatsIndexRoute,
  620. AuthenticatedHelpCenterIndexRoute: AuthenticatedHelpCenterIndexRoute,
  621. AuthenticatedTasksIndexRoute: AuthenticatedTasksIndexRoute,
  622. AuthenticatedUsersIndexRoute: AuthenticatedUsersIndexRoute,
  623. }
  624. const AuthenticatedRouteRouteWithChildren =
  625. AuthenticatedRouteRoute._addFileChildren(AuthenticatedRouteRouteChildren)
  626. interface ClerkauthRouteRouteChildren {
  627. ClerkauthSignInRoute: typeof ClerkauthSignInRoute
  628. ClerkauthSignUpRoute: typeof ClerkauthSignUpRoute
  629. }
  630. const ClerkauthRouteRouteChildren: ClerkauthRouteRouteChildren = {
  631. ClerkauthSignInRoute: ClerkauthSignInRoute,
  632. ClerkauthSignUpRoute: ClerkauthSignUpRoute,
  633. }
  634. const ClerkauthRouteRouteWithChildren = ClerkauthRouteRoute._addFileChildren(
  635. ClerkauthRouteRouteChildren,
  636. )
  637. interface ClerkAuthenticatedRouteRouteChildren {
  638. ClerkAuthenticatedUserManagementRoute: typeof ClerkAuthenticatedUserManagementRoute
  639. }
  640. const ClerkAuthenticatedRouteRouteChildren: ClerkAuthenticatedRouteRouteChildren =
  641. {
  642. ClerkAuthenticatedUserManagementRoute:
  643. ClerkAuthenticatedUserManagementRoute,
  644. }
  645. const ClerkAuthenticatedRouteRouteWithChildren =
  646. ClerkAuthenticatedRouteRoute._addFileChildren(
  647. ClerkAuthenticatedRouteRouteChildren,
  648. )
  649. interface ClerkRouteRouteChildren {
  650. ClerkauthRouteRoute: typeof ClerkauthRouteRouteWithChildren
  651. ClerkAuthenticatedRouteRoute: typeof ClerkAuthenticatedRouteRouteWithChildren
  652. }
  653. const ClerkRouteRouteChildren: ClerkRouteRouteChildren = {
  654. ClerkauthRouteRoute: ClerkauthRouteRouteWithChildren,
  655. ClerkAuthenticatedRouteRoute: ClerkAuthenticatedRouteRouteWithChildren,
  656. }
  657. const ClerkRouteRouteWithChildren = ClerkRouteRoute._addFileChildren(
  658. ClerkRouteRouteChildren,
  659. )
  660. const rootRouteChildren: RootRouteChildren = {
  661. AuthenticatedRouteRoute: AuthenticatedRouteRouteWithChildren,
  662. ClerkRouteRoute: ClerkRouteRouteWithChildren,
  663. authForgotPasswordRoute: authForgotPasswordRoute,
  664. authOtpRoute: authOtpRoute,
  665. authSignInRoute: authSignInRoute,
  666. authSignIn2Route: authSignIn2Route,
  667. authSignUpRoute: authSignUpRoute,
  668. errors401Route: errors401Route,
  669. errors403Route: errors403Route,
  670. errors404Route: errors404Route,
  671. errors500Route: errors500Route,
  672. errors503Route: errors503Route,
  673. }
  674. export const routeTree = rootRouteImport
  675. ._addFileChildren(rootRouteChildren)
  676. ._addFileTypes<FileRouteTypes>()