|
@@ -35,6 +35,9 @@ const authForgotPasswordLazyImport = createFileRoute(
|
|
|
const AuthenticatedSettingsRouteLazyImport = createFileRoute(
|
|
const AuthenticatedSettingsRouteLazyImport = createFileRoute(
|
|
|
'/_authenticated/settings',
|
|
'/_authenticated/settings',
|
|
|
)()
|
|
)()
|
|
|
|
|
+const AuthenticatedUsersIndexLazyImport = createFileRoute(
|
|
|
|
|
+ '/_authenticated/users/',
|
|
|
|
|
+)()
|
|
|
const AuthenticatedTasksIndexLazyImport = createFileRoute(
|
|
const AuthenticatedTasksIndexLazyImport = createFileRoute(
|
|
|
'/_authenticated/tasks/',
|
|
'/_authenticated/tasks/',
|
|
|
)()
|
|
)()
|
|
@@ -169,6 +172,15 @@ const auth500Route = auth500Import.update({
|
|
|
getParentRoute: () => rootRoute,
|
|
getParentRoute: () => rootRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
|
|
|
|
|
|
|
+const AuthenticatedUsersIndexLazyRoute =
|
|
|
|
|
+ AuthenticatedUsersIndexLazyImport.update({
|
|
|
|
|
+ id: '/users/',
|
|
|
|
|
+ path: '/users/',
|
|
|
|
|
+ getParentRoute: () => AuthenticatedRouteRoute,
|
|
|
|
|
+ } as any).lazy(() =>
|
|
|
|
|
+ import('./routes/_authenticated/users/index.lazy').then((d) => d.Route),
|
|
|
|
|
+ )
|
|
|
|
|
+
|
|
|
const AuthenticatedTasksIndexLazyRoute =
|
|
const AuthenticatedTasksIndexLazyRoute =
|
|
|
AuthenticatedTasksIndexLazyImport.update({
|
|
AuthenticatedTasksIndexLazyImport.update({
|
|
|
id: '/tasks/',
|
|
id: '/tasks/',
|
|
@@ -440,6 +452,13 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof AuthenticatedTasksIndexLazyImport
|
|
preLoaderRoute: typeof AuthenticatedTasksIndexLazyImport
|
|
|
parentRoute: typeof AuthenticatedRouteImport
|
|
parentRoute: typeof AuthenticatedRouteImport
|
|
|
}
|
|
}
|
|
|
|
|
+ '/_authenticated/users/': {
|
|
|
|
|
+ id: '/_authenticated/users/'
|
|
|
|
|
+ path: '/users'
|
|
|
|
|
+ fullPath: '/users'
|
|
|
|
|
+ preLoaderRoute: typeof AuthenticatedUsersIndexLazyImport
|
|
|
|
|
+ parentRoute: typeof AuthenticatedRouteImport
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -479,6 +498,7 @@ interface AuthenticatedRouteRouteChildren {
|
|
|
AuthenticatedChatsIndexLazyRoute: typeof AuthenticatedChatsIndexLazyRoute
|
|
AuthenticatedChatsIndexLazyRoute: typeof AuthenticatedChatsIndexLazyRoute
|
|
|
AuthenticatedHelpCenterIndexLazyRoute: typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
AuthenticatedHelpCenterIndexLazyRoute: typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
|
AuthenticatedTasksIndexLazyRoute: typeof AuthenticatedTasksIndexLazyRoute
|
|
AuthenticatedTasksIndexLazyRoute: typeof AuthenticatedTasksIndexLazyRoute
|
|
|
|
|
+ AuthenticatedUsersIndexLazyRoute: typeof AuthenticatedUsersIndexLazyRoute
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = {
|
|
const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = {
|
|
@@ -490,6 +510,7 @@ const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = {
|
|
|
AuthenticatedChatsIndexLazyRoute: AuthenticatedChatsIndexLazyRoute,
|
|
AuthenticatedChatsIndexLazyRoute: AuthenticatedChatsIndexLazyRoute,
|
|
|
AuthenticatedHelpCenterIndexLazyRoute: AuthenticatedHelpCenterIndexLazyRoute,
|
|
AuthenticatedHelpCenterIndexLazyRoute: AuthenticatedHelpCenterIndexLazyRoute,
|
|
|
AuthenticatedTasksIndexLazyRoute: AuthenticatedTasksIndexLazyRoute,
|
|
AuthenticatedTasksIndexLazyRoute: AuthenticatedTasksIndexLazyRoute,
|
|
|
|
|
+ AuthenticatedUsersIndexLazyRoute: AuthenticatedUsersIndexLazyRoute,
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
const AuthenticatedRouteRouteWithChildren =
|
|
const AuthenticatedRouteRouteWithChildren =
|
|
@@ -519,6 +540,7 @@ export interface FileRoutesByFullPath {
|
|
|
'/help-center': typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
'/help-center': typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
|
'/settings/': typeof AuthenticatedSettingsIndexLazyRoute
|
|
'/settings/': typeof AuthenticatedSettingsIndexLazyRoute
|
|
|
'/tasks': typeof AuthenticatedTasksIndexLazyRoute
|
|
'/tasks': typeof AuthenticatedTasksIndexLazyRoute
|
|
|
|
|
+ '/users': typeof AuthenticatedUsersIndexLazyRoute
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export interface FileRoutesByTo {
|
|
export interface FileRoutesByTo {
|
|
@@ -543,6 +565,7 @@ export interface FileRoutesByTo {
|
|
|
'/help-center': typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
'/help-center': typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
|
'/settings': typeof AuthenticatedSettingsIndexLazyRoute
|
|
'/settings': typeof AuthenticatedSettingsIndexLazyRoute
|
|
|
'/tasks': typeof AuthenticatedTasksIndexLazyRoute
|
|
'/tasks': typeof AuthenticatedTasksIndexLazyRoute
|
|
|
|
|
+ '/users': typeof AuthenticatedUsersIndexLazyRoute
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export interface FileRoutesById {
|
|
export interface FileRoutesById {
|
|
@@ -571,6 +594,7 @@ export interface FileRoutesById {
|
|
|
'/_authenticated/help-center/': typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
'/_authenticated/help-center/': typeof AuthenticatedHelpCenterIndexLazyRoute
|
|
|
'/_authenticated/settings/': typeof AuthenticatedSettingsIndexLazyRoute
|
|
'/_authenticated/settings/': typeof AuthenticatedSettingsIndexLazyRoute
|
|
|
'/_authenticated/tasks/': typeof AuthenticatedTasksIndexLazyRoute
|
|
'/_authenticated/tasks/': typeof AuthenticatedTasksIndexLazyRoute
|
|
|
|
|
+ '/_authenticated/users/': typeof AuthenticatedUsersIndexLazyRoute
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export interface FileRouteTypes {
|
|
export interface FileRouteTypes {
|
|
@@ -599,6 +623,7 @@ export interface FileRouteTypes {
|
|
|
| '/help-center'
|
|
| '/help-center'
|
|
|
| '/settings/'
|
|
| '/settings/'
|
|
|
| '/tasks'
|
|
| '/tasks'
|
|
|
|
|
+ | '/users'
|
|
|
fileRoutesByTo: FileRoutesByTo
|
|
fileRoutesByTo: FileRoutesByTo
|
|
|
to:
|
|
to:
|
|
|
| '/500'
|
|
| '/500'
|
|
@@ -622,6 +647,7 @@ export interface FileRouteTypes {
|
|
|
| '/help-center'
|
|
| '/help-center'
|
|
|
| '/settings'
|
|
| '/settings'
|
|
|
| '/tasks'
|
|
| '/tasks'
|
|
|
|
|
+ | '/users'
|
|
|
id:
|
|
id:
|
|
|
| '__root__'
|
|
| '__root__'
|
|
|
| '/_authenticated'
|
|
| '/_authenticated'
|
|
@@ -648,6 +674,7 @@ export interface FileRouteTypes {
|
|
|
| '/_authenticated/help-center/'
|
|
| '/_authenticated/help-center/'
|
|
|
| '/_authenticated/settings/'
|
|
| '/_authenticated/settings/'
|
|
|
| '/_authenticated/tasks/'
|
|
| '/_authenticated/tasks/'
|
|
|
|
|
+ | '/_authenticated/users/'
|
|
|
fileRoutesById: FileRoutesById
|
|
fileRoutesById: FileRoutesById
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -714,7 +741,8 @@ export const routeTree = rootRoute
|
|
|
"/_authenticated/apps/",
|
|
"/_authenticated/apps/",
|
|
|
"/_authenticated/chats/",
|
|
"/_authenticated/chats/",
|
|
|
"/_authenticated/help-center/",
|
|
"/_authenticated/help-center/",
|
|
|
- "/_authenticated/tasks/"
|
|
|
|
|
|
|
+ "/_authenticated/tasks/",
|
|
|
|
|
+ "/_authenticated/users/"
|
|
|
]
|
|
]
|
|
|
},
|
|
},
|
|
|
"/(auth)/500": {
|
|
"/(auth)/500": {
|
|
@@ -804,6 +832,10 @@ export const routeTree = rootRoute
|
|
|
"/_authenticated/tasks/": {
|
|
"/_authenticated/tasks/": {
|
|
|
"filePath": "_authenticated/tasks/index.lazy.tsx",
|
|
"filePath": "_authenticated/tasks/index.lazy.tsx",
|
|
|
"parent": "/_authenticated"
|
|
"parent": "/_authenticated"
|
|
|
|
|
+ },
|
|
|
|
|
+ "/_authenticated/users/": {
|
|
|
|
|
+ "filePath": "_authenticated/users/index.lazy.tsx",
|
|
|
|
|
+ "parent": "/_authenticated"
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|