import type { ProductCertificationRow } from './ProductCertificationRow'; import type { ProductSourceRow } from './ProductSourceRow'; /** * A single product SKU + its specs + sources + certifications. */ export type ProductRow = { id: number; mfr: string; model_number: string; name: string; category: string; revision: string; /** * One of certified / mfr_published / ollama_extracted / legacy_or_stale */ confidence: string; specs: Record; source_url: string; image_url?: (string | null); fetched_at: string; sources?: Array; certifications?: Array; }; //# sourceMappingURL=ProductRow.d.ts.map