chatgraph 0.3.6__tar.gz → 0.3.9__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.

Files changed (23) hide show
  1. {chatgraph-0.3.6 → chatgraph-0.3.9}/PKG-INFO +1 -1
  2. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/bot/chatbot_model.py +2 -0
  3. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/types/request_types.py +2 -2
  4. {chatgraph-0.3.6 → chatgraph-0.3.9}/pyproject.toml +1 -1
  5. {chatgraph-0.3.6 → chatgraph-0.3.9}/LICENSE +0 -0
  6. {chatgraph-0.3.6 → chatgraph-0.3.9}/README.md +0 -0
  7. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/__init__.py +0 -0
  8. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/auth/credentials.py +0 -0
  9. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/bot/chatbot_router.py +0 -0
  10. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/cli/__init__.py +0 -0
  11. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/error/chatbot_error.py +0 -0
  12. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/error/route_error.py +0 -0
  13. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/gRPC/gRPCCall.py +0 -0
  14. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/messages/message_consumer.py +0 -0
  15. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/pb/userstate.proto +0 -0
  16. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/pb/userstate_pb2.py +0 -0
  17. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/pb/userstate_pb2_grpc.py +0 -0
  18. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/pb/voll.proto +0 -0
  19. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/pb/voll_pb2.py +0 -0
  20. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/pb/voll_pb2_grpc.py +0 -0
  21. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/types/end_types.py +0 -0
  22. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/types/message_types.py +0 -0
  23. {chatgraph-0.3.6 → chatgraph-0.3.9}/chatgraph/types/route.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: chatgraph
3
- Version: 0.3.6
3
+ Version: 0.3.9
4
4
  Summary: A user-friendly chatbot library
5
5
  Home-page: https://github.com/irissonnlima/chatgraph
6
6
  License: MIT
@@ -145,6 +145,8 @@ class ChatbotApp:
145
145
  if isinstance(userCall_response, (list, tuple)):
146
146
  for response in userCall_response:
147
147
  self.__process_func_response(response, userCall, route=route)
148
+ else:
149
+ self.__process_func_response(userCall_response, userCall, route=route)
148
150
 
149
151
  def __process_func_response(self, userCall_response, userCall: UserCall, route: str):
150
152
 
@@ -215,7 +215,7 @@ class UserCall:
215
215
  "unique_customer_id": self.__user_state.customer_id,
216
216
  "message_text": message,
217
217
  "platform": self.channel,
218
- campaign_name: campaign_name,
218
+ "campaign_name": campaign_name,
219
219
  }
220
220
  )
221
221
 
@@ -230,7 +230,7 @@ class UserCall:
230
230
  "unique_customer_id": self.__user_state.customer_id,
231
231
  "message_text": message,
232
232
  "platform": self.channel,
233
- campaign_name: campaign_name,
233
+ "campaign_name": campaign_name,
234
234
  }
235
235
  )
236
236
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "chatgraph"
3
- version = "0.3.6"
3
+ version = "0.3.9"
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