@@ -19,10 +19,10 @@ import { Route as rootRoute } from './routes/__root'
19
19
const IndexLazyImport = createFileRoute ( '/' ) ( )
20
20
const UserIndexLazyImport = createFileRoute ( '/user/' ) ( )
21
21
const UploadIndexLazyImport = createFileRoute ( '/upload/' ) ( )
22
- const ShelfCreationIndexLazyImport = createFileRoute ( '/shelf-creation/' ) ( )
23
22
const OrgIndexLazyImport = createFileRoute ( '/org/' ) ( )
24
23
const CurationIndexLazyImport = createFileRoute ( '/curation/' ) ( )
25
24
const UserUserLazyImport = createFileRoute ( '/user/$user' ) ( )
25
+ const ShelfNewLazyImport = createFileRoute ( '/shelf/new' ) ( )
26
26
const OrgIdLazyImport = createFileRoute ( '/org/$id' ) ( )
27
27
const BookSlugIndexLazyImport = createFileRoute ( '/book/$slug/' ) ( )
28
28
const BookSlugChapterIndexLazyImport = createFileRoute (
@@ -49,14 +49,6 @@ const UploadIndexLazyRoute = UploadIndexLazyImport.update({
49
49
getParentRoute : ( ) => rootRoute ,
50
50
} as any ) . lazy ( ( ) => import ( './routes/upload/index.lazy' ) . then ( ( d ) => d . Route ) )
51
51
52
- const ShelfCreationIndexLazyRoute = ShelfCreationIndexLazyImport . update ( {
53
- id : '/shelf-creation/' ,
54
- path : '/shelf-creation/' ,
55
- getParentRoute : ( ) => rootRoute ,
56
- } as any ) . lazy ( ( ) =>
57
- import ( './routes/shelf-creation/index.lazy' ) . then ( ( d ) => d . Route ) ,
58
- )
59
-
60
52
const OrgIndexLazyRoute = OrgIndexLazyImport . update ( {
61
53
id : '/org/' ,
62
54
path : '/org/' ,
@@ -77,6 +69,12 @@ const UserUserLazyRoute = UserUserLazyImport.update({
77
69
getParentRoute : ( ) => rootRoute ,
78
70
} as any ) . lazy ( ( ) => import ( './routes/user/$user.lazy' ) . then ( ( d ) => d . Route ) )
79
71
72
+ const ShelfNewLazyRoute = ShelfNewLazyImport . update ( {
73
+ id : '/shelf/new' ,
74
+ path : '/shelf/new' ,
75
+ getParentRoute : ( ) => rootRoute ,
76
+ } as any ) . lazy ( ( ) => import ( './routes/shelf/new.lazy' ) . then ( ( d ) => d . Route ) )
77
+
80
78
const OrgIdLazyRoute = OrgIdLazyImport . update ( {
81
79
id : '/org/$id' ,
82
80
path : '/org/$id' ,
@@ -117,6 +115,13 @@ declare module '@tanstack/react-router' {
117
115
preLoaderRoute : typeof OrgIdLazyImport
118
116
parentRoute : typeof rootRoute
119
117
}
118
+ '/shelf/new' : {
119
+ id : '/shelf/new'
120
+ path : '/shelf/new'
121
+ fullPath : '/shelf/new'
122
+ preLoaderRoute : typeof ShelfNewLazyImport
123
+ parentRoute : typeof rootRoute
124
+ }
120
125
'/user/$user' : {
121
126
id : '/user/$user'
122
127
path : '/user/$user'
@@ -138,13 +143,6 @@ declare module '@tanstack/react-router' {
138
143
preLoaderRoute : typeof OrgIndexLazyImport
139
144
parentRoute : typeof rootRoute
140
145
}
141
- '/shelf-creation/' : {
142
- id : '/shelf-creation/'
143
- path : '/shelf-creation'
144
- fullPath : '/shelf-creation'
145
- preLoaderRoute : typeof ShelfCreationIndexLazyImport
146
- parentRoute : typeof rootRoute
147
- }
148
146
'/upload/' : {
149
147
id : '/upload/'
150
148
path : '/upload'
@@ -181,10 +179,10 @@ declare module '@tanstack/react-router' {
181
179
export interface FileRoutesByFullPath {
182
180
'/' : typeof IndexLazyRoute
183
181
'/org/$id' : typeof OrgIdLazyRoute
182
+ '/shelf/new' : typeof ShelfNewLazyRoute
184
183
'/user/$user' : typeof UserUserLazyRoute
185
184
'/curation' : typeof CurationIndexLazyRoute
186
185
'/org' : typeof OrgIndexLazyRoute
187
- '/shelf-creation' : typeof ShelfCreationIndexLazyRoute
188
186
'/upload' : typeof UploadIndexLazyRoute
189
187
'/user' : typeof UserIndexLazyRoute
190
188
'/book/$slug' : typeof BookSlugIndexLazyRoute
@@ -194,10 +192,10 @@ export interface FileRoutesByFullPath {
194
192
export interface FileRoutesByTo {
195
193
'/' : typeof IndexLazyRoute
196
194
'/org/$id' : typeof OrgIdLazyRoute
195
+ '/shelf/new' : typeof ShelfNewLazyRoute
197
196
'/user/$user' : typeof UserUserLazyRoute
198
197
'/curation' : typeof CurationIndexLazyRoute
199
198
'/org' : typeof OrgIndexLazyRoute
200
- '/shelf-creation' : typeof ShelfCreationIndexLazyRoute
201
199
'/upload' : typeof UploadIndexLazyRoute
202
200
'/user' : typeof UserIndexLazyRoute
203
201
'/book/$slug' : typeof BookSlugIndexLazyRoute
@@ -208,10 +206,10 @@ export interface FileRoutesById {
208
206
__root__ : typeof rootRoute
209
207
'/' : typeof IndexLazyRoute
210
208
'/org/$id' : typeof OrgIdLazyRoute
209
+ '/shelf/new' : typeof ShelfNewLazyRoute
211
210
'/user/$user' : typeof UserUserLazyRoute
212
211
'/curation/' : typeof CurationIndexLazyRoute
213
212
'/org/' : typeof OrgIndexLazyRoute
214
- '/shelf-creation/' : typeof ShelfCreationIndexLazyRoute
215
213
'/upload/' : typeof UploadIndexLazyRoute
216
214
'/user/' : typeof UserIndexLazyRoute
217
215
'/book/$slug/' : typeof BookSlugIndexLazyRoute
@@ -223,10 +221,10 @@ export interface FileRouteTypes {
223
221
fullPaths :
224
222
| '/'
225
223
| '/org/$id'
224
+ | '/shelf/new'
226
225
| '/user/$user'
227
226
| '/curation'
228
227
| '/org'
229
- | '/shelf-creation'
230
228
| '/upload'
231
229
| '/user'
232
230
| '/book/$slug'
@@ -235,10 +233,10 @@ export interface FileRouteTypes {
235
233
to :
236
234
| '/'
237
235
| '/org/$id'
236
+ | '/shelf/new'
238
237
| '/user/$user'
239
238
| '/curation'
240
239
| '/org'
241
- | '/shelf-creation'
242
240
| '/upload'
243
241
| '/user'
244
242
| '/book/$slug'
@@ -247,10 +245,10 @@ export interface FileRouteTypes {
247
245
| '__root__'
248
246
| '/'
249
247
| '/org/$id'
248
+ | '/shelf/new'
250
249
| '/user/$user'
251
250
| '/curation/'
252
251
| '/org/'
253
- | '/shelf-creation/'
254
252
| '/upload/'
255
253
| '/user/'
256
254
| '/book/$slug/'
@@ -261,10 +259,10 @@ export interface FileRouteTypes {
261
259
export interface RootRouteChildren {
262
260
IndexLazyRoute : typeof IndexLazyRoute
263
261
OrgIdLazyRoute : typeof OrgIdLazyRoute
262
+ ShelfNewLazyRoute : typeof ShelfNewLazyRoute
264
263
UserUserLazyRoute : typeof UserUserLazyRoute
265
264
CurationIndexLazyRoute : typeof CurationIndexLazyRoute
266
265
OrgIndexLazyRoute : typeof OrgIndexLazyRoute
267
- ShelfCreationIndexLazyRoute : typeof ShelfCreationIndexLazyRoute
268
266
UploadIndexLazyRoute : typeof UploadIndexLazyRoute
269
267
UserIndexLazyRoute : typeof UserIndexLazyRoute
270
268
BookSlugIndexLazyRoute : typeof BookSlugIndexLazyRoute
@@ -274,10 +272,10 @@ export interface RootRouteChildren {
274
272
const rootRouteChildren : RootRouteChildren = {
275
273
IndexLazyRoute : IndexLazyRoute ,
276
274
OrgIdLazyRoute : OrgIdLazyRoute ,
275
+ ShelfNewLazyRoute : ShelfNewLazyRoute ,
277
276
UserUserLazyRoute : UserUserLazyRoute ,
278
277
CurationIndexLazyRoute : CurationIndexLazyRoute ,
279
278
OrgIndexLazyRoute : OrgIndexLazyRoute ,
280
- ShelfCreationIndexLazyRoute : ShelfCreationIndexLazyRoute ,
281
279
UploadIndexLazyRoute : UploadIndexLazyRoute ,
282
280
UserIndexLazyRoute : UserIndexLazyRoute ,
283
281
BookSlugIndexLazyRoute : BookSlugIndexLazyRoute ,
@@ -296,10 +294,10 @@ export const routeTree = rootRoute
296
294
"children": [
297
295
"/",
298
296
"/org/$id",
297
+ "/shelf/new",
299
298
"/user/$user",
300
299
"/curation/",
301
300
"/org/",
302
- "/shelf-creation/",
303
301
"/upload/",
304
302
"/user/",
305
303
"/book/$slug/",
@@ -312,6 +310,9 @@ export const routeTree = rootRoute
312
310
"/org/$id": {
313
311
"filePath": "org/$id.lazy.tsx"
314
312
},
313
+ "/shelf/new": {
314
+ "filePath": "shelf/new.lazy.tsx"
315
+ },
315
316
"/user/$user": {
316
317
"filePath": "user/$user.lazy.tsx"
317
318
},
@@ -321,9 +322,6 @@ export const routeTree = rootRoute
321
322
"/org/": {
322
323
"filePath": "org/index.lazy.tsx"
323
324
},
324
- "/shelf-creation/": {
325
- "filePath": "shelf-creation/index.lazy.tsx"
326
- },
327
325
"/upload/": {
328
326
"filePath": "upload/index.lazy.tsx"
329
327
},
0 commit comments