mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-27 15:47:45 -06:00
- Introduced Evoai and EvoaiSetting models in both MySQL and PostgreSQL schemas. - Implemented EvoaiController and EvoaiService for managing EvoAI bots. - Created EvoaiRouter for handling API requests related to EvoAI. - Added DTOs and validation schemas for EvoAI integration. - Updated server module and chatbot controller to include EvoAI functionality. - Configured environment settings for EvoAI integration.
9 lines
592 B
TypeScript
9 lines
592 B
TypeScript
export * from '@api/integrations/chatbot/chatwoot/validate/chatwoot.schema';
|
|
export * from '@api/integrations/chatbot/dify/validate/dify.schema';
|
|
export * from '@api/integrations/chatbot/evoai/validate/evoai.schema';
|
|
export * from '@api/integrations/chatbot/evolutionBot/validate/evolutionBot.schema';
|
|
export * from '@api/integrations/chatbot/flowise/validate/flowise.schema';
|
|
export * from '@api/integrations/chatbot/n8n/validate/n8n.schema';
|
|
export * from '@api/integrations/chatbot/openai/validate/openai.schema';
|
|
export * from '@api/integrations/chatbot/typebot/validate/typebot.schema';
|