Onboarding

This commit is contained in:
2026-05-08 13:00:30 +02:00
parent d37b49f1f6
commit 9386ae1be7
37 changed files with 5606 additions and 2275 deletions

View File

@@ -33,13 +33,14 @@ export interface PlantHealthIssue {
details: string;
}
export interface PlantHealthCheck {
generatedAt: string;
overallHealthScore: number;
status: 'healthy' | 'watch' | 'critical';
likelyIssues: PlantHealthIssue[];
actionsNow: string[];
plan7Days: string[];
export interface PlantHealthCheck {
generatedAt: string;
overallHealthScore: number;
status: 'healthy' | 'watch' | 'critical';
analysisSummary?: string;
likelyIssues: PlantHealthIssue[];
actionsNow: string[];
plan7Days: string[];
creditsCharged: number;
imageUri?: string;
}