@@ -97,18 +97,18 @@ const ProtectedDatabaseIdDefinitionsConstraintsIndexRoute =
9797 } as any )
9898
9999export interface FileRoutesByFullPath {
100- '/auth' : typeof AuthRoute
101100 '/' : typeof ProtectedIndexRoute
101+ '/auth' : typeof AuthRoute
102102 '/database/$id' : typeof ProtectedDatabaseIdRouteWithChildren
103- '/create' : typeof ProtectedCreateIndexRoute
103+ '/create/ ' : typeof ProtectedCreateIndexRoute
104104 '/database/$id/definitions' : typeof ProtectedDatabaseIdDefinitionsRouteWithChildren
105- '/database/$id/settings' : typeof ProtectedDatabaseIdSettingsIndexRoute
106- '/database/$id/sql' : typeof ProtectedDatabaseIdSqlIndexRoute
107- '/database/$id/table' : typeof ProtectedDatabaseIdTableIndexRoute
108- '/database/$id/visualizer' : typeof ProtectedDatabaseIdVisualizerIndexRoute
109- '/database/$id/definitions/constraints' : typeof ProtectedDatabaseIdDefinitionsConstraintsIndexRoute
110- '/database/$id/definitions/enums' : typeof ProtectedDatabaseIdDefinitionsEnumsIndexRoute
111- '/database/$id/definitions/indexes' : typeof ProtectedDatabaseIdDefinitionsIndexesIndexRoute
105+ '/database/$id/settings/ ' : typeof ProtectedDatabaseIdSettingsIndexRoute
106+ '/database/$id/sql/ ' : typeof ProtectedDatabaseIdSqlIndexRoute
107+ '/database/$id/table/ ' : typeof ProtectedDatabaseIdTableIndexRoute
108+ '/database/$id/visualizer/ ' : typeof ProtectedDatabaseIdVisualizerIndexRoute
109+ '/database/$id/definitions/constraints/ ' : typeof ProtectedDatabaseIdDefinitionsConstraintsIndexRoute
110+ '/database/$id/definitions/enums/ ' : typeof ProtectedDatabaseIdDefinitionsEnumsIndexRoute
111+ '/database/$id/definitions/indexes/ ' : typeof ProtectedDatabaseIdDefinitionsIndexesIndexRoute
112112}
113113export interface FileRoutesByTo {
114114 '/auth' : typeof AuthRoute
@@ -143,18 +143,18 @@ export interface FileRoutesById {
143143export interface FileRouteTypes {
144144 fileRoutesByFullPath : FileRoutesByFullPath
145145 fullPaths :
146- | '/auth'
147146 | '/'
147+ | '/auth'
148148 | '/database/$id'
149- | '/create'
149+ | '/create/ '
150150 | '/database/$id/definitions'
151- | '/database/$id/settings'
152- | '/database/$id/sql'
153- | '/database/$id/table'
154- | '/database/$id/visualizer'
155- | '/database/$id/definitions/constraints'
156- | '/database/$id/definitions/enums'
157- | '/database/$id/definitions/indexes'
151+ | '/database/$id/settings/ '
152+ | '/database/$id/sql/ '
153+ | '/database/$id/table/ '
154+ | '/database/$id/visualizer/ '
155+ | '/database/$id/definitions/constraints/ '
156+ | '/database/$id/definitions/enums/ '
157+ | '/database/$id/definitions/indexes/ '
158158 fileRoutesByTo : FileRoutesByTo
159159 to :
160160 | '/auth'
@@ -203,7 +203,7 @@ declare module '@tanstack/react-router' {
203203 '/_protected' : {
204204 id : '/_protected'
205205 path : ''
206- fullPath : ''
206+ fullPath : '/ '
207207 preLoaderRoute : typeof ProtectedRouteImport
208208 parentRoute : typeof rootRouteImport
209209 }
@@ -217,7 +217,7 @@ declare module '@tanstack/react-router' {
217217 '/_protected/create/' : {
218218 id : '/_protected/create/'
219219 path : '/create'
220- fullPath : '/create'
220+ fullPath : '/create/ '
221221 preLoaderRoute : typeof ProtectedCreateIndexRouteImport
222222 parentRoute : typeof ProtectedRoute
223223 }
@@ -238,49 +238,49 @@ declare module '@tanstack/react-router' {
238238 '/_protected/database/$id/visualizer/' : {
239239 id : '/_protected/database/$id/visualizer/'
240240 path : '/visualizer'
241- fullPath : '/database/$id/visualizer'
241+ fullPath : '/database/$id/visualizer/ '
242242 preLoaderRoute : typeof ProtectedDatabaseIdVisualizerIndexRouteImport
243243 parentRoute : typeof ProtectedDatabaseIdRoute
244244 }
245245 '/_protected/database/$id/table/' : {
246246 id : '/_protected/database/$id/table/'
247247 path : '/table'
248- fullPath : '/database/$id/table'
248+ fullPath : '/database/$id/table/ '
249249 preLoaderRoute : typeof ProtectedDatabaseIdTableIndexRouteImport
250250 parentRoute : typeof ProtectedDatabaseIdRoute
251251 }
252252 '/_protected/database/$id/sql/' : {
253253 id : '/_protected/database/$id/sql/'
254254 path : '/sql'
255- fullPath : '/database/$id/sql'
255+ fullPath : '/database/$id/sql/ '
256256 preLoaderRoute : typeof ProtectedDatabaseIdSqlIndexRouteImport
257257 parentRoute : typeof ProtectedDatabaseIdRoute
258258 }
259259 '/_protected/database/$id/settings/' : {
260260 id : '/_protected/database/$id/settings/'
261261 path : '/settings'
262- fullPath : '/database/$id/settings'
262+ fullPath : '/database/$id/settings/ '
263263 preLoaderRoute : typeof ProtectedDatabaseIdSettingsIndexRouteImport
264264 parentRoute : typeof ProtectedDatabaseIdRoute
265265 }
266266 '/_protected/database/$id/definitions/indexes/' : {
267267 id : '/_protected/database/$id/definitions/indexes/'
268268 path : '/indexes'
269- fullPath : '/database/$id/definitions/indexes'
269+ fullPath : '/database/$id/definitions/indexes/ '
270270 preLoaderRoute : typeof ProtectedDatabaseIdDefinitionsIndexesIndexRouteImport
271271 parentRoute : typeof ProtectedDatabaseIdDefinitionsRoute
272272 }
273273 '/_protected/database/$id/definitions/enums/' : {
274274 id : '/_protected/database/$id/definitions/enums/'
275275 path : '/enums'
276- fullPath : '/database/$id/definitions/enums'
276+ fullPath : '/database/$id/definitions/enums/ '
277277 preLoaderRoute : typeof ProtectedDatabaseIdDefinitionsEnumsIndexRouteImport
278278 parentRoute : typeof ProtectedDatabaseIdDefinitionsRoute
279279 }
280280 '/_protected/database/$id/definitions/constraints/' : {
281281 id : '/_protected/database/$id/definitions/constraints/'
282282 path : '/constraints'
283- fullPath : '/database/$id/definitions/constraints'
283+ fullPath : '/database/$id/definitions/constraints/ '
284284 preLoaderRoute : typeof ProtectedDatabaseIdDefinitionsConstraintsIndexRouteImport
285285 parentRoute : typeof ProtectedDatabaseIdDefinitionsRoute
286286 }
0 commit comments