mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-24 22:27:46 -06:00
refactor: event folder
This commit is contained in:
4
src/validate/chatbot.schema.ts
Normal file
4
src/validate/chatbot.schema.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export * from '@api/integrations/chatbot/chatwoot/validate/chatwoot.schema';
|
||||
export * from '@api/integrations/chatbot/dify/validate/dify.schema';
|
||||
export * from '@api/integrations/chatbot/openai/validate/openai.schema';
|
||||
export * from '@api/integrations/chatbot/typebot/validate/typebot.schema';
|
||||
4
src/validate/event.schema.ts
Normal file
4
src/validate/event.schema.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export * from './webhook.schema';
|
||||
export * from './websocket.schema';
|
||||
export * from '@api/integrations/event/rabbitmq/validate/rabbitmq.schema';
|
||||
export * from '@api/integrations/event/sqs/validate/sqs.schema';
|
||||
@@ -1,5 +1,7 @@
|
||||
// Integrations Schema
|
||||
export * from './chat.schema';
|
||||
export * from './chatbot.schema';
|
||||
export * from './event.schema';
|
||||
export * from './group.schema';
|
||||
export * from './instance.schema';
|
||||
export * from './label.schema';
|
||||
@@ -7,11 +9,3 @@ export * from './message.schema';
|
||||
export * from './proxy.schema';
|
||||
export * from './settings.schema';
|
||||
export * from './template.schema';
|
||||
export * from './webhook.schema';
|
||||
export * from './websocket.schema';
|
||||
export * from '@api/integrations/chatbot/chatwoot/validate/chatwoot.schema';
|
||||
export * from '@api/integrations/chatbot/dify/validate/dify.schema';
|
||||
export * from '@api/integrations/chatbot/openai/validate/openai.schema';
|
||||
export * from '@api/integrations/event/rabbitmq/validate/rabbitmq.schema';
|
||||
export * from '@api/integrations/event/sqs/validate/sqs.schema';
|
||||
export * from '@api/integrations/chatbot/typebot/validate/typebot.schema';
|
||||
|
||||
Reference in New Issue
Block a user