@@ -19,6 +19,7 @@ import { Route as RscSsrFalseRouteImport } from './routes/rsc-ssr-false'
1919import { Route as RscSsrDataOnlyRouteImport } from './routes/rsc-ssr-data-only'
2020import { Route as RscSlotsRouteImport } from './routes/rsc-slots'
2121import { Route as RscSlotJsxArgsRouteImport } from './routes/rsc-slot-jsx-args'
22+ import { Route as RscRequestHeadersRouteImport } from './routes/rsc-request-headers'
2223import { Route as RscReactCacheRouteImport } from './routes/rsc-react-cache'
2324import { Route as RscParallelRouteImport } from './routes/rsc-parallel'
2425import { Route as RscNestedStructureRouteImport } from './routes/rsc-nested-structure'
@@ -102,6 +103,11 @@ const RscSlotJsxArgsRoute = RscSlotJsxArgsRouteImport.update({
102103 path : '/rsc-slot-jsx-args' ,
103104 getParentRoute : ( ) => rootRouteImport ,
104105} as any )
106+ const RscRequestHeadersRoute = RscRequestHeadersRouteImport . update ( {
107+ id : '/rsc-request-headers' ,
108+ path : '/rsc-request-headers' ,
109+ getParentRoute : ( ) => rootRouteImport ,
110+ } as any )
105111const RscReactCacheRoute = RscReactCacheRouteImport . update ( {
106112 id : '/rsc-react-cache' ,
107113 path : '/rsc-react-cache' ,
@@ -291,6 +297,7 @@ export interface FileRoutesByFullPath {
291297 '/rsc-nested-structure' : typeof RscNestedStructureRoute
292298 '/rsc-parallel' : typeof RscParallelRoute
293299 '/rsc-react-cache' : typeof RscReactCacheRoute
300+ '/rsc-request-headers' : typeof RscRequestHeadersRoute
294301 '/rsc-slot-jsx-args' : typeof RscSlotJsxArgsRoute
295302 '/rsc-slots' : typeof RscSlotsRoute
296303 '/rsc-ssr-data-only' : typeof RscSsrDataOnlyRoute
@@ -335,6 +342,7 @@ export interface FileRoutesByTo {
335342 '/rsc-nested-structure' : typeof RscNestedStructureRoute
336343 '/rsc-parallel' : typeof RscParallelRoute
337344 '/rsc-react-cache' : typeof RscReactCacheRoute
345+ '/rsc-request-headers' : typeof RscRequestHeadersRoute
338346 '/rsc-slot-jsx-args' : typeof RscSlotJsxArgsRoute
339347 '/rsc-slots' : typeof RscSlotsRoute
340348 '/rsc-ssr-data-only' : typeof RscSsrDataOnlyRoute
@@ -380,6 +388,7 @@ export interface FileRoutesById {
380388 '/rsc-nested-structure' : typeof RscNestedStructureRoute
381389 '/rsc-parallel' : typeof RscParallelRoute
382390 '/rsc-react-cache' : typeof RscReactCacheRoute
391+ '/rsc-request-headers' : typeof RscRequestHeadersRoute
383392 '/rsc-slot-jsx-args' : typeof RscSlotJsxArgsRoute
384393 '/rsc-slots' : typeof RscSlotsRoute
385394 '/rsc-ssr-data-only' : typeof RscSsrDataOnlyRoute
@@ -426,6 +435,7 @@ export interface FileRouteTypes {
426435 | '/rsc-nested-structure'
427436 | '/rsc-parallel'
428437 | '/rsc-react-cache'
438+ | '/rsc-request-headers'
429439 | '/rsc-slot-jsx-args'
430440 | '/rsc-slots'
431441 | '/rsc-ssr-data-only'
@@ -470,6 +480,7 @@ export interface FileRouteTypes {
470480 | '/rsc-nested-structure'
471481 | '/rsc-parallel'
472482 | '/rsc-react-cache'
483+ | '/rsc-request-headers'
473484 | '/rsc-slot-jsx-args'
474485 | '/rsc-slots'
475486 | '/rsc-ssr-data-only'
@@ -514,6 +525,7 @@ export interface FileRouteTypes {
514525 | '/rsc-nested-structure'
515526 | '/rsc-parallel'
516527 | '/rsc-react-cache'
528+ | '/rsc-request-headers'
517529 | '/rsc-slot-jsx-args'
518530 | '/rsc-slots'
519531 | '/rsc-ssr-data-only'
@@ -559,6 +571,7 @@ export interface RootRouteChildren {
559571 RscNestedStructureRoute : typeof RscNestedStructureRoute
560572 RscParallelRoute : typeof RscParallelRoute
561573 RscReactCacheRoute : typeof RscReactCacheRoute
574+ RscRequestHeadersRoute : typeof RscRequestHeadersRoute
562575 RscSlotJsxArgsRoute : typeof RscSlotJsxArgsRoute
563576 RscSlotsRoute : typeof RscSlotsRoute
564577 RscSsrDataOnlyRoute : typeof RscSsrDataOnlyRoute
@@ -648,6 +661,13 @@ declare module '@tanstack/react-router' {
648661 preLoaderRoute : typeof RscSlotJsxArgsRouteImport
649662 parentRoute : typeof rootRouteImport
650663 }
664+ '/rsc-request-headers' : {
665+ id : '/rsc-request-headers'
666+ path : '/rsc-request-headers'
667+ fullPath : '/rsc-request-headers'
668+ preLoaderRoute : typeof RscRequestHeadersRouteImport
669+ parentRoute : typeof rootRouteImport
670+ }
651671 '/rsc-react-cache' : {
652672 id : '/rsc-react-cache'
653673 path : '/rsc-react-cache'
@@ -903,6 +923,7 @@ const rootRouteChildren: RootRouteChildren = {
903923 RscNestedStructureRoute : RscNestedStructureRoute ,
904924 RscParallelRoute : RscParallelRoute ,
905925 RscReactCacheRoute : RscReactCacheRoute ,
926+ RscRequestHeadersRoute : RscRequestHeadersRoute ,
906927 RscSlotJsxArgsRoute : RscSlotJsxArgsRoute ,
907928 RscSlotsRoute : RscSlotsRoute ,
908929 RscSsrDataOnlyRoute : RscSsrDataOnlyRoute ,
0 commit comments