Files
users/types/ai-assistant.ts
v0 f0a6a364f2 feat: sync Sidebar and BottomNav, standardize user profile API
Align Sidebar & BottomNav menus, remove "Search", add user profile mock data, implement /api/users, add FilterDrawer, complete Section, ProfileHeader, MetricsRFM components

Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
2025-08-08 07:00:12 +00:00

37 lines
613 B
TypeScript

export type AnalysisTask = {
id: string
name: string
database: string
status: "pending" | "running" | "completed" | "failed"
progress: number
createdAt: string
completedAt?: string
reportUrl?: string
description?: string
}
export type DatabaseInfo = {
id: string
name: string
type: string
tables: number
records: number
lastUpdated: string
}
export type ReportTemplate = {
id: string
name: string
description: string
category: string
fields: string[]
}
export type ReportItem = {
id: string
title: string
source: string
description: string
updatedAt: string
}