|
|
@@ -41,6 +41,9 @@ const AuthenticatedTasksIndexLazyImport = createFileRoute(
|
|
|
const AuthenticatedSettingsIndexLazyImport = createFileRoute(
|
|
|
'/_authenticated/settings/',
|
|
|
)()
|
|
|
+const AuthenticatedHelpCenterIndexLazyImport = createFileRoute(
|
|
|
+ '/_authenticated/help-center/',
|
|
|
+)()
|
|
|
const AuthenticatedChatsIndexLazyImport = createFileRoute(
|
|
|
'/_authenticated/chats/',
|
|
|
)()
|
|
|
@@ -184,6 +187,17 @@ const AuthenticatedSettingsIndexLazyRoute =
|
|
|
import('./routes/_authenticated/settings/index.lazy').then((d) => d.Route),
|
|
|
)
|
|
|
|
|
|
+const AuthenticatedHelpCenterIndexLazyRoute =
|
|
|
+ AuthenticatedHelpCenterIndexLazyImport.update({
|
|
|
+ id: '/help-center/',
|
|
|
+ path: '/help-center/',
|
|
|
+ getParentRoute: () => AuthenticatedRouteRoute,
|
|
|
+ } as any).lazy(() =>
|
|
|
+ import('./routes/_authenticated/help-center/index.lazy').then(
|
|
|
+ (d) => d.Route,
|
|
|
+ ),
|
|
|
+ )
|
|
|
+
|
|
|
const AuthenticatedChatsIndexLazyRoute =
|
|
|
AuthenticatedChatsIndexLazyImport.update({
|
|
|
id: '/chats/',
|
|
|
@@ -405,6 +419,13 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof AuthenticatedChatsIndexLazyImport
|
|
|
parentRoute: typeof AuthenticatedRouteImport
|
|
|
}
|
|
|
+ '/_authenticated/help-center/': {
|
|
|
+ id: '/_authenticated/help-center/'
|
|
|
+ path: '/help-center'
|
|
|
+ fullPath: '/help-center'
|
|
|
+ preLoaderRoute: typeof AuthenticatedHelpCenterIndexLazyImport
|
|
|
+ parentRoute: typeof AuthenticatedRouteImport
|
|
|
+ }
|
|
|
'/_authenticated/settings/': {
|
|
|
id: '/_authenticated/settings/'
|
|
|
path: '/'
|
|
|
@@ -456,6 +477,7 @@ interface AuthenticatedRouteRouteChildren {
|
|
|
AuthenticatedDashboardIndexRoute: typeof AuthenticatedDashboardIndexRoute
|
|
|
AuthenticatedAppsIndexLazyRoute: typeof AuthenticatedAppsIndexLazyRoute
|
|
|
AuthenticatedChatsIndexLazyRoute: typeof AuthenticatedChatsIndexLazyRoute
|
|
|
+ AuthenticatedHelpCenterIndexLazyRoute: typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
|
AuthenticatedTasksIndexLazyRoute: typeof AuthenticatedTasksIndexLazyRoute
|
|
|
}
|
|
|
|
|
|
@@ -466,6 +488,7 @@ const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = {
|
|
|
AuthenticatedDashboardIndexRoute: AuthenticatedDashboardIndexRoute,
|
|
|
AuthenticatedAppsIndexLazyRoute: AuthenticatedAppsIndexLazyRoute,
|
|
|
AuthenticatedChatsIndexLazyRoute: AuthenticatedChatsIndexLazyRoute,
|
|
|
+ AuthenticatedHelpCenterIndexLazyRoute: AuthenticatedHelpCenterIndexLazyRoute,
|
|
|
AuthenticatedTasksIndexLazyRoute: AuthenticatedTasksIndexLazyRoute,
|
|
|
}
|
|
|
|
|
|
@@ -493,6 +516,7 @@ export interface FileRoutesByFullPath {
|
|
|
'/dashboard': typeof AuthenticatedDashboardIndexRoute
|
|
|
'/apps': typeof AuthenticatedAppsIndexLazyRoute
|
|
|
'/chats': typeof AuthenticatedChatsIndexLazyRoute
|
|
|
+ '/help-center': typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
|
'/settings/': typeof AuthenticatedSettingsIndexLazyRoute
|
|
|
'/tasks': typeof AuthenticatedTasksIndexLazyRoute
|
|
|
}
|
|
|
@@ -516,6 +540,7 @@ export interface FileRoutesByTo {
|
|
|
'/dashboard': typeof AuthenticatedDashboardIndexRoute
|
|
|
'/apps': typeof AuthenticatedAppsIndexLazyRoute
|
|
|
'/chats': typeof AuthenticatedChatsIndexLazyRoute
|
|
|
+ '/help-center': typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
|
'/settings': typeof AuthenticatedSettingsIndexLazyRoute
|
|
|
'/tasks': typeof AuthenticatedTasksIndexLazyRoute
|
|
|
}
|
|
|
@@ -543,6 +568,7 @@ export interface FileRoutesById {
|
|
|
'/_authenticated/dashboard/': typeof AuthenticatedDashboardIndexRoute
|
|
|
'/_authenticated/apps/': typeof AuthenticatedAppsIndexLazyRoute
|
|
|
'/_authenticated/chats/': typeof AuthenticatedChatsIndexLazyRoute
|
|
|
+ '/_authenticated/help-center/': typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
|
'/_authenticated/settings/': typeof AuthenticatedSettingsIndexLazyRoute
|
|
|
'/_authenticated/tasks/': typeof AuthenticatedTasksIndexLazyRoute
|
|
|
}
|
|
|
@@ -570,6 +596,7 @@ export interface FileRouteTypes {
|
|
|
| '/dashboard'
|
|
|
| '/apps'
|
|
|
| '/chats'
|
|
|
+ | '/help-center'
|
|
|
| '/settings/'
|
|
|
| '/tasks'
|
|
|
fileRoutesByTo: FileRoutesByTo
|
|
|
@@ -592,6 +619,7 @@ export interface FileRouteTypes {
|
|
|
| '/dashboard'
|
|
|
| '/apps'
|
|
|
| '/chats'
|
|
|
+ | '/help-center'
|
|
|
| '/settings'
|
|
|
| '/tasks'
|
|
|
id:
|
|
|
@@ -617,6 +645,7 @@ export interface FileRouteTypes {
|
|
|
| '/_authenticated/dashboard/'
|
|
|
| '/_authenticated/apps/'
|
|
|
| '/_authenticated/chats/'
|
|
|
+ | '/_authenticated/help-center/'
|
|
|
| '/_authenticated/settings/'
|
|
|
| '/_authenticated/tasks/'
|
|
|
fileRoutesById: FileRoutesById
|
|
|
@@ -684,6 +713,7 @@ export const routeTree = rootRoute
|
|
|
"/_authenticated/dashboard/",
|
|
|
"/_authenticated/apps/",
|
|
|
"/_authenticated/chats/",
|
|
|
+ "/_authenticated/help-center/",
|
|
|
"/_authenticated/tasks/"
|
|
|
]
|
|
|
},
|
|
|
@@ -763,6 +793,10 @@ export const routeTree = rootRoute
|
|
|
"filePath": "_authenticated/chats/index.lazy.tsx",
|
|
|
"parent": "/_authenticated"
|
|
|
},
|
|
|
+ "/_authenticated/help-center/": {
|
|
|
+ "filePath": "_authenticated/help-center/index.lazy.tsx",
|
|
|
+ "parent": "/_authenticated"
|
|
|
+ },
|
|
|
"/_authenticated/settings/": {
|
|
|
"filePath": "_authenticated/settings/index.lazy.tsx",
|
|
|
"parent": "/_authenticated/settings"
|