@@ -12,6 +12,8 @@ import { Route as rootRouteImport } from './routes/__root'
1212import { Route as LogoutRouteImport } from './routes/logout'
1313import { Route as AuthenticatedRouteImport } from './routes/_authenticated'
1414import { Route as IndexRouteImport } from './routes/index'
15+ import { Route as TfeSplatRouteImport } from './routes/tfe/$'
16+ import { Route as WellKnownTerraform_jsonRouteImport } from './routes/_well-known.terraform_json'
1517import { Route as OrchestratorJob_artefactsRouteImport } from './routes/_orchestrator/job_artefacts'
1618import { Route as AuthenticatedDashboardRouteImport } from './routes/_authenticated/_dashboard'
1719import { Route as OrchestratorGithubWebhookRouteImport } from './routes/orchestrator/github/webhook'
@@ -54,6 +56,16 @@ const IndexRoute = IndexRouteImport.update({
5456 path : '/' ,
5557 getParentRoute : ( ) => rootRouteImport ,
5658} as any )
59+ const TfeSplatRoute = TfeSplatRouteImport . update ( {
60+ id : '/tfe/$' ,
61+ path : '/tfe/$' ,
62+ getParentRoute : ( ) => rootRouteImport ,
63+ } as any )
64+ const WellKnownTerraform_jsonRoute = WellKnownTerraform_jsonRouteImport . update ( {
65+ id : '/_well-known/terraform_json' ,
66+ path : '/terraform_json' ,
67+ getParentRoute : ( ) => rootRouteImport ,
68+ } as any )
5769const OrchestratorJob_artefactsRoute =
5870 OrchestratorJob_artefactsRouteImport . update ( {
5971 id : '/_orchestrator/job_artefacts' ,
@@ -218,6 +230,8 @@ export interface FileRoutesByFullPath {
218230 '/' : typeof IndexRoute
219231 '/logout' : typeof LogoutRoute
220232 '/job_artefacts' : typeof OrchestratorJob_artefactsRoute
233+ '/terraform_json' : typeof WellKnownTerraform_jsonRoute
234+ '/tfe/$' : typeof TfeSplatRoute
221235 '/api/auth/callback' : typeof ApiAuthCallbackRoute
222236 '/orchestrator/github/callback' : typeof OrchestratorGithubCallbackRoute
223237 '/orchestrator/github/webhook' : typeof OrchestratorGithubWebhookRoute
@@ -248,6 +262,8 @@ export interface FileRoutesByTo {
248262 '/' : typeof IndexRoute
249263 '/logout' : typeof LogoutRoute
250264 '/job_artefacts' : typeof OrchestratorJob_artefactsRoute
265+ '/terraform_json' : typeof WellKnownTerraform_jsonRoute
266+ '/tfe/$' : typeof TfeSplatRoute
251267 '/api/auth/callback' : typeof ApiAuthCallbackRoute
252268 '/orchestrator/github/callback' : typeof OrchestratorGithubCallbackRoute
253269 '/orchestrator/github/webhook' : typeof OrchestratorGithubWebhookRoute
@@ -279,6 +295,8 @@ export interface FileRoutesById {
279295 '/logout' : typeof LogoutRoute
280296 '/_authenticated/_dashboard' : typeof AuthenticatedDashboardRouteWithChildren
281297 '/_orchestrator/job_artefacts' : typeof OrchestratorJob_artefactsRoute
298+ '/_well-known/terraform_json' : typeof WellKnownTerraform_jsonRoute
299+ '/tfe/$' : typeof TfeSplatRoute
282300 '/api/auth/callback' : typeof ApiAuthCallbackRoute
283301 '/orchestrator/github/callback' : typeof OrchestratorGithubCallbackRoute
284302 '/orchestrator/github/webhook' : typeof OrchestratorGithubWebhookRoute
@@ -311,6 +329,8 @@ export interface FileRouteTypes {
311329 | '/'
312330 | '/logout'
313331 | '/job_artefacts'
332+ | '/terraform_json'
333+ | '/tfe/$'
314334 | '/api/auth/callback'
315335 | '/orchestrator/github/callback'
316336 | '/orchestrator/github/webhook'
@@ -341,6 +361,8 @@ export interface FileRouteTypes {
341361 | '/'
342362 | '/logout'
343363 | '/job_artefacts'
364+ | '/terraform_json'
365+ | '/tfe/$'
344366 | '/api/auth/callback'
345367 | '/orchestrator/github/callback'
346368 | '/orchestrator/github/webhook'
@@ -371,6 +393,8 @@ export interface FileRouteTypes {
371393 | '/logout'
372394 | '/_authenticated/_dashboard'
373395 | '/_orchestrator/job_artefacts'
396+ | '/_well-known/terraform_json'
397+ | '/tfe/$'
374398 | '/api/auth/callback'
375399 | '/orchestrator/github/callback'
376400 | '/orchestrator/github/webhook'
@@ -403,6 +427,8 @@ export interface RootRouteChildren {
403427 AuthenticatedRoute : typeof AuthenticatedRouteWithChildren
404428 LogoutRoute : typeof LogoutRoute
405429 OrchestratorJob_artefactsRoute : typeof OrchestratorJob_artefactsRoute
430+ WellKnownTerraform_jsonRoute : typeof WellKnownTerraform_jsonRoute
431+ TfeSplatRoute : typeof TfeSplatRoute
406432 ApiAuthCallbackRoute : typeof ApiAuthCallbackRoute
407433 OrchestratorGithubCallbackRoute : typeof OrchestratorGithubCallbackRoute
408434 OrchestratorGithubWebhookRoute : typeof OrchestratorGithubWebhookRoute
@@ -439,6 +465,20 @@ declare module '@tanstack/react-router' {
439465 preLoaderRoute : typeof IndexRouteImport
440466 parentRoute : typeof rootRouteImport
441467 }
468+ '/tfe/$' : {
469+ id : '/tfe/$'
470+ path : '/tfe/$'
471+ fullPath : '/tfe/$'
472+ preLoaderRoute : typeof TfeSplatRouteImport
473+ parentRoute : typeof rootRouteImport
474+ }
475+ '/_well-known/terraform_json' : {
476+ id : '/_well-known/terraform_json'
477+ path : '/terraform_json'
478+ fullPath : '/terraform_json'
479+ preLoaderRoute : typeof WellKnownTerraform_jsonRouteImport
480+ parentRoute : typeof rootRouteImport
481+ }
442482 '/_orchestrator/job_artefacts' : {
443483 id : '/_orchestrator/job_artefacts'
444484 path : '/job_artefacts'
@@ -738,6 +778,8 @@ const rootRouteChildren: RootRouteChildren = {
738778 AuthenticatedRoute : AuthenticatedRouteWithChildren ,
739779 LogoutRoute : LogoutRoute ,
740780 OrchestratorJob_artefactsRoute : OrchestratorJob_artefactsRoute ,
781+ WellKnownTerraform_jsonRoute : WellKnownTerraform_jsonRoute ,
782+ TfeSplatRoute : TfeSplatRoute ,
741783 ApiAuthCallbackRoute : ApiAuthCallbackRoute ,
742784 OrchestratorGithubCallbackRoute : OrchestratorGithubCallbackRoute ,
743785 OrchestratorGithubWebhookRoute : OrchestratorGithubWebhookRoute ,
0 commit comments