Skip to content
Open
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
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ All notable changes to this project will be documented in this file.
- 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.
- New field `phone_number` in method `update_customer` in customer-api v3.6 and v3.7.
- New method in reports-api v3.7: report `campaigns_conversion`.

### Changed
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 @@ -441,6 +441,7 @@ def update_customer(self,
name: str = None,
name_is_default: bool = None,
email: str = None,
phone_number: str = None,
avatar: str = None,
session_fields: list = None,
payload: dict = None) -> RtmResponse:
Expand All @@ -450,6 +451,7 @@ def update_customer(self,
name (str): Customer`s name.
name_is_default (bool): Flag which states if the name is default.
email (str): Customer`s email.
phone_number (str): Customer`s phone number.
avatar (str): Customer`s avatar.
session_fields (list): An array of custom object-enclosed key:value pairs.
Respects the order of items.
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 @@ -441,6 +441,7 @@ def update_customer(self,
name: str = None,
name_is_default: bool = None,
email: str = None,
phone_number: str = None,
avatar: str = None,
session_fields: list = None,
payload: dict = None) -> RtmResponse:
Expand All @@ -450,6 +451,7 @@ def update_customer(self,
name (str): Customer`s name.
name_is_default (bool): Flag which states if the name is default.
email (str): Customer`s email.
phone_number (str): Customer`s phone number.
avatar (str): Customer`s avatar.
session_fields (list): An array of custom object-enclosed key:value pairs.
Respects the order of items.
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 @@ -702,6 +702,7 @@ def update_customer(self,
name: str = None,
name_is_default: bool = None,
email: str = None,
phone_number: str = None,
avatar: str = None,
session_fields: list = None,
payload: dict = None,
Expand All @@ -712,6 +713,7 @@ def update_customer(self,
name (str): Name of the customer.
name_is_default (bool): Flag which states if the name is default.
email (str): Email of the customer.
phone_number (str): Phone number of the customer.
avatar (str): The URL of the Customer's avatar.
session_fields (list): An array of custom object-enclosed key:value pairs.
Respects the order of items.
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 @@ -702,6 +702,7 @@ def update_customer(self,
name: str = None,
name_is_default: bool = None,
email: str = None,
phone_number: str = None,
avatar: str = None,
session_fields: list = None,
payload: dict = None,
Expand All @@ -712,6 +713,7 @@ def update_customer(self,
name (str): Name of the customer.
name_is_default (bool): Flag which states if the name is default.
email (str): Email of the customer.
phone_number (str): Phone number of the customer.
avatar (str): The URL of the Customer's avatar.
session_fields (list): An array of custom object-enclosed key:value pairs.
Respects the order of items.
Expand Down