export interface ScrapePreviewItem {
  id: string
  source: "Maritano" | "Bruno Fritsch" | "Salfa" | "Salazar Israel" | "Portillo Sur" | "Sergio Escobar"
  externalId: string
  title: string
  sourceUrl: string
  imageUrl?: string
  sellerName?: string
  year: number
  priceClp: number
  mileageKm?: number
  transmission: string
  fuel: string
  make: string
  model: string
  version?: string
  normalizedLabel: string
  comparisonKey: string
}

export interface ScrapePreviewResponse {
  fetchedAt: string
  sourceUrl: string
  totalAvailable?: number
  sampleSize: number
  items: ScrapePreviewItem[]
}
