Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name = "pypi"

[packages]
websocket-client= "==1.9.0"
urllib3 = "==2.6.2"
urllib3 = "==2.6.3"
loguru = "==0.7.3"
idna = "==3.10"
anyio = "==4.5.2"
Expand Down
26 changes: 13 additions & 13 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
- New methods in agent-api v3.6: `send_thinking_indicator`, `send_message_preview`.
- New methods in configuration-api v3.7 for canned responses: `create_canned_response`, `update_canned_response`, `list_canned_responses`, `delete_canned_response`.
- New method `request_thread_summary` in agent-api v3.6 and v3.7.
- New flag `name_is_default` in method `update_customer` in customer-api v3.6 and v3.7.

### Changed
- Udated python version from 3.8 to 3.13.0 (version 3.8 was unsupported since 2024-10-07).
Expand Down
2 changes: 2 additions & 0 deletions livechat/customer/rtm/api/v36.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,7 @@ def delete_event_properties(self,

def update_customer(self,
name: str = None,
name_is_default: bool = None,
email: str = None,
avatar: str = None,
session_fields: list = None,
Expand All @@ -447,6 +448,7 @@ def update_customer(self,

Args:
name (str): Customer`s name.
name_is_default (bool): Flag which states if the name is default.
email (str): Customer`s email.
avatar (str): Customer`s avatar.
session_fields (list): An array of custom object-enclosed key:value pairs.
Expand Down
2 changes: 2 additions & 0 deletions livechat/customer/rtm/api/v37.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,7 @@ def delete_event_properties(self,

def update_customer(self,
name: str = None,
name_is_default: bool = None,
email: str = None,
avatar: str = None,
session_fields: list = None,
Expand All @@ -447,6 +448,7 @@ def update_customer(self,

Args:
name (str): Customer`s name.
name_is_default (bool): Flag which states if the name is default.
email (str): Customer`s email.
avatar (str): Customer`s avatar.
session_fields (list): An array of custom object-enclosed key:value pairs.
Expand Down
2 changes: 2 additions & 0 deletions livechat/customer/web/api/v36.py
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,7 @@ def get_customer(self,

def update_customer(self,
name: str = None,
name_is_default: bool = None,
email: str = None,
avatar: str = None,
session_fields: list = None,
Expand All @@ -709,6 +710,7 @@ def update_customer(self,

Args:
name (str): Name of the customer.
name_is_default (bool): Flag which states if the name is default.
email (str): Email of the customer.
avatar (str): The URL of the Customer's avatar.
session_fields (list): An array of custom object-enclosed key:value pairs.
Expand Down
2 changes: 2 additions & 0 deletions livechat/customer/web/api/v37.py
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,7 @@ def get_customer(self,

def update_customer(self,
name: str = None,
name_is_default: bool = None,
email: str = None,
avatar: str = None,
session_fields: list = None,
Expand All @@ -709,6 +710,7 @@ def update_customer(self,

Args:
name (str): Name of the customer.
name_is_default (bool): Flag which states if the name is default.
email (str): Email of the customer.
avatar (str): The URL of the Customer's avatar.
session_fields (list): An array of custom object-enclosed key:value pairs.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ idna==3.10; python_version >= '3.6'
loguru==0.7.3; python_version >= '3.5' and python_version < '4.0'
sniffio==1.3.1; python_version >= '3.7'
typing-extensions==4.12.2; python_version >= '3.8'
urllib3==2.6.2; python_version >= '3.9'
urllib3==2.6.3; python_version >= '3.9'
websocket-client==1.9.0; python_version >= '3.9'