chatgraph 0.1.4__tar.gz → 0.1.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of chatgraph might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: chatgraph
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: A user-friendly chatbot library
5
5
  Home-page: https://github.com/irissonnlima/chatgraph
6
6
  License: MIT
@@ -3,7 +3,7 @@ from .bot.chatbot_model import ChatbotApp
3
3
  from .bot.chatbot_router import ChatbotRouter
4
4
  from .messages.rabbitMQ_message_consumer import RabbitMessageConsumer
5
5
  from .types.message_types import Message
6
- from .types.output_state import ChatbotResponse, RedirectResponse
6
+ from .types.output_state import ChatbotResponse, RedirectResponse, EndChatResponse, TransferToHuman
7
7
  from .types.route import Route
8
8
  from .types.user_state import SimpleUserState
9
9
 
@@ -17,4 +17,6 @@ __all__ = [
17
17
  'RedirectResponse',
18
18
  'RabbitMessageConsumer',
19
19
  'Route',
20
+ 'EndChatResponse',
21
+ 'TransferToHuman',
20
22
  ]
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "chatgraph"
3
- version = "0.1.4"
3
+ version = "0.1.5"
4
4
  description = "A user-friendly chatbot library"
5
5
  authors = ["Irisson N. Lima <irisson.lima@verdecard.com.br>"]
6
6
  readme = "README.md"
File without changes
File without changes