@@ -15,7 +15,7 @@ import { Route as LoginImport } from './../../scenes/login'
15
15
import { Route as AuthImport } from './../../scenes/_auth'
16
16
import { Route as IndexImport } from './../../scenes/index'
17
17
import { Route as AuthDashboardIndexImport } from './../../scenes/_auth/dashboard/index'
18
- import { Route as AuthDashboardDeskDeskIdIndexImport } from './../../scenes/_auth/dashboard/desk/$deskId /index'
18
+ import { Route as AuthDashboardDeckDeckIdIndexImport } from './../../scenes/_auth/dashboard/deck/$deckId /index'
19
19
20
20
// Create/Update Routes
21
21
@@ -42,10 +42,10 @@ const AuthDashboardIndexRoute = AuthDashboardIndexImport.update({
42
42
getParentRoute : ( ) => AuthRoute ,
43
43
} as any )
44
44
45
- const AuthDashboardDeskDeskIdIndexRoute =
46
- AuthDashboardDeskDeskIdIndexImport . update ( {
47
- id : '/dashboard/desk/$deskId /' ,
48
- path : '/dashboard/desk/$deskId /' ,
45
+ const AuthDashboardDeckDeckIdIndexRoute =
46
+ AuthDashboardDeckDeckIdIndexImport . update ( {
47
+ id : '/dashboard/deck/$deckId /' ,
48
+ path : '/dashboard/deck/$deckId /' ,
49
49
getParentRoute : ( ) => AuthRoute ,
50
50
} as any )
51
51
@@ -81,11 +81,11 @@ declare module '@tanstack/react-router' {
81
81
preLoaderRoute : typeof AuthDashboardIndexImport
82
82
parentRoute : typeof AuthImport
83
83
}
84
- '/_auth/dashboard/desk/$deskId /' : {
85
- id : '/_auth/dashboard/desk/$deskId /'
86
- path : '/dashboard/desk/$deskId '
87
- fullPath : '/dashboard/desk/$deskId '
88
- preLoaderRoute : typeof AuthDashboardDeskDeskIdIndexImport
84
+ '/_auth/dashboard/deck/$deckId /' : {
85
+ id : '/_auth/dashboard/deck/$deckId /'
86
+ path : '/dashboard/deck/$deckId '
87
+ fullPath : '/dashboard/deck/$deckId '
88
+ preLoaderRoute : typeof AuthDashboardDeckDeckIdIndexImport
89
89
parentRoute : typeof AuthImport
90
90
}
91
91
}
@@ -95,12 +95,12 @@ declare module '@tanstack/react-router' {
95
95
96
96
interface AuthRouteChildren {
97
97
AuthDashboardIndexRoute : typeof AuthDashboardIndexRoute
98
- AuthDashboardDeskDeskIdIndexRoute : typeof AuthDashboardDeskDeskIdIndexRoute
98
+ AuthDashboardDeckDeckIdIndexRoute : typeof AuthDashboardDeckDeckIdIndexRoute
99
99
}
100
100
101
101
const AuthRouteChildren : AuthRouteChildren = {
102
102
AuthDashboardIndexRoute : AuthDashboardIndexRoute ,
103
- AuthDashboardDeskDeskIdIndexRoute : AuthDashboardDeskDeskIdIndexRoute ,
103
+ AuthDashboardDeckDeckIdIndexRoute : AuthDashboardDeckDeckIdIndexRoute ,
104
104
}
105
105
106
106
const AuthRouteWithChildren = AuthRoute . _addFileChildren ( AuthRouteChildren )
@@ -110,15 +110,15 @@ export interface FileRoutesByFullPath {
110
110
'' : typeof AuthRouteWithChildren
111
111
'/login' : typeof LoginRoute
112
112
'/dashboard' : typeof AuthDashboardIndexRoute
113
- '/dashboard/desk/$deskId ' : typeof AuthDashboardDeskDeskIdIndexRoute
113
+ '/dashboard/deck/$deckId ' : typeof AuthDashboardDeckDeckIdIndexRoute
114
114
}
115
115
116
116
export interface FileRoutesByTo {
117
117
'/' : typeof IndexRoute
118
118
'' : typeof AuthRouteWithChildren
119
119
'/login' : typeof LoginRoute
120
120
'/dashboard' : typeof AuthDashboardIndexRoute
121
- '/dashboard/desk/$deskId ' : typeof AuthDashboardDeskDeskIdIndexRoute
121
+ '/dashboard/deck/$deckId ' : typeof AuthDashboardDeckDeckIdIndexRoute
122
122
}
123
123
124
124
export interface FileRoutesById {
@@ -127,21 +127,21 @@ export interface FileRoutesById {
127
127
'/_auth' : typeof AuthRouteWithChildren
128
128
'/login' : typeof LoginRoute
129
129
'/_auth/dashboard/' : typeof AuthDashboardIndexRoute
130
- '/_auth/dashboard/desk/$deskId /' : typeof AuthDashboardDeskDeskIdIndexRoute
130
+ '/_auth/dashboard/deck/$deckId /' : typeof AuthDashboardDeckDeckIdIndexRoute
131
131
}
132
132
133
133
export interface FileRouteTypes {
134
134
fileRoutesByFullPath : FileRoutesByFullPath
135
- fullPaths : '/' | '' | '/login' | '/dashboard' | '/dashboard/desk/$deskId '
135
+ fullPaths : '/' | '' | '/login' | '/dashboard' | '/dashboard/deck/$deckId '
136
136
fileRoutesByTo : FileRoutesByTo
137
- to : '/' | '' | '/login' | '/dashboard' | '/dashboard/desk/$deskId '
137
+ to : '/' | '' | '/login' | '/dashboard' | '/dashboard/deck/$deckId '
138
138
id :
139
- | '__root__'
140
- | '/'
141
- | '/_auth'
142
- | '/login'
143
- | '/_auth/dashboard/'
144
- | '/_auth/dashboard/desk/$deskId /'
139
+ | '__root__'
140
+ | '/'
141
+ | '/_auth'
142
+ | '/login'
143
+ | '/_auth/dashboard/'
144
+ | '/_auth/dashboard/deck/$deckId /'
145
145
fileRoutesById : FileRoutesById
146
146
}
147
147
@@ -179,7 +179,7 @@ export const routeTree = rootRoute
179
179
"filePath": "_auth.tsx",
180
180
"children": [
181
181
"/_auth/dashboard/",
182
- "/_auth/dashboard/desk/$deskId /"
182
+ "/_auth/dashboard/deck/$deckId /"
183
183
]
184
184
},
185
185
"/login": {
@@ -189,8 +189,8 @@ export const routeTree = rootRoute
189
189
"filePath": "_auth/dashboard/index.tsx",
190
190
"parent": "/_auth"
191
191
},
192
- "/_auth/dashboard/desk/$deskId /": {
193
- "filePath": "_auth/dashboard/desk/$deskId /index.tsx",
192
+ "/_auth/dashboard/deck/$deckId /": {
193
+ "filePath": "_auth/dashboard/deck/$deckId /index.tsx",
194
194
"parent": "/_auth"
195
195
}
196
196
}
0 commit comments