refactor: remove caching-related API endpoints and configurations, update preferences structure, and clean up unused services
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 7m22s

This commit is contained in:
Julien Froidefond
2026-01-03 18:55:12 +01:00
parent acd26ea427
commit 512e9a480f
49 changed files with 244 additions and 4073 deletions

View File

@@ -60,16 +60,6 @@ export const ERROR_MESSAGES: Record<string, string> = {
[ERROR_CODES.PREFERENCES.CONTEXT_ERROR]:
"🔄 usePreferences must be used within a PreferencesProvider",
// Cache
[ERROR_CODES.CACHE.DELETE_ERROR]: "🗑️ Error deleting cache",
[ERROR_CODES.CACHE.SAVE_ERROR]: "💾 Error saving to cache",
[ERROR_CODES.CACHE.LOAD_ERROR]: "📂 Error loading from cache",
[ERROR_CODES.CACHE.CLEAR_ERROR]: "🧹 Error clearing cache completely",
[ERROR_CODES.CACHE.MODE_FETCH_ERROR]: "⚙️ Error fetching cache mode",
[ERROR_CODES.CACHE.MODE_UPDATE_ERROR]: "⚙️ Error updating cache mode",
[ERROR_CODES.CACHE.INVALID_MODE]: "⚠️ Invalid cache mode. Must be 'file' or 'memory'",
[ERROR_CODES.CACHE.SIZE_FETCH_ERROR]: "📊 Error fetching cache size",
// UI
[ERROR_CODES.UI.TABS_TRIGGER_ERROR]: "🔄 TabsTrigger must be used within a Tabs component",
[ERROR_CODES.UI.TABS_CONTENT_ERROR]: "🔄 TabsContent must be used within a Tabs component",