|
@@ -21,6 +21,7 @@ import { Route as AuthenticatedSettingsRouteRouteImport } from './routes/_authen
|
|
|
import { Route as AuthenticatedUsersIndexRouteImport } from './routes/_authenticated/users/index'
|
|
import { Route as AuthenticatedUsersIndexRouteImport } from './routes/_authenticated/users/index'
|
|
|
import { Route as AuthenticatedTasksIndexRouteImport } from './routes/_authenticated/tasks/index'
|
|
import { Route as AuthenticatedTasksIndexRouteImport } from './routes/_authenticated/tasks/index'
|
|
|
import { Route as AuthenticatedSettingsIndexRouteImport } from './routes/_authenticated/settings/index'
|
|
import { Route as AuthenticatedSettingsIndexRouteImport } from './routes/_authenticated/settings/index'
|
|
|
|
|
+import { Route as AuthenticatedReferralCodesIndexRouteImport } from './routes/_authenticated/referral-codes/index'
|
|
|
import { Route as AuthenticatedPostsIndexRouteImport } from './routes/_authenticated/posts/index'
|
|
import { Route as AuthenticatedPostsIndexRouteImport } from './routes/_authenticated/posts/index'
|
|
|
import { Route as AuthenticatedHelpCenterIndexRouteImport } from './routes/_authenticated/help-center/index'
|
|
import { Route as AuthenticatedHelpCenterIndexRouteImport } from './routes/_authenticated/help-center/index'
|
|
|
import { Route as AuthenticatedEvaluationsIndexRouteImport } from './routes/_authenticated/evaluations/index'
|
|
import { Route as AuthenticatedEvaluationsIndexRouteImport } from './routes/_authenticated/evaluations/index'
|
|
@@ -92,6 +93,12 @@ const AuthenticatedSettingsIndexRoute =
|
|
|
path: '/',
|
|
path: '/',
|
|
|
getParentRoute: () => AuthenticatedSettingsRouteRoute,
|
|
getParentRoute: () => AuthenticatedSettingsRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
|
|
+const AuthenticatedReferralCodesIndexRoute =
|
|
|
|
|
+ AuthenticatedReferralCodesIndexRouteImport.update({
|
|
|
|
|
+ id: '/referral-codes/',
|
|
|
|
|
+ path: '/referral-codes/',
|
|
|
|
|
+ getParentRoute: () => AuthenticatedRouteRoute,
|
|
|
|
|
+ } as any)
|
|
|
const AuthenticatedPostsIndexRoute = AuthenticatedPostsIndexRouteImport.update({
|
|
const AuthenticatedPostsIndexRoute = AuthenticatedPostsIndexRouteImport.update({
|
|
|
id: '/posts/',
|
|
id: '/posts/',
|
|
|
path: '/posts/',
|
|
path: '/posts/',
|
|
@@ -163,6 +170,7 @@ export interface FileRoutesByFullPath {
|
|
|
'/evaluations/': typeof AuthenticatedEvaluationsIndexRoute
|
|
'/evaluations/': typeof AuthenticatedEvaluationsIndexRoute
|
|
|
'/help-center/': typeof AuthenticatedHelpCenterIndexRoute
|
|
'/help-center/': typeof AuthenticatedHelpCenterIndexRoute
|
|
|
'/posts/': typeof AuthenticatedPostsIndexRoute
|
|
'/posts/': typeof AuthenticatedPostsIndexRoute
|
|
|
|
|
+ '/referral-codes/': typeof AuthenticatedReferralCodesIndexRoute
|
|
|
'/settings/': typeof AuthenticatedSettingsIndexRoute
|
|
'/settings/': typeof AuthenticatedSettingsIndexRoute
|
|
|
'/tasks/': typeof AuthenticatedTasksIndexRoute
|
|
'/tasks/': typeof AuthenticatedTasksIndexRoute
|
|
|
'/users/': typeof AuthenticatedUsersIndexRoute
|
|
'/users/': typeof AuthenticatedUsersIndexRoute
|
|
@@ -184,6 +192,7 @@ export interface FileRoutesByTo {
|
|
|
'/evaluations': typeof AuthenticatedEvaluationsIndexRoute
|
|
'/evaluations': typeof AuthenticatedEvaluationsIndexRoute
|
|
|
'/help-center': typeof AuthenticatedHelpCenterIndexRoute
|
|
'/help-center': typeof AuthenticatedHelpCenterIndexRoute
|
|
|
'/posts': typeof AuthenticatedPostsIndexRoute
|
|
'/posts': typeof AuthenticatedPostsIndexRoute
|
|
|
|
|
+ '/referral-codes': typeof AuthenticatedReferralCodesIndexRoute
|
|
|
'/settings': typeof AuthenticatedSettingsIndexRoute
|
|
'/settings': typeof AuthenticatedSettingsIndexRoute
|
|
|
'/tasks': typeof AuthenticatedTasksIndexRoute
|
|
'/tasks': typeof AuthenticatedTasksIndexRoute
|
|
|
'/users': typeof AuthenticatedUsersIndexRoute
|
|
'/users': typeof AuthenticatedUsersIndexRoute
|
|
@@ -208,6 +217,7 @@ export interface FileRoutesById {
|
|
|
'/_authenticated/evaluations/': typeof AuthenticatedEvaluationsIndexRoute
|
|
'/_authenticated/evaluations/': typeof AuthenticatedEvaluationsIndexRoute
|
|
|
'/_authenticated/help-center/': typeof AuthenticatedHelpCenterIndexRoute
|
|
'/_authenticated/help-center/': typeof AuthenticatedHelpCenterIndexRoute
|
|
|
'/_authenticated/posts/': typeof AuthenticatedPostsIndexRoute
|
|
'/_authenticated/posts/': typeof AuthenticatedPostsIndexRoute
|
|
|
|
|
+ '/_authenticated/referral-codes/': typeof AuthenticatedReferralCodesIndexRoute
|
|
|
'/_authenticated/settings/': typeof AuthenticatedSettingsIndexRoute
|
|
'/_authenticated/settings/': typeof AuthenticatedSettingsIndexRoute
|
|
|
'/_authenticated/tasks/': typeof AuthenticatedTasksIndexRoute
|
|
'/_authenticated/tasks/': typeof AuthenticatedTasksIndexRoute
|
|
|
'/_authenticated/users/': typeof AuthenticatedUsersIndexRoute
|
|
'/_authenticated/users/': typeof AuthenticatedUsersIndexRoute
|
|
@@ -232,6 +242,7 @@ export interface FileRouteTypes {
|
|
|
| '/evaluations/'
|
|
| '/evaluations/'
|
|
|
| '/help-center/'
|
|
| '/help-center/'
|
|
|
| '/posts/'
|
|
| '/posts/'
|
|
|
|
|
+ | '/referral-codes/'
|
|
|
| '/settings/'
|
|
| '/settings/'
|
|
|
| '/tasks/'
|
|
| '/tasks/'
|
|
|
| '/users/'
|
|
| '/users/'
|
|
@@ -253,6 +264,7 @@ export interface FileRouteTypes {
|
|
|
| '/evaluations'
|
|
| '/evaluations'
|
|
|
| '/help-center'
|
|
| '/help-center'
|
|
|
| '/posts'
|
|
| '/posts'
|
|
|
|
|
+ | '/referral-codes'
|
|
|
| '/settings'
|
|
| '/settings'
|
|
|
| '/tasks'
|
|
| '/tasks'
|
|
|
| '/users'
|
|
| '/users'
|
|
@@ -276,6 +288,7 @@ export interface FileRouteTypes {
|
|
|
| '/_authenticated/evaluations/'
|
|
| '/_authenticated/evaluations/'
|
|
|
| '/_authenticated/help-center/'
|
|
| '/_authenticated/help-center/'
|
|
|
| '/_authenticated/posts/'
|
|
| '/_authenticated/posts/'
|
|
|
|
|
+ | '/_authenticated/referral-codes/'
|
|
|
| '/_authenticated/settings/'
|
|
| '/_authenticated/settings/'
|
|
|
| '/_authenticated/tasks/'
|
|
| '/_authenticated/tasks/'
|
|
|
| '/_authenticated/users/'
|
|
| '/_authenticated/users/'
|
|
@@ -377,6 +390,13 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof AuthenticatedSettingsIndexRouteImport
|
|
preLoaderRoute: typeof AuthenticatedSettingsIndexRouteImport
|
|
|
parentRoute: typeof AuthenticatedSettingsRouteRoute
|
|
parentRoute: typeof AuthenticatedSettingsRouteRoute
|
|
|
}
|
|
}
|
|
|
|
|
+ '/_authenticated/referral-codes/': {
|
|
|
|
|
+ id: '/_authenticated/referral-codes/'
|
|
|
|
|
+ path: '/referral-codes'
|
|
|
|
|
+ fullPath: '/referral-codes/'
|
|
|
|
|
+ preLoaderRoute: typeof AuthenticatedReferralCodesIndexRouteImport
|
|
|
|
|
+ parentRoute: typeof AuthenticatedRouteRoute
|
|
|
|
|
+ }
|
|
|
'/_authenticated/posts/': {
|
|
'/_authenticated/posts/': {
|
|
|
id: '/_authenticated/posts/'
|
|
id: '/_authenticated/posts/'
|
|
|
path: '/posts'
|
|
path: '/posts'
|
|
@@ -474,6 +494,7 @@ interface AuthenticatedRouteRouteChildren {
|
|
|
AuthenticatedEvaluationsIndexRoute: typeof AuthenticatedEvaluationsIndexRoute
|
|
AuthenticatedEvaluationsIndexRoute: typeof AuthenticatedEvaluationsIndexRoute
|
|
|
AuthenticatedHelpCenterIndexRoute: typeof AuthenticatedHelpCenterIndexRoute
|
|
AuthenticatedHelpCenterIndexRoute: typeof AuthenticatedHelpCenterIndexRoute
|
|
|
AuthenticatedPostsIndexRoute: typeof AuthenticatedPostsIndexRoute
|
|
AuthenticatedPostsIndexRoute: typeof AuthenticatedPostsIndexRoute
|
|
|
|
|
+ AuthenticatedReferralCodesIndexRoute: typeof AuthenticatedReferralCodesIndexRoute
|
|
|
AuthenticatedTasksIndexRoute: typeof AuthenticatedTasksIndexRoute
|
|
AuthenticatedTasksIndexRoute: typeof AuthenticatedTasksIndexRoute
|
|
|
AuthenticatedUsersIndexRoute: typeof AuthenticatedUsersIndexRoute
|
|
AuthenticatedUsersIndexRoute: typeof AuthenticatedUsersIndexRoute
|
|
|
}
|
|
}
|
|
@@ -486,6 +507,7 @@ const AuthenticatedRouteRouteChildren: AuthenticatedRouteRouteChildren = {
|
|
|
AuthenticatedEvaluationsIndexRoute: AuthenticatedEvaluationsIndexRoute,
|
|
AuthenticatedEvaluationsIndexRoute: AuthenticatedEvaluationsIndexRoute,
|
|
|
AuthenticatedHelpCenterIndexRoute: AuthenticatedHelpCenterIndexRoute,
|
|
AuthenticatedHelpCenterIndexRoute: AuthenticatedHelpCenterIndexRoute,
|
|
|
AuthenticatedPostsIndexRoute: AuthenticatedPostsIndexRoute,
|
|
AuthenticatedPostsIndexRoute: AuthenticatedPostsIndexRoute,
|
|
|
|
|
+ AuthenticatedReferralCodesIndexRoute: AuthenticatedReferralCodesIndexRoute,
|
|
|
AuthenticatedTasksIndexRoute: AuthenticatedTasksIndexRoute,
|
|
AuthenticatedTasksIndexRoute: AuthenticatedTasksIndexRoute,
|
|
|
AuthenticatedUsersIndexRoute: AuthenticatedUsersIndexRoute,
|
|
AuthenticatedUsersIndexRoute: AuthenticatedUsersIndexRoute,
|
|
|
}
|
|
}
|