@@ -23,6 +23,7 @@ import { Route as StreamRouteImport } from './routes/stream'
23
23
import { Route as ScriptsRouteImport } from './routes/scripts'
24
24
import { Route as PostsRouteImport } from './routes/posts'
25
25
import { Route as LinksRouteImport } from './routes/links'
26
+ import { Route as InlineScriptsRouteImport } from './routes/inline-scripts'
26
27
import { Route as DeferredRouteImport } from './routes/deferred'
27
28
import { Route as LayoutRouteImport } from './routes/_layout'
28
29
import { Route as SearchParamsRouteRouteImport } from './routes/search-params/route'
@@ -90,6 +91,11 @@ const LinksRoute = LinksRouteImport.update({
90
91
path : '/links' ,
91
92
getParentRoute : ( ) => rootRouteImport ,
92
93
} as any )
94
+ const InlineScriptsRoute = InlineScriptsRouteImport . update ( {
95
+ id : '/inline-scripts' ,
96
+ path : '/inline-scripts' ,
97
+ getParentRoute : ( ) => rootRouteImport ,
98
+ } as any )
93
99
const DeferredRoute = DeferredRouteImport . update ( {
94
100
id : '/deferred' ,
95
101
path : '/deferred' ,
@@ -264,6 +270,7 @@ export interface FileRoutesByFullPath {
264
270
'/not-found' : typeof NotFoundRouteRouteWithChildren
265
271
'/search-params' : typeof SearchParamsRouteRouteWithChildren
266
272
'/deferred' : typeof DeferredRoute
273
+ '/inline-scripts' : typeof InlineScriptsRoute
267
274
'/links' : typeof LinksRoute
268
275
'/posts' : typeof PostsRouteWithChildren
269
276
'/scripts' : typeof ScriptsRoute
@@ -298,6 +305,7 @@ export interface FileRoutesByFullPath {
298
305
export interface FileRoutesByTo {
299
306
'/' : typeof IndexRoute
300
307
'/deferred' : typeof DeferredRoute
308
+ '/inline-scripts' : typeof InlineScriptsRoute
301
309
'/links' : typeof LinksRoute
302
310
'/scripts' : typeof ScriptsRoute
303
311
'/stream' : typeof StreamRoute
@@ -332,6 +340,7 @@ export interface FileRoutesById {
332
340
'/search-params' : typeof SearchParamsRouteRouteWithChildren
333
341
'/_layout' : typeof LayoutRouteWithChildren
334
342
'/deferred' : typeof DeferredRoute
343
+ '/inline-scripts' : typeof InlineScriptsRoute
335
344
'/links' : typeof LinksRoute
336
345
'/posts' : typeof PostsRouteWithChildren
337
346
'/scripts' : typeof ScriptsRoute
@@ -372,6 +381,7 @@ export interface FileRouteTypes {
372
381
| '/not-found'
373
382
| '/search-params'
374
383
| '/deferred'
384
+ | '/inline-scripts'
375
385
| '/links'
376
386
| '/posts'
377
387
| '/scripts'
@@ -406,6 +416,7 @@ export interface FileRouteTypes {
406
416
to :
407
417
| '/'
408
418
| '/deferred'
419
+ | '/inline-scripts'
409
420
| '/links'
410
421
| '/scripts'
411
422
| '/stream'
@@ -439,6 +450,7 @@ export interface FileRouteTypes {
439
450
| '/search-params'
440
451
| '/_layout'
441
452
| '/deferred'
453
+ | '/inline-scripts'
442
454
| '/links'
443
455
| '/posts'
444
456
| '/scripts'
@@ -479,6 +491,7 @@ export interface RootRouteChildren {
479
491
SearchParamsRouteRoute : typeof SearchParamsRouteRouteWithChildren
480
492
LayoutRoute : typeof LayoutRouteWithChildren
481
493
DeferredRoute : typeof DeferredRoute
494
+ InlineScriptsRoute : typeof InlineScriptsRoute
482
495
LinksRoute : typeof LinksRoute
483
496
PostsRoute : typeof PostsRouteWithChildren
484
497
ScriptsRoute : typeof ScriptsRoute
@@ -552,6 +565,13 @@ declare module '@tanstack/react-router' {
552
565
preLoaderRoute : typeof DeferredRouteImport
553
566
parentRoute : typeof rootRouteImport
554
567
}
568
+ '/inline-scripts' : {
569
+ id : '/inline-scripts'
570
+ path : '/inline-scripts'
571
+ fullPath : '/inline-scripts'
572
+ preLoaderRoute : typeof InlineScriptsRouteImport
573
+ parentRoute : typeof rootRouteImport
574
+ }
555
575
'/links' : {
556
576
id : '/links'
557
577
path : '/links'
@@ -829,6 +849,13 @@ declare module '@tanstack/react-start/server' {
829
849
preLoaderRoute : unknown
830
850
parentRoute : typeof rootServerRouteImport
831
851
}
852
+ '/inline-scripts' : {
853
+ id : '/inline-scripts'
854
+ path : '/inline-scripts'
855
+ fullPath : '/inline-scripts'
856
+ preLoaderRoute : unknown
857
+ parentRoute : typeof rootServerRouteImport
858
+ }
832
859
'/links' : {
833
860
id : '/links'
834
861
path : '/links'
@@ -1148,6 +1175,23 @@ declare module './routes/deferred' {
1148
1175
unknown
1149
1176
>
1150
1177
}
1178
+ declare module './routes/inline-scripts' {
1179
+ const createFileRoute : CreateFileRoute <
1180
+ '/inline-scripts' ,
1181
+ FileRoutesByPath [ '/inline-scripts' ] [ 'parentRoute' ] ,
1182
+ FileRoutesByPath [ '/inline-scripts' ] [ 'id' ] ,
1183
+ FileRoutesByPath [ '/inline-scripts' ] [ 'path' ] ,
1184
+ FileRoutesByPath [ '/inline-scripts' ] [ 'fullPath' ]
1185
+ >
1186
+
1187
+ const createServerFileRoute : CreateServerFileRoute <
1188
+ ServerFileRoutesByPath [ '/inline-scripts' ] [ 'parentRoute' ] ,
1189
+ ServerFileRoutesByPath [ '/inline-scripts' ] [ 'id' ] ,
1190
+ ServerFileRoutesByPath [ '/inline-scripts' ] [ 'path' ] ,
1191
+ ServerFileRoutesByPath [ '/inline-scripts' ] [ 'fullPath' ] ,
1192
+ unknown
1193
+ >
1194
+ }
1151
1195
declare module './routes/links' {
1152
1196
const createFileRoute : CreateFileRoute <
1153
1197
'/links' ,
@@ -1858,6 +1902,7 @@ const rootRouteChildren: RootRouteChildren = {
1858
1902
SearchParamsRouteRoute : SearchParamsRouteRouteWithChildren ,
1859
1903
LayoutRoute : LayoutRouteWithChildren ,
1860
1904
DeferredRoute : DeferredRoute ,
1905
+ InlineScriptsRoute : InlineScriptsRoute ,
1861
1906
LinksRoute : LinksRoute ,
1862
1907
PostsRoute : PostsRouteWithChildren ,
1863
1908
ScriptsRoute : ScriptsRoute ,
0 commit comments