Skip to content

Commit be09b39

Browse files
committed
API-11921: add highest_available option for customer_monitoring_level
1 parent a3b9e89 commit be09b39

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
33

44
## [0.3.6] - TBA
55

6+
### Added
7+
- New `highest_available` option for `customer_monitoring_level` in agent-api `login` method.
8+
69
### Bugfixes
710
- Fix `customer_monitoring_level` parameter in `login` method in agent-api v3.3/v3.4/v3.5 classes.
811

livechat/agent/rtm/api/v34.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ def login(self,
750750
the application's name and version.
751751
away (bool): When True, the connection is set to the away state.
752752
Defaults to False.
753-
customer_monitoring_level (str): Possible values: my, chatting, invited, online.
753+
customer_monitoring_level (str): Possible values are: `my`, `chatting`, `invited`, `online` and `highest_available`.
754754
Defaults to my if login creates the first session;
755755
otherwise it preserves the current customer_monitoring_level.
756756
pushes (dict): Use case: when you want to receive only specific pushes.

livechat/agent/rtm/api/v35.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ def login(self,
750750
the application's name and version.
751751
away (bool): When True, the connection is set to the away state.
752752
Defaults to False.
753-
customer_monitoring_level (str): Possible values: my, chatting, invited, online.
753+
customer_monitoring_level (str): Possible values are: `my`, `chatting`, `invited`, `online` and `highest_available`.
754754
Defaults to my if login creates the first session;
755755
otherwise it preserves the current customer_monitoring_level.
756756
pushes (dict): Use case: when you want to receive only specific pushes.

livechat/agent/rtm/api/v36.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ def login(self,
722722
the application's name and version.
723723
away (bool): When True, the connection is set to the away state.
724724
Defaults to False.
725-
customer_monitoring_level (str): Possible values: my, chatting, invited, online.
725+
customer_monitoring_level (str): Possible values are: `my`, `chatting`, `invited`, `online` and `highest_available`.
726726
Defaults to my if login creates the first session;
727727
otherwise it preserves the current customer_monitoring_level.
728728
pushes (dict): Use case: when you want to receive only specific pushes.

0 commit comments

Comments
 (0)