UNPKG

skailan-conversations

Version:

Servicio de conversaciones y mensajería para Skailan

11 lines 461 B
export class ListConversations { conversationRepository; constructor(conversationRepository) { this.conversationRepository = conversationRepository; } async execute(request) { const { organizationId, channelId, contactId, status, assignedToUserId } = request; return this.conversationRepository.findAll(organizationId, channelId, contactId, status, assignedToUserId); } } //# sourceMappingURL=ListConversations.js.map