99// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
1010
1111import { Route as rootRouteImport } from './routes/__root'
12- import { Route as AppRouteImport } from './routes/_app'
1312import { Route as IndexRouteImport } from './routes/index'
14- import { Route as AppPublicRouteImport } from './routes/_app/_public '
13+ import { Route as AppRouteImport } from './routes/_app'
1514import { Route as AppPrivateRouteImport } from './routes/_app/_private'
16- import { Route as ApiTrpcSplatRouteImport } from './routes/api.trpc.$'
17- import { Route as AppPublicSignInRouteImport } from './routes/_app/_public/sign-in'
15+ import { Route as AppPublicRouteImport } from './routes/_app/_public'
1816import { Route as AppPrivateDashboardRouteImport } from './routes/_app/_private/dashboard'
17+ import { Route as AppPublicSignInRouteImport } from './routes/_app/_public/sign-in'
18+ import { Route as ApiTrpcSplatRouteImport } from './routes/api.trpc.$'
1919import { Route as AppPrivateLicensesIndexRouteImport } from './routes/_app/_private/licenses/index'
2020import { Route as AppPrivateOrganizationsOrgIdRouteImport } from './routes/_app/_private/organizations/$orgId'
2121import { Route as AppPrivateOrganizationsOrgIdIndexRouteImport } from './routes/_app/_private/organizations/$orgId.index'
22- import { Route as AppPrivateOrganizationsOrgIdUsersRouteImport } from './routes/_app/_private/organizations/$orgId.users'
23- import { Route as AppPrivateOrganizationsOrgIdSettingsRouteImport } from './routes/_app/_private/organizations/$orgId.settings'
2422import { Route as AppPrivateOrganizationsOrgIdOverviewRouteImport } from './routes/_app/_private/organizations/$orgId.overview'
23+ import { Route as AppPrivateOrganizationsOrgIdSettingsRouteImport } from './routes/_app/_private/organizations/$orgId.settings'
24+ import { Route as AppPrivateOrganizationsOrgIdUsersRouteImport } from './routes/_app/_private/organizations/$orgId.users'
2525
26- const AppRoute = AppRouteImport . update ( {
27- id : '/_app' ,
28- getParentRoute : ( ) => rootRouteImport ,
29- } as any )
3026const IndexRoute = IndexRouteImport . update ( {
3127 id : '/' ,
3228 path : '/' ,
3329 getParentRoute : ( ) => rootRouteImport ,
3430} as any )
35- const AppPublicRoute = AppPublicRouteImport . update ( {
36- id : '/_public ' ,
37- getParentRoute : ( ) => AppRoute ,
31+ const AppRoute = AppRouteImport . update ( {
32+ id : '/_app ' ,
33+ getParentRoute : ( ) => rootRouteImport ,
3834} as any )
3935const AppPrivateRoute = AppPrivateRouteImport . update ( {
4036 id : '/_private' ,
4137 getParentRoute : ( ) => AppRoute ,
4238} as any )
43- const ApiTrpcSplatRoute = ApiTrpcSplatRouteImport . update ( {
44- id : '/api/trpc/$' ,
45- path : '/api/trpc/$' ,
46- getParentRoute : ( ) => rootRouteImport ,
39+ const AppPublicRoute = AppPublicRouteImport . update ( {
40+ id : '/_public' ,
41+ getParentRoute : ( ) => AppRoute ,
42+ } as any )
43+ const AppPrivateDashboardRoute = AppPrivateDashboardRouteImport . update ( {
44+ id : '/dashboard' ,
45+ path : '/dashboard' ,
46+ getParentRoute : ( ) => AppPrivateRoute ,
4747} as any )
4848const AppPublicSignInRoute = AppPublicSignInRouteImport . update ( {
4949 id : '/sign-in' ,
5050 path : '/sign-in' ,
5151 getParentRoute : ( ) => AppPublicRoute ,
5252} as any )
53- const AppPrivateDashboardRoute = AppPrivateDashboardRouteImport . update ( {
54- id : '/dashboard ' ,
55- path : '/dashboard ' ,
56- getParentRoute : ( ) => AppPrivateRoute ,
53+ const ApiTrpcSplatRoute = ApiTrpcSplatRouteImport . update ( {
54+ id : '/api/trpc/$ ' ,
55+ path : '/api/trpc/$ ' ,
56+ getParentRoute : ( ) => rootRouteImport ,
5757} as any )
5858const AppPrivateLicensesIndexRoute = AppPrivateLicensesIndexRouteImport . update ( {
5959 id : '/licenses/' ,
@@ -72,10 +72,10 @@ const AppPrivateOrganizationsOrgIdIndexRoute =
7272 path : '/' ,
7373 getParentRoute : ( ) => AppPrivateOrganizationsOrgIdRoute ,
7474 } as any )
75- const AppPrivateOrganizationsOrgIdUsersRoute =
76- AppPrivateOrganizationsOrgIdUsersRouteImport . update ( {
77- id : '/users ' ,
78- path : '/users ' ,
75+ const AppPrivateOrganizationsOrgIdOverviewRoute =
76+ AppPrivateOrganizationsOrgIdOverviewRouteImport . update ( {
77+ id : '/overview ' ,
78+ path : '/overview ' ,
7979 getParentRoute : ( ) => AppPrivateOrganizationsOrgIdRoute ,
8080 } as any )
8181const AppPrivateOrganizationsOrgIdSettingsRoute =
@@ -84,10 +84,10 @@ const AppPrivateOrganizationsOrgIdSettingsRoute =
8484 path : '/settings' ,
8585 getParentRoute : ( ) => AppPrivateOrganizationsOrgIdRoute ,
8686 } as any )
87- const AppPrivateOrganizationsOrgIdOverviewRoute =
88- AppPrivateOrganizationsOrgIdOverviewRouteImport . update ( {
89- id : '/overview ' ,
90- path : '/overview ' ,
87+ const AppPrivateOrganizationsOrgIdUsersRoute =
88+ AppPrivateOrganizationsOrgIdUsersRouteImport . update ( {
89+ id : '/users ' ,
90+ path : '/users ' ,
9191 getParentRoute : ( ) => AppPrivateOrganizationsOrgIdRoute ,
9292 } as any )
9393
@@ -179,26 +179,19 @@ export interface RootRouteChildren {
179179
180180declare module '@tanstack/react-router' {
181181 interface FileRoutesByPath {
182- '/_app' : {
183- id : '/_app'
184- path : ''
185- fullPath : '/'
186- preLoaderRoute : typeof AppRouteImport
187- parentRoute : typeof rootRouteImport
188- }
189182 '/' : {
190183 id : '/'
191184 path : '/'
192185 fullPath : '/'
193186 preLoaderRoute : typeof IndexRouteImport
194187 parentRoute : typeof rootRouteImport
195188 }
196- '/_app/_public ' : {
197- id : '/_app/_public '
189+ '/_app' : {
190+ id : '/_app'
198191 path : ''
199192 fullPath : '/'
200- preLoaderRoute : typeof AppPublicRouteImport
201- parentRoute : typeof AppRoute
193+ preLoaderRoute : typeof AppRouteImport
194+ parentRoute : typeof rootRouteImport
202195 }
203196 '/_app/_private' : {
204197 id : '/_app/_private'
@@ -207,12 +200,19 @@ declare module '@tanstack/react-router' {
207200 preLoaderRoute : typeof AppPrivateRouteImport
208201 parentRoute : typeof AppRoute
209202 }
210- '/api/trpc/$' : {
211- id : '/api/trpc/$'
212- path : '/api/trpc/$'
213- fullPath : '/api/trpc/$'
214- preLoaderRoute : typeof ApiTrpcSplatRouteImport
215- parentRoute : typeof rootRouteImport
203+ '/_app/_public' : {
204+ id : '/_app/_public'
205+ path : ''
206+ fullPath : '/'
207+ preLoaderRoute : typeof AppPublicRouteImport
208+ parentRoute : typeof AppRoute
209+ }
210+ '/_app/_private/dashboard' : {
211+ id : '/_app/_private/dashboard'
212+ path : '/dashboard'
213+ fullPath : '/dashboard'
214+ preLoaderRoute : typeof AppPrivateDashboardRouteImport
215+ parentRoute : typeof AppPrivateRoute
216216 }
217217 '/_app/_public/sign-in' : {
218218 id : '/_app/_public/sign-in'
@@ -221,12 +221,12 @@ declare module '@tanstack/react-router' {
221221 preLoaderRoute : typeof AppPublicSignInRouteImport
222222 parentRoute : typeof AppPublicRoute
223223 }
224- '/_app/_private/dashboard ' : {
225- id : '/_app/_private/dashboard '
226- path : '/dashboard '
227- fullPath : '/dashboard '
228- preLoaderRoute : typeof AppPrivateDashboardRouteImport
229- parentRoute : typeof AppPrivateRoute
224+ '/api/trpc/$ ' : {
225+ id : '/api/trpc/$ '
226+ path : '/api/trpc/$ '
227+ fullPath : '/api/trpc/$ '
228+ preLoaderRoute : typeof ApiTrpcSplatRouteImport
229+ parentRoute : typeof rootRouteImport
230230 }
231231 '/_app/_private/licenses/' : {
232232 id : '/_app/_private/licenses/'
@@ -249,11 +249,11 @@ declare module '@tanstack/react-router' {
249249 preLoaderRoute : typeof AppPrivateOrganizationsOrgIdIndexRouteImport
250250 parentRoute : typeof AppPrivateOrganizationsOrgIdRoute
251251 }
252- '/_app/_private/organizations/$orgId/users ' : {
253- id : '/_app/_private/organizations/$orgId/users '
254- path : '/users '
255- fullPath : '/organizations/$orgId/users '
256- preLoaderRoute : typeof AppPrivateOrganizationsOrgIdUsersRouteImport
252+ '/_app/_private/organizations/$orgId/overview ' : {
253+ id : '/_app/_private/organizations/$orgId/overview '
254+ path : '/overview '
255+ fullPath : '/organizations/$orgId/overview '
256+ preLoaderRoute : typeof AppPrivateOrganizationsOrgIdOverviewRouteImport
257257 parentRoute : typeof AppPrivateOrganizationsOrgIdRoute
258258 }
259259 '/_app/_private/organizations/$orgId/settings' : {
@@ -263,11 +263,11 @@ declare module '@tanstack/react-router' {
263263 preLoaderRoute : typeof AppPrivateOrganizationsOrgIdSettingsRouteImport
264264 parentRoute : typeof AppPrivateOrganizationsOrgIdRoute
265265 }
266- '/_app/_private/organizations/$orgId/overview ' : {
267- id : '/_app/_private/organizations/$orgId/overview '
268- path : '/overview '
269- fullPath : '/organizations/$orgId/overview '
270- preLoaderRoute : typeof AppPrivateOrganizationsOrgIdOverviewRouteImport
266+ '/_app/_private/organizations/$orgId/users ' : {
267+ id : '/_app/_private/organizations/$orgId/users '
268+ path : '/users '
269+ fullPath : '/organizations/$orgId/users '
270+ preLoaderRoute : typeof AppPrivateOrganizationsOrgIdUsersRouteImport
271271 parentRoute : typeof AppPrivateOrganizationsOrgIdRoute
272272 }
273273 }
0 commit comments