@@ -18,16 +18,17 @@ import { Route as publicThemeRouteImport } from './routes/(public)/theme'
1818import { Route as publicAboutRouteImport } from './routes/(public)/about'
1919import { Route as app2Dashboard2RouteImport } from './routes/(app2)/dashboard2'
2020import { Route as appPlaygroundIndexRouteImport } from './routes/(app)/playground/index'
21- import { Route as appDashboardIndexRouteImport } from './routes/(app)/dashboard. index'
21+ import { Route as appDashboardIndexRouteImport } from './routes/(app)/dashboard/ index'
2222import { Route as ApiHealthLiveRouteImport } from './routes/api/health/live'
2323import { Route as ApiAuthSplatRouteImport } from './routes/api/auth/$'
2424import { Route as publicAuthPathRouteImport } from './routes/(public)/auth/$path'
25- import { Route as appSettingsPageRouteImport } from './routes/(app)/settings.$page'
25+ import { Route as appSettingsNotificationsRouteImport } from './routes/(app)/settings/notifications'
26+ import { Route as appSettingsPageRouteImport } from './routes/(app)/settings/$page'
2627import { Route as appReportsPageRouteImport } from './routes/(app)/reports.$page'
2728import { Route as appPlaygroundWorkflowRouteImport } from './routes/(app)/playground/workflow'
2829import { Route as appPlaygroundFormDemoRouteImport } from './routes/(app)/playground/form-demo'
2930import { Route as appPlaygroundErrorRouteImport } from './routes/(app)/playground/error'
30- import { Route as appDashboardPageRouteImport } from './routes/(app)/dashboard. $page'
31+ import { Route as appDashboardPageRouteImport } from './routes/(app)/dashboard/ $page'
3132import { Route as appAdminPageRouteImport } from './routes/(app)/admin.$page'
3233import { Route as appsecurityUserPathRouteImport } from './routes/(app)/(security)/user.$path'
3334import { Route as appsecurityOrganizationPathRouteImport } from './routes/(app)/(security)/organization.$path'
@@ -94,6 +95,12 @@ const publicAuthPathRoute = publicAuthPathRouteImport.update({
9495 path : '/auth/$path' ,
9596 getParentRoute : ( ) => publicRouteRoute ,
9697} as any )
98+ const appSettingsNotificationsRoute =
99+ appSettingsNotificationsRouteImport . update ( {
100+ id : '/settings/notifications' ,
101+ path : '/settings/notifications' ,
102+ getParentRoute : ( ) => appRouteRoute ,
103+ } as any )
97104const appSettingsPageRoute = appSettingsPageRouteImport . update ( {
98105 id : '/settings/$page' ,
99106 path : '/settings/$page' ,
@@ -154,6 +161,7 @@ export interface FileRoutesByFullPath {
154161 '/playground/workflow' : typeof appPlaygroundWorkflowRoute
155162 '/reports/$page' : typeof appReportsPageRoute
156163 '/settings/$page' : typeof appSettingsPageRoute
164+ '/settings/notifications' : typeof appSettingsNotificationsRoute
157165 '/auth/$path' : typeof publicAuthPathRoute
158166 '/api/auth/$' : typeof ApiAuthSplatRoute
159167 '/api/health/live' : typeof ApiHealthLiveRoute
@@ -175,6 +183,7 @@ export interface FileRoutesByTo {
175183 '/playground/workflow' : typeof appPlaygroundWorkflowRoute
176184 '/reports/$page' : typeof appReportsPageRoute
177185 '/settings/$page' : typeof appSettingsPageRoute
186+ '/settings/notifications' : typeof appSettingsNotificationsRoute
178187 '/auth/$path' : typeof publicAuthPathRoute
179188 '/api/auth/$' : typeof ApiAuthSplatRoute
180189 '/api/health/live' : typeof ApiHealthLiveRoute
@@ -200,6 +209,7 @@ export interface FileRoutesById {
200209 '/(app)/playground/workflow' : typeof appPlaygroundWorkflowRoute
201210 '/(app)/reports/$page' : typeof appReportsPageRoute
202211 '/(app)/settings/$page' : typeof appSettingsPageRoute
212+ '/(app)/settings/notifications' : typeof appSettingsNotificationsRoute
203213 '/(public)/auth/$path' : typeof publicAuthPathRoute
204214 '/api/auth/$' : typeof ApiAuthSplatRoute
205215 '/api/health/live' : typeof ApiHealthLiveRoute
@@ -223,6 +233,7 @@ export interface FileRouteTypes {
223233 | '/playground/workflow'
224234 | '/reports/$page'
225235 | '/settings/$page'
236+ | '/settings/notifications'
226237 | '/auth/$path'
227238 | '/api/auth/$'
228239 | '/api/health/live'
@@ -244,6 +255,7 @@ export interface FileRouteTypes {
244255 | '/playground/workflow'
245256 | '/reports/$page'
246257 | '/settings/$page'
258+ | '/settings/notifications'
247259 | '/auth/$path'
248260 | '/api/auth/$'
249261 | '/api/health/live'
@@ -268,6 +280,7 @@ export interface FileRouteTypes {
268280 | '/(app)/playground/workflow'
269281 | '/(app)/reports/$page'
270282 | '/(app)/settings/$page'
283+ | '/(app)/settings/notifications'
271284 | '/(public)/auth/$path'
272285 | '/api/auth/$'
273286 | '/api/health/live'
@@ -378,6 +391,13 @@ declare module '@tanstack/react-router' {
378391 preLoaderRoute : typeof publicAuthPathRouteImport
379392 parentRoute : typeof publicRouteRoute
380393 }
394+ '/(app)/settings/notifications' : {
395+ id : '/(app)/settings/notifications'
396+ path : '/settings/notifications'
397+ fullPath : '/settings/notifications'
398+ preLoaderRoute : typeof appSettingsNotificationsRouteImport
399+ parentRoute : typeof appRouteRoute
400+ }
381401 '/(app)/settings/$page' : {
382402 id : '/(app)/settings/$page'
383403 path : '/settings/$page'
@@ -452,6 +472,7 @@ interface appRouteRouteChildren {
452472 appPlaygroundWorkflowRoute : typeof appPlaygroundWorkflowRoute
453473 appReportsPageRoute : typeof appReportsPageRoute
454474 appSettingsPageRoute : typeof appSettingsPageRoute
475+ appSettingsNotificationsRoute : typeof appSettingsNotificationsRoute
455476 appDashboardIndexRoute : typeof appDashboardIndexRoute
456477 appPlaygroundIndexRoute : typeof appPlaygroundIndexRoute
457478 appsecurityOrganizationPathRoute : typeof appsecurityOrganizationPathRoute
@@ -466,6 +487,7 @@ const appRouteRouteChildren: appRouteRouteChildren = {
466487 appPlaygroundWorkflowRoute : appPlaygroundWorkflowRoute ,
467488 appReportsPageRoute : appReportsPageRoute ,
468489 appSettingsPageRoute : appSettingsPageRoute ,
490+ appSettingsNotificationsRoute : appSettingsNotificationsRoute ,
469491 appDashboardIndexRoute : appDashboardIndexRoute ,
470492 appPlaygroundIndexRoute : appPlaygroundIndexRoute ,
471493 appsecurityOrganizationPathRoute : appsecurityOrganizationPathRoute ,
0 commit comments