Add Buy Box Lost detection feature with visual warning badges

This commit is contained in:
Christian Vidal Wolf
2026-01-29 09:42:39 +01:00
parent e4fbdb60b1
commit 04b208969d
7 changed files with 138 additions and 8 deletions
+6
View File
@@ -225,3 +225,9 @@ export interface ProductForecastData {
avgWeeklySales: number; // Added for Weeks of Coverage
monthlyData: Record<string, MonthlyForecastPoint>;
}
export interface BuyBoxLostData {
asin: string;
countries: string[]; // ['DE', 'FR', 'IT', 'UK', 'ES']
reasons: Record<string, string>; // { DE: 'Amazon', FR: 'Unknown' }
}