@@ -49,6 +49,7 @@ import { Route as LibrariesFeedIndexRouteImport } from './routes/_libraries/feed
4949import { Route as LibrariesBlogIndexRouteImport } from './routes/_libraries/blog.index'
5050import { Route as AuthProviderStartRouteImport } from './routes/auth/$provider/start'
5151import { Route as ApiGithubWebhookRouteImport } from './routes/api/github/webhook'
52+ import { Route as ApiGithubReleasesRouteImport } from './routes/api/github/releases'
5253import { Route as ApiAdminSyncRouteImport } from './routes/api/admin/sync'
5354import { Route as AdminRolesRoleIdRouteImport } from './routes/admin/roles.$roleId'
5455import { Route as AdminFeedIdRouteImport } from './routes/admin/feed.$id'
@@ -279,6 +280,11 @@ const ApiGithubWebhookRoute = ApiGithubWebhookRouteImport.update({
279280 path : '/api/github/webhook' ,
280281 getParentRoute : ( ) => rootRouteImport ,
281282} as any )
283+ const ApiGithubReleasesRoute = ApiGithubReleasesRouteImport . update ( {
284+ id : '/api/github/releases' ,
285+ path : '/api/github/releases' ,
286+ getParentRoute : ( ) => rootRouteImport ,
287+ } as any )
282288const ApiAdminSyncRoute = ApiAdminSyncRouteImport . update ( {
283289 id : '/api/admin/sync' ,
284290 path : '/api/admin/sync' ,
@@ -490,6 +496,7 @@ export interface FileRoutesByFullPath {
490496 '/admin/feed/$id' : typeof AdminFeedIdRoute
491497 '/admin/roles/$roleId' : typeof AdminRolesRoleIdRoute
492498 '/api/admin/sync' : typeof ApiAdminSyncRoute
499+ '/api/github/releases' : typeof ApiGithubReleasesRoute
493500 '/api/github/webhook' : typeof ApiGithubWebhookRoute
494501 '/auth/$provider/start' : typeof AuthProviderStartRoute
495502 '/blog/' : typeof LibrariesBlogIndexRoute
@@ -557,6 +564,7 @@ export interface FileRoutesByTo {
557564 '/admin/feed/$id' : typeof AdminFeedIdRoute
558565 '/admin/roles/$roleId' : typeof AdminRolesRoleIdRoute
559566 '/api/admin/sync' : typeof ApiAdminSyncRoute
567+ '/api/github/releases' : typeof ApiGithubReleasesRoute
560568 '/api/github/webhook' : typeof ApiGithubWebhookRoute
561569 '/auth/$provider/start' : typeof AuthProviderStartRoute
562570 '/blog' : typeof LibrariesBlogIndexRoute
@@ -630,6 +638,7 @@ export interface FileRoutesById {
630638 '/admin/feed/$id' : typeof AdminFeedIdRoute
631639 '/admin/roles/$roleId' : typeof AdminRolesRoleIdRoute
632640 '/api/admin/sync' : typeof ApiAdminSyncRoute
641+ '/api/github/releases' : typeof ApiGithubReleasesRoute
633642 '/api/github/webhook' : typeof ApiGithubWebhookRoute
634643 '/auth/$provider/start' : typeof AuthProviderStartRoute
635644 '/_libraries/blog/' : typeof LibrariesBlogIndexRoute
@@ -703,6 +712,7 @@ export interface FileRouteTypes {
703712 | '/admin/feed/$id'
704713 | '/admin/roles/$roleId'
705714 | '/api/admin/sync'
715+ | '/api/github/releases'
706716 | '/api/github/webhook'
707717 | '/auth/$provider/start'
708718 | '/blog/'
@@ -770,6 +780,7 @@ export interface FileRouteTypes {
770780 | '/admin/feed/$id'
771781 | '/admin/roles/$roleId'
772782 | '/api/admin/sync'
783+ | '/api/github/releases'
773784 | '/api/github/webhook'
774785 | '/auth/$provider/start'
775786 | '/blog'
@@ -842,6 +853,7 @@ export interface FileRouteTypes {
842853 | '/admin/feed/$id'
843854 | '/admin/roles/$roleId'
844855 | '/api/admin/sync'
856+ | '/api/github/releases'
845857 | '/api/github/webhook'
846858 | '/auth/$provider/start'
847859 | '/_libraries/blog/'
@@ -887,6 +899,7 @@ export interface RootRouteChildren {
887899 AuthSignoutRoute : typeof AuthSignoutRoute
888900 StatsIndexRoute : typeof StatsIndexRoute
889901 ApiAdminSyncRoute : typeof ApiAdminSyncRoute
902+ ApiGithubReleasesRoute : typeof ApiGithubReleasesRoute
890903 ApiGithubWebhookRoute : typeof ApiGithubWebhookRoute
891904 AuthProviderStartRoute : typeof AuthProviderStartRoute
892905 StatsNpmIndexRoute : typeof StatsNpmIndexRoute
@@ -1175,6 +1188,13 @@ declare module '@tanstack/react-router' {
11751188 preLoaderRoute : typeof ApiGithubWebhookRouteImport
11761189 parentRoute : typeof rootRouteImport
11771190 }
1191+ '/api/github/releases' : {
1192+ id : '/api/github/releases'
1193+ path : '/api/github/releases'
1194+ fullPath : '/api/github/releases'
1195+ preLoaderRoute : typeof ApiGithubReleasesRouteImport
1196+ parentRoute : typeof rootRouteImport
1197+ }
11781198 '/api/admin/sync' : {
11791199 id : '/api/admin/sync'
11801200 path : '/api/admin/sync'
@@ -1575,6 +1595,7 @@ const rootRouteChildren: RootRouteChildren = {
15751595 AuthSignoutRoute : AuthSignoutRoute ,
15761596 StatsIndexRoute : StatsIndexRoute ,
15771597 ApiAdminSyncRoute : ApiAdminSyncRoute ,
1598+ ApiGithubReleasesRoute : ApiGithubReleasesRoute ,
15781599 ApiGithubWebhookRoute : ApiGithubWebhookRoute ,
15791600 AuthProviderStartRoute : AuthProviderStartRoute ,
15801601 StatsNpmIndexRoute : StatsNpmIndexRoute ,
0 commit comments