fix(tradein): dedupe last_scraped_at — fix frontend build/deploy (#703)
All checks were successful
Deploy Trade-In / changes (push) Successful in 4s
Deploy Trade-In / test (push) Has been skipped
Deploy Trade-In / build-backend (push) Has been skipped
Deploy Trade-In / build-frontend (push) Successful in 1m33s
Deploy Trade-In / deploy (push) Successful in 34s

Co-authored-by: bot-backend <bot-backend@gendsgn.local>
Co-committed-by: bot-backend <bot-backend@gendsgn.local>
This commit is contained in:
bot-backend 2026-05-30 08:32:04 +00:00 committed by bot-reviewer
parent 88a3ce1875
commit 10626c21ae

View file

@ -158,12 +158,10 @@ export interface AggregatedEstimate {
avito_imv?: AvitoImvSummary | null;
dkp_corridor?: DkpCorridor | null;
// ── ANALYTICS surface (web-native cards) ──
// price_trend — динамика медианы ₽/м² по месяцам для здания/района
// (PriceTrendCard). null / <2 точек → карточка не рендерится.
// last_scraped_at — ISO datetime последнего скрейпа данных аналитики.
// Оба optional + nullable: старые оценки их не содержат (graceful).
// price_trend — динамика медианы ₽/м² по месяцам для здания/района
// (PriceTrendCard). null / <2 точек → карточка не рендерится.
// last_scraped_at объявлен выше (был дубль #688+#689 → ломал build).
price_trend?: PriceTrendPoint[] | null;
last_scraped_at?: string | null;
}
// ── Stage 4a/4b response types ──