* refactor: move lighthouse audits to dataforseo (#43) * refactor: move lighthouse audits to dataforseo * chore: remove obsolete audit settings modal * refactor: rename psi flows to lighthouse * save * refactor: simplify audit lighthouse storage flow * fix: separate lighthouse metrics from actionable audits * refactor: remove redundant audit project inputs * feat: redesign lighthouse issues screen with score gauges and table layout Replace flat score cards with circular SVG gauges, condense metrics into a compact grid, and switch issue list from cards to an expandable table with fixed column widths. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * test: harden lighthouse regression coverage * fix: restore project-scoped audit inputs * refactor: simplify lighthouse payload handling * refactor: inline lighthouse server handlers * refactor: share audit workflow types * refactor: simplify lighthouse payload flows * save * refactor: drop project pagespeed api key * fix: restore lighthouse issues loading with resilient project context * fix: restore audit issues back navigation * refactor: simplify project context and lighthouse error handling * fix: tolerate DataForSEO lighthouse payload drift * refactor: route audit lighthouse through dataforseo client --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * refactor: move DataForSEO response cache from KV to R2 (#46) * refactor: move lighthouse audits to dataforseo (#43) * refactor: move lighthouse audits to dataforseo * chore: remove obsolete audit settings modal * refactor: rename psi flows to lighthouse * save * refactor: simplify audit lighthouse storage flow * fix: separate lighthouse metrics from actionable audits * refactor: remove redundant audit project inputs * feat: redesign lighthouse issues screen with score gauges and table layout Replace flat score cards with circular SVG gauges, condense metrics into a compact grid, and switch issue list from cards to an expandable table with fixed column widths. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * test: harden lighthouse regression coverage * fix: restore project-scoped audit inputs * refactor: simplify lighthouse payload handling * refactor: inline lighthouse server handlers * refactor: share audit workflow types * refactor: simplify lighthouse payload flows * save * refactor: drop project pagespeed api key * fix: restore lighthouse issues loading with resilient project context * fix: restore audit issues back navigation * refactor: simplify project context and lighthouse error handling * fix: tolerate DataForSEO lighthouse payload drift * refactor: route audit lighthouse through dataforseo client --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * refactor: move DataForSEO response cache from KV to R2 KV TTL-based expiry is imprecise for cache freshness. Switch to R2 with soft TTL via custom metadata (expiresAt) and a 7-day lifecycle rule for cleanup. Cache objects live under the `dataforseo-cache/` prefix, separate from durable audit payloads in `site-audit/`. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * refactor: use Workers crypto for R2 cache keys Keep the cache helper aligned with the Cloudflare runtime and avoid pulling Worker bindings into Vitest. Also clarify that R2 lifecycle cleanup is optional but recommended to control storage growth. --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * refactor: move hosted billing to Autumn hooks (#48) * refactor: move lighthouse audits to dataforseo (#43) * refactor: move lighthouse audits to dataforseo * chore: remove obsolete audit settings modal * refactor: rename psi flows to lighthouse * save * refactor: simplify audit lighthouse storage flow * fix: separate lighthouse metrics from actionable audits * refactor: remove redundant audit project inputs * feat: redesign lighthouse issues screen with score gauges and table layout Replace flat score cards with circular SVG gauges, condense metrics into a compact grid, and switch issue list from cards to an expandable table with fixed column widths. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * test: harden lighthouse regression coverage * fix: restore project-scoped audit inputs * refactor: simplify lighthouse payload handling * refactor: inline lighthouse server handlers * refactor: share audit workflow types * refactor: simplify lighthouse payload flows * save * refactor: drop project pagespeed api key * fix: restore lighthouse issues loading with resilient project context * fix: restore audit issues back navigation * refactor: simplify project context and lighthouse error handling * fix: tolerate DataForSEO lighthouse payload drift * refactor: route audit lighthouse through dataforseo client --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * refactor: move hosted billing to Autumn hooks * fix: satisfy ci checks for hosted billing * refactor: simplify hosted Autumn billing integration Limit Autumn wiring to the billing route and remove billing-specific indirection so the hosted billing flow is easier to reason about. Stop sending organization IDs as fake customer names to keep customer identity data honest. * fix: satisfy ci line-limit check for hosted billing --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Add pricing page * merge * Revert home page back to normal --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
220 lines
6.2 KiB
TypeScript
220 lines
6.2 KiB
TypeScript
/* eslint-disable */
|
|
|
|
// @ts-nocheck
|
|
|
|
// noinspection JSUnusedGlobalSymbols
|
|
|
|
// This file was automatically generated by TanStack Router.
|
|
// You should NOT make any changes in this file as it will be overwritten.
|
|
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
|
|
|
|
import { Route as rootRouteImport } from './routes/__root'
|
|
import { Route as PrivacyRouteImport } from './routes/privacy'
|
|
import { Route as PricingRouteImport } from './routes/pricing'
|
|
import { Route as IndexRouteImport } from './routes/index'
|
|
import { Route as BlogsIndexRouteImport } from './routes/blogs/index'
|
|
import { Route as JsScriptDotjsRouteImport } from './routes/js/script[.]js'
|
|
import { Route as BlogsSplatRouteImport } from './routes/blogs/$'
|
|
import { Route as ApiSubscribeRouteImport } from './routes/api/subscribe'
|
|
import { Route as ApiEventRouteImport } from './routes/api/event'
|
|
|
|
const PrivacyRoute = PrivacyRouteImport.update({
|
|
id: '/privacy',
|
|
path: '/privacy',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const PricingRoute = PricingRouteImport.update({
|
|
id: '/pricing',
|
|
path: '/pricing',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const IndexRoute = IndexRouteImport.update({
|
|
id: '/',
|
|
path: '/',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const BlogsIndexRoute = BlogsIndexRouteImport.update({
|
|
id: '/blogs/',
|
|
path: '/blogs/',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const JsScriptDotjsRoute = JsScriptDotjsRouteImport.update({
|
|
id: '/js/script.js',
|
|
path: '/js/script.js',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const BlogsSplatRoute = BlogsSplatRouteImport.update({
|
|
id: '/blogs/$',
|
|
path: '/blogs/$',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const ApiSubscribeRoute = ApiSubscribeRouteImport.update({
|
|
id: '/api/subscribe',
|
|
path: '/api/subscribe',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const ApiEventRoute = ApiEventRouteImport.update({
|
|
id: '/api/event',
|
|
path: '/api/event',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
|
|
export interface FileRoutesByFullPath {
|
|
'/': typeof IndexRoute
|
|
'/pricing': typeof PricingRoute
|
|
'/privacy': typeof PrivacyRoute
|
|
'/api/event': typeof ApiEventRoute
|
|
'/api/subscribe': typeof ApiSubscribeRoute
|
|
'/blogs/$': typeof BlogsSplatRoute
|
|
'/js/script.js': typeof JsScriptDotjsRoute
|
|
'/blogs/': typeof BlogsIndexRoute
|
|
}
|
|
export interface FileRoutesByTo {
|
|
'/': typeof IndexRoute
|
|
'/pricing': typeof PricingRoute
|
|
'/privacy': typeof PrivacyRoute
|
|
'/api/event': typeof ApiEventRoute
|
|
'/api/subscribe': typeof ApiSubscribeRoute
|
|
'/blogs/$': typeof BlogsSplatRoute
|
|
'/js/script.js': typeof JsScriptDotjsRoute
|
|
'/blogs': typeof BlogsIndexRoute
|
|
}
|
|
export interface FileRoutesById {
|
|
__root__: typeof rootRouteImport
|
|
'/': typeof IndexRoute
|
|
'/pricing': typeof PricingRoute
|
|
'/privacy': typeof PrivacyRoute
|
|
'/api/event': typeof ApiEventRoute
|
|
'/api/subscribe': typeof ApiSubscribeRoute
|
|
'/blogs/$': typeof BlogsSplatRoute
|
|
'/js/script.js': typeof JsScriptDotjsRoute
|
|
'/blogs/': typeof BlogsIndexRoute
|
|
}
|
|
export interface FileRouteTypes {
|
|
fileRoutesByFullPath: FileRoutesByFullPath
|
|
fullPaths:
|
|
| '/'
|
|
| '/pricing'
|
|
| '/privacy'
|
|
| '/api/event'
|
|
| '/api/subscribe'
|
|
| '/blogs/$'
|
|
| '/js/script.js'
|
|
| '/blogs/'
|
|
fileRoutesByTo: FileRoutesByTo
|
|
to:
|
|
| '/'
|
|
| '/pricing'
|
|
| '/privacy'
|
|
| '/api/event'
|
|
| '/api/subscribe'
|
|
| '/blogs/$'
|
|
| '/js/script.js'
|
|
| '/blogs'
|
|
id:
|
|
| '__root__'
|
|
| '/'
|
|
| '/pricing'
|
|
| '/privacy'
|
|
| '/api/event'
|
|
| '/api/subscribe'
|
|
| '/blogs/$'
|
|
| '/js/script.js'
|
|
| '/blogs/'
|
|
fileRoutesById: FileRoutesById
|
|
}
|
|
export interface RootRouteChildren {
|
|
IndexRoute: typeof IndexRoute
|
|
PricingRoute: typeof PricingRoute
|
|
PrivacyRoute: typeof PrivacyRoute
|
|
ApiEventRoute: typeof ApiEventRoute
|
|
ApiSubscribeRoute: typeof ApiSubscribeRoute
|
|
BlogsSplatRoute: typeof BlogsSplatRoute
|
|
JsScriptDotjsRoute: typeof JsScriptDotjsRoute
|
|
BlogsIndexRoute: typeof BlogsIndexRoute
|
|
}
|
|
|
|
declare module '@tanstack/react-router' {
|
|
interface FileRoutesByPath {
|
|
'/privacy': {
|
|
id: '/privacy'
|
|
path: '/privacy'
|
|
fullPath: '/privacy'
|
|
preLoaderRoute: typeof PrivacyRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/pricing': {
|
|
id: '/pricing'
|
|
path: '/pricing'
|
|
fullPath: '/pricing'
|
|
preLoaderRoute: typeof PricingRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/': {
|
|
id: '/'
|
|
path: '/'
|
|
fullPath: '/'
|
|
preLoaderRoute: typeof IndexRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/blogs/': {
|
|
id: '/blogs/'
|
|
path: '/blogs'
|
|
fullPath: '/blogs/'
|
|
preLoaderRoute: typeof BlogsIndexRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/js/script.js': {
|
|
id: '/js/script.js'
|
|
path: '/js/script.js'
|
|
fullPath: '/js/script.js'
|
|
preLoaderRoute: typeof JsScriptDotjsRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/blogs/$': {
|
|
id: '/blogs/$'
|
|
path: '/blogs/$'
|
|
fullPath: '/blogs/$'
|
|
preLoaderRoute: typeof BlogsSplatRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/api/subscribe': {
|
|
id: '/api/subscribe'
|
|
path: '/api/subscribe'
|
|
fullPath: '/api/subscribe'
|
|
preLoaderRoute: typeof ApiSubscribeRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/api/event': {
|
|
id: '/api/event'
|
|
path: '/api/event'
|
|
fullPath: '/api/event'
|
|
preLoaderRoute: typeof ApiEventRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
}
|
|
}
|
|
|
|
const rootRouteChildren: RootRouteChildren = {
|
|
IndexRoute: IndexRoute,
|
|
PricingRoute: PricingRoute,
|
|
PrivacyRoute: PrivacyRoute,
|
|
ApiEventRoute: ApiEventRoute,
|
|
ApiSubscribeRoute: ApiSubscribeRoute,
|
|
BlogsSplatRoute: BlogsSplatRoute,
|
|
JsScriptDotjsRoute: JsScriptDotjsRoute,
|
|
BlogsIndexRoute: BlogsIndexRoute,
|
|
}
|
|
export const routeTree = rootRouteImport
|
|
._addFileChildren(rootRouteChildren)
|
|
._addFileTypes<FileRouteTypes>()
|
|
|
|
import type { getRouter } from './router.tsx'
|
|
import type { createStart } from '@tanstack/react-start'
|
|
declare module '@tanstack/react-start' {
|
|
interface Register {
|
|
ssr: true
|
|
router: Awaited<ReturnType<typeof getRouter>>
|
|
}
|
|
}
|