@@ -27,6 +27,7 @@ import { Route as LibrariesEthosImport } from './routes/_libraries/ethos'
27
27
import { Route as LibrariesDedicatedSupportImport } from './routes/_libraries/dedicated-support'
28
28
import { Route as LibrariesBlogImport } from './routes/_libraries/blog'
29
29
import { Route as LibraryIdVersionImport } from './routes/$libraryId/$version'
30
+ import { Route as StatsNpmIndexImport } from './routes/stats/npm/index'
30
31
import { Route as LibrariesBlogIndexImport } from './routes/_libraries/blog.index'
31
32
import { Route as LibrariesBlogSplatImport } from './routes/_libraries/blog.$'
32
33
import { Route as LibraryIdVersionDocsImport } from './routes/$libraryId/$version.docs'
@@ -142,6 +143,12 @@ const LibraryIdVersionRoute = LibraryIdVersionImport.update({
142
143
getParentRoute : ( ) => LibraryIdRouteRoute ,
143
144
} as any )
144
145
146
+ const StatsNpmIndexRoute = StatsNpmIndexImport . update ( {
147
+ id : '/stats/npm/' ,
148
+ path : '/stats/npm/' ,
149
+ getParentRoute : ( ) => rootRoute ,
150
+ } as any )
151
+
145
152
const LibrariesBlogIndexRoute = LibrariesBlogIndexImport . update ( {
146
153
id : '/' ,
147
154
path : '/' ,
@@ -397,6 +404,13 @@ declare module '@tanstack/react-router' {
397
404
preLoaderRoute : typeof LibrariesBlogIndexImport
398
405
parentRoute : typeof LibrariesBlogImport
399
406
}
407
+ '/stats/npm/' : {
408
+ id : '/stats/npm/'
409
+ path : '/stats/npm'
410
+ fullPath : '/stats/npm'
411
+ preLoaderRoute : typeof StatsNpmIndexImport
412
+ parentRoute : typeof rootRoute
413
+ }
400
414
'/$libraryId/$version/docs/$' : {
401
415
id : '/$libraryId/$version/docs/$'
402
416
path : '/$'
@@ -624,6 +638,7 @@ export interface FileRoutesByFullPath {
624
638
'/$libraryId/$version/docs' : typeof LibraryIdVersionDocsRouteWithChildren
625
639
'/blog/$' : typeof LibrariesBlogSplatRoute
626
640
'/blog/' : typeof LibrariesBlogIndexRoute
641
+ '/stats/npm' : typeof StatsNpmIndexRoute
627
642
'/$libraryId/$version/docs/$' : typeof LibraryIdVersionDocsSplatRoute
628
643
'/$libraryId/$version/docs/' : typeof LibraryIdVersionDocsIndexRoute
629
644
'/config/$version' : typeof LibrariesConfigVersionIndexRoute
@@ -656,6 +671,7 @@ export interface FileRoutesByTo {
656
671
'/' : typeof LibrariesIndexRoute
657
672
'/blog/$' : typeof LibrariesBlogSplatRoute
658
673
'/blog' : typeof LibrariesBlogIndexRoute
674
+ '/stats/npm' : typeof StatsNpmIndexRoute
659
675
'/$libraryId/$version/docs/$' : typeof LibraryIdVersionDocsSplatRoute
660
676
'/$libraryId/$version/docs' : typeof LibraryIdVersionDocsIndexRoute
661
677
'/config/$version' : typeof LibrariesConfigVersionIndexRoute
@@ -693,6 +709,7 @@ export interface FileRoutesById {
693
709
'/$libraryId/$version/docs' : typeof LibraryIdVersionDocsRouteWithChildren
694
710
'/_libraries/blog/$' : typeof LibrariesBlogSplatRoute
695
711
'/_libraries/blog/' : typeof LibrariesBlogIndexRoute
712
+ '/stats/npm/' : typeof StatsNpmIndexRoute
696
713
'/$libraryId/$version/docs/$' : typeof LibraryIdVersionDocsSplatRoute
697
714
'/$libraryId/$version/docs/' : typeof LibraryIdVersionDocsIndexRoute
698
715
'/_libraries/config/$version/' : typeof LibrariesConfigVersionIndexRoute
@@ -731,6 +748,7 @@ export interface FileRouteTypes {
731
748
| '/$libraryId/$version/docs'
732
749
| '/blog/$'
733
750
| '/blog/'
751
+ | '/stats/npm'
734
752
| '/$libraryId/$version/docs/$'
735
753
| '/$libraryId/$version/docs/'
736
754
| '/config/$version'
@@ -762,6 +780,7 @@ export interface FileRouteTypes {
762
780
| '/'
763
781
| '/blog/$'
764
782
| '/blog'
783
+ | '/stats/npm'
765
784
| '/$libraryId/$version/docs/$'
766
785
| '/$libraryId/$version/docs'
767
786
| '/config/$version'
@@ -797,6 +816,7 @@ export interface FileRouteTypes {
797
816
| '/$libraryId/$version/docs'
798
817
| '/_libraries/blog/$'
799
818
| '/_libraries/blog/'
819
+ | '/stats/npm/'
800
820
| '/$libraryId/$version/docs/$'
801
821
| '/$libraryId/$version/docs/'
802
822
| '/_libraries/config/$version/'
@@ -821,6 +841,7 @@ export interface RootRouteChildren {
821
841
LoginRoute : typeof LoginRoute
822
842
MerchRoute : typeof MerchRoute
823
843
SponsorsEmbedRoute : typeof SponsorsEmbedRoute
844
+ StatsNpmIndexRoute : typeof StatsNpmIndexRoute
824
845
}
825
846
826
847
const rootRouteChildren : RootRouteChildren = {
@@ -830,6 +851,7 @@ const rootRouteChildren: RootRouteChildren = {
830
851
LoginRoute : LoginRoute ,
831
852
MerchRoute : MerchRoute ,
832
853
SponsorsEmbedRoute : SponsorsEmbedRoute ,
854
+ StatsNpmIndexRoute : StatsNpmIndexRoute ,
833
855
}
834
856
835
857
export const routeTree = rootRoute
@@ -847,7 +869,8 @@ export const routeTree = rootRoute
847
869
"/dashboard",
848
870
"/login",
849
871
"/merch",
850
- "/sponsors-embed"
872
+ "/sponsors-embed",
873
+ "/stats/npm/"
851
874
]
852
875
},
853
876
"/$libraryId": {
@@ -957,6 +980,9 @@ export const routeTree = rootRoute
957
980
"filePath": "_libraries/blog.index.tsx",
958
981
"parent": "/_libraries/blog"
959
982
},
983
+ "/stats/npm/": {
984
+ "filePath": "stats/npm/index.tsx"
985
+ },
960
986
"/$libraryId/$version/docs/$": {
961
987
"filePath": "$libraryId/$version.docs.$.tsx",
962
988
"parent": "/$libraryId/$version/docs"
0 commit comments