feat(frontend): migrated old > new silo adjustments

moved the apps around so we can use 1 url for cors bs
This commit is contained in:
2025-10-25 17:22:51 -05:00
parent d46ef922f3
commit 425f8f5f71
179 changed files with 7511 additions and 2724 deletions

View File

@@ -11,199 +11,251 @@
import { createFileRoute } from '@tanstack/react-router'
import { Route as rootRouteImport } from './routes/__root'
import { Route as AdminLayoutRouteRouteImport } from './routes/_adminLayout/route'
import { Route as IndexRouteImport } from './routes/index'
import { Route as authLoginRouteImport } from './routes/(auth)/login'
import { Route as mobileStuffMobileLayoutRouteRouteImport } from './routes/(mobileStuff)/_mobileLayout/route'
import { Route as authUserIndexRouteImport } from './routes/(auth)/user/index'
import { Route as AdminLayoutAdminSettingsRouteImport } from './routes/_adminLayout/admin/settings'
import { Route as AdminLayoutAdminServersRouteImport } from './routes/_adminLayout/admin/servers'
import { Route as logisticsLogisticsDeliveryScheduleRouteImport } from './routes/(logistics)/logistics/deliverySchedule'
import { Route as authUserSignupRouteImport } from './routes/(auth)/user/signup'
import { Route as authUserResetpasswordRouteImport } from './routes/(auth)/user/resetpassword'
import { Route as authUserProfileRouteImport } from './routes/(auth)/user/profile'
import { Route as AdminLayoutAdminUsersRouteRouteImport } from './routes/_adminLayout/admin/_users/route'
import { Route as mobileStuffMobileLayoutMIndexRouteImport } from './routes/(mobileStuff)/_mobileLayout/m/index'
import { Route as AdminLayoutAdminUsersUsersRouteImport } from './routes/_adminLayout/admin/_users/users'
import { Route as AdminLayoutAdminUsersProdUsersRouteImport } from './routes/_adminLayout/admin/_users/prodUsers'
import { Route as mobileStuffMobileLayoutMRelocateRouteImport } from './routes/(mobileStuff)/_mobileLayout/m/relocate'
import { Route as mobileStuffMobileLayoutMDeliveryRouteImport } from './routes/(mobileStuff)/_mobileLayout/m/delivery'
import { Route as mobileStuffMobileLayoutMCyclecountsRouteImport } from './routes/(mobileStuff)/_mobileLayout/m/cyclecounts'
import { Route as AppRouteRouteImport } from './routes/_app/route'
import { Route as AppIndexRouteImport } from './routes/_app/index'
import { Route as OldOldRouteRouteImport } from './routes/_old/old/route'
import { Route as MobileMobileLayoutRouteRouteImport } from './routes/_mobile/_mobileLayout/route'
import { Route as AppAdminLayoutRouteRouteImport } from './routes/_app/_adminLayout/route'
import { Route as OldOldIndexRouteImport } from './routes/_old/old/index'
import { Route as AppauthLoginRouteImport } from './routes/_app/(auth)/login'
import { Route as MobileMobileLayoutMIndexRouteImport } from './routes/_mobile/_mobileLayout/m/index'
import { Route as AppauthUserIndexRouteImport } from './routes/_app/(auth)/user/index'
import { Route as MobileMobileLayoutMRelocateRouteImport } from './routes/_mobile/_mobileLayout/m/relocate'
import { Route as MobileMobileLayoutMDeliveryRouteImport } from './routes/_mobile/_mobileLayout/m/delivery'
import { Route as MobileMobileLayoutMCyclecountsRouteImport } from './routes/_mobile/_mobileLayout/m/cyclecounts'
import { Route as AppAdminLayoutAdminSettingsRouteImport } from './routes/_app/_adminLayout/admin/settings'
import { Route as AppAdminLayoutAdminServersRouteImport } from './routes/_app/_adminLayout/admin/servers'
import { Route as ApplogisticsLogisticsDeliveryScheduleRouteImport } from './routes/_app/(logistics)/logistics/deliverySchedule'
import { Route as AppauthUserSignupRouteImport } from './routes/_app/(auth)/user/signup'
import { Route as AppauthUserResetpasswordRouteImport } from './routes/_app/(auth)/user/resetpassword'
import { Route as AppauthUserProfileRouteImport } from './routes/_app/(auth)/user/profile'
import { Route as AppAdminLayoutAdminUsersRouteRouteImport } from './routes/_app/_adminLayout/admin/_users/route'
import { Route as OldOldlogisticsSiloAdjustmentsIndexRouteImport } from './routes/_old/old/(logistics)/siloAdjustments/index'
import { Route as OldOldlogisticsSiloAdjustmentsHistRouteImport } from './routes/_old/old/(logistics)/siloAdjustments/$hist'
import { Route as AppAdminLayoutAdminUsersUsersRouteImport } from './routes/_app/_adminLayout/admin/_users/users'
import { Route as AppAdminLayoutAdminUsersProdUsersRouteImport } from './routes/_app/_adminLayout/admin/_users/prodUsers'
import { Route as OldOldlogisticsSiloAdjustmentsCommentCommentRouteImport } from './routes/_old/old/(logistics)/siloAdjustments/comment/$comment'
const mobileStuffRouteImport = createFileRoute('/(mobileStuff)')()
const AdminLayoutAdminRouteImport = createFileRoute('/_adminLayout/admin')()
const AppAdminLayoutAdminRouteImport = createFileRoute(
'/_app/_adminLayout/admin',
)()
const mobileStuffRoute = mobileStuffRouteImport.update({
id: '/(mobileStuff)',
const AppRouteRoute = AppRouteRouteImport.update({
id: '/_app',
getParentRoute: () => rootRouteImport,
} as any)
const AdminLayoutRouteRoute = AdminLayoutRouteRouteImport.update({
id: '/_adminLayout',
getParentRoute: () => rootRouteImport,
} as any)
const IndexRoute = IndexRouteImport.update({
const AppIndexRoute = AppIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => AppRouteRoute,
} as any)
const OldOldRouteRoute = OldOldRouteRouteImport.update({
id: '/_old/old',
path: '/old',
getParentRoute: () => rootRouteImport,
} as any)
const AdminLayoutAdminRoute = AdminLayoutAdminRouteImport.update({
const MobileMobileLayoutRouteRoute = MobileMobileLayoutRouteRouteImport.update({
id: '/_mobile/_mobileLayout',
getParentRoute: () => rootRouteImport,
} as any)
const AppAdminLayoutRouteRoute = AppAdminLayoutRouteRouteImport.update({
id: '/_adminLayout',
getParentRoute: () => AppRouteRoute,
} as any)
const AppAdminLayoutAdminRoute = AppAdminLayoutAdminRouteImport.update({
id: '/admin',
path: '/admin',
getParentRoute: () => AdminLayoutRouteRoute,
getParentRoute: () => AppAdminLayoutRouteRoute,
} as any)
const authLoginRoute = authLoginRouteImport.update({
const OldOldIndexRoute = OldOldIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => OldOldRouteRoute,
} as any)
const AppauthLoginRoute = AppauthLoginRouteImport.update({
id: '/(auth)/login',
path: '/login',
getParentRoute: () => rootRouteImport,
getParentRoute: () => AppRouteRoute,
} as any)
const mobileStuffMobileLayoutRouteRoute =
mobileStuffMobileLayoutRouteRouteImport.update({
id: '/_mobileLayout',
getParentRoute: () => mobileStuffRoute,
} as any)
const authUserIndexRoute = authUserIndexRouteImport.update({
id: '/(auth)/user/',
path: '/user/',
getParentRoute: () => rootRouteImport,
} as any)
const AdminLayoutAdminSettingsRoute =
AdminLayoutAdminSettingsRouteImport.update({
id: '/settings',
path: '/settings',
getParentRoute: () => AdminLayoutAdminRoute,
} as any)
const AdminLayoutAdminServersRoute = AdminLayoutAdminServersRouteImport.update({
id: '/servers',
path: '/servers',
getParentRoute: () => AdminLayoutAdminRoute,
} as any)
const logisticsLogisticsDeliveryScheduleRoute =
logisticsLogisticsDeliveryScheduleRouteImport.update({
id: '/(logistics)/logistics/deliverySchedule',
path: '/logistics/deliverySchedule',
getParentRoute: () => rootRouteImport,
} as any)
const authUserSignupRoute = authUserSignupRouteImport.update({
id: '/(auth)/user/signup',
path: '/user/signup',
getParentRoute: () => rootRouteImport,
} as any)
const authUserResetpasswordRoute = authUserResetpasswordRouteImport.update({
id: '/(auth)/user/resetpassword',
path: '/user/resetpassword',
getParentRoute: () => rootRouteImport,
} as any)
const authUserProfileRoute = authUserProfileRouteImport.update({
id: '/(auth)/user/profile',
path: '/user/profile',
getParentRoute: () => rootRouteImport,
} as any)
const AdminLayoutAdminUsersRouteRoute =
AdminLayoutAdminUsersRouteRouteImport.update({
id: '/_users',
getParentRoute: () => AdminLayoutAdminRoute,
} as any)
const mobileStuffMobileLayoutMIndexRoute =
mobileStuffMobileLayoutMIndexRouteImport.update({
const MobileMobileLayoutMIndexRoute =
MobileMobileLayoutMIndexRouteImport.update({
id: '/m/',
path: '/m/',
getParentRoute: () => mobileStuffMobileLayoutRouteRoute,
getParentRoute: () => MobileMobileLayoutRouteRoute,
} as any)
const AdminLayoutAdminUsersUsersRoute =
AdminLayoutAdminUsersUsersRouteImport.update({
id: '/users',
path: '/users',
getParentRoute: () => AdminLayoutAdminUsersRouteRoute,
} as any)
const AdminLayoutAdminUsersProdUsersRoute =
AdminLayoutAdminUsersProdUsersRouteImport.update({
id: '/prodUsers',
path: '/prodUsers',
getParentRoute: () => AdminLayoutAdminUsersRouteRoute,
} as any)
const mobileStuffMobileLayoutMRelocateRoute =
mobileStuffMobileLayoutMRelocateRouteImport.update({
const AppauthUserIndexRoute = AppauthUserIndexRouteImport.update({
id: '/(auth)/user/',
path: '/user/',
getParentRoute: () => AppRouteRoute,
} as any)
const MobileMobileLayoutMRelocateRoute =
MobileMobileLayoutMRelocateRouteImport.update({
id: '/m/relocate',
path: '/m/relocate',
getParentRoute: () => mobileStuffMobileLayoutRouteRoute,
getParentRoute: () => MobileMobileLayoutRouteRoute,
} as any)
const mobileStuffMobileLayoutMDeliveryRoute =
mobileStuffMobileLayoutMDeliveryRouteImport.update({
const MobileMobileLayoutMDeliveryRoute =
MobileMobileLayoutMDeliveryRouteImport.update({
id: '/m/delivery',
path: '/m/delivery',
getParentRoute: () => mobileStuffMobileLayoutRouteRoute,
getParentRoute: () => MobileMobileLayoutRouteRoute,
} as any)
const mobileStuffMobileLayoutMCyclecountsRoute =
mobileStuffMobileLayoutMCyclecountsRouteImport.update({
const MobileMobileLayoutMCyclecountsRoute =
MobileMobileLayoutMCyclecountsRouteImport.update({
id: '/m/cyclecounts',
path: '/m/cyclecounts',
getParentRoute: () => mobileStuffMobileLayoutRouteRoute,
getParentRoute: () => MobileMobileLayoutRouteRoute,
} as any)
const AppAdminLayoutAdminSettingsRoute =
AppAdminLayoutAdminSettingsRouteImport.update({
id: '/settings',
path: '/settings',
getParentRoute: () => AppAdminLayoutAdminRoute,
} as any)
const AppAdminLayoutAdminServersRoute =
AppAdminLayoutAdminServersRouteImport.update({
id: '/servers',
path: '/servers',
getParentRoute: () => AppAdminLayoutAdminRoute,
} as any)
const ApplogisticsLogisticsDeliveryScheduleRoute =
ApplogisticsLogisticsDeliveryScheduleRouteImport.update({
id: '/(logistics)/logistics/deliverySchedule',
path: '/logistics/deliverySchedule',
getParentRoute: () => AppRouteRoute,
} as any)
const AppauthUserSignupRoute = AppauthUserSignupRouteImport.update({
id: '/(auth)/user/signup',
path: '/user/signup',
getParentRoute: () => AppRouteRoute,
} as any)
const AppauthUserResetpasswordRoute =
AppauthUserResetpasswordRouteImport.update({
id: '/(auth)/user/resetpassword',
path: '/user/resetpassword',
getParentRoute: () => AppRouteRoute,
} as any)
const AppauthUserProfileRoute = AppauthUserProfileRouteImport.update({
id: '/(auth)/user/profile',
path: '/user/profile',
getParentRoute: () => AppRouteRoute,
} as any)
const AppAdminLayoutAdminUsersRouteRoute =
AppAdminLayoutAdminUsersRouteRouteImport.update({
id: '/_users',
getParentRoute: () => AppAdminLayoutAdminRoute,
} as any)
const OldOldlogisticsSiloAdjustmentsIndexRoute =
OldOldlogisticsSiloAdjustmentsIndexRouteImport.update({
id: '/(logistics)/siloAdjustments/',
path: '/siloAdjustments/',
getParentRoute: () => OldOldRouteRoute,
} as any)
const OldOldlogisticsSiloAdjustmentsHistRoute =
OldOldlogisticsSiloAdjustmentsHistRouteImport.update({
id: '/(logistics)/siloAdjustments/$hist',
path: '/siloAdjustments/$hist',
getParentRoute: () => OldOldRouteRoute,
} as any)
const AppAdminLayoutAdminUsersUsersRoute =
AppAdminLayoutAdminUsersUsersRouteImport.update({
id: '/users',
path: '/users',
getParentRoute: () => AppAdminLayoutAdminUsersRouteRoute,
} as any)
const AppAdminLayoutAdminUsersProdUsersRoute =
AppAdminLayoutAdminUsersProdUsersRouteImport.update({
id: '/prodUsers',
path: '/prodUsers',
getParentRoute: () => AppAdminLayoutAdminUsersRouteRoute,
} as any)
const OldOldlogisticsSiloAdjustmentsCommentCommentRoute =
OldOldlogisticsSiloAdjustmentsCommentCommentRouteImport.update({
id: '/(logistics)/siloAdjustments/comment/$comment',
path: '/siloAdjustments/comment/$comment',
getParentRoute: () => OldOldRouteRoute,
} as any)
export interface FileRoutesByFullPath {
'/': typeof mobileStuffMobileLayoutRouteRouteWithChildren
'/login': typeof authLoginRoute
'/admin': typeof AdminLayoutAdminUsersRouteRouteWithChildren
'/user/profile': typeof authUserProfileRoute
'/user/resetpassword': typeof authUserResetpasswordRoute
'/user/signup': typeof authUserSignupRoute
'/logistics/deliverySchedule': typeof logisticsLogisticsDeliveryScheduleRoute
'/admin/servers': typeof AdminLayoutAdminServersRoute
'/admin/settings': typeof AdminLayoutAdminSettingsRoute
'/user': typeof authUserIndexRoute
'/m/cyclecounts': typeof mobileStuffMobileLayoutMCyclecountsRoute
'/m/delivery': typeof mobileStuffMobileLayoutMDeliveryRoute
'/m/relocate': typeof mobileStuffMobileLayoutMRelocateRoute
'/admin/prodUsers': typeof AdminLayoutAdminUsersProdUsersRoute
'/admin/users': typeof AdminLayoutAdminUsersUsersRoute
'/m': typeof mobileStuffMobileLayoutMIndexRoute
'/old': typeof OldOldRouteRouteWithChildren
'/': typeof AppIndexRoute
'/login': typeof AppauthLoginRoute
'/old/': typeof OldOldIndexRoute
'/admin': typeof AppAdminLayoutAdminUsersRouteRouteWithChildren
'/user/profile': typeof AppauthUserProfileRoute
'/user/resetpassword': typeof AppauthUserResetpasswordRoute
'/user/signup': typeof AppauthUserSignupRoute
'/logistics/deliverySchedule': typeof ApplogisticsLogisticsDeliveryScheduleRoute
'/admin/servers': typeof AppAdminLayoutAdminServersRoute
'/admin/settings': typeof AppAdminLayoutAdminSettingsRoute
'/m/cyclecounts': typeof MobileMobileLayoutMCyclecountsRoute
'/m/delivery': typeof MobileMobileLayoutMDeliveryRoute
'/m/relocate': typeof MobileMobileLayoutMRelocateRoute
'/user': typeof AppauthUserIndexRoute
'/m': typeof MobileMobileLayoutMIndexRoute
'/admin/prodUsers': typeof AppAdminLayoutAdminUsersProdUsersRoute
'/admin/users': typeof AppAdminLayoutAdminUsersUsersRoute
'/old/siloAdjustments/$hist': typeof OldOldlogisticsSiloAdjustmentsHistRoute
'/old/siloAdjustments': typeof OldOldlogisticsSiloAdjustmentsIndexRoute
'/old/siloAdjustments/comment/$comment': typeof OldOldlogisticsSiloAdjustmentsCommentCommentRoute
}
export interface FileRoutesByTo {
'/': typeof mobileStuffMobileLayoutRouteRouteWithChildren
'/login': typeof authLoginRoute
'/admin': typeof AdminLayoutAdminUsersRouteRouteWithChildren
'/user/profile': typeof authUserProfileRoute
'/user/resetpassword': typeof authUserResetpasswordRoute
'/user/signup': typeof authUserSignupRoute
'/logistics/deliverySchedule': typeof logisticsLogisticsDeliveryScheduleRoute
'/admin/servers': typeof AdminLayoutAdminServersRoute
'/admin/settings': typeof AdminLayoutAdminSettingsRoute
'/user': typeof authUserIndexRoute
'/m/cyclecounts': typeof mobileStuffMobileLayoutMCyclecountsRoute
'/m/delivery': typeof mobileStuffMobileLayoutMDeliveryRoute
'/m/relocate': typeof mobileStuffMobileLayoutMRelocateRoute
'/admin/prodUsers': typeof AdminLayoutAdminUsersProdUsersRoute
'/admin/users': typeof AdminLayoutAdminUsersUsersRoute
'/m': typeof mobileStuffMobileLayoutMIndexRoute
'/': typeof AppIndexRoute
'/login': typeof AppauthLoginRoute
'/old': typeof OldOldIndexRoute
'/admin': typeof AppAdminLayoutAdminUsersRouteRouteWithChildren
'/user/profile': typeof AppauthUserProfileRoute
'/user/resetpassword': typeof AppauthUserResetpasswordRoute
'/user/signup': typeof AppauthUserSignupRoute
'/logistics/deliverySchedule': typeof ApplogisticsLogisticsDeliveryScheduleRoute
'/admin/servers': typeof AppAdminLayoutAdminServersRoute
'/admin/settings': typeof AppAdminLayoutAdminSettingsRoute
'/m/cyclecounts': typeof MobileMobileLayoutMCyclecountsRoute
'/m/delivery': typeof MobileMobileLayoutMDeliveryRoute
'/m/relocate': typeof MobileMobileLayoutMRelocateRoute
'/user': typeof AppauthUserIndexRoute
'/m': typeof MobileMobileLayoutMIndexRoute
'/admin/prodUsers': typeof AppAdminLayoutAdminUsersProdUsersRoute
'/admin/users': typeof AppAdminLayoutAdminUsersUsersRoute
'/old/siloAdjustments/$hist': typeof OldOldlogisticsSiloAdjustmentsHistRoute
'/old/siloAdjustments': typeof OldOldlogisticsSiloAdjustmentsIndexRoute
'/old/siloAdjustments/comment/$comment': typeof OldOldlogisticsSiloAdjustmentsCommentCommentRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/_adminLayout': typeof AdminLayoutRouteRouteWithChildren
'/(mobileStuff)': typeof mobileStuffRouteWithChildren
'/(mobileStuff)/_mobileLayout': typeof mobileStuffMobileLayoutRouteRouteWithChildren
'/(auth)/login': typeof authLoginRoute
'/_adminLayout/admin': typeof AdminLayoutAdminRouteWithChildren
'/_adminLayout/admin/_users': typeof AdminLayoutAdminUsersRouteRouteWithChildren
'/(auth)/user/profile': typeof authUserProfileRoute
'/(auth)/user/resetpassword': typeof authUserResetpasswordRoute
'/(auth)/user/signup': typeof authUserSignupRoute
'/(logistics)/logistics/deliverySchedule': typeof logisticsLogisticsDeliveryScheduleRoute
'/_adminLayout/admin/servers': typeof AdminLayoutAdminServersRoute
'/_adminLayout/admin/settings': typeof AdminLayoutAdminSettingsRoute
'/(auth)/user/': typeof authUserIndexRoute
'/(mobileStuff)/_mobileLayout/m/cyclecounts': typeof mobileStuffMobileLayoutMCyclecountsRoute
'/(mobileStuff)/_mobileLayout/m/delivery': typeof mobileStuffMobileLayoutMDeliveryRoute
'/(mobileStuff)/_mobileLayout/m/relocate': typeof mobileStuffMobileLayoutMRelocateRoute
'/_adminLayout/admin/_users/prodUsers': typeof AdminLayoutAdminUsersProdUsersRoute
'/_adminLayout/admin/_users/users': typeof AdminLayoutAdminUsersUsersRoute
'/(mobileStuff)/_mobileLayout/m/': typeof mobileStuffMobileLayoutMIndexRoute
'/_app': typeof AppRouteRouteWithChildren
'/_app/_adminLayout': typeof AppAdminLayoutRouteRouteWithChildren
'/_mobile/_mobileLayout': typeof MobileMobileLayoutRouteRouteWithChildren
'/_old/old': typeof OldOldRouteRouteWithChildren
'/_app/': typeof AppIndexRoute
'/_app/(auth)/login': typeof AppauthLoginRoute
'/_old/old/': typeof OldOldIndexRoute
'/_app/_adminLayout/admin': typeof AppAdminLayoutAdminRouteWithChildren
'/_app/_adminLayout/admin/_users': typeof AppAdminLayoutAdminUsersRouteRouteWithChildren
'/_app/(auth)/user/profile': typeof AppauthUserProfileRoute
'/_app/(auth)/user/resetpassword': typeof AppauthUserResetpasswordRoute
'/_app/(auth)/user/signup': typeof AppauthUserSignupRoute
'/_app/(logistics)/logistics/deliverySchedule': typeof ApplogisticsLogisticsDeliveryScheduleRoute
'/_app/_adminLayout/admin/servers': typeof AppAdminLayoutAdminServersRoute
'/_app/_adminLayout/admin/settings': typeof AppAdminLayoutAdminSettingsRoute
'/_mobile/_mobileLayout/m/cyclecounts': typeof MobileMobileLayoutMCyclecountsRoute
'/_mobile/_mobileLayout/m/delivery': typeof MobileMobileLayoutMDeliveryRoute
'/_mobile/_mobileLayout/m/relocate': typeof MobileMobileLayoutMRelocateRoute
'/_app/(auth)/user/': typeof AppauthUserIndexRoute
'/_mobile/_mobileLayout/m/': typeof MobileMobileLayoutMIndexRoute
'/_app/_adminLayout/admin/_users/prodUsers': typeof AppAdminLayoutAdminUsersProdUsersRoute
'/_app/_adminLayout/admin/_users/users': typeof AppAdminLayoutAdminUsersUsersRoute
'/_old/old/(logistics)/siloAdjustments/$hist': typeof OldOldlogisticsSiloAdjustmentsHistRoute
'/_old/old/(logistics)/siloAdjustments/': typeof OldOldlogisticsSiloAdjustmentsIndexRoute
'/_old/old/(logistics)/siloAdjustments/comment/$comment': typeof OldOldlogisticsSiloAdjustmentsCommentCommentRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths:
| '/old'
| '/'
| '/login'
| '/old/'
| '/admin'
| '/user/profile'
| '/user/resetpassword'
@@ -211,17 +263,21 @@ export interface FileRouteTypes {
| '/logistics/deliverySchedule'
| '/admin/servers'
| '/admin/settings'
| '/user'
| '/m/cyclecounts'
| '/m/delivery'
| '/m/relocate'
| '/user'
| '/m'
| '/admin/prodUsers'
| '/admin/users'
| '/m'
| '/old/siloAdjustments/$hist'
| '/old/siloAdjustments'
| '/old/siloAdjustments/comment/$comment'
fileRoutesByTo: FileRoutesByTo
to:
| '/'
| '/login'
| '/old'
| '/admin'
| '/user/profile'
| '/user/resetpassword'
@@ -229,283 +285,347 @@ export interface FileRouteTypes {
| '/logistics/deliverySchedule'
| '/admin/servers'
| '/admin/settings'
| '/user'
| '/m/cyclecounts'
| '/m/delivery'
| '/m/relocate'
| '/user'
| '/m'
| '/admin/prodUsers'
| '/admin/users'
| '/m'
| '/old/siloAdjustments/$hist'
| '/old/siloAdjustments'
| '/old/siloAdjustments/comment/$comment'
id:
| '__root__'
| '/'
| '/_adminLayout'
| '/(mobileStuff)'
| '/(mobileStuff)/_mobileLayout'
| '/(auth)/login'
| '/_adminLayout/admin'
| '/_adminLayout/admin/_users'
| '/(auth)/user/profile'
| '/(auth)/user/resetpassword'
| '/(auth)/user/signup'
| '/(logistics)/logistics/deliverySchedule'
| '/_adminLayout/admin/servers'
| '/_adminLayout/admin/settings'
| '/(auth)/user/'
| '/(mobileStuff)/_mobileLayout/m/cyclecounts'
| '/(mobileStuff)/_mobileLayout/m/delivery'
| '/(mobileStuff)/_mobileLayout/m/relocate'
| '/_adminLayout/admin/_users/prodUsers'
| '/_adminLayout/admin/_users/users'
| '/(mobileStuff)/_mobileLayout/m/'
| '/_app'
| '/_app/_adminLayout'
| '/_mobile/_mobileLayout'
| '/_old/old'
| '/_app/'
| '/_app/(auth)/login'
| '/_old/old/'
| '/_app/_adminLayout/admin'
| '/_app/_adminLayout/admin/_users'
| '/_app/(auth)/user/profile'
| '/_app/(auth)/user/resetpassword'
| '/_app/(auth)/user/signup'
| '/_app/(logistics)/logistics/deliverySchedule'
| '/_app/_adminLayout/admin/servers'
| '/_app/_adminLayout/admin/settings'
| '/_mobile/_mobileLayout/m/cyclecounts'
| '/_mobile/_mobileLayout/m/delivery'
| '/_mobile/_mobileLayout/m/relocate'
| '/_app/(auth)/user/'
| '/_mobile/_mobileLayout/m/'
| '/_app/_adminLayout/admin/_users/prodUsers'
| '/_app/_adminLayout/admin/_users/users'
| '/_old/old/(logistics)/siloAdjustments/$hist'
| '/_old/old/(logistics)/siloAdjustments/'
| '/_old/old/(logistics)/siloAdjustments/comment/$comment'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
AdminLayoutRouteRoute: typeof AdminLayoutRouteRouteWithChildren
mobileStuffRoute: typeof mobileStuffRouteWithChildren
authLoginRoute: typeof authLoginRoute
authUserProfileRoute: typeof authUserProfileRoute
authUserResetpasswordRoute: typeof authUserResetpasswordRoute
authUserSignupRoute: typeof authUserSignupRoute
logisticsLogisticsDeliveryScheduleRoute: typeof logisticsLogisticsDeliveryScheduleRoute
authUserIndexRoute: typeof authUserIndexRoute
AppRouteRoute: typeof AppRouteRouteWithChildren
MobileMobileLayoutRouteRoute: typeof MobileMobileLayoutRouteRouteWithChildren
OldOldRouteRoute: typeof OldOldRouteRouteWithChildren
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/(mobileStuff)': {
id: '/(mobileStuff)'
path: '/'
fullPath: '/'
preLoaderRoute: typeof mobileStuffRouteImport
parentRoute: typeof rootRouteImport
}
'/_adminLayout': {
id: '/_adminLayout'
'/_app': {
id: '/_app'
path: ''
fullPath: ''
preLoaderRoute: typeof AdminLayoutRouteRouteImport
preLoaderRoute: typeof AppRouteRouteImport
parentRoute: typeof rootRouteImport
}
'/': {
id: '/'
'/_app/': {
id: '/_app/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexRouteImport
preLoaderRoute: typeof AppIndexRouteImport
parentRoute: typeof AppRouteRoute
}
'/_old/old': {
id: '/_old/old'
path: '/old'
fullPath: '/old'
preLoaderRoute: typeof OldOldRouteRouteImport
parentRoute: typeof rootRouteImport
}
'/_adminLayout/admin': {
id: '/_adminLayout/admin'
'/_mobile/_mobileLayout': {
id: '/_mobile/_mobileLayout'
path: ''
fullPath: ''
preLoaderRoute: typeof MobileMobileLayoutRouteRouteImport
parentRoute: typeof rootRouteImport
}
'/_app/_adminLayout': {
id: '/_app/_adminLayout'
path: ''
fullPath: ''
preLoaderRoute: typeof AppAdminLayoutRouteRouteImport
parentRoute: typeof AppRouteRoute
}
'/_app/_adminLayout/admin': {
id: '/_app/_adminLayout/admin'
path: '/admin'
fullPath: '/admin'
preLoaderRoute: typeof AdminLayoutAdminRouteImport
parentRoute: typeof AdminLayoutRouteRoute
preLoaderRoute: typeof AppAdminLayoutAdminRouteImport
parentRoute: typeof AppAdminLayoutRouteRoute
}
'/(auth)/login': {
id: '/(auth)/login'
'/_old/old/': {
id: '/_old/old/'
path: '/'
fullPath: '/old/'
preLoaderRoute: typeof OldOldIndexRouteImport
parentRoute: typeof OldOldRouteRoute
}
'/_app/(auth)/login': {
id: '/_app/(auth)/login'
path: '/login'
fullPath: '/login'
preLoaderRoute: typeof authLoginRouteImport
parentRoute: typeof rootRouteImport
preLoaderRoute: typeof AppauthLoginRouteImport
parentRoute: typeof AppRouteRoute
}
'/(mobileStuff)/_mobileLayout': {
id: '/(mobileStuff)/_mobileLayout'
path: '/'
fullPath: '/'
preLoaderRoute: typeof mobileStuffMobileLayoutRouteRouteImport
parentRoute: typeof mobileStuffRoute
}
'/(auth)/user/': {
id: '/(auth)/user/'
path: '/user'
fullPath: '/user'
preLoaderRoute: typeof authUserIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/_adminLayout/admin/settings': {
id: '/_adminLayout/admin/settings'
path: '/settings'
fullPath: '/admin/settings'
preLoaderRoute: typeof AdminLayoutAdminSettingsRouteImport
parentRoute: typeof AdminLayoutAdminRoute
}
'/_adminLayout/admin/servers': {
id: '/_adminLayout/admin/servers'
path: '/servers'
fullPath: '/admin/servers'
preLoaderRoute: typeof AdminLayoutAdminServersRouteImport
parentRoute: typeof AdminLayoutAdminRoute
}
'/(logistics)/logistics/deliverySchedule': {
id: '/(logistics)/logistics/deliverySchedule'
path: '/logistics/deliverySchedule'
fullPath: '/logistics/deliverySchedule'
preLoaderRoute: typeof logisticsLogisticsDeliveryScheduleRouteImport
parentRoute: typeof rootRouteImport
}
'/(auth)/user/signup': {
id: '/(auth)/user/signup'
path: '/user/signup'
fullPath: '/user/signup'
preLoaderRoute: typeof authUserSignupRouteImport
parentRoute: typeof rootRouteImport
}
'/(auth)/user/resetpassword': {
id: '/(auth)/user/resetpassword'
path: '/user/resetpassword'
fullPath: '/user/resetpassword'
preLoaderRoute: typeof authUserResetpasswordRouteImport
parentRoute: typeof rootRouteImport
}
'/(auth)/user/profile': {
id: '/(auth)/user/profile'
path: '/user/profile'
fullPath: '/user/profile'
preLoaderRoute: typeof authUserProfileRouteImport
parentRoute: typeof rootRouteImport
}
'/_adminLayout/admin/_users': {
id: '/_adminLayout/admin/_users'
path: '/admin'
fullPath: '/admin'
preLoaderRoute: typeof AdminLayoutAdminUsersRouteRouteImport
parentRoute: typeof AdminLayoutAdminRoute
}
'/(mobileStuff)/_mobileLayout/m/': {
id: '/(mobileStuff)/_mobileLayout/m/'
'/_mobile/_mobileLayout/m/': {
id: '/_mobile/_mobileLayout/m/'
path: '/m'
fullPath: '/m'
preLoaderRoute: typeof mobileStuffMobileLayoutMIndexRouteImport
parentRoute: typeof mobileStuffMobileLayoutRouteRoute
preLoaderRoute: typeof MobileMobileLayoutMIndexRouteImport
parentRoute: typeof MobileMobileLayoutRouteRoute
}
'/_adminLayout/admin/_users/users': {
id: '/_adminLayout/admin/_users/users'
path: '/users'
fullPath: '/admin/users'
preLoaderRoute: typeof AdminLayoutAdminUsersUsersRouteImport
parentRoute: typeof AdminLayoutAdminUsersRouteRoute
'/_app/(auth)/user/': {
id: '/_app/(auth)/user/'
path: '/user'
fullPath: '/user'
preLoaderRoute: typeof AppauthUserIndexRouteImport
parentRoute: typeof AppRouteRoute
}
'/_adminLayout/admin/_users/prodUsers': {
id: '/_adminLayout/admin/_users/prodUsers'
path: '/prodUsers'
fullPath: '/admin/prodUsers'
preLoaderRoute: typeof AdminLayoutAdminUsersProdUsersRouteImport
parentRoute: typeof AdminLayoutAdminUsersRouteRoute
}
'/(mobileStuff)/_mobileLayout/m/relocate': {
id: '/(mobileStuff)/_mobileLayout/m/relocate'
'/_mobile/_mobileLayout/m/relocate': {
id: '/_mobile/_mobileLayout/m/relocate'
path: '/m/relocate'
fullPath: '/m/relocate'
preLoaderRoute: typeof mobileStuffMobileLayoutMRelocateRouteImport
parentRoute: typeof mobileStuffMobileLayoutRouteRoute
preLoaderRoute: typeof MobileMobileLayoutMRelocateRouteImport
parentRoute: typeof MobileMobileLayoutRouteRoute
}
'/(mobileStuff)/_mobileLayout/m/delivery': {
id: '/(mobileStuff)/_mobileLayout/m/delivery'
'/_mobile/_mobileLayout/m/delivery': {
id: '/_mobile/_mobileLayout/m/delivery'
path: '/m/delivery'
fullPath: '/m/delivery'
preLoaderRoute: typeof mobileStuffMobileLayoutMDeliveryRouteImport
parentRoute: typeof mobileStuffMobileLayoutRouteRoute
preLoaderRoute: typeof MobileMobileLayoutMDeliveryRouteImport
parentRoute: typeof MobileMobileLayoutRouteRoute
}
'/(mobileStuff)/_mobileLayout/m/cyclecounts': {
id: '/(mobileStuff)/_mobileLayout/m/cyclecounts'
'/_mobile/_mobileLayout/m/cyclecounts': {
id: '/_mobile/_mobileLayout/m/cyclecounts'
path: '/m/cyclecounts'
fullPath: '/m/cyclecounts'
preLoaderRoute: typeof mobileStuffMobileLayoutMCyclecountsRouteImport
parentRoute: typeof mobileStuffMobileLayoutRouteRoute
preLoaderRoute: typeof MobileMobileLayoutMCyclecountsRouteImport
parentRoute: typeof MobileMobileLayoutRouteRoute
}
'/_app/_adminLayout/admin/settings': {
id: '/_app/_adminLayout/admin/settings'
path: '/settings'
fullPath: '/admin/settings'
preLoaderRoute: typeof AppAdminLayoutAdminSettingsRouteImport
parentRoute: typeof AppAdminLayoutAdminRoute
}
'/_app/_adminLayout/admin/servers': {
id: '/_app/_adminLayout/admin/servers'
path: '/servers'
fullPath: '/admin/servers'
preLoaderRoute: typeof AppAdminLayoutAdminServersRouteImport
parentRoute: typeof AppAdminLayoutAdminRoute
}
'/_app/(logistics)/logistics/deliverySchedule': {
id: '/_app/(logistics)/logistics/deliverySchedule'
path: '/logistics/deliverySchedule'
fullPath: '/logistics/deliverySchedule'
preLoaderRoute: typeof ApplogisticsLogisticsDeliveryScheduleRouteImport
parentRoute: typeof AppRouteRoute
}
'/_app/(auth)/user/signup': {
id: '/_app/(auth)/user/signup'
path: '/user/signup'
fullPath: '/user/signup'
preLoaderRoute: typeof AppauthUserSignupRouteImport
parentRoute: typeof AppRouteRoute
}
'/_app/(auth)/user/resetpassword': {
id: '/_app/(auth)/user/resetpassword'
path: '/user/resetpassword'
fullPath: '/user/resetpassword'
preLoaderRoute: typeof AppauthUserResetpasswordRouteImport
parentRoute: typeof AppRouteRoute
}
'/_app/(auth)/user/profile': {
id: '/_app/(auth)/user/profile'
path: '/user/profile'
fullPath: '/user/profile'
preLoaderRoute: typeof AppauthUserProfileRouteImport
parentRoute: typeof AppRouteRoute
}
'/_app/_adminLayout/admin/_users': {
id: '/_app/_adminLayout/admin/_users'
path: '/admin'
fullPath: '/admin'
preLoaderRoute: typeof AppAdminLayoutAdminUsersRouteRouteImport
parentRoute: typeof AppAdminLayoutAdminRoute
}
'/_old/old/(logistics)/siloAdjustments/': {
id: '/_old/old/(logistics)/siloAdjustments/'
path: '/siloAdjustments'
fullPath: '/old/siloAdjustments'
preLoaderRoute: typeof OldOldlogisticsSiloAdjustmentsIndexRouteImport
parentRoute: typeof OldOldRouteRoute
}
'/_old/old/(logistics)/siloAdjustments/$hist': {
id: '/_old/old/(logistics)/siloAdjustments/$hist'
path: '/siloAdjustments/$hist'
fullPath: '/old/siloAdjustments/$hist'
preLoaderRoute: typeof OldOldlogisticsSiloAdjustmentsHistRouteImport
parentRoute: typeof OldOldRouteRoute
}
'/_app/_adminLayout/admin/_users/users': {
id: '/_app/_adminLayout/admin/_users/users'
path: '/users'
fullPath: '/admin/users'
preLoaderRoute: typeof AppAdminLayoutAdminUsersUsersRouteImport
parentRoute: typeof AppAdminLayoutAdminUsersRouteRoute
}
'/_app/_adminLayout/admin/_users/prodUsers': {
id: '/_app/_adminLayout/admin/_users/prodUsers'
path: '/prodUsers'
fullPath: '/admin/prodUsers'
preLoaderRoute: typeof AppAdminLayoutAdminUsersProdUsersRouteImport
parentRoute: typeof AppAdminLayoutAdminUsersRouteRoute
}
'/_old/old/(logistics)/siloAdjustments/comment/$comment': {
id: '/_old/old/(logistics)/siloAdjustments/comment/$comment'
path: '/siloAdjustments/comment/$comment'
fullPath: '/old/siloAdjustments/comment/$comment'
preLoaderRoute: typeof OldOldlogisticsSiloAdjustmentsCommentCommentRouteImport
parentRoute: typeof OldOldRouteRoute
}
}
}
interface AdminLayoutAdminUsersRouteRouteChildren {
AdminLayoutAdminUsersProdUsersRoute: typeof AdminLayoutAdminUsersProdUsersRoute
AdminLayoutAdminUsersUsersRoute: typeof AdminLayoutAdminUsersUsersRoute
interface AppAdminLayoutAdminUsersRouteRouteChildren {
AppAdminLayoutAdminUsersProdUsersRoute: typeof AppAdminLayoutAdminUsersProdUsersRoute
AppAdminLayoutAdminUsersUsersRoute: typeof AppAdminLayoutAdminUsersUsersRoute
}
const AdminLayoutAdminUsersRouteRouteChildren: AdminLayoutAdminUsersRouteRouteChildren =
const AppAdminLayoutAdminUsersRouteRouteChildren: AppAdminLayoutAdminUsersRouteRouteChildren =
{
AdminLayoutAdminUsersProdUsersRoute: AdminLayoutAdminUsersProdUsersRoute,
AdminLayoutAdminUsersUsersRoute: AdminLayoutAdminUsersUsersRoute,
AppAdminLayoutAdminUsersProdUsersRoute:
AppAdminLayoutAdminUsersProdUsersRoute,
AppAdminLayoutAdminUsersUsersRoute: AppAdminLayoutAdminUsersUsersRoute,
}
const AdminLayoutAdminUsersRouteRouteWithChildren =
AdminLayoutAdminUsersRouteRoute._addFileChildren(
AdminLayoutAdminUsersRouteRouteChildren,
const AppAdminLayoutAdminUsersRouteRouteWithChildren =
AppAdminLayoutAdminUsersRouteRoute._addFileChildren(
AppAdminLayoutAdminUsersRouteRouteChildren,
)
interface AdminLayoutAdminRouteChildren {
AdminLayoutAdminUsersRouteRoute: typeof AdminLayoutAdminUsersRouteRouteWithChildren
AdminLayoutAdminServersRoute: typeof AdminLayoutAdminServersRoute
AdminLayoutAdminSettingsRoute: typeof AdminLayoutAdminSettingsRoute
interface AppAdminLayoutAdminRouteChildren {
AppAdminLayoutAdminUsersRouteRoute: typeof AppAdminLayoutAdminUsersRouteRouteWithChildren
AppAdminLayoutAdminServersRoute: typeof AppAdminLayoutAdminServersRoute
AppAdminLayoutAdminSettingsRoute: typeof AppAdminLayoutAdminSettingsRoute
}
const AdminLayoutAdminRouteChildren: AdminLayoutAdminRouteChildren = {
AdminLayoutAdminUsersRouteRoute: AdminLayoutAdminUsersRouteRouteWithChildren,
AdminLayoutAdminServersRoute: AdminLayoutAdminServersRoute,
AdminLayoutAdminSettingsRoute: AdminLayoutAdminSettingsRoute,
const AppAdminLayoutAdminRouteChildren: AppAdminLayoutAdminRouteChildren = {
AppAdminLayoutAdminUsersRouteRoute:
AppAdminLayoutAdminUsersRouteRouteWithChildren,
AppAdminLayoutAdminServersRoute: AppAdminLayoutAdminServersRoute,
AppAdminLayoutAdminSettingsRoute: AppAdminLayoutAdminSettingsRoute,
}
const AdminLayoutAdminRouteWithChildren =
AdminLayoutAdminRoute._addFileChildren(AdminLayoutAdminRouteChildren)
const AppAdminLayoutAdminRouteWithChildren =
AppAdminLayoutAdminRoute._addFileChildren(AppAdminLayoutAdminRouteChildren)
interface AdminLayoutRouteRouteChildren {
AdminLayoutAdminRoute: typeof AdminLayoutAdminRouteWithChildren
interface AppAdminLayoutRouteRouteChildren {
AppAdminLayoutAdminRoute: typeof AppAdminLayoutAdminRouteWithChildren
}
const AdminLayoutRouteRouteChildren: AdminLayoutRouteRouteChildren = {
AdminLayoutAdminRoute: AdminLayoutAdminRouteWithChildren,
const AppAdminLayoutRouteRouteChildren: AppAdminLayoutRouteRouteChildren = {
AppAdminLayoutAdminRoute: AppAdminLayoutAdminRouteWithChildren,
}
const AdminLayoutRouteRouteWithChildren =
AdminLayoutRouteRoute._addFileChildren(AdminLayoutRouteRouteChildren)
const AppAdminLayoutRouteRouteWithChildren =
AppAdminLayoutRouteRoute._addFileChildren(AppAdminLayoutRouteRouteChildren)
interface mobileStuffMobileLayoutRouteRouteChildren {
mobileStuffMobileLayoutMCyclecountsRoute: typeof mobileStuffMobileLayoutMCyclecountsRoute
mobileStuffMobileLayoutMDeliveryRoute: typeof mobileStuffMobileLayoutMDeliveryRoute
mobileStuffMobileLayoutMRelocateRoute: typeof mobileStuffMobileLayoutMRelocateRoute
mobileStuffMobileLayoutMIndexRoute: typeof mobileStuffMobileLayoutMIndexRoute
interface AppRouteRouteChildren {
AppAdminLayoutRouteRoute: typeof AppAdminLayoutRouteRouteWithChildren
AppIndexRoute: typeof AppIndexRoute
AppauthLoginRoute: typeof AppauthLoginRoute
AppauthUserProfileRoute: typeof AppauthUserProfileRoute
AppauthUserResetpasswordRoute: typeof AppauthUserResetpasswordRoute
AppauthUserSignupRoute: typeof AppauthUserSignupRoute
ApplogisticsLogisticsDeliveryScheduleRoute: typeof ApplogisticsLogisticsDeliveryScheduleRoute
AppauthUserIndexRoute: typeof AppauthUserIndexRoute
}
const mobileStuffMobileLayoutRouteRouteChildren: mobileStuffMobileLayoutRouteRouteChildren =
const AppRouteRouteChildren: AppRouteRouteChildren = {
AppAdminLayoutRouteRoute: AppAdminLayoutRouteRouteWithChildren,
AppIndexRoute: AppIndexRoute,
AppauthLoginRoute: AppauthLoginRoute,
AppauthUserProfileRoute: AppauthUserProfileRoute,
AppauthUserResetpasswordRoute: AppauthUserResetpasswordRoute,
AppauthUserSignupRoute: AppauthUserSignupRoute,
ApplogisticsLogisticsDeliveryScheduleRoute:
ApplogisticsLogisticsDeliveryScheduleRoute,
AppauthUserIndexRoute: AppauthUserIndexRoute,
}
const AppRouteRouteWithChildren = AppRouteRoute._addFileChildren(
AppRouteRouteChildren,
)
interface MobileMobileLayoutRouteRouteChildren {
MobileMobileLayoutMCyclecountsRoute: typeof MobileMobileLayoutMCyclecountsRoute
MobileMobileLayoutMDeliveryRoute: typeof MobileMobileLayoutMDeliveryRoute
MobileMobileLayoutMRelocateRoute: typeof MobileMobileLayoutMRelocateRoute
MobileMobileLayoutMIndexRoute: typeof MobileMobileLayoutMIndexRoute
}
const MobileMobileLayoutRouteRouteChildren: MobileMobileLayoutRouteRouteChildren =
{
mobileStuffMobileLayoutMCyclecountsRoute:
mobileStuffMobileLayoutMCyclecountsRoute,
mobileStuffMobileLayoutMDeliveryRoute:
mobileStuffMobileLayoutMDeliveryRoute,
mobileStuffMobileLayoutMRelocateRoute:
mobileStuffMobileLayoutMRelocateRoute,
mobileStuffMobileLayoutMIndexRoute: mobileStuffMobileLayoutMIndexRoute,
MobileMobileLayoutMCyclecountsRoute: MobileMobileLayoutMCyclecountsRoute,
MobileMobileLayoutMDeliveryRoute: MobileMobileLayoutMDeliveryRoute,
MobileMobileLayoutMRelocateRoute: MobileMobileLayoutMRelocateRoute,
MobileMobileLayoutMIndexRoute: MobileMobileLayoutMIndexRoute,
}
const mobileStuffMobileLayoutRouteRouteWithChildren =
mobileStuffMobileLayoutRouteRoute._addFileChildren(
mobileStuffMobileLayoutRouteRouteChildren,
const MobileMobileLayoutRouteRouteWithChildren =
MobileMobileLayoutRouteRoute._addFileChildren(
MobileMobileLayoutRouteRouteChildren,
)
interface mobileStuffRouteChildren {
mobileStuffMobileLayoutRouteRoute: typeof mobileStuffMobileLayoutRouteRouteWithChildren
interface OldOldRouteRouteChildren {
OldOldIndexRoute: typeof OldOldIndexRoute
OldOldlogisticsSiloAdjustmentsHistRoute: typeof OldOldlogisticsSiloAdjustmentsHistRoute
OldOldlogisticsSiloAdjustmentsIndexRoute: typeof OldOldlogisticsSiloAdjustmentsIndexRoute
OldOldlogisticsSiloAdjustmentsCommentCommentRoute: typeof OldOldlogisticsSiloAdjustmentsCommentCommentRoute
}
const mobileStuffRouteChildren: mobileStuffRouteChildren = {
mobileStuffMobileLayoutRouteRoute:
mobileStuffMobileLayoutRouteRouteWithChildren,
const OldOldRouteRouteChildren: OldOldRouteRouteChildren = {
OldOldIndexRoute: OldOldIndexRoute,
OldOldlogisticsSiloAdjustmentsHistRoute:
OldOldlogisticsSiloAdjustmentsHistRoute,
OldOldlogisticsSiloAdjustmentsIndexRoute:
OldOldlogisticsSiloAdjustmentsIndexRoute,
OldOldlogisticsSiloAdjustmentsCommentCommentRoute:
OldOldlogisticsSiloAdjustmentsCommentCommentRoute,
}
const mobileStuffRouteWithChildren = mobileStuffRoute._addFileChildren(
mobileStuffRouteChildren,
const OldOldRouteRouteWithChildren = OldOldRouteRoute._addFileChildren(
OldOldRouteRouteChildren,
)
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
AdminLayoutRouteRoute: AdminLayoutRouteRouteWithChildren,
mobileStuffRoute: mobileStuffRouteWithChildren,
authLoginRoute: authLoginRoute,
authUserProfileRoute: authUserProfileRoute,
authUserResetpasswordRoute: authUserResetpasswordRoute,
authUserSignupRoute: authUserSignupRoute,
logisticsLogisticsDeliveryScheduleRoute:
logisticsLogisticsDeliveryScheduleRoute,
authUserIndexRoute: authUserIndexRoute,
AppRouteRoute: AppRouteRouteWithChildren,
MobileMobileLayoutRouteRoute: MobileMobileLayoutRouteRouteWithChildren,
OldOldRouteRoute: OldOldRouteRouteWithChildren,
}
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)