Wire NestJS controller to Python AI service's industrial AVM. Adds CQRS query/handler, Swagger-annotated DTOs, AI client method, and 7 unit tests covering parameter mapping, response camelCase conversion, and error handling. Co-Authored-By: Paperclip <noreply@paperclip.ing>
11 lines
612 B
TypeScript
11 lines
612 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';
|
|
export { AvmCompareQueryDto } from './avm-compare-query.dto';
|
|
export { IndustrialValuationDto } from './industrial-valuation.dto';
|