enum ChatsAction: Codable { case chatsListUpdated(chats: [Chat]) case startChat(accountJid: String, participantJid: String) case chatStarted(chat: Chat) case createNewChat(accountJid: String, participantJid: String) case chatCreated(chat: Chat) case chatCreationFailed(reason: String) }