Skip to content

Commit a41d9d6

Browse files
committed
chore(juno): bring back routeTree.gen.ts
1 parent d86a0c3 commit a41d9d6

5 files changed

Lines changed: 428 additions & 3 deletions

File tree

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,3 @@ vite.config.*.timestamp-*
2020
.env
2121
act_*.json
2222
.secret
23-
# Ignore generated route tree files in all apps
24-
# as it will auto generate on build or starting an application
25-
**/routeTree.gen.ts

apps/doop/src/routeTree.gen.ts

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
/* eslint-disable */
2+
3+
// @ts-nocheck
4+
5+
// noinspection JSUnusedGlobalSymbols
6+
7+
// This file was automatically generated by TanStack Router.
8+
// You should NOT make any changes in this file as it will be overwritten.
9+
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
10+
11+
import { Route as rootRouteImport } from './routes/__root'
12+
import { Route as ViolationsRouteImport } from './routes/violations'
13+
import { Route as IndexRouteImport } from './routes/index'
14+
15+
const ViolationsRoute = ViolationsRouteImport.update({
16+
id: '/violations',
17+
path: '/violations',
18+
getParentRoute: () => rootRouteImport,
19+
} as any)
20+
const IndexRoute = IndexRouteImport.update({
21+
id: '/',
22+
path: '/',
23+
getParentRoute: () => rootRouteImport,
24+
} as any)
25+
26+
export interface FileRoutesByFullPath {
27+
'/': typeof IndexRoute
28+
'/violations': typeof ViolationsRoute
29+
}
30+
export interface FileRoutesByTo {
31+
'/': typeof IndexRoute
32+
'/violations': typeof ViolationsRoute
33+
}
34+
export interface FileRoutesById {
35+
__root__: typeof rootRouteImport
36+
'/': typeof IndexRoute
37+
'/violations': typeof ViolationsRoute
38+
}
39+
export interface FileRouteTypes {
40+
fileRoutesByFullPath: FileRoutesByFullPath
41+
fullPaths: '/' | '/violations'
42+
fileRoutesByTo: FileRoutesByTo
43+
to: '/' | '/violations'
44+
id: '__root__' | '/' | '/violations'
45+
fileRoutesById: FileRoutesById
46+
}
47+
export interface RootRouteChildren {
48+
IndexRoute: typeof IndexRoute
49+
ViolationsRoute: typeof ViolationsRoute
50+
}
51+
52+
declare module '@tanstack/react-router' {
53+
interface FileRoutesByPath {
54+
'/violations': {
55+
id: '/violations'
56+
path: '/violations'
57+
fullPath: '/violations'
58+
preLoaderRoute: typeof ViolationsRouteImport
59+
parentRoute: typeof rootRouteImport
60+
}
61+
'/': {
62+
id: '/'
63+
path: '/'
64+
fullPath: '/'
65+
preLoaderRoute: typeof IndexRouteImport
66+
parentRoute: typeof rootRouteImport
67+
}
68+
}
69+
}
70+
71+
const rootRouteChildren: RootRouteChildren = {
72+
IndexRoute: IndexRoute,
73+
ViolationsRoute: ViolationsRoute,
74+
}
75+
export const routeTree = rootRouteImport
76+
._addFileChildren(rootRouteChildren)
77+
._addFileTypes<FileRouteTypes>()
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
/* eslint-disable */
2+
3+
// @ts-nocheck
4+
5+
// noinspection JSUnusedGlobalSymbols
6+
7+
// This file was automatically generated by TanStack Router.
8+
// You should NOT make any changes in this file as it will be overwritten.
9+
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
10+
11+
import { Route as rootRouteImport } from './routes/__root'
12+
import { Route as IndexRouteImport } from './routes/index'
13+
import { Route as ExtensionIdSplatRouteImport } from './routes/$extensionId.$'
14+
15+
const IndexRoute = IndexRouteImport.update({
16+
id: '/',
17+
path: '/',
18+
getParentRoute: () => rootRouteImport,
19+
} as any)
20+
const ExtensionIdSplatRoute = ExtensionIdSplatRouteImport.update({
21+
id: '/$extensionId/$',
22+
path: '/$extensionId/$',
23+
getParentRoute: () => rootRouteImport,
24+
} as any)
25+
26+
export interface FileRoutesByFullPath {
27+
'/': typeof IndexRoute
28+
'/$extensionId/$': typeof ExtensionIdSplatRoute
29+
}
30+
export interface FileRoutesByTo {
31+
'/': typeof IndexRoute
32+
'/$extensionId/$': typeof ExtensionIdSplatRoute
33+
}
34+
export interface FileRoutesById {
35+
__root__: typeof rootRouteImport
36+
'/': typeof IndexRoute
37+
'/$extensionId/$': typeof ExtensionIdSplatRoute
38+
}
39+
export interface FileRouteTypes {
40+
fileRoutesByFullPath: FileRoutesByFullPath
41+
fullPaths: '/' | '/$extensionId/$'
42+
fileRoutesByTo: FileRoutesByTo
43+
to: '/' | '/$extensionId/$'
44+
id: '__root__' | '/' | '/$extensionId/$'
45+
fileRoutesById: FileRoutesById
46+
}
47+
export interface RootRouteChildren {
48+
IndexRoute: typeof IndexRoute
49+
ExtensionIdSplatRoute: typeof ExtensionIdSplatRoute
50+
}
51+
52+
declare module '@tanstack/react-router' {
53+
interface FileRoutesByPath {
54+
'/': {
55+
id: '/'
56+
path: '/'
57+
fullPath: '/'
58+
preLoaderRoute: typeof IndexRouteImport
59+
parentRoute: typeof rootRouteImport
60+
}
61+
'/$extensionId/$': {
62+
id: '/$extensionId/$'
63+
path: '/$extensionId/$'
64+
fullPath: '/$extensionId/$'
65+
preLoaderRoute: typeof ExtensionIdSplatRouteImport
66+
parentRoute: typeof rootRouteImport
67+
}
68+
}
69+
}
70+
71+
const rootRouteChildren: RootRouteChildren = {
72+
IndexRoute: IndexRoute,
73+
ExtensionIdSplatRoute: ExtensionIdSplatRoute,
74+
}
75+
export const routeTree = rootRouteImport
76+
._addFileChildren(rootRouteChildren)
77+
._addFileTypes<FileRouteTypes>()

apps/heureka/src/routeTree.gen.ts

Lines changed: 179 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
/* eslint-disable */
2+
3+
// @ts-nocheck
4+
5+
// noinspection JSUnusedGlobalSymbols
6+
7+
// This file was automatically generated by TanStack Router.
8+
// You should NOT make any changes in this file as it will be overwritten.
9+
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
10+
11+
import { Route as rootRouteImport } from './routes/__root'
12+
import { Route as VulnerabilitiesRouteRouteImport } from './routes/vulnerabilities/route'
13+
import { Route as ServicesRouteRouteImport } from './routes/services/route'
14+
import { Route as IndexRouteImport } from './routes/index'
15+
import { Route as VulnerabilitiesIndexRouteImport } from './routes/vulnerabilities/index'
16+
import { Route as ServicesIndexRouteImport } from './routes/services/index'
17+
import { Route as ServicesServiceRouteImport } from './routes/services/$service'
18+
19+
const VulnerabilitiesRouteRoute = VulnerabilitiesRouteRouteImport.update({
20+
id: '/vulnerabilities',
21+
path: '/vulnerabilities',
22+
getParentRoute: () => rootRouteImport,
23+
} as any)
24+
const ServicesRouteRoute = ServicesRouteRouteImport.update({
25+
id: '/services',
26+
path: '/services',
27+
getParentRoute: () => rootRouteImport,
28+
} as any)
29+
const IndexRoute = IndexRouteImport.update({
30+
id: '/',
31+
path: '/',
32+
getParentRoute: () => rootRouteImport,
33+
} as any)
34+
const VulnerabilitiesIndexRoute = VulnerabilitiesIndexRouteImport.update({
35+
id: '/',
36+
path: '/',
37+
getParentRoute: () => VulnerabilitiesRouteRoute,
38+
} as any)
39+
const ServicesIndexRoute = ServicesIndexRouteImport.update({
40+
id: '/',
41+
path: '/',
42+
getParentRoute: () => ServicesRouteRoute,
43+
} as any)
44+
const ServicesServiceRoute = ServicesServiceRouteImport.update({
45+
id: '/$service',
46+
path: '/$service',
47+
getParentRoute: () => ServicesRouteRoute,
48+
} as any)
49+
50+
export interface FileRoutesByFullPath {
51+
'/': typeof IndexRoute
52+
'/services': typeof ServicesRouteRouteWithChildren
53+
'/vulnerabilities': typeof VulnerabilitiesRouteRouteWithChildren
54+
'/services/$service': typeof ServicesServiceRoute
55+
'/services/': typeof ServicesIndexRoute
56+
'/vulnerabilities/': typeof VulnerabilitiesIndexRoute
57+
}
58+
export interface FileRoutesByTo {
59+
'/': typeof IndexRoute
60+
'/services/$service': typeof ServicesServiceRoute
61+
'/services': typeof ServicesIndexRoute
62+
'/vulnerabilities': typeof VulnerabilitiesIndexRoute
63+
}
64+
export interface FileRoutesById {
65+
__root__: typeof rootRouteImport
66+
'/': typeof IndexRoute
67+
'/services': typeof ServicesRouteRouteWithChildren
68+
'/vulnerabilities': typeof VulnerabilitiesRouteRouteWithChildren
69+
'/services/$service': typeof ServicesServiceRoute
70+
'/services/': typeof ServicesIndexRoute
71+
'/vulnerabilities/': typeof VulnerabilitiesIndexRoute
72+
}
73+
export interface FileRouteTypes {
74+
fileRoutesByFullPath: FileRoutesByFullPath
75+
fullPaths:
76+
| '/'
77+
| '/services'
78+
| '/vulnerabilities'
79+
| '/services/$service'
80+
| '/services/'
81+
| '/vulnerabilities/'
82+
fileRoutesByTo: FileRoutesByTo
83+
to: '/' | '/services/$service' | '/services' | '/vulnerabilities'
84+
id:
85+
| '__root__'
86+
| '/'
87+
| '/services'
88+
| '/vulnerabilities'
89+
| '/services/$service'
90+
| '/services/'
91+
| '/vulnerabilities/'
92+
fileRoutesById: FileRoutesById
93+
}
94+
export interface RootRouteChildren {
95+
IndexRoute: typeof IndexRoute
96+
ServicesRouteRoute: typeof ServicesRouteRouteWithChildren
97+
VulnerabilitiesRouteRoute: typeof VulnerabilitiesRouteRouteWithChildren
98+
}
99+
100+
declare module '@tanstack/react-router' {
101+
interface FileRoutesByPath {
102+
'/vulnerabilities': {
103+
id: '/vulnerabilities'
104+
path: '/vulnerabilities'
105+
fullPath: '/vulnerabilities'
106+
preLoaderRoute: typeof VulnerabilitiesRouteRouteImport
107+
parentRoute: typeof rootRouteImport
108+
}
109+
'/services': {
110+
id: '/services'
111+
path: '/services'
112+
fullPath: '/services'
113+
preLoaderRoute: typeof ServicesRouteRouteImport
114+
parentRoute: typeof rootRouteImport
115+
}
116+
'/': {
117+
id: '/'
118+
path: '/'
119+
fullPath: '/'
120+
preLoaderRoute: typeof IndexRouteImport
121+
parentRoute: typeof rootRouteImport
122+
}
123+
'/vulnerabilities/': {
124+
id: '/vulnerabilities/'
125+
path: '/'
126+
fullPath: '/vulnerabilities/'
127+
preLoaderRoute: typeof VulnerabilitiesIndexRouteImport
128+
parentRoute: typeof VulnerabilitiesRouteRoute
129+
}
130+
'/services/': {
131+
id: '/services/'
132+
path: '/'
133+
fullPath: '/services/'
134+
preLoaderRoute: typeof ServicesIndexRouteImport
135+
parentRoute: typeof ServicesRouteRoute
136+
}
137+
'/services/$service': {
138+
id: '/services/$service'
139+
path: '/$service'
140+
fullPath: '/services/$service'
141+
preLoaderRoute: typeof ServicesServiceRouteImport
142+
parentRoute: typeof ServicesRouteRoute
143+
}
144+
}
145+
}
146+
147+
interface ServicesRouteRouteChildren {
148+
ServicesServiceRoute: typeof ServicesServiceRoute
149+
ServicesIndexRoute: typeof ServicesIndexRoute
150+
}
151+
152+
const ServicesRouteRouteChildren: ServicesRouteRouteChildren = {
153+
ServicesServiceRoute: ServicesServiceRoute,
154+
ServicesIndexRoute: ServicesIndexRoute,
155+
}
156+
157+
const ServicesRouteRouteWithChildren = ServicesRouteRoute._addFileChildren(
158+
ServicesRouteRouteChildren,
159+
)
160+
161+
interface VulnerabilitiesRouteRouteChildren {
162+
VulnerabilitiesIndexRoute: typeof VulnerabilitiesIndexRoute
163+
}
164+
165+
const VulnerabilitiesRouteRouteChildren: VulnerabilitiesRouteRouteChildren = {
166+
VulnerabilitiesIndexRoute: VulnerabilitiesIndexRoute,
167+
}
168+
169+
const VulnerabilitiesRouteRouteWithChildren =
170+
VulnerabilitiesRouteRoute._addFileChildren(VulnerabilitiesRouteRouteChildren)
171+
172+
const rootRouteChildren: RootRouteChildren = {
173+
IndexRoute: IndexRoute,
174+
ServicesRouteRoute: ServicesRouteRouteWithChildren,
175+
VulnerabilitiesRouteRoute: VulnerabilitiesRouteRouteWithChildren,
176+
}
177+
export const routeTree = rootRouteImport
178+
._addFileChildren(rootRouteChildren)
179+
._addFileTypes<FileRouteTypes>()

0 commit comments

Comments
 (0)