/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { BenchmarkSourceRow } from './BenchmarkSourceRow'; /** * A single benchmark row for a project_type × geography × period. */ export type BenchmarkRow = { project_type: string; geography_tier: string; area_code: string; duration_days_p25?: (number | null); duration_days_p50?: (number | null); duration_days_p75?: (number | null); cost_usd_p25: number; cost_usd_p50: number; cost_usd_p75: number; cost_usd_base_year: number; labor_pct?: (number | null); materials_pct?: (number | null); labor_hours_breakdown?: (Record | null); trade_dependencies?: (Array | null); confidence: string; confidence_reason: string; methodology_id: string; methodology_version: string; period: string; fetched_at: string; sources: Array; };