@@ -103,6 +103,7 @@ import { Route as LibraryIdVersionIndexRouteImport } from './routes/$libraryId/$
103103import { Route as StatsNpmPackagesRouteImport } from './routes/stats/npm/$packages'
104104import { Route as ShowcaseEditIdRouteImport } from './routes/showcase/edit.$id'
105105import { Route as ShopProductsHandleRouteImport } from './routes/shop.products.$handle'
106+ import { Route as ShopPoliciesHandleRouteImport } from './routes/shop.policies.$handle'
106107import { Route as ShopPagesHandleRouteImport } from './routes/shop.pages.$handle'
107108import { Route as ShopCollectionsHandleRouteImport } from './routes/shop.collections.$handle'
108109import { Route as IntentRegistryPackageNameRouteImport } from './routes/intent/registry/$packageName'
@@ -620,6 +621,11 @@ const ShopProductsHandleRoute = ShopProductsHandleRouteImport.update({
620621 path : '/products/$handle' ,
621622 getParentRoute : ( ) => ShopRoute ,
622623} as any )
624+ const ShopPoliciesHandleRoute = ShopPoliciesHandleRouteImport . update ( {
625+ id : '/policies/$handle' ,
626+ path : '/policies/$handle' ,
627+ getParentRoute : ( ) => ShopRoute ,
628+ } as any )
623629const ShopPagesHandleRoute = ShopPagesHandleRouteImport . update ( {
624630 id : '/pages/$handle' ,
625631 path : '/pages/$handle' ,
@@ -962,6 +968,7 @@ export interface FileRoutesByFullPath {
962968 '/intent/registry/$packageName' : typeof IntentRegistryPackageNameRouteWithChildren
963969 '/shop/collections/$handle' : typeof ShopCollectionsHandleRoute
964970 '/shop/pages/$handle' : typeof ShopPagesHandleRoute
971+ '/shop/policies/$handle' : typeof ShopPoliciesHandleRoute
965972 '/shop/products/$handle' : typeof ShopProductsHandleRoute
966973 '/showcase/edit/$id' : typeof ShowcaseEditIdRoute
967974 '/stats/npm/$packages' : typeof StatsNpmPackagesRoute
@@ -1093,6 +1100,7 @@ export interface FileRoutesByTo {
10931100 '/auth/$provider/start' : typeof AuthProviderStartRoute
10941101 '/shop/collections/$handle' : typeof ShopCollectionsHandleRoute
10951102 '/shop/pages/$handle' : typeof ShopPagesHandleRoute
1103+ '/shop/policies/$handle' : typeof ShopPoliciesHandleRoute
10961104 '/shop/products/$handle' : typeof ShopProductsHandleRoute
10971105 '/showcase/edit/$id' : typeof ShowcaseEditIdRoute
10981106 '/stats/npm/$packages' : typeof StatsNpmPackagesRoute
@@ -1235,6 +1243,7 @@ export interface FileRoutesById {
12351243 '/intent/registry/$packageName' : typeof IntentRegistryPackageNameRouteWithChildren
12361244 '/shop/collections/$handle' : typeof ShopCollectionsHandleRoute
12371245 '/shop/pages/$handle' : typeof ShopPagesHandleRoute
1246+ '/shop/policies/$handle' : typeof ShopPoliciesHandleRoute
12381247 '/shop/products/$handle' : typeof ShopProductsHandleRoute
12391248 '/showcase/edit/$id' : typeof ShowcaseEditIdRoute
12401249 '/stats/npm/$packages' : typeof StatsNpmPackagesRoute
@@ -1378,6 +1387,7 @@ export interface FileRouteTypes {
13781387 | '/intent/registry/$packageName'
13791388 | '/shop/collections/$handle'
13801389 | '/shop/pages/$handle'
1390+ | '/shop/policies/$handle'
13811391 | '/shop/products/$handle'
13821392 | '/showcase/edit/$id'
13831393 | '/stats/npm/$packages'
@@ -1509,6 +1519,7 @@ export interface FileRouteTypes {
15091519 | '/auth/$provider/start'
15101520 | '/shop/collections/$handle'
15111521 | '/shop/pages/$handle'
1522+ | '/shop/policies/$handle'
15121523 | '/shop/products/$handle'
15131524 | '/showcase/edit/$id'
15141525 | '/stats/npm/$packages'
@@ -1650,6 +1661,7 @@ export interface FileRouteTypes {
16501661 | '/intent/registry/$packageName'
16511662 | '/shop/collections/$handle'
16521663 | '/shop/pages/$handle'
1664+ | '/shop/policies/$handle'
16531665 | '/shop/products/$handle'
16541666 | '/showcase/edit/$id'
16551667 | '/stats/npm/$packages'
@@ -2449,6 +2461,13 @@ declare module '@tanstack/react-router' {
24492461 preLoaderRoute : typeof ShopProductsHandleRouteImport
24502462 parentRoute : typeof ShopRoute
24512463 }
2464+ '/shop/policies/$handle' : {
2465+ id : '/shop/policies/$handle'
2466+ path : '/policies/$handle'
2467+ fullPath : '/shop/policies/$handle'
2468+ preLoaderRoute : typeof ShopPoliciesHandleRouteImport
2469+ parentRoute : typeof ShopRoute
2470+ }
24522471 '/shop/pages/$handle' : {
24532472 id : '/shop/pages/$handle'
24542473 path : '/pages/$handle'
@@ -2948,6 +2967,7 @@ interface ShopRouteChildren {
29482967 ShopIndexRoute : typeof ShopIndexRoute
29492968 ShopCollectionsHandleRoute : typeof ShopCollectionsHandleRoute
29502969 ShopPagesHandleRoute : typeof ShopPagesHandleRoute
2970+ ShopPoliciesHandleRoute : typeof ShopPoliciesHandleRoute
29512971 ShopProductsHandleRoute : typeof ShopProductsHandleRoute
29522972}
29532973
@@ -2957,6 +2977,7 @@ const ShopRouteChildren: ShopRouteChildren = {
29572977 ShopIndexRoute : ShopIndexRoute ,
29582978 ShopCollectionsHandleRoute : ShopCollectionsHandleRoute ,
29592979 ShopPagesHandleRoute : ShopPagesHandleRoute ,
2980+ ShopPoliciesHandleRoute : ShopPoliciesHandleRoute ,
29602981 ShopProductsHandleRoute : ShopProductsHandleRoute ,
29612982}
29622983
0 commit comments