mirror of
https://github.com/christianvidalwolf-prog/CrazeAnalytix.git
synced 2026-08-03 11:45:23 +02:00
feat: implement Forecast 2026 (Fc 26) tab with seasonality logic and actual sales comparison
This commit is contained in:
@@ -194,3 +194,22 @@ export interface CombinedKPIs {
|
||||
cvrUnits: number;
|
||||
glanceViews: number; // Traffic / page views
|
||||
}
|
||||
|
||||
export interface ForecastRecord {
|
||||
asin: string;
|
||||
annualForecast: number;
|
||||
}
|
||||
|
||||
export interface MonthlyForecastPoint {
|
||||
month: string;
|
||||
forecastUnits: number;
|
||||
actualUnits: number;
|
||||
}
|
||||
|
||||
export interface ProductForecastData {
|
||||
asin: string;
|
||||
sku: string;
|
||||
title: string;
|
||||
annualForecast: number;
|
||||
monthlyData: MonthlyForecastPoint[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user