@@ -15,11 +15,11 @@ 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 AuthUsersIndexImport } from './../../scenes/_auth/users/index' ;
18
- import { Route as AuthRecordsIndexImport } from './../../scenes/_auth/records /index' ;
18
+ import { Route as AuthExpedientesIndexImport } from './../../scenes/_auth/expedientes /index' ;
19
19
import { Route as AuthCreateUserIndexImport } from './../../scenes/_auth/create-user/index' ;
20
20
import { Route as AuthUsersIdImport } from './../../scenes/_auth/users/$id' ;
21
+ import { Route as AuthEditarExpedienteIdImport } from './../../scenes/_auth/editar-expediente/$id' ;
21
22
import { Route as AuthEditUserIdImport } from './../../scenes/_auth/edit-user/$id' ;
22
- import { Route as AuthEditRecordIdImport } from './../../scenes/_auth/edit-record/$id' ;
23
23
24
24
// Create/Update Routes
25
25
@@ -46,9 +46,9 @@ const AuthUsersIndexRoute = AuthUsersIndexImport.update({
46
46
getParentRoute : ( ) => AuthRoute ,
47
47
} as any ) ;
48
48
49
- const AuthRecordsIndexRoute = AuthRecordsIndexImport . update ( {
50
- id : '/records /' ,
51
- path : '/records /' ,
49
+ const AuthExpedientesIndexRoute = AuthExpedientesIndexImport . update ( {
50
+ id : '/expedientes /' ,
51
+ path : '/expedientes /' ,
52
52
getParentRoute : ( ) => AuthRoute ,
53
53
} as any ) ;
54
54
@@ -64,15 +64,15 @@ const AuthUsersIdRoute = AuthUsersIdImport.update({
64
64
getParentRoute : ( ) => AuthRoute ,
65
65
} as any ) ;
66
66
67
- const AuthEditUserIdRoute = AuthEditUserIdImport . update ( {
68
- id : '/edit-user /$id' ,
69
- path : '/edit-user /$id' ,
67
+ const AuthEditarExpedienteIdRoute = AuthEditarExpedienteIdImport . update ( {
68
+ id : '/editar-expediente /$id' ,
69
+ path : '/editar-expediente /$id' ,
70
70
getParentRoute : ( ) => AuthRoute ,
71
71
} as any ) ;
72
72
73
- const AuthEditRecordIdRoute = AuthEditRecordIdImport . update ( {
74
- id : '/edit-record /$id' ,
75
- path : '/edit-record /$id' ,
73
+ const AuthEditUserIdRoute = AuthEditUserIdImport . update ( {
74
+ id : '/edit-user /$id' ,
75
+ path : '/edit-user /$id' ,
76
76
getParentRoute : ( ) => AuthRoute ,
77
77
} as any ) ;
78
78
@@ -101,20 +101,20 @@ declare module '@tanstack/react-router' {
101
101
preLoaderRoute : typeof LoginImport ;
102
102
parentRoute : typeof rootRoute ;
103
103
} ;
104
- '/_auth/edit-record/$id' : {
105
- id : '/_auth/edit-record/$id' ;
106
- path : '/edit-record/$id' ;
107
- fullPath : '/edit-record/$id' ;
108
- preLoaderRoute : typeof AuthEditRecordIdImport ;
109
- parentRoute : typeof AuthImport ;
110
- } ;
111
104
'/_auth/edit-user/$id' : {
112
105
id : '/_auth/edit-user/$id' ;
113
106
path : '/edit-user/$id' ;
114
107
fullPath : '/edit-user/$id' ;
115
108
preLoaderRoute : typeof AuthEditUserIdImport ;
116
109
parentRoute : typeof AuthImport ;
117
110
} ;
111
+ '/_auth/editar-expediente/$id' : {
112
+ id : '/_auth/editar-expediente/$id' ;
113
+ path : '/editar-expediente/$id' ;
114
+ fullPath : '/editar-expediente/$id' ;
115
+ preLoaderRoute : typeof AuthEditarExpedienteIdImport ;
116
+ parentRoute : typeof AuthImport ;
117
+ } ;
118
118
'/_auth/users/$id' : {
119
119
id : '/_auth/users/$id' ;
120
120
path : '/users/$id' ;
@@ -129,11 +129,11 @@ declare module '@tanstack/react-router' {
129
129
preLoaderRoute : typeof AuthCreateUserIndexImport ;
130
130
parentRoute : typeof AuthImport ;
131
131
} ;
132
- '/_auth/records /' : {
133
- id : '/_auth/records /' ;
134
- path : '/records ' ;
135
- fullPath : '/records ' ;
136
- preLoaderRoute : typeof AuthRecordsIndexImport ;
132
+ '/_auth/expedientes /' : {
133
+ id : '/_auth/expedientes /' ;
134
+ path : '/expedientes ' ;
135
+ fullPath : '/expedientes ' ;
136
+ preLoaderRoute : typeof AuthExpedientesIndexImport ;
137
137
parentRoute : typeof AuthImport ;
138
138
} ;
139
139
'/_auth/users/' : {
@@ -149,20 +149,20 @@ declare module '@tanstack/react-router' {
149
149
// Create and export the route tree
150
150
151
151
interface AuthRouteChildren {
152
- AuthEditRecordIdRoute : typeof AuthEditRecordIdRoute ;
153
152
AuthEditUserIdRoute : typeof AuthEditUserIdRoute ;
153
+ AuthEditarExpedienteIdRoute : typeof AuthEditarExpedienteIdRoute ;
154
154
AuthUsersIdRoute : typeof AuthUsersIdRoute ;
155
155
AuthCreateUserIndexRoute : typeof AuthCreateUserIndexRoute ;
156
- AuthRecordsIndexRoute : typeof AuthRecordsIndexRoute ;
156
+ AuthExpedientesIndexRoute : typeof AuthExpedientesIndexRoute ;
157
157
AuthUsersIndexRoute : typeof AuthUsersIndexRoute ;
158
158
}
159
159
160
160
const AuthRouteChildren : AuthRouteChildren = {
161
- AuthEditRecordIdRoute : AuthEditRecordIdRoute ,
162
161
AuthEditUserIdRoute : AuthEditUserIdRoute ,
162
+ AuthEditarExpedienteIdRoute : AuthEditarExpedienteIdRoute ,
163
163
AuthUsersIdRoute : AuthUsersIdRoute ,
164
164
AuthCreateUserIndexRoute : AuthCreateUserIndexRoute ,
165
- AuthRecordsIndexRoute : AuthRecordsIndexRoute ,
165
+ AuthExpedientesIndexRoute : AuthExpedientesIndexRoute ,
166
166
AuthUsersIndexRoute : AuthUsersIndexRoute ,
167
167
} ;
168
168
@@ -172,23 +172,23 @@ export interface FileRoutesByFullPath {
172
172
'/' : typeof IndexRoute ;
173
173
'' : typeof AuthRouteWithChildren ;
174
174
'/login' : typeof LoginRoute ;
175
- '/edit-record/$id' : typeof AuthEditRecordIdRoute ;
176
175
'/edit-user/$id' : typeof AuthEditUserIdRoute ;
176
+ '/editar-expediente/$id' : typeof AuthEditarExpedienteIdRoute ;
177
177
'/users/$id' : typeof AuthUsersIdRoute ;
178
178
'/create-user' : typeof AuthCreateUserIndexRoute ;
179
- '/records ' : typeof AuthRecordsIndexRoute ;
179
+ '/expedientes ' : typeof AuthExpedientesIndexRoute ;
180
180
'/users' : typeof AuthUsersIndexRoute ;
181
181
}
182
182
183
183
export interface FileRoutesByTo {
184
184
'/' : typeof IndexRoute ;
185
185
'' : typeof AuthRouteWithChildren ;
186
186
'/login' : typeof LoginRoute ;
187
- '/edit-record/$id' : typeof AuthEditRecordIdRoute ;
188
187
'/edit-user/$id' : typeof AuthEditUserIdRoute ;
188
+ '/editar-expediente/$id' : typeof AuthEditarExpedienteIdRoute ;
189
189
'/users/$id' : typeof AuthUsersIdRoute ;
190
190
'/create-user' : typeof AuthCreateUserIndexRoute ;
191
- '/records ' : typeof AuthRecordsIndexRoute ;
191
+ '/expedientes ' : typeof AuthExpedientesIndexRoute ;
192
192
'/users' : typeof AuthUsersIndexRoute ;
193
193
}
194
194
@@ -197,11 +197,11 @@ export interface FileRoutesById {
197
197
'/' : typeof IndexRoute ;
198
198
'/_auth' : typeof AuthRouteWithChildren ;
199
199
'/login' : typeof LoginRoute ;
200
- '/_auth/edit-record/$id' : typeof AuthEditRecordIdRoute ;
201
200
'/_auth/edit-user/$id' : typeof AuthEditUserIdRoute ;
201
+ '/_auth/editar-expediente/$id' : typeof AuthEditarExpedienteIdRoute ;
202
202
'/_auth/users/$id' : typeof AuthUsersIdRoute ;
203
203
'/_auth/create-user/' : typeof AuthCreateUserIndexRoute ;
204
- '/_auth/records /' : typeof AuthRecordsIndexRoute ;
204
+ '/_auth/expedientes /' : typeof AuthExpedientesIndexRoute ;
205
205
'/_auth/users/' : typeof AuthUsersIndexRoute ;
206
206
}
207
207
@@ -211,33 +211,33 @@ export interface FileRouteTypes {
211
211
| '/'
212
212
| ''
213
213
| '/login'
214
- | '/edit-record/$id'
215
214
| '/edit-user/$id'
215
+ | '/editar-expediente/$id'
216
216
| '/users/$id'
217
217
| '/create-user'
218
- | '/records '
218
+ | '/expedientes '
219
219
| '/users' ;
220
220
fileRoutesByTo : FileRoutesByTo ;
221
221
to :
222
222
| '/'
223
223
| ''
224
224
| '/login'
225
- | '/edit-record/$id'
226
225
| '/edit-user/$id'
226
+ | '/editar-expediente/$id'
227
227
| '/users/$id'
228
228
| '/create-user'
229
- | '/records '
229
+ | '/expedientes '
230
230
| '/users' ;
231
231
id :
232
232
| '__root__'
233
233
| '/'
234
234
| '/_auth'
235
235
| '/login'
236
- | '/_auth/edit-record/$id'
237
236
| '/_auth/edit-user/$id'
237
+ | '/_auth/editar-expediente/$id'
238
238
| '/_auth/users/$id'
239
239
| '/_auth/create-user/'
240
- | '/_auth/records /'
240
+ | '/_auth/expedientes /'
241
241
| '/_auth/users/' ;
242
242
fileRoutesById : FileRoutesById ;
243
243
}
@@ -273,25 +273,25 @@ export const routeTree = rootRoute._addFileChildren(rootRouteChildren)._addFileT
273
273
"/_auth": {
274
274
"filePath": "_auth.tsx",
275
275
"children": [
276
- "/_auth/edit-record/$id",
277
276
"/_auth/edit-user/$id",
277
+ "/_auth/editar-expediente/$id",
278
278
"/_auth/users/$id",
279
279
"/_auth/create-user/",
280
- "/_auth/records /",
280
+ "/_auth/expedientes /",
281
281
"/_auth/users/"
282
282
]
283
283
},
284
284
"/login": {
285
285
"filePath": "login.tsx"
286
286
},
287
- "/_auth/edit-record/$id": {
288
- "filePath": "_auth/edit-record/$id.tsx",
289
- "parent": "/_auth"
290
- },
291
287
"/_auth/edit-user/$id": {
292
288
"filePath": "_auth/edit-user/$id.tsx",
293
289
"parent": "/_auth"
294
290
},
291
+ "/_auth/editar-expediente/$id": {
292
+ "filePath": "_auth/editar-expediente/$id.tsx",
293
+ "parent": "/_auth"
294
+ },
295
295
"/_auth/users/$id": {
296
296
"filePath": "_auth/users/$id.tsx",
297
297
"parent": "/_auth"
@@ -300,8 +300,8 @@ export const routeTree = rootRoute._addFileChildren(rootRouteChildren)._addFileT
300
300
"filePath": "_auth/create-user/index.tsx",
301
301
"parent": "/_auth"
302
302
},
303
- "/_auth/records /": {
304
- "filePath": "_auth/records /index.tsx",
303
+ "/_auth/expedientes /": {
304
+ "filePath": "_auth/expedientes /index.tsx",
305
305
"parent": "/_auth"
306
306
},
307
307
"/_auth/users/": {
0 commit comments