diff --git a/aiostreammagic/models.py b/aiostreammagic/models.py index 8dafc77..f81d121 100644 --- a/aiostreammagic/models.py +++ b/aiostreammagic/models.py @@ -109,6 +109,7 @@ class TransportControl(StrEnum): """Control enum.""" PAUSE = "pause" + PLAY = "play" PLAY_PAUSE = "play_pause" TOGGLE_SHUFFLE = "toggle_shuffle" TOGGLE_REPEAT = "toggle_repeat" diff --git a/pyproject.toml b/pyproject.toml index 53a7a54..d70edbb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiostreammagic" -version = "2.2.1" +version = "2.2.2" description = "An async python package for interfacing with Cambridge Audio / Stream Magic compatible streamers." authors = ["Noah Husby <32528627+noahhusby@users.noreply.github.com>"] maintainers = ["Noah Husby <32528627+noahhusby@users.noreply.github.com>"]