feat: replace Vendor tab with BSR tracker

This commit is contained in:
Christian Vidal Wolf
2026-03-02 15:22:12 +01:00
parent 918da227ee
commit 243c44c7f7
7 changed files with 278 additions and 251 deletions
+11
View File
@@ -280,6 +280,17 @@ export interface VendorCSVRow {
'Glance Views': string;
}
export interface BSRRecord {
week: number;
market: string;
asin: string;
topLevelBSR: number | null;
topLevelName: string | null;
detailLevelBSR: number | null;
detailLevelName: string | null;
avgRating: number | null;
}
// Experiment Tracking Types
export type ExperimentType = 'pricing' | 'advertising' | 'content' | 'promotion' | 'seo';
export type ExperimentStatus = 'planned' | 'active' | 'completed' | 'paused';