feat(default): reorganize system settings pricing UI

Refine the default system settings structure and model pricing editor so pricing configuration is easier to scan and edit.
This commit is contained in:
CaIon
2026-05-06 16:24:06 +08:00
parent 9acf5fecae
commit 0f9f094a48
62 changed files with 3655 additions and 2343 deletions
+176 -176
View File
@@ -51,19 +51,19 @@ import { Route as AuthenticatedErrorsErrorRouteImport } from './routes/_authenti
import { Route as AuthenticatedDashboardSectionRouteImport } from './routes/_authenticated/dashboard/$section'
import { Route as AuthenticatedChatChatIdRouteImport } from './routes/_authenticated/chat/$chatId'
import { Route as authUserResetRouteImport } from './routes/(auth)/user/reset'
import { Route as AuthenticatedSystemSettingsRequestLimitsIndexRouteImport } from './routes/_authenticated/system-settings/request-limits/index'
import { Route as AuthenticatedSystemSettingsSiteIndexRouteImport } from './routes/_authenticated/system-settings/site/index'
import { Route as AuthenticatedSystemSettingsSecurityIndexRouteImport } from './routes/_authenticated/system-settings/security/index'
import { Route as AuthenticatedSystemSettingsOperationsIndexRouteImport } from './routes/_authenticated/system-settings/operations/index'
import { Route as AuthenticatedSystemSettingsModelsIndexRouteImport } from './routes/_authenticated/system-settings/models/index'
import { Route as AuthenticatedSystemSettingsMaintenanceIndexRouteImport } from './routes/_authenticated/system-settings/maintenance/index'
import { Route as AuthenticatedSystemSettingsIntegrationsIndexRouteImport } from './routes/_authenticated/system-settings/integrations/index'
import { Route as AuthenticatedSystemSettingsGeneralIndexRouteImport } from './routes/_authenticated/system-settings/general/index'
import { Route as AuthenticatedSystemSettingsContentIndexRouteImport } from './routes/_authenticated/system-settings/content/index'
import { Route as AuthenticatedSystemSettingsBillingIndexRouteImport } from './routes/_authenticated/system-settings/billing/index'
import { Route as AuthenticatedSystemSettingsAuthIndexRouteImport } from './routes/_authenticated/system-settings/auth/index'
import { Route as AuthenticatedSystemSettingsRequestLimitsSectionRouteImport } from './routes/_authenticated/system-settings/request-limits/$section'
import { Route as AuthenticatedSystemSettingsSiteSectionRouteImport } from './routes/_authenticated/system-settings/site/$section'
import { Route as AuthenticatedSystemSettingsSecuritySectionRouteImport } from './routes/_authenticated/system-settings/security/$section'
import { Route as AuthenticatedSystemSettingsOperationsSectionRouteImport } from './routes/_authenticated/system-settings/operations/$section'
import { Route as AuthenticatedSystemSettingsModelsSectionRouteImport } from './routes/_authenticated/system-settings/models/$section'
import { Route as AuthenticatedSystemSettingsMaintenanceSectionRouteImport } from './routes/_authenticated/system-settings/maintenance/$section'
import { Route as AuthenticatedSystemSettingsIntegrationsSectionRouteImport } from './routes/_authenticated/system-settings/integrations/$section'
import { Route as AuthenticatedSystemSettingsGeneralSectionRouteImport } from './routes/_authenticated/system-settings/general/$section'
import { Route as AuthenticatedSystemSettingsContentSectionRouteImport } from './routes/_authenticated/system-settings/content/$section'
import { Route as AuthenticatedSystemSettingsBillingSectionRouteImport } from './routes/_authenticated/system-settings/billing/$section'
import { Route as AuthenticatedSystemSettingsAuthSectionRouteImport } from './routes/_authenticated/system-settings/auth/$section'
const UserAgreementRoute = UserAgreementRouteImport.update({
@@ -289,10 +289,22 @@ const authUserResetRoute = authUserResetRouteImport.update({
path: '/user/reset',
getParentRoute: () => authRouteRoute,
} as any)
const AuthenticatedSystemSettingsRequestLimitsIndexRoute =
AuthenticatedSystemSettingsRequestLimitsIndexRouteImport.update({
id: '/request-limits/',
path: '/request-limits/',
const AuthenticatedSystemSettingsSiteIndexRoute =
AuthenticatedSystemSettingsSiteIndexRouteImport.update({
id: '/site/',
path: '/site/',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsSecurityIndexRoute =
AuthenticatedSystemSettingsSecurityIndexRouteImport.update({
id: '/security/',
path: '/security/',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsOperationsIndexRoute =
AuthenticatedSystemSettingsOperationsIndexRouteImport.update({
id: '/operations/',
path: '/operations/',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsModelsIndexRoute =
@@ -301,40 +313,40 @@ const AuthenticatedSystemSettingsModelsIndexRoute =
path: '/models/',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsMaintenanceIndexRoute =
AuthenticatedSystemSettingsMaintenanceIndexRouteImport.update({
id: '/maintenance/',
path: '/maintenance/',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsIntegrationsIndexRoute =
AuthenticatedSystemSettingsIntegrationsIndexRouteImport.update({
id: '/integrations/',
path: '/integrations/',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsGeneralIndexRoute =
AuthenticatedSystemSettingsGeneralIndexRouteImport.update({
id: '/general/',
path: '/general/',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsContentIndexRoute =
AuthenticatedSystemSettingsContentIndexRouteImport.update({
id: '/content/',
path: '/content/',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsBillingIndexRoute =
AuthenticatedSystemSettingsBillingIndexRouteImport.update({
id: '/billing/',
path: '/billing/',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsAuthIndexRoute =
AuthenticatedSystemSettingsAuthIndexRouteImport.update({
id: '/auth/',
path: '/auth/',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsRequestLimitsSectionRoute =
AuthenticatedSystemSettingsRequestLimitsSectionRouteImport.update({
id: '/request-limits/$section',
path: '/request-limits/$section',
const AuthenticatedSystemSettingsSiteSectionRoute =
AuthenticatedSystemSettingsSiteSectionRouteImport.update({
id: '/site/$section',
path: '/site/$section',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsSecuritySectionRoute =
AuthenticatedSystemSettingsSecuritySectionRouteImport.update({
id: '/security/$section',
path: '/security/$section',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsOperationsSectionRoute =
AuthenticatedSystemSettingsOperationsSectionRouteImport.update({
id: '/operations/$section',
path: '/operations/$section',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsModelsSectionRoute =
@@ -343,30 +355,18 @@ const AuthenticatedSystemSettingsModelsSectionRoute =
path: '/models/$section',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsMaintenanceSectionRoute =
AuthenticatedSystemSettingsMaintenanceSectionRouteImport.update({
id: '/maintenance/$section',
path: '/maintenance/$section',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsIntegrationsSectionRoute =
AuthenticatedSystemSettingsIntegrationsSectionRouteImport.update({
id: '/integrations/$section',
path: '/integrations/$section',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsGeneralSectionRoute =
AuthenticatedSystemSettingsGeneralSectionRouteImport.update({
id: '/general/$section',
path: '/general/$section',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsContentSectionRoute =
AuthenticatedSystemSettingsContentSectionRouteImport.update({
id: '/content/$section',
path: '/content/$section',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsBillingSectionRoute =
AuthenticatedSystemSettingsBillingSectionRouteImport.update({
id: '/billing/$section',
path: '/billing/$section',
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
} as any)
const AuthenticatedSystemSettingsAuthSectionRoute =
AuthenticatedSystemSettingsAuthSectionRouteImport.update({
id: '/auth/$section',
@@ -416,19 +416,19 @@ export interface FileRoutesByFullPath {
'/wallet/': typeof AuthenticatedWalletIndexRoute
'/pricing/$modelId/': typeof PricingModelIdIndexRoute
'/system-settings/auth/$section': typeof AuthenticatedSystemSettingsAuthSectionRoute
'/system-settings/billing/$section': typeof AuthenticatedSystemSettingsBillingSectionRoute
'/system-settings/content/$section': typeof AuthenticatedSystemSettingsContentSectionRoute
'/system-settings/general/$section': typeof AuthenticatedSystemSettingsGeneralSectionRoute
'/system-settings/integrations/$section': typeof AuthenticatedSystemSettingsIntegrationsSectionRoute
'/system-settings/maintenance/$section': typeof AuthenticatedSystemSettingsMaintenanceSectionRoute
'/system-settings/models/$section': typeof AuthenticatedSystemSettingsModelsSectionRoute
'/system-settings/request-limits/$section': typeof AuthenticatedSystemSettingsRequestLimitsSectionRoute
'/system-settings/operations/$section': typeof AuthenticatedSystemSettingsOperationsSectionRoute
'/system-settings/security/$section': typeof AuthenticatedSystemSettingsSecuritySectionRoute
'/system-settings/site/$section': typeof AuthenticatedSystemSettingsSiteSectionRoute
'/system-settings/auth/': typeof AuthenticatedSystemSettingsAuthIndexRoute
'/system-settings/billing/': typeof AuthenticatedSystemSettingsBillingIndexRoute
'/system-settings/content/': typeof AuthenticatedSystemSettingsContentIndexRoute
'/system-settings/general/': typeof AuthenticatedSystemSettingsGeneralIndexRoute
'/system-settings/integrations/': typeof AuthenticatedSystemSettingsIntegrationsIndexRoute
'/system-settings/maintenance/': typeof AuthenticatedSystemSettingsMaintenanceIndexRoute
'/system-settings/models/': typeof AuthenticatedSystemSettingsModelsIndexRoute
'/system-settings/request-limits/': typeof AuthenticatedSystemSettingsRequestLimitsIndexRoute
'/system-settings/operations/': typeof AuthenticatedSystemSettingsOperationsIndexRoute
'/system-settings/security/': typeof AuthenticatedSystemSettingsSecurityIndexRoute
'/system-settings/site/': typeof AuthenticatedSystemSettingsSiteIndexRoute
}
export interface FileRoutesByTo {
'/': typeof IndexRoute
@@ -471,19 +471,19 @@ export interface FileRoutesByTo {
'/wallet': typeof AuthenticatedWalletIndexRoute
'/pricing/$modelId': typeof PricingModelIdIndexRoute
'/system-settings/auth/$section': typeof AuthenticatedSystemSettingsAuthSectionRoute
'/system-settings/billing/$section': typeof AuthenticatedSystemSettingsBillingSectionRoute
'/system-settings/content/$section': typeof AuthenticatedSystemSettingsContentSectionRoute
'/system-settings/general/$section': typeof AuthenticatedSystemSettingsGeneralSectionRoute
'/system-settings/integrations/$section': typeof AuthenticatedSystemSettingsIntegrationsSectionRoute
'/system-settings/maintenance/$section': typeof AuthenticatedSystemSettingsMaintenanceSectionRoute
'/system-settings/models/$section': typeof AuthenticatedSystemSettingsModelsSectionRoute
'/system-settings/request-limits/$section': typeof AuthenticatedSystemSettingsRequestLimitsSectionRoute
'/system-settings/operations/$section': typeof AuthenticatedSystemSettingsOperationsSectionRoute
'/system-settings/security/$section': typeof AuthenticatedSystemSettingsSecuritySectionRoute
'/system-settings/site/$section': typeof AuthenticatedSystemSettingsSiteSectionRoute
'/system-settings/auth': typeof AuthenticatedSystemSettingsAuthIndexRoute
'/system-settings/billing': typeof AuthenticatedSystemSettingsBillingIndexRoute
'/system-settings/content': typeof AuthenticatedSystemSettingsContentIndexRoute
'/system-settings/general': typeof AuthenticatedSystemSettingsGeneralIndexRoute
'/system-settings/integrations': typeof AuthenticatedSystemSettingsIntegrationsIndexRoute
'/system-settings/maintenance': typeof AuthenticatedSystemSettingsMaintenanceIndexRoute
'/system-settings/models': typeof AuthenticatedSystemSettingsModelsIndexRoute
'/system-settings/request-limits': typeof AuthenticatedSystemSettingsRequestLimitsIndexRoute
'/system-settings/operations': typeof AuthenticatedSystemSettingsOperationsIndexRoute
'/system-settings/security': typeof AuthenticatedSystemSettingsSecurityIndexRoute
'/system-settings/site': typeof AuthenticatedSystemSettingsSiteIndexRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
@@ -530,19 +530,19 @@ export interface FileRoutesById {
'/_authenticated/wallet/': typeof AuthenticatedWalletIndexRoute
'/pricing/$modelId/': typeof PricingModelIdIndexRoute
'/_authenticated/system-settings/auth/$section': typeof AuthenticatedSystemSettingsAuthSectionRoute
'/_authenticated/system-settings/billing/$section': typeof AuthenticatedSystemSettingsBillingSectionRoute
'/_authenticated/system-settings/content/$section': typeof AuthenticatedSystemSettingsContentSectionRoute
'/_authenticated/system-settings/general/$section': typeof AuthenticatedSystemSettingsGeneralSectionRoute
'/_authenticated/system-settings/integrations/$section': typeof AuthenticatedSystemSettingsIntegrationsSectionRoute
'/_authenticated/system-settings/maintenance/$section': typeof AuthenticatedSystemSettingsMaintenanceSectionRoute
'/_authenticated/system-settings/models/$section': typeof AuthenticatedSystemSettingsModelsSectionRoute
'/_authenticated/system-settings/request-limits/$section': typeof AuthenticatedSystemSettingsRequestLimitsSectionRoute
'/_authenticated/system-settings/operations/$section': typeof AuthenticatedSystemSettingsOperationsSectionRoute
'/_authenticated/system-settings/security/$section': typeof AuthenticatedSystemSettingsSecuritySectionRoute
'/_authenticated/system-settings/site/$section': typeof AuthenticatedSystemSettingsSiteSectionRoute
'/_authenticated/system-settings/auth/': typeof AuthenticatedSystemSettingsAuthIndexRoute
'/_authenticated/system-settings/billing/': typeof AuthenticatedSystemSettingsBillingIndexRoute
'/_authenticated/system-settings/content/': typeof AuthenticatedSystemSettingsContentIndexRoute
'/_authenticated/system-settings/general/': typeof AuthenticatedSystemSettingsGeneralIndexRoute
'/_authenticated/system-settings/integrations/': typeof AuthenticatedSystemSettingsIntegrationsIndexRoute
'/_authenticated/system-settings/maintenance/': typeof AuthenticatedSystemSettingsMaintenanceIndexRoute
'/_authenticated/system-settings/models/': typeof AuthenticatedSystemSettingsModelsIndexRoute
'/_authenticated/system-settings/request-limits/': typeof AuthenticatedSystemSettingsRequestLimitsIndexRoute
'/_authenticated/system-settings/operations/': typeof AuthenticatedSystemSettingsOperationsIndexRoute
'/_authenticated/system-settings/security/': typeof AuthenticatedSystemSettingsSecurityIndexRoute
'/_authenticated/system-settings/site/': typeof AuthenticatedSystemSettingsSiteIndexRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
@@ -588,19 +588,19 @@ export interface FileRouteTypes {
| '/wallet/'
| '/pricing/$modelId/'
| '/system-settings/auth/$section'
| '/system-settings/billing/$section'
| '/system-settings/content/$section'
| '/system-settings/general/$section'
| '/system-settings/integrations/$section'
| '/system-settings/maintenance/$section'
| '/system-settings/models/$section'
| '/system-settings/request-limits/$section'
| '/system-settings/operations/$section'
| '/system-settings/security/$section'
| '/system-settings/site/$section'
| '/system-settings/auth/'
| '/system-settings/billing/'
| '/system-settings/content/'
| '/system-settings/general/'
| '/system-settings/integrations/'
| '/system-settings/maintenance/'
| '/system-settings/models/'
| '/system-settings/request-limits/'
| '/system-settings/operations/'
| '/system-settings/security/'
| '/system-settings/site/'
fileRoutesByTo: FileRoutesByTo
to:
| '/'
@@ -643,19 +643,19 @@ export interface FileRouteTypes {
| '/wallet'
| '/pricing/$modelId'
| '/system-settings/auth/$section'
| '/system-settings/billing/$section'
| '/system-settings/content/$section'
| '/system-settings/general/$section'
| '/system-settings/integrations/$section'
| '/system-settings/maintenance/$section'
| '/system-settings/models/$section'
| '/system-settings/request-limits/$section'
| '/system-settings/operations/$section'
| '/system-settings/security/$section'
| '/system-settings/site/$section'
| '/system-settings/auth'
| '/system-settings/billing'
| '/system-settings/content'
| '/system-settings/general'
| '/system-settings/integrations'
| '/system-settings/maintenance'
| '/system-settings/models'
| '/system-settings/request-limits'
| '/system-settings/operations'
| '/system-settings/security'
| '/system-settings/site'
id:
| '__root__'
| '/'
@@ -701,19 +701,19 @@ export interface FileRouteTypes {
| '/_authenticated/wallet/'
| '/pricing/$modelId/'
| '/_authenticated/system-settings/auth/$section'
| '/_authenticated/system-settings/billing/$section'
| '/_authenticated/system-settings/content/$section'
| '/_authenticated/system-settings/general/$section'
| '/_authenticated/system-settings/integrations/$section'
| '/_authenticated/system-settings/maintenance/$section'
| '/_authenticated/system-settings/models/$section'
| '/_authenticated/system-settings/request-limits/$section'
| '/_authenticated/system-settings/operations/$section'
| '/_authenticated/system-settings/security/$section'
| '/_authenticated/system-settings/site/$section'
| '/_authenticated/system-settings/auth/'
| '/_authenticated/system-settings/billing/'
| '/_authenticated/system-settings/content/'
| '/_authenticated/system-settings/general/'
| '/_authenticated/system-settings/integrations/'
| '/_authenticated/system-settings/maintenance/'
| '/_authenticated/system-settings/models/'
| '/_authenticated/system-settings/request-limits/'
| '/_authenticated/system-settings/operations/'
| '/_authenticated/system-settings/security/'
| '/_authenticated/system-settings/site/'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
@@ -1031,11 +1031,25 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof authUserResetRouteImport
parentRoute: typeof authRouteRoute
}
'/_authenticated/system-settings/request-limits/': {
id: '/_authenticated/system-settings/request-limits/'
path: '/request-limits'
fullPath: '/system-settings/request-limits/'
preLoaderRoute: typeof AuthenticatedSystemSettingsRequestLimitsIndexRouteImport
'/_authenticated/system-settings/site/': {
id: '/_authenticated/system-settings/site/'
path: '/site'
fullPath: '/system-settings/site/'
preLoaderRoute: typeof AuthenticatedSystemSettingsSiteIndexRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/security/': {
id: '/_authenticated/system-settings/security/'
path: '/security'
fullPath: '/system-settings/security/'
preLoaderRoute: typeof AuthenticatedSystemSettingsSecurityIndexRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/operations/': {
id: '/_authenticated/system-settings/operations/'
path: '/operations'
fullPath: '/system-settings/operations/'
preLoaderRoute: typeof AuthenticatedSystemSettingsOperationsIndexRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/models/': {
@@ -1045,27 +1059,6 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof AuthenticatedSystemSettingsModelsIndexRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/maintenance/': {
id: '/_authenticated/system-settings/maintenance/'
path: '/maintenance'
fullPath: '/system-settings/maintenance/'
preLoaderRoute: typeof AuthenticatedSystemSettingsMaintenanceIndexRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/integrations/': {
id: '/_authenticated/system-settings/integrations/'
path: '/integrations'
fullPath: '/system-settings/integrations/'
preLoaderRoute: typeof AuthenticatedSystemSettingsIntegrationsIndexRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/general/': {
id: '/_authenticated/system-settings/general/'
path: '/general'
fullPath: '/system-settings/general/'
preLoaderRoute: typeof AuthenticatedSystemSettingsGeneralIndexRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/content/': {
id: '/_authenticated/system-settings/content/'
path: '/content'
@@ -1073,6 +1066,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof AuthenticatedSystemSettingsContentIndexRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/billing/': {
id: '/_authenticated/system-settings/billing/'
path: '/billing'
fullPath: '/system-settings/billing/'
preLoaderRoute: typeof AuthenticatedSystemSettingsBillingIndexRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/auth/': {
id: '/_authenticated/system-settings/auth/'
path: '/auth'
@@ -1080,11 +1080,25 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof AuthenticatedSystemSettingsAuthIndexRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/request-limits/$section': {
id: '/_authenticated/system-settings/request-limits/$section'
path: '/request-limits/$section'
fullPath: '/system-settings/request-limits/$section'
preLoaderRoute: typeof AuthenticatedSystemSettingsRequestLimitsSectionRouteImport
'/_authenticated/system-settings/site/$section': {
id: '/_authenticated/system-settings/site/$section'
path: '/site/$section'
fullPath: '/system-settings/site/$section'
preLoaderRoute: typeof AuthenticatedSystemSettingsSiteSectionRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/security/$section': {
id: '/_authenticated/system-settings/security/$section'
path: '/security/$section'
fullPath: '/system-settings/security/$section'
preLoaderRoute: typeof AuthenticatedSystemSettingsSecuritySectionRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/operations/$section': {
id: '/_authenticated/system-settings/operations/$section'
path: '/operations/$section'
fullPath: '/system-settings/operations/$section'
preLoaderRoute: typeof AuthenticatedSystemSettingsOperationsSectionRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/models/$section': {
@@ -1094,27 +1108,6 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof AuthenticatedSystemSettingsModelsSectionRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/maintenance/$section': {
id: '/_authenticated/system-settings/maintenance/$section'
path: '/maintenance/$section'
fullPath: '/system-settings/maintenance/$section'
preLoaderRoute: typeof AuthenticatedSystemSettingsMaintenanceSectionRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/integrations/$section': {
id: '/_authenticated/system-settings/integrations/$section'
path: '/integrations/$section'
fullPath: '/system-settings/integrations/$section'
preLoaderRoute: typeof AuthenticatedSystemSettingsIntegrationsSectionRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/general/$section': {
id: '/_authenticated/system-settings/general/$section'
path: '/general/$section'
fullPath: '/system-settings/general/$section'
preLoaderRoute: typeof AuthenticatedSystemSettingsGeneralSectionRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/content/$section': {
id: '/_authenticated/system-settings/content/$section'
path: '/content/$section'
@@ -1122,6 +1115,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof AuthenticatedSystemSettingsContentSectionRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/billing/$section': {
id: '/_authenticated/system-settings/billing/$section'
path: '/billing/$section'
fullPath: '/system-settings/billing/$section'
preLoaderRoute: typeof AuthenticatedSystemSettingsBillingSectionRouteImport
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
}
'/_authenticated/system-settings/auth/$section': {
id: '/_authenticated/system-settings/auth/$section'
path: '/auth/$section'
@@ -1159,19 +1159,19 @@ const authRouteRouteWithChildren = authRouteRoute._addFileChildren(
interface AuthenticatedSystemSettingsRouteRouteChildren {
AuthenticatedSystemSettingsIndexRoute: typeof AuthenticatedSystemSettingsIndexRoute
AuthenticatedSystemSettingsAuthSectionRoute: typeof AuthenticatedSystemSettingsAuthSectionRoute
AuthenticatedSystemSettingsBillingSectionRoute: typeof AuthenticatedSystemSettingsBillingSectionRoute
AuthenticatedSystemSettingsContentSectionRoute: typeof AuthenticatedSystemSettingsContentSectionRoute
AuthenticatedSystemSettingsGeneralSectionRoute: typeof AuthenticatedSystemSettingsGeneralSectionRoute
AuthenticatedSystemSettingsIntegrationsSectionRoute: typeof AuthenticatedSystemSettingsIntegrationsSectionRoute
AuthenticatedSystemSettingsMaintenanceSectionRoute: typeof AuthenticatedSystemSettingsMaintenanceSectionRoute
AuthenticatedSystemSettingsModelsSectionRoute: typeof AuthenticatedSystemSettingsModelsSectionRoute
AuthenticatedSystemSettingsRequestLimitsSectionRoute: typeof AuthenticatedSystemSettingsRequestLimitsSectionRoute
AuthenticatedSystemSettingsOperationsSectionRoute: typeof AuthenticatedSystemSettingsOperationsSectionRoute
AuthenticatedSystemSettingsSecuritySectionRoute: typeof AuthenticatedSystemSettingsSecuritySectionRoute
AuthenticatedSystemSettingsSiteSectionRoute: typeof AuthenticatedSystemSettingsSiteSectionRoute
AuthenticatedSystemSettingsAuthIndexRoute: typeof AuthenticatedSystemSettingsAuthIndexRoute
AuthenticatedSystemSettingsBillingIndexRoute: typeof AuthenticatedSystemSettingsBillingIndexRoute
AuthenticatedSystemSettingsContentIndexRoute: typeof AuthenticatedSystemSettingsContentIndexRoute
AuthenticatedSystemSettingsGeneralIndexRoute: typeof AuthenticatedSystemSettingsGeneralIndexRoute
AuthenticatedSystemSettingsIntegrationsIndexRoute: typeof AuthenticatedSystemSettingsIntegrationsIndexRoute
AuthenticatedSystemSettingsMaintenanceIndexRoute: typeof AuthenticatedSystemSettingsMaintenanceIndexRoute
AuthenticatedSystemSettingsModelsIndexRoute: typeof AuthenticatedSystemSettingsModelsIndexRoute
AuthenticatedSystemSettingsRequestLimitsIndexRoute: typeof AuthenticatedSystemSettingsRequestLimitsIndexRoute
AuthenticatedSystemSettingsOperationsIndexRoute: typeof AuthenticatedSystemSettingsOperationsIndexRoute
AuthenticatedSystemSettingsSecurityIndexRoute: typeof AuthenticatedSystemSettingsSecurityIndexRoute
AuthenticatedSystemSettingsSiteIndexRoute: typeof AuthenticatedSystemSettingsSiteIndexRoute
}
const AuthenticatedSystemSettingsRouteRouteChildren: AuthenticatedSystemSettingsRouteRouteChildren =
@@ -1180,32 +1180,32 @@ const AuthenticatedSystemSettingsRouteRouteChildren: AuthenticatedSystemSettings
AuthenticatedSystemSettingsIndexRoute,
AuthenticatedSystemSettingsAuthSectionRoute:
AuthenticatedSystemSettingsAuthSectionRoute,
AuthenticatedSystemSettingsBillingSectionRoute:
AuthenticatedSystemSettingsBillingSectionRoute,
AuthenticatedSystemSettingsContentSectionRoute:
AuthenticatedSystemSettingsContentSectionRoute,
AuthenticatedSystemSettingsGeneralSectionRoute:
AuthenticatedSystemSettingsGeneralSectionRoute,
AuthenticatedSystemSettingsIntegrationsSectionRoute:
AuthenticatedSystemSettingsIntegrationsSectionRoute,
AuthenticatedSystemSettingsMaintenanceSectionRoute:
AuthenticatedSystemSettingsMaintenanceSectionRoute,
AuthenticatedSystemSettingsModelsSectionRoute:
AuthenticatedSystemSettingsModelsSectionRoute,
AuthenticatedSystemSettingsRequestLimitsSectionRoute:
AuthenticatedSystemSettingsRequestLimitsSectionRoute,
AuthenticatedSystemSettingsOperationsSectionRoute:
AuthenticatedSystemSettingsOperationsSectionRoute,
AuthenticatedSystemSettingsSecuritySectionRoute:
AuthenticatedSystemSettingsSecuritySectionRoute,
AuthenticatedSystemSettingsSiteSectionRoute:
AuthenticatedSystemSettingsSiteSectionRoute,
AuthenticatedSystemSettingsAuthIndexRoute:
AuthenticatedSystemSettingsAuthIndexRoute,
AuthenticatedSystemSettingsBillingIndexRoute:
AuthenticatedSystemSettingsBillingIndexRoute,
AuthenticatedSystemSettingsContentIndexRoute:
AuthenticatedSystemSettingsContentIndexRoute,
AuthenticatedSystemSettingsGeneralIndexRoute:
AuthenticatedSystemSettingsGeneralIndexRoute,
AuthenticatedSystemSettingsIntegrationsIndexRoute:
AuthenticatedSystemSettingsIntegrationsIndexRoute,
AuthenticatedSystemSettingsMaintenanceIndexRoute:
AuthenticatedSystemSettingsMaintenanceIndexRoute,
AuthenticatedSystemSettingsModelsIndexRoute:
AuthenticatedSystemSettingsModelsIndexRoute,
AuthenticatedSystemSettingsRequestLimitsIndexRoute:
AuthenticatedSystemSettingsRequestLimitsIndexRoute,
AuthenticatedSystemSettingsOperationsIndexRoute:
AuthenticatedSystemSettingsOperationsIndexRoute,
AuthenticatedSystemSettingsSecurityIndexRoute:
AuthenticatedSystemSettingsSecurityIndexRoute,
AuthenticatedSystemSettingsSiteIndexRoute:
AuthenticatedSystemSettingsSiteIndexRoute,
}
const AuthenticatedSystemSettingsRouteRouteWithChildren =