import type { MarketReport } from '../domain/marketReport' import { mockPropertyMarketSignals } from '../mock-data/propertyMarketSignals' export const marketReportService = { async getByProperty(propertyId: string): Promise { return mockPropertyMarketSignals.find(r => r.propertyId === propertyId) ?? null }, }