1111import { Route as rootRouteImport } from './routes/__root'
1212import { Route as TermsRouteImport } from './routes/terms'
1313import { Route as PrivacyRouteImport } from './routes/privacy'
14+ import { Route as PricingRouteImport } from './routes/pricing'
1415import { Route as DocsRouteImport } from './routes/docs'
1516import { Route as AboutRouteImport } from './routes/about'
1617import { Route as IndexRouteImport } from './routes/index'
@@ -28,6 +29,11 @@ const PrivacyRoute = PrivacyRouteImport.update({
2829 path : '/privacy' ,
2930 getParentRoute : ( ) => rootRouteImport ,
3031} as any )
32+ const PricingRoute = PricingRouteImport . update ( {
33+ id : '/pricing' ,
34+ path : '/pricing' ,
35+ getParentRoute : ( ) => rootRouteImport ,
36+ } as any )
3137const DocsRoute = DocsRouteImport . update ( {
3238 id : '/docs' ,
3339 path : '/docs' ,
@@ -63,6 +69,7 @@ export interface FileRoutesByFullPath {
6369 '/' : typeof IndexRoute
6470 '/about' : typeof AboutRoute
6571 '/docs' : typeof DocsRouteWithChildren
72+ '/pricing' : typeof PricingRoute
6673 '/privacy' : typeof PrivacyRoute
6774 '/terms' : typeof TermsRoute
6875 '/docs/$' : typeof DocsSplatRoute
@@ -72,6 +79,7 @@ export interface FileRoutesByFullPath {
7279export interface FileRoutesByTo {
7380 '/' : typeof IndexRoute
7481 '/about' : typeof AboutRoute
82+ '/pricing' : typeof PricingRoute
7583 '/privacy' : typeof PrivacyRoute
7684 '/terms' : typeof TermsRoute
7785 '/docs/$' : typeof DocsSplatRoute
@@ -83,6 +91,7 @@ export interface FileRoutesById {
8391 '/' : typeof IndexRoute
8492 '/about' : typeof AboutRoute
8593 '/docs' : typeof DocsRouteWithChildren
94+ '/pricing' : typeof PricingRoute
8695 '/privacy' : typeof PrivacyRoute
8796 '/terms' : typeof TermsRoute
8897 '/docs/$' : typeof DocsSplatRoute
@@ -95,6 +104,7 @@ export interface FileRouteTypes {
95104 | '/'
96105 | '/about'
97106 | '/docs'
107+ | '/pricing'
98108 | '/privacy'
99109 | '/terms'
100110 | '/docs/$'
@@ -104,6 +114,7 @@ export interface FileRouteTypes {
104114 to :
105115 | '/'
106116 | '/about'
117+ | '/pricing'
107118 | '/privacy'
108119 | '/terms'
109120 | '/docs/$'
@@ -114,6 +125,7 @@ export interface FileRouteTypes {
114125 | '/'
115126 | '/about'
116127 | '/docs'
128+ | '/pricing'
117129 | '/privacy'
118130 | '/terms'
119131 | '/docs/$'
@@ -125,6 +137,7 @@ export interface RootRouteChildren {
125137 IndexRoute : typeof IndexRoute
126138 AboutRoute : typeof AboutRoute
127139 DocsRoute : typeof DocsRouteWithChildren
140+ PricingRoute : typeof PricingRoute
128141 PrivacyRoute : typeof PrivacyRoute
129142 TermsRoute : typeof TermsRoute
130143}
@@ -145,6 +158,13 @@ declare module '@tanstack/react-router' {
145158 preLoaderRoute : typeof PrivacyRouteImport
146159 parentRoute : typeof rootRouteImport
147160 }
161+ '/pricing' : {
162+ id : '/pricing'
163+ path : '/pricing'
164+ fullPath : '/pricing'
165+ preLoaderRoute : typeof PricingRouteImport
166+ parentRoute : typeof rootRouteImport
167+ }
148168 '/docs' : {
149169 id : '/docs'
150170 path : '/docs'
@@ -208,6 +228,7 @@ const rootRouteChildren: RootRouteChildren = {
208228 IndexRoute : IndexRoute ,
209229 AboutRoute : AboutRoute ,
210230 DocsRoute : DocsRouteWithChildren ,
231+ PricingRoute : PricingRoute ,
211232 PrivacyRoute : PrivacyRoute ,
212233 TermsRoute : TermsRoute ,
213234}
0 commit comments