1111import { Route as rootRouteImport } from './routes/__root'
1212import { Route as AuthenticatedRouteRouteImport } from './routes/_authenticated/route'
1313import { Route as AuthenticatedIndexRouteImport } from './routes/_authenticated/index'
14- import { Route as AuthenticatedDeviceRouteImport } from './routes/_authenticated/device'
1514import { Route as errors503RouteImport } from './routes/(errors)/503'
1615import { Route as errors500RouteImport } from './routes/(errors)/500'
1716import { Route as errors404RouteImport } from './routes/(errors)/404'
@@ -36,6 +35,7 @@ import { Route as AuthenticatedSystemApiResourcesRouteImport } from './routes/_a
3635import { Route as AuthenticatedSettingsAppearanceRouteImport } from './routes/_authenticated/settings/appearance'
3736import { Route as AuthenticatedSettingsAccountRouteImport } from './routes/_authenticated/settings/account'
3837import { Route as AuthenticatedErrorsErrorRouteImport } from './routes/_authenticated/errors/$error'
38+ import { Route as AuthenticatedAuthDeviceRouteImport } from './routes/_authenticated/auth/device'
3939
4040const AuthenticatedRouteRoute = AuthenticatedRouteRouteImport . update ( {
4141 id : '/_authenticated' ,
@@ -46,11 +46,6 @@ const AuthenticatedIndexRoute = AuthenticatedIndexRouteImport.update({
4646 path : '/' ,
4747 getParentRoute : ( ) => AuthenticatedRouteRoute ,
4848} as any )
49- const AuthenticatedDeviceRoute = AuthenticatedDeviceRouteImport . update ( {
50- id : '/device' ,
51- path : '/device' ,
52- getParentRoute : ( ) => AuthenticatedRouteRoute ,
53- } as any )
5449const errors503Route = errors503RouteImport . update ( {
5550 id : '/(errors)/503' ,
5651 path : '/503' ,
@@ -179,6 +174,11 @@ const AuthenticatedErrorsErrorRoute =
179174 path : '/errors/$error' ,
180175 getParentRoute : ( ) => AuthenticatedRouteRoute ,
181176 } as any )
177+ const AuthenticatedAuthDeviceRoute = AuthenticatedAuthDeviceRouteImport . update ( {
178+ id : '/auth/device' ,
179+ path : '/auth/device' ,
180+ getParentRoute : ( ) => AuthenticatedRouteRoute ,
181+ } as any )
182182
183183export interface FileRoutesByFullPath {
184184 '/' : typeof AuthenticatedIndexRoute
@@ -192,7 +192,7 @@ export interface FileRoutesByFullPath {
192192 '/404' : typeof errors404Route
193193 '/500' : typeof errors500Route
194194 '/503' : typeof errors503Route
195- '/device' : typeof AuthenticatedDeviceRoute
195+ '/auth/ device' : typeof AuthenticatedAuthDeviceRoute
196196 '/errors/$error' : typeof AuthenticatedErrorsErrorRoute
197197 '/settings/account' : typeof AuthenticatedSettingsAccountRoute
198198 '/settings/appearance' : typeof AuthenticatedSettingsAppearanceRoute
@@ -218,8 +218,8 @@ export interface FileRoutesByTo {
218218 '/404' : typeof errors404Route
219219 '/500' : typeof errors500Route
220220 '/503' : typeof errors503Route
221- '/device' : typeof AuthenticatedDeviceRoute
222221 '/' : typeof AuthenticatedIndexRoute
222+ '/auth/device' : typeof AuthenticatedAuthDeviceRoute
223223 '/errors/$error' : typeof AuthenticatedErrorsErrorRoute
224224 '/settings/account' : typeof AuthenticatedSettingsAccountRoute
225225 '/settings/appearance' : typeof AuthenticatedSettingsAppearanceRoute
@@ -248,8 +248,8 @@ export interface FileRoutesById {
248248 '/(errors)/404' : typeof errors404Route
249249 '/(errors)/500' : typeof errors500Route
250250 '/(errors)/503' : typeof errors503Route
251- '/_authenticated/device' : typeof AuthenticatedDeviceRoute
252251 '/_authenticated/' : typeof AuthenticatedIndexRoute
252+ '/_authenticated/auth/device' : typeof AuthenticatedAuthDeviceRoute
253253 '/_authenticated/errors/$error' : typeof AuthenticatedErrorsErrorRoute
254254 '/_authenticated/settings/account' : typeof AuthenticatedSettingsAccountRoute
255255 '/_authenticated/settings/appearance' : typeof AuthenticatedSettingsAppearanceRoute
@@ -279,7 +279,7 @@ export interface FileRouteTypes {
279279 | '/404'
280280 | '/500'
281281 | '/503'
282- | '/device'
282+ | '/auth/ device'
283283 | '/errors/$error'
284284 | '/settings/account'
285285 | '/settings/appearance'
@@ -305,8 +305,8 @@ export interface FileRouteTypes {
305305 | '/404'
306306 | '/500'
307307 | '/503'
308- | '/device'
309308 | '/'
309+ | '/auth/device'
310310 | '/errors/$error'
311311 | '/settings/account'
312312 | '/settings/appearance'
@@ -334,8 +334,8 @@ export interface FileRouteTypes {
334334 | '/(errors)/404'
335335 | '/(errors)/500'
336336 | '/(errors)/503'
337- | '/_authenticated/device'
338337 | '/_authenticated/'
338+ | '/_authenticated/auth/device'
339339 | '/_authenticated/errors/$error'
340340 | '/_authenticated/settings/account'
341341 | '/_authenticated/settings/appearance'
@@ -381,13 +381,6 @@ declare module '@tanstack/react-router' {
381381 preLoaderRoute : typeof AuthenticatedIndexRouteImport
382382 parentRoute : typeof AuthenticatedRouteRoute
383383 }
384- '/_authenticated/device' : {
385- id : '/_authenticated/device'
386- path : '/device'
387- fullPath : '/device'
388- preLoaderRoute : typeof AuthenticatedDeviceRouteImport
389- parentRoute : typeof AuthenticatedRouteRoute
390- }
391384 '/(errors)/503' : {
392385 id : '/(errors)/503'
393386 path : '/503'
@@ -556,6 +549,13 @@ declare module '@tanstack/react-router' {
556549 preLoaderRoute : typeof AuthenticatedErrorsErrorRouteImport
557550 parentRoute : typeof AuthenticatedRouteRoute
558551 }
552+ '/_authenticated/auth/device' : {
553+ id : '/_authenticated/auth/device'
554+ path : '/auth/device'
555+ fullPath : '/auth/device'
556+ preLoaderRoute : typeof AuthenticatedAuthDeviceRouteImport
557+ parentRoute : typeof AuthenticatedRouteRoute
558+ }
559559 }
560560}
561561
@@ -579,8 +579,8 @@ const AuthenticatedSettingsRouteRouteWithChildren =
579579
580580interface AuthenticatedRouteRouteChildren {
581581 AuthenticatedSettingsRouteRoute : typeof AuthenticatedSettingsRouteRouteWithChildren
582- AuthenticatedDeviceRoute : typeof AuthenticatedDeviceRoute
583582 AuthenticatedIndexRoute : typeof AuthenticatedIndexRoute
583+ AuthenticatedAuthDeviceRoute : typeof AuthenticatedAuthDeviceRoute
584584 AuthenticatedErrorsErrorRoute : typeof AuthenticatedErrorsErrorRoute
585585 AuthenticatedSystemApiResourcesRoute : typeof AuthenticatedSystemApiResourcesRoute
586586 AuthenticatedSystemDictRoute : typeof AuthenticatedSystemDictRoute
@@ -596,8 +596,8 @@ interface AuthenticatedRouteRouteChildren {
596596
597597const AuthenticatedRouteRouteChildren : AuthenticatedRouteRouteChildren = {
598598 AuthenticatedSettingsRouteRoute : AuthenticatedSettingsRouteRouteWithChildren ,
599- AuthenticatedDeviceRoute : AuthenticatedDeviceRoute ,
600599 AuthenticatedIndexRoute : AuthenticatedIndexRoute ,
600+ AuthenticatedAuthDeviceRoute : AuthenticatedAuthDeviceRoute ,
601601 AuthenticatedErrorsErrorRoute : AuthenticatedErrorsErrorRoute ,
602602 AuthenticatedSystemApiResourcesRoute : AuthenticatedSystemApiResourcesRoute ,
603603 AuthenticatedSystemDictRoute : AuthenticatedSystemDictRoute ,
0 commit comments