refactor(data-schemas): remove legacy mongoMeili plugin and related schemas

- Deleted the mongoMeili plugin and its associated schemas (messageSchema, pluginAuthSchema) to streamline the codebase.
- Updated PluginService to import PluginAuth directly from data-schemas.
- Introduced a new meiliLogger configuration file for improved logging functionality.
This commit is contained in:
Danny Avila 2025-05-30 00:34:28 -04:00
parent ea459749f9
commit 848cb6f871
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956
6 changed files with 259 additions and 659 deletions

View file

@ -1,4 +1,4 @@
const PluginAuth = require('~/models/schema/pluginAuthSchema');
const { PluginAuth } = require('@librechat/data-schemas');
const { encrypt, decrypt } = require('~/server/utils/');
const { logger } = require('~/config');