feat: update package dependencies and improve session handling

- Added @tailwindcss/postcss to devDependencies for better PostCSS integration.
- Enhanced session import logic in refresh-sessions.ts to ensure proper data mapping and type safety.
- Updated postcss.config.js to use the correct plugin name for Tailwind CSS.
- Modified tsconfig.json to temporarily disable strict mode and allow implicit any types for smoother development.
This commit is contained in:
2025-05-21 21:14:48 +02:00
parent cdaa3ea19d
commit b6b67dcd78
11 changed files with 898 additions and 99 deletions

View File

@ -77,6 +77,14 @@ export interface MetricsResult {
languages: LanguageMetrics;
categories: CategoryMetrics;
belowThresholdCount: number;
// Additional properties for dashboard
escalatedCount?: number;
forwardedCount?: number;
avgSentiment?: number;
avgResponseTime?: number;
totalTokens?: number;
totalTokensEur?: number;
sentimentThreshold?: number | null;
}
export interface ApiResponse<T> {