📦 EqualifyEverything / equalify-v2-dashboard-mocks

📄 routeTree.gen.ts · 353 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353/* eslint-disable */

// @ts-nocheck

// noinspection JSUnusedGlobalSymbols

// This file was automatically generated by TanStack Router.
// You should NOT make any changes in this file as it will be overwritten.
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.

// Import Routes

import { Route as rootRoute } from './routes/__root'
import { Route as UpgradeImport } from './routes/upgrade'
import { Route as IndexImport } from './routes/index'
import { Route as PagesIndexImport } from './routes/pages/index'
import { Route as LogsIndexImport } from './routes/logs/index'
import { Route as AuditsIndexImport } from './routes/audits/index'
import { Route as AccountIndexImport } from './routes/account/index'
import { Route as PagesPageIdImport } from './routes/pages/$pageId'
import { Route as LogsLogIdImport } from './routes/logs/$logId'
import { Route as AuditsTestImport } from './routes/audits/test'
import { Route as AuditsAuditIdImport } from './routes/audits/$auditId'
import { Route as AuditsNewIndexImport } from './routes/audits/new/index'

// Create/Update Routes

const UpgradeRoute = UpgradeImport.update({
  id: '/upgrade',
  path: '/upgrade',
  getParentRoute: () => rootRoute,
} as any)

const IndexRoute = IndexImport.update({
  id: '/',
  path: '/',
  getParentRoute: () => rootRoute,
} as any)

const PagesIndexRoute = PagesIndexImport.update({
  id: '/pages/',
  path: '/pages/',
  getParentRoute: () => rootRoute,
} as any)

const LogsIndexRoute = LogsIndexImport.update({
  id: '/logs/',
  path: '/logs/',
  getParentRoute: () => rootRoute,
} as any)

const AuditsIndexRoute = AuditsIndexImport.update({
  id: '/audits/',
  path: '/audits/',
  getParentRoute: () => rootRoute,
} as any)

const AccountIndexRoute = AccountIndexImport.update({
  id: '/account/',
  path: '/account/',
  getParentRoute: () => rootRoute,
} as any)

const PagesPageIdRoute = PagesPageIdImport.update({
  id: '/pages/$pageId',
  path: '/pages/$pageId',
  getParentRoute: () => rootRoute,
} as any)

const LogsLogIdRoute = LogsLogIdImport.update({
  id: '/logs/$logId',
  path: '/logs/$logId',
  getParentRoute: () => rootRoute,
} as any)

const AuditsTestRoute = AuditsTestImport.update({
  id: '/audits/test',
  path: '/audits/test',
  getParentRoute: () => rootRoute,
} as any)

const AuditsAuditIdRoute = AuditsAuditIdImport.update({
  id: '/audits/$auditId',
  path: '/audits/$auditId',
  getParentRoute: () => rootRoute,
} as any)

const AuditsNewIndexRoute = AuditsNewIndexImport.update({
  id: '/audits/new/',
  path: '/audits/new/',
  getParentRoute: () => rootRoute,
} as any)

// Populate the FileRoutesByPath interface

declare module '@tanstack/react-router' {
  interface FileRoutesByPath {
    '/': {
      id: '/'
      path: '/'
      fullPath: '/'
      preLoaderRoute: typeof IndexImport
      parentRoute: typeof rootRoute
    }
    '/upgrade': {
      id: '/upgrade'
      path: '/upgrade'
      fullPath: '/upgrade'
      preLoaderRoute: typeof UpgradeImport
      parentRoute: typeof rootRoute
    }
    '/audits/$auditId': {
      id: '/audits/$auditId'
      path: '/audits/$auditId'
      fullPath: '/audits/$auditId'
      preLoaderRoute: typeof AuditsAuditIdImport
      parentRoute: typeof rootRoute
    }
    '/audits/test': {
      id: '/audits/test'
      path: '/audits/test'
      fullPath: '/audits/test'
      preLoaderRoute: typeof AuditsTestImport
      parentRoute: typeof rootRoute
    }
    '/logs/$logId': {
      id: '/logs/$logId'
      path: '/logs/$logId'
      fullPath: '/logs/$logId'
      preLoaderRoute: typeof LogsLogIdImport
      parentRoute: typeof rootRoute
    }
    '/pages/$pageId': {
      id: '/pages/$pageId'
      path: '/pages/$pageId'
      fullPath: '/pages/$pageId'
      preLoaderRoute: typeof PagesPageIdImport
      parentRoute: typeof rootRoute
    }
    '/account/': {
      id: '/account/'
      path: '/account'
      fullPath: '/account'
      preLoaderRoute: typeof AccountIndexImport
      parentRoute: typeof rootRoute
    }
    '/audits/': {
      id: '/audits/'
      path: '/audits'
      fullPath: '/audits'
      preLoaderRoute: typeof AuditsIndexImport
      parentRoute: typeof rootRoute
    }
    '/logs/': {
      id: '/logs/'
      path: '/logs'
      fullPath: '/logs'
      preLoaderRoute: typeof LogsIndexImport
      parentRoute: typeof rootRoute
    }
    '/pages/': {
      id: '/pages/'
      path: '/pages'
      fullPath: '/pages'
      preLoaderRoute: typeof PagesIndexImport
      parentRoute: typeof rootRoute
    }
    '/audits/new/': {
      id: '/audits/new/'
      path: '/audits/new'
      fullPath: '/audits/new'
      preLoaderRoute: typeof AuditsNewIndexImport
      parentRoute: typeof rootRoute
    }
  }
}

// Create and export the route tree

export interface FileRoutesByFullPath {
  '/': typeof IndexRoute
  '/upgrade': typeof UpgradeRoute
  '/audits/$auditId': typeof AuditsAuditIdRoute
  '/audits/test': typeof AuditsTestRoute
  '/logs/$logId': typeof LogsLogIdRoute
  '/pages/$pageId': typeof PagesPageIdRoute
  '/account': typeof AccountIndexRoute
  '/audits': typeof AuditsIndexRoute
  '/logs': typeof LogsIndexRoute
  '/pages': typeof PagesIndexRoute
  '/audits/new': typeof AuditsNewIndexRoute
}

export interface FileRoutesByTo {
  '/': typeof IndexRoute
  '/upgrade': typeof UpgradeRoute
  '/audits/$auditId': typeof AuditsAuditIdRoute
  '/audits/test': typeof AuditsTestRoute
  '/logs/$logId': typeof LogsLogIdRoute
  '/pages/$pageId': typeof PagesPageIdRoute
  '/account': typeof AccountIndexRoute
  '/audits': typeof AuditsIndexRoute
  '/logs': typeof LogsIndexRoute
  '/pages': typeof PagesIndexRoute
  '/audits/new': typeof AuditsNewIndexRoute
}

export interface FileRoutesById {
  __root__: typeof rootRoute
  '/': typeof IndexRoute
  '/upgrade': typeof UpgradeRoute
  '/audits/$auditId': typeof AuditsAuditIdRoute
  '/audits/test': typeof AuditsTestRoute
  '/logs/$logId': typeof LogsLogIdRoute
  '/pages/$pageId': typeof PagesPageIdRoute
  '/account/': typeof AccountIndexRoute
  '/audits/': typeof AuditsIndexRoute
  '/logs/': typeof LogsIndexRoute
  '/pages/': typeof PagesIndexRoute
  '/audits/new/': typeof AuditsNewIndexRoute
}

export interface FileRouteTypes {
  fileRoutesByFullPath: FileRoutesByFullPath
  fullPaths:
    | '/'
    | '/upgrade'
    | '/audits/$auditId'
    | '/audits/test'
    | '/logs/$logId'
    | '/pages/$pageId'
    | '/account'
    | '/audits'
    | '/logs'
    | '/pages'
    | '/audits/new'
  fileRoutesByTo: FileRoutesByTo
  to:
    | '/'
    | '/upgrade'
    | '/audits/$auditId'
    | '/audits/test'
    | '/logs/$logId'
    | '/pages/$pageId'
    | '/account'
    | '/audits'
    | '/logs'
    | '/pages'
    | '/audits/new'
  id:
    | '__root__'
    | '/'
    | '/upgrade'
    | '/audits/$auditId'
    | '/audits/test'
    | '/logs/$logId'
    | '/pages/$pageId'
    | '/account/'
    | '/audits/'
    | '/logs/'
    | '/pages/'
    | '/audits/new/'
  fileRoutesById: FileRoutesById
}

export interface RootRouteChildren {
  IndexRoute: typeof IndexRoute
  UpgradeRoute: typeof UpgradeRoute
  AuditsAuditIdRoute: typeof AuditsAuditIdRoute
  AuditsTestRoute: typeof AuditsTestRoute
  LogsLogIdRoute: typeof LogsLogIdRoute
  PagesPageIdRoute: typeof PagesPageIdRoute
  AccountIndexRoute: typeof AccountIndexRoute
  AuditsIndexRoute: typeof AuditsIndexRoute
  LogsIndexRoute: typeof LogsIndexRoute
  PagesIndexRoute: typeof PagesIndexRoute
  AuditsNewIndexRoute: typeof AuditsNewIndexRoute
}

const rootRouteChildren: RootRouteChildren = {
  IndexRoute: IndexRoute,
  UpgradeRoute: UpgradeRoute,
  AuditsAuditIdRoute: AuditsAuditIdRoute,
  AuditsTestRoute: AuditsTestRoute,
  LogsLogIdRoute: LogsLogIdRoute,
  PagesPageIdRoute: PagesPageIdRoute,
  AccountIndexRoute: AccountIndexRoute,
  AuditsIndexRoute: AuditsIndexRoute,
  LogsIndexRoute: LogsIndexRoute,
  PagesIndexRoute: PagesIndexRoute,
  AuditsNewIndexRoute: AuditsNewIndexRoute,
}

export const routeTree = rootRoute
  ._addFileChildren(rootRouteChildren)
  ._addFileTypes<FileRouteTypes>()

/* ROUTE_MANIFEST_START
{
  "routes": {
    "__root__": {
      "filePath": "__root.tsx",
      "children": [
        "/",
        "/upgrade",
        "/audits/$auditId",
        "/audits/test",
        "/logs/$logId",
        "/pages/$pageId",
        "/account/",
        "/audits/",
        "/logs/",
        "/pages/",
        "/audits/new/"
      ]
    },
    "/": {
      "filePath": "index.tsx"
    },
    "/upgrade": {
      "filePath": "upgrade.tsx"
    },
    "/audits/$auditId": {
      "filePath": "audits/$auditId.tsx"
    },
    "/audits/test": {
      "filePath": "audits/test.tsx"
    },
    "/logs/$logId": {
      "filePath": "logs/$logId.tsx"
    },
    "/pages/$pageId": {
      "filePath": "pages/$pageId.tsx"
    },
    "/account/": {
      "filePath": "account/index.tsx"
    },
    "/audits/": {
      "filePath": "audits/index.tsx"
    },
    "/logs/": {
      "filePath": "logs/index.tsx"
    },
    "/pages/": {
      "filePath": "pages/index.tsx"
    },
    "/audits/new/": {
      "filePath": "audits/new/index.tsx"
    }
  }
}
ROUTE_MANIFEST_END */