|
@@ -51,19 +51,19 @@ import { Route as AuthenticatedErrorsErrorRouteImport } from './routes/_authenti
|
|
|
import { Route as AuthenticatedDashboardSectionRouteImport } from './routes/_authenticated/dashboard/$section'
|
|
import { Route as AuthenticatedDashboardSectionRouteImport } from './routes/_authenticated/dashboard/$section'
|
|
|
import { Route as AuthenticatedChatChatIdRouteImport } from './routes/_authenticated/chat/$chatId'
|
|
import { Route as AuthenticatedChatChatIdRouteImport } from './routes/_authenticated/chat/$chatId'
|
|
|
import { Route as authUserResetRouteImport } from './routes/(auth)/user/reset'
|
|
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 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 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 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 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 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'
|
|
import { Route as AuthenticatedSystemSettingsAuthSectionRouteImport } from './routes/_authenticated/system-settings/auth/$section'
|
|
|
|
|
|
|
|
const UserAgreementRoute = UserAgreementRouteImport.update({
|
|
const UserAgreementRoute = UserAgreementRouteImport.update({
|
|
@@ -289,34 +289,28 @@ const authUserResetRoute = authUserResetRouteImport.update({
|
|
|
path: '/user/reset',
|
|
path: '/user/reset',
|
|
|
getParentRoute: () => authRouteRoute,
|
|
getParentRoute: () => authRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
-const AuthenticatedSystemSettingsRequestLimitsIndexRoute =
|
|
|
|
|
- AuthenticatedSystemSettingsRequestLimitsIndexRouteImport.update({
|
|
|
|
|
- id: '/request-limits/',
|
|
|
|
|
- path: '/request-limits/',
|
|
|
|
|
|
|
+const AuthenticatedSystemSettingsSiteIndexRoute =
|
|
|
|
|
+ AuthenticatedSystemSettingsSiteIndexRouteImport.update({
|
|
|
|
|
+ id: '/site/',
|
|
|
|
|
+ path: '/site/',
|
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
-const AuthenticatedSystemSettingsModelsIndexRoute =
|
|
|
|
|
- AuthenticatedSystemSettingsModelsIndexRouteImport.update({
|
|
|
|
|
- id: '/models/',
|
|
|
|
|
- path: '/models/',
|
|
|
|
|
- getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
|
|
- } as any)
|
|
|
|
|
-const AuthenticatedSystemSettingsMaintenanceIndexRoute =
|
|
|
|
|
- AuthenticatedSystemSettingsMaintenanceIndexRouteImport.update({
|
|
|
|
|
- id: '/maintenance/',
|
|
|
|
|
- path: '/maintenance/',
|
|
|
|
|
|
|
+const AuthenticatedSystemSettingsSecurityIndexRoute =
|
|
|
|
|
+ AuthenticatedSystemSettingsSecurityIndexRouteImport.update({
|
|
|
|
|
+ id: '/security/',
|
|
|
|
|
+ path: '/security/',
|
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
-const AuthenticatedSystemSettingsIntegrationsIndexRoute =
|
|
|
|
|
- AuthenticatedSystemSettingsIntegrationsIndexRouteImport.update({
|
|
|
|
|
- id: '/integrations/',
|
|
|
|
|
- path: '/integrations/',
|
|
|
|
|
|
|
+const AuthenticatedSystemSettingsOperationsIndexRoute =
|
|
|
|
|
+ AuthenticatedSystemSettingsOperationsIndexRouteImport.update({
|
|
|
|
|
+ id: '/operations/',
|
|
|
|
|
+ path: '/operations/',
|
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
-const AuthenticatedSystemSettingsGeneralIndexRoute =
|
|
|
|
|
- AuthenticatedSystemSettingsGeneralIndexRouteImport.update({
|
|
|
|
|
- id: '/general/',
|
|
|
|
|
- path: '/general/',
|
|
|
|
|
|
|
+const AuthenticatedSystemSettingsModelsIndexRoute =
|
|
|
|
|
+ AuthenticatedSystemSettingsModelsIndexRouteImport.update({
|
|
|
|
|
+ id: '/models/',
|
|
|
|
|
+ path: '/models/',
|
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
const AuthenticatedSystemSettingsContentIndexRoute =
|
|
const AuthenticatedSystemSettingsContentIndexRoute =
|
|
@@ -325,40 +319,40 @@ const AuthenticatedSystemSettingsContentIndexRoute =
|
|
|
path: '/content/',
|
|
path: '/content/',
|
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
|
|
+const AuthenticatedSystemSettingsBillingIndexRoute =
|
|
|
|
|
+ AuthenticatedSystemSettingsBillingIndexRouteImport.update({
|
|
|
|
|
+ id: '/billing/',
|
|
|
|
|
+ path: '/billing/',
|
|
|
|
|
+ getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
|
|
+ } as any)
|
|
|
const AuthenticatedSystemSettingsAuthIndexRoute =
|
|
const AuthenticatedSystemSettingsAuthIndexRoute =
|
|
|
AuthenticatedSystemSettingsAuthIndexRouteImport.update({
|
|
AuthenticatedSystemSettingsAuthIndexRouteImport.update({
|
|
|
id: '/auth/',
|
|
id: '/auth/',
|
|
|
path: '/auth/',
|
|
path: '/auth/',
|
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
} as any)
|
|
} 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,
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
-const AuthenticatedSystemSettingsModelsSectionRoute =
|
|
|
|
|
- AuthenticatedSystemSettingsModelsSectionRouteImport.update({
|
|
|
|
|
- id: '/models/$section',
|
|
|
|
|
- path: '/models/$section',
|
|
|
|
|
- getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
|
|
- } as any)
|
|
|
|
|
-const AuthenticatedSystemSettingsMaintenanceSectionRoute =
|
|
|
|
|
- AuthenticatedSystemSettingsMaintenanceSectionRouteImport.update({
|
|
|
|
|
- id: '/maintenance/$section',
|
|
|
|
|
- path: '/maintenance/$section',
|
|
|
|
|
|
|
+const AuthenticatedSystemSettingsSecuritySectionRoute =
|
|
|
|
|
+ AuthenticatedSystemSettingsSecuritySectionRouteImport.update({
|
|
|
|
|
+ id: '/security/$section',
|
|
|
|
|
+ path: '/security/$section',
|
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
-const AuthenticatedSystemSettingsIntegrationsSectionRoute =
|
|
|
|
|
- AuthenticatedSystemSettingsIntegrationsSectionRouteImport.update({
|
|
|
|
|
- id: '/integrations/$section',
|
|
|
|
|
- path: '/integrations/$section',
|
|
|
|
|
|
|
+const AuthenticatedSystemSettingsOperationsSectionRoute =
|
|
|
|
|
+ AuthenticatedSystemSettingsOperationsSectionRouteImport.update({
|
|
|
|
|
+ id: '/operations/$section',
|
|
|
|
|
+ path: '/operations/$section',
|
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
-const AuthenticatedSystemSettingsGeneralSectionRoute =
|
|
|
|
|
- AuthenticatedSystemSettingsGeneralSectionRouteImport.update({
|
|
|
|
|
- id: '/general/$section',
|
|
|
|
|
- path: '/general/$section',
|
|
|
|
|
|
|
+const AuthenticatedSystemSettingsModelsSectionRoute =
|
|
|
|
|
+ AuthenticatedSystemSettingsModelsSectionRouteImport.update({
|
|
|
|
|
+ id: '/models/$section',
|
|
|
|
|
+ path: '/models/$section',
|
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
const AuthenticatedSystemSettingsContentSectionRoute =
|
|
const AuthenticatedSystemSettingsContentSectionRoute =
|
|
@@ -367,6 +361,12 @@ const AuthenticatedSystemSettingsContentSectionRoute =
|
|
|
path: '/content/$section',
|
|
path: '/content/$section',
|
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
} as any)
|
|
} as any)
|
|
|
|
|
+const AuthenticatedSystemSettingsBillingSectionRoute =
|
|
|
|
|
+ AuthenticatedSystemSettingsBillingSectionRouteImport.update({
|
|
|
|
|
+ id: '/billing/$section',
|
|
|
|
|
+ path: '/billing/$section',
|
|
|
|
|
+ getParentRoute: () => AuthenticatedSystemSettingsRouteRoute,
|
|
|
|
|
+ } as any)
|
|
|
const AuthenticatedSystemSettingsAuthSectionRoute =
|
|
const AuthenticatedSystemSettingsAuthSectionRoute =
|
|
|
AuthenticatedSystemSettingsAuthSectionRouteImport.update({
|
|
AuthenticatedSystemSettingsAuthSectionRouteImport.update({
|
|
|
id: '/auth/$section',
|
|
id: '/auth/$section',
|
|
@@ -416,19 +416,19 @@ export interface FileRoutesByFullPath {
|
|
|
'/wallet/': typeof AuthenticatedWalletIndexRoute
|
|
'/wallet/': typeof AuthenticatedWalletIndexRoute
|
|
|
'/pricing/$modelId/': typeof PricingModelIdIndexRoute
|
|
'/pricing/$modelId/': typeof PricingModelIdIndexRoute
|
|
|
'/system-settings/auth/$section': typeof AuthenticatedSystemSettingsAuthSectionRoute
|
|
'/system-settings/auth/$section': typeof AuthenticatedSystemSettingsAuthSectionRoute
|
|
|
|
|
+ '/system-settings/billing/$section': typeof AuthenticatedSystemSettingsBillingSectionRoute
|
|
|
'/system-settings/content/$section': typeof AuthenticatedSystemSettingsContentSectionRoute
|
|
'/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/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/auth/': typeof AuthenticatedSystemSettingsAuthIndexRoute
|
|
|
|
|
+ '/system-settings/billing/': typeof AuthenticatedSystemSettingsBillingIndexRoute
|
|
|
'/system-settings/content/': typeof AuthenticatedSystemSettingsContentIndexRoute
|
|
'/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/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 {
|
|
export interface FileRoutesByTo {
|
|
|
'/': typeof IndexRoute
|
|
'/': typeof IndexRoute
|
|
@@ -471,19 +471,19 @@ export interface FileRoutesByTo {
|
|
|
'/wallet': typeof AuthenticatedWalletIndexRoute
|
|
'/wallet': typeof AuthenticatedWalletIndexRoute
|
|
|
'/pricing/$modelId': typeof PricingModelIdIndexRoute
|
|
'/pricing/$modelId': typeof PricingModelIdIndexRoute
|
|
|
'/system-settings/auth/$section': typeof AuthenticatedSystemSettingsAuthSectionRoute
|
|
'/system-settings/auth/$section': typeof AuthenticatedSystemSettingsAuthSectionRoute
|
|
|
|
|
+ '/system-settings/billing/$section': typeof AuthenticatedSystemSettingsBillingSectionRoute
|
|
|
'/system-settings/content/$section': typeof AuthenticatedSystemSettingsContentSectionRoute
|
|
'/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/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/auth': typeof AuthenticatedSystemSettingsAuthIndexRoute
|
|
|
|
|
+ '/system-settings/billing': typeof AuthenticatedSystemSettingsBillingIndexRoute
|
|
|
'/system-settings/content': typeof AuthenticatedSystemSettingsContentIndexRoute
|
|
'/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/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 {
|
|
export interface FileRoutesById {
|
|
|
__root__: typeof rootRouteImport
|
|
__root__: typeof rootRouteImport
|
|
@@ -530,19 +530,19 @@ export interface FileRoutesById {
|
|
|
'/_authenticated/wallet/': typeof AuthenticatedWalletIndexRoute
|
|
'/_authenticated/wallet/': typeof AuthenticatedWalletIndexRoute
|
|
|
'/pricing/$modelId/': typeof PricingModelIdIndexRoute
|
|
'/pricing/$modelId/': typeof PricingModelIdIndexRoute
|
|
|
'/_authenticated/system-settings/auth/$section': typeof AuthenticatedSystemSettingsAuthSectionRoute
|
|
'/_authenticated/system-settings/auth/$section': typeof AuthenticatedSystemSettingsAuthSectionRoute
|
|
|
|
|
+ '/_authenticated/system-settings/billing/$section': typeof AuthenticatedSystemSettingsBillingSectionRoute
|
|
|
'/_authenticated/system-settings/content/$section': typeof AuthenticatedSystemSettingsContentSectionRoute
|
|
'/_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/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/auth/': typeof AuthenticatedSystemSettingsAuthIndexRoute
|
|
|
|
|
+ '/_authenticated/system-settings/billing/': typeof AuthenticatedSystemSettingsBillingIndexRoute
|
|
|
'/_authenticated/system-settings/content/': typeof AuthenticatedSystemSettingsContentIndexRoute
|
|
'/_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/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 {
|
|
export interface FileRouteTypes {
|
|
|
fileRoutesByFullPath: FileRoutesByFullPath
|
|
fileRoutesByFullPath: FileRoutesByFullPath
|
|
@@ -588,19 +588,19 @@ export interface FileRouteTypes {
|
|
|
| '/wallet/'
|
|
| '/wallet/'
|
|
|
| '/pricing/$modelId/'
|
|
| '/pricing/$modelId/'
|
|
|
| '/system-settings/auth/$section'
|
|
| '/system-settings/auth/$section'
|
|
|
|
|
+ | '/system-settings/billing/$section'
|
|
|
| '/system-settings/content/$section'
|
|
| '/system-settings/content/$section'
|
|
|
- | '/system-settings/general/$section'
|
|
|
|
|
- | '/system-settings/integrations/$section'
|
|
|
|
|
- | '/system-settings/maintenance/$section'
|
|
|
|
|
| '/system-settings/models/$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/auth/'
|
|
|
|
|
+ | '/system-settings/billing/'
|
|
|
| '/system-settings/content/'
|
|
| '/system-settings/content/'
|
|
|
- | '/system-settings/general/'
|
|
|
|
|
- | '/system-settings/integrations/'
|
|
|
|
|
- | '/system-settings/maintenance/'
|
|
|
|
|
| '/system-settings/models/'
|
|
| '/system-settings/models/'
|
|
|
- | '/system-settings/request-limits/'
|
|
|
|
|
|
|
+ | '/system-settings/operations/'
|
|
|
|
|
+ | '/system-settings/security/'
|
|
|
|
|
+ | '/system-settings/site/'
|
|
|
fileRoutesByTo: FileRoutesByTo
|
|
fileRoutesByTo: FileRoutesByTo
|
|
|
to:
|
|
to:
|
|
|
| '/'
|
|
| '/'
|
|
@@ -643,19 +643,19 @@ export interface FileRouteTypes {
|
|
|
| '/wallet'
|
|
| '/wallet'
|
|
|
| '/pricing/$modelId'
|
|
| '/pricing/$modelId'
|
|
|
| '/system-settings/auth/$section'
|
|
| '/system-settings/auth/$section'
|
|
|
|
|
+ | '/system-settings/billing/$section'
|
|
|
| '/system-settings/content/$section'
|
|
| '/system-settings/content/$section'
|
|
|
- | '/system-settings/general/$section'
|
|
|
|
|
- | '/system-settings/integrations/$section'
|
|
|
|
|
- | '/system-settings/maintenance/$section'
|
|
|
|
|
| '/system-settings/models/$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/auth'
|
|
|
|
|
+ | '/system-settings/billing'
|
|
|
| '/system-settings/content'
|
|
| '/system-settings/content'
|
|
|
- | '/system-settings/general'
|
|
|
|
|
- | '/system-settings/integrations'
|
|
|
|
|
- | '/system-settings/maintenance'
|
|
|
|
|
| '/system-settings/models'
|
|
| '/system-settings/models'
|
|
|
- | '/system-settings/request-limits'
|
|
|
|
|
|
|
+ | '/system-settings/operations'
|
|
|
|
|
+ | '/system-settings/security'
|
|
|
|
|
+ | '/system-settings/site'
|
|
|
id:
|
|
id:
|
|
|
| '__root__'
|
|
| '__root__'
|
|
|
| '/'
|
|
| '/'
|
|
@@ -701,19 +701,19 @@ export interface FileRouteTypes {
|
|
|
| '/_authenticated/wallet/'
|
|
| '/_authenticated/wallet/'
|
|
|
| '/pricing/$modelId/'
|
|
| '/pricing/$modelId/'
|
|
|
| '/_authenticated/system-settings/auth/$section'
|
|
| '/_authenticated/system-settings/auth/$section'
|
|
|
|
|
+ | '/_authenticated/system-settings/billing/$section'
|
|
|
| '/_authenticated/system-settings/content/$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/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/auth/'
|
|
|
|
|
+ | '/_authenticated/system-settings/billing/'
|
|
|
| '/_authenticated/system-settings/content/'
|
|
| '/_authenticated/system-settings/content/'
|
|
|
- | '/_authenticated/system-settings/general/'
|
|
|
|
|
- | '/_authenticated/system-settings/integrations/'
|
|
|
|
|
- | '/_authenticated/system-settings/maintenance/'
|
|
|
|
|
| '/_authenticated/system-settings/models/'
|
|
| '/_authenticated/system-settings/models/'
|
|
|
- | '/_authenticated/system-settings/request-limits/'
|
|
|
|
|
|
|
+ | '/_authenticated/system-settings/operations/'
|
|
|
|
|
+ | '/_authenticated/system-settings/security/'
|
|
|
|
|
+ | '/_authenticated/system-settings/site/'
|
|
|
fileRoutesById: FileRoutesById
|
|
fileRoutesById: FileRoutesById
|
|
|
}
|
|
}
|
|
|
export interface RootRouteChildren {
|
|
export interface RootRouteChildren {
|
|
@@ -1031,11 +1031,25 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof authUserResetRouteImport
|
|
preLoaderRoute: typeof authUserResetRouteImport
|
|
|
parentRoute: typeof authRouteRoute
|
|
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
|
|
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
|
|
|
}
|
|
}
|
|
|
'/_authenticated/system-settings/models/': {
|
|
'/_authenticated/system-settings/models/': {
|
|
@@ -1045,27 +1059,6 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof AuthenticatedSystemSettingsModelsIndexRouteImport
|
|
preLoaderRoute: typeof AuthenticatedSystemSettingsModelsIndexRouteImport
|
|
|
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
|
|
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/': {
|
|
'/_authenticated/system-settings/content/': {
|
|
|
id: '/_authenticated/system-settings/content/'
|
|
id: '/_authenticated/system-settings/content/'
|
|
|
path: '/content'
|
|
path: '/content'
|
|
@@ -1073,6 +1066,13 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof AuthenticatedSystemSettingsContentIndexRouteImport
|
|
preLoaderRoute: typeof AuthenticatedSystemSettingsContentIndexRouteImport
|
|
|
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
|
|
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/': {
|
|
'/_authenticated/system-settings/auth/': {
|
|
|
id: '/_authenticated/system-settings/auth/'
|
|
id: '/_authenticated/system-settings/auth/'
|
|
|
path: '/auth'
|
|
path: '/auth'
|
|
@@ -1080,11 +1080,25 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof AuthenticatedSystemSettingsAuthIndexRouteImport
|
|
preLoaderRoute: typeof AuthenticatedSystemSettingsAuthIndexRouteImport
|
|
|
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
|
|
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
|
|
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
|
|
|
}
|
|
}
|
|
|
'/_authenticated/system-settings/models/$section': {
|
|
'/_authenticated/system-settings/models/$section': {
|
|
@@ -1094,27 +1108,6 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof AuthenticatedSystemSettingsModelsSectionRouteImport
|
|
preLoaderRoute: typeof AuthenticatedSystemSettingsModelsSectionRouteImport
|
|
|
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
|
|
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': {
|
|
'/_authenticated/system-settings/content/$section': {
|
|
|
id: '/_authenticated/system-settings/content/$section'
|
|
id: '/_authenticated/system-settings/content/$section'
|
|
|
path: '/content/$section'
|
|
path: '/content/$section'
|
|
@@ -1122,6 +1115,13 @@ declare module '@tanstack/react-router' {
|
|
|
preLoaderRoute: typeof AuthenticatedSystemSettingsContentSectionRouteImport
|
|
preLoaderRoute: typeof AuthenticatedSystemSettingsContentSectionRouteImport
|
|
|
parentRoute: typeof AuthenticatedSystemSettingsRouteRoute
|
|
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': {
|
|
'/_authenticated/system-settings/auth/$section': {
|
|
|
id: '/_authenticated/system-settings/auth/$section'
|
|
id: '/_authenticated/system-settings/auth/$section'
|
|
|
path: '/auth/$section'
|
|
path: '/auth/$section'
|
|
@@ -1159,19 +1159,19 @@ const authRouteRouteWithChildren = authRouteRoute._addFileChildren(
|
|
|
interface AuthenticatedSystemSettingsRouteRouteChildren {
|
|
interface AuthenticatedSystemSettingsRouteRouteChildren {
|
|
|
AuthenticatedSystemSettingsIndexRoute: typeof AuthenticatedSystemSettingsIndexRoute
|
|
AuthenticatedSystemSettingsIndexRoute: typeof AuthenticatedSystemSettingsIndexRoute
|
|
|
AuthenticatedSystemSettingsAuthSectionRoute: typeof AuthenticatedSystemSettingsAuthSectionRoute
|
|
AuthenticatedSystemSettingsAuthSectionRoute: typeof AuthenticatedSystemSettingsAuthSectionRoute
|
|
|
|
|
+ AuthenticatedSystemSettingsBillingSectionRoute: typeof AuthenticatedSystemSettingsBillingSectionRoute
|
|
|
AuthenticatedSystemSettingsContentSectionRoute: typeof AuthenticatedSystemSettingsContentSectionRoute
|
|
AuthenticatedSystemSettingsContentSectionRoute: typeof AuthenticatedSystemSettingsContentSectionRoute
|
|
|
- AuthenticatedSystemSettingsGeneralSectionRoute: typeof AuthenticatedSystemSettingsGeneralSectionRoute
|
|
|
|
|
- AuthenticatedSystemSettingsIntegrationsSectionRoute: typeof AuthenticatedSystemSettingsIntegrationsSectionRoute
|
|
|
|
|
- AuthenticatedSystemSettingsMaintenanceSectionRoute: typeof AuthenticatedSystemSettingsMaintenanceSectionRoute
|
|
|
|
|
AuthenticatedSystemSettingsModelsSectionRoute: typeof AuthenticatedSystemSettingsModelsSectionRoute
|
|
AuthenticatedSystemSettingsModelsSectionRoute: typeof AuthenticatedSystemSettingsModelsSectionRoute
|
|
|
- AuthenticatedSystemSettingsRequestLimitsSectionRoute: typeof AuthenticatedSystemSettingsRequestLimitsSectionRoute
|
|
|
|
|
|
|
+ AuthenticatedSystemSettingsOperationsSectionRoute: typeof AuthenticatedSystemSettingsOperationsSectionRoute
|
|
|
|
|
+ AuthenticatedSystemSettingsSecuritySectionRoute: typeof AuthenticatedSystemSettingsSecuritySectionRoute
|
|
|
|
|
+ AuthenticatedSystemSettingsSiteSectionRoute: typeof AuthenticatedSystemSettingsSiteSectionRoute
|
|
|
AuthenticatedSystemSettingsAuthIndexRoute: typeof AuthenticatedSystemSettingsAuthIndexRoute
|
|
AuthenticatedSystemSettingsAuthIndexRoute: typeof AuthenticatedSystemSettingsAuthIndexRoute
|
|
|
|
|
+ AuthenticatedSystemSettingsBillingIndexRoute: typeof AuthenticatedSystemSettingsBillingIndexRoute
|
|
|
AuthenticatedSystemSettingsContentIndexRoute: typeof AuthenticatedSystemSettingsContentIndexRoute
|
|
AuthenticatedSystemSettingsContentIndexRoute: typeof AuthenticatedSystemSettingsContentIndexRoute
|
|
|
- AuthenticatedSystemSettingsGeneralIndexRoute: typeof AuthenticatedSystemSettingsGeneralIndexRoute
|
|
|
|
|
- AuthenticatedSystemSettingsIntegrationsIndexRoute: typeof AuthenticatedSystemSettingsIntegrationsIndexRoute
|
|
|
|
|
- AuthenticatedSystemSettingsMaintenanceIndexRoute: typeof AuthenticatedSystemSettingsMaintenanceIndexRoute
|
|
|
|
|
AuthenticatedSystemSettingsModelsIndexRoute: typeof AuthenticatedSystemSettingsModelsIndexRoute
|
|
AuthenticatedSystemSettingsModelsIndexRoute: typeof AuthenticatedSystemSettingsModelsIndexRoute
|
|
|
- AuthenticatedSystemSettingsRequestLimitsIndexRoute: typeof AuthenticatedSystemSettingsRequestLimitsIndexRoute
|
|
|
|
|
|
|
+ AuthenticatedSystemSettingsOperationsIndexRoute: typeof AuthenticatedSystemSettingsOperationsIndexRoute
|
|
|
|
|
+ AuthenticatedSystemSettingsSecurityIndexRoute: typeof AuthenticatedSystemSettingsSecurityIndexRoute
|
|
|
|
|
+ AuthenticatedSystemSettingsSiteIndexRoute: typeof AuthenticatedSystemSettingsSiteIndexRoute
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
const AuthenticatedSystemSettingsRouteRouteChildren: AuthenticatedSystemSettingsRouteRouteChildren =
|
|
const AuthenticatedSystemSettingsRouteRouteChildren: AuthenticatedSystemSettingsRouteRouteChildren =
|
|
@@ -1180,32 +1180,32 @@ const AuthenticatedSystemSettingsRouteRouteChildren: AuthenticatedSystemSettings
|
|
|
AuthenticatedSystemSettingsIndexRoute,
|
|
AuthenticatedSystemSettingsIndexRoute,
|
|
|
AuthenticatedSystemSettingsAuthSectionRoute:
|
|
AuthenticatedSystemSettingsAuthSectionRoute:
|
|
|
AuthenticatedSystemSettingsAuthSectionRoute,
|
|
AuthenticatedSystemSettingsAuthSectionRoute,
|
|
|
|
|
+ AuthenticatedSystemSettingsBillingSectionRoute:
|
|
|
|
|
+ AuthenticatedSystemSettingsBillingSectionRoute,
|
|
|
AuthenticatedSystemSettingsContentSectionRoute:
|
|
AuthenticatedSystemSettingsContentSectionRoute:
|
|
|
AuthenticatedSystemSettingsContentSectionRoute,
|
|
AuthenticatedSystemSettingsContentSectionRoute,
|
|
|
- AuthenticatedSystemSettingsGeneralSectionRoute:
|
|
|
|
|
- AuthenticatedSystemSettingsGeneralSectionRoute,
|
|
|
|
|
- AuthenticatedSystemSettingsIntegrationsSectionRoute:
|
|
|
|
|
- AuthenticatedSystemSettingsIntegrationsSectionRoute,
|
|
|
|
|
- AuthenticatedSystemSettingsMaintenanceSectionRoute:
|
|
|
|
|
- AuthenticatedSystemSettingsMaintenanceSectionRoute,
|
|
|
|
|
AuthenticatedSystemSettingsModelsSectionRoute:
|
|
AuthenticatedSystemSettingsModelsSectionRoute:
|
|
|
AuthenticatedSystemSettingsModelsSectionRoute,
|
|
AuthenticatedSystemSettingsModelsSectionRoute,
|
|
|
- AuthenticatedSystemSettingsRequestLimitsSectionRoute:
|
|
|
|
|
- AuthenticatedSystemSettingsRequestLimitsSectionRoute,
|
|
|
|
|
|
|
+ AuthenticatedSystemSettingsOperationsSectionRoute:
|
|
|
|
|
+ AuthenticatedSystemSettingsOperationsSectionRoute,
|
|
|
|
|
+ AuthenticatedSystemSettingsSecuritySectionRoute:
|
|
|
|
|
+ AuthenticatedSystemSettingsSecuritySectionRoute,
|
|
|
|
|
+ AuthenticatedSystemSettingsSiteSectionRoute:
|
|
|
|
|
+ AuthenticatedSystemSettingsSiteSectionRoute,
|
|
|
AuthenticatedSystemSettingsAuthIndexRoute:
|
|
AuthenticatedSystemSettingsAuthIndexRoute:
|
|
|
AuthenticatedSystemSettingsAuthIndexRoute,
|
|
AuthenticatedSystemSettingsAuthIndexRoute,
|
|
|
|
|
+ AuthenticatedSystemSettingsBillingIndexRoute:
|
|
|
|
|
+ AuthenticatedSystemSettingsBillingIndexRoute,
|
|
|
AuthenticatedSystemSettingsContentIndexRoute:
|
|
AuthenticatedSystemSettingsContentIndexRoute:
|
|
|
AuthenticatedSystemSettingsContentIndexRoute,
|
|
AuthenticatedSystemSettingsContentIndexRoute,
|
|
|
- AuthenticatedSystemSettingsGeneralIndexRoute:
|
|
|
|
|
- AuthenticatedSystemSettingsGeneralIndexRoute,
|
|
|
|
|
- AuthenticatedSystemSettingsIntegrationsIndexRoute:
|
|
|
|
|
- AuthenticatedSystemSettingsIntegrationsIndexRoute,
|
|
|
|
|
- AuthenticatedSystemSettingsMaintenanceIndexRoute:
|
|
|
|
|
- AuthenticatedSystemSettingsMaintenanceIndexRoute,
|
|
|
|
|
AuthenticatedSystemSettingsModelsIndexRoute:
|
|
AuthenticatedSystemSettingsModelsIndexRoute:
|
|
|
AuthenticatedSystemSettingsModelsIndexRoute,
|
|
AuthenticatedSystemSettingsModelsIndexRoute,
|
|
|
- AuthenticatedSystemSettingsRequestLimitsIndexRoute:
|
|
|
|
|
- AuthenticatedSystemSettingsRequestLimitsIndexRoute,
|
|
|
|
|
|
|
+ AuthenticatedSystemSettingsOperationsIndexRoute:
|
|
|
|
|
+ AuthenticatedSystemSettingsOperationsIndexRoute,
|
|
|
|
|
+ AuthenticatedSystemSettingsSecurityIndexRoute:
|
|
|
|
|
+ AuthenticatedSystemSettingsSecurityIndexRoute,
|
|
|
|
|
+ AuthenticatedSystemSettingsSiteIndexRoute:
|
|
|
|
|
+ AuthenticatedSystemSettingsSiteIndexRoute,
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
const AuthenticatedSystemSettingsRouteRouteWithChildren =
|
|
const AuthenticatedSystemSettingsRouteRouteWithChildren =
|