Add batch valuation (POST /analytics/valuation/batch, max 50 properties), valuation comparison (POST /analytics/valuation/compare, 2-5 properties), and history endpoint (GET /analytics/valuation/history/:propertyId) with confidence explanation helper. Frontend: enhanced valuation form with project autocomplete and deep analysis toggle, results with confidence badges and price range visualization, comparables table, history chart, market context card, and PDF export. Co-Authored-By: Paperclip <noreply@paperclip.ing>
9 lines
481 B
TypeScript
9 lines
481 B
TypeScript
export { GetMarketReportDto } from './get-market-report.dto';
|
|
export { GetHeatmapDto } from './get-heatmap.dto';
|
|
export { GetPriceTrendDto } from './get-price-trend.dto';
|
|
export { GetDistrictStatsDto } from './get-district-stats.dto';
|
|
export { GetValuationDto } from './get-valuation.dto';
|
|
export { BatchValuationDto } from './batch-valuation.dto';
|
|
export { ValuationHistoryDto } from './valuation-history.dto';
|
|
export { ValuationComparisonDto } from './valuation-comparison.dto';
|