Recovered state: integrated TrendSurferAgent, restored frontend/backend files, and cleaned up recovery scripts

This commit is contained in:
ajaysi
2026-02-08 13:56:57 +05:30
parent 1db10ccd0f
commit e404a86502
333 changed files with 42223 additions and 10875 deletions

View File

@@ -52,11 +52,27 @@ export interface SEODashboardData {
position: number;
};
timeseries?: any[];
advertools_insights?: any;
competitor_insights?: {
competitor_keywords: any[];
content_gaps: any[];
opportunity_score: number;
};
technical_seo_audit?: {
status: string;
task_status?: string | null;
next_execution?: string | null;
pages_audited: number;
avg_score: number;
fix_scheduled_pages: number;
worst_pages: Array<{
page_url: string;
overall_score: number;
status: string;
issues_count?: number;
}>;
error?: string;
};
}
// SEO Dashboard API functions
@@ -126,4 +142,4 @@ export const seoDashboardAPI = {
throw error;
}
}
};
};