forked from alandtse/alexa_media_player
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'alandtse:dev' into config_flow
- Loading branch information
Showing
8 changed files
with
115 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,36 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
update_last_called: | ||
force_logout: | ||
# Description of the service | ||
description: Forces update of last_called echo device for each Alexa account. | ||
description: Force logout of Alexa Login account and deletion of .pickle. Intended for debugging use. | ||
# Different fields that your service accepts | ||
fields: | ||
# Key of the field | ||
email: | ||
# Description of the field | ||
description: List of Alexa accounts to update. If empty, will update all known accounts. | ||
description: List of Alexa accounts to log out. If empty, will log out from all known accounts. | ||
# Example value that can be passed for this field | ||
example: "[email protected]" | ||
|
||
force_logout: | ||
restore_volume: | ||
description: Restores an Alexa Media Player volume level to the previous volume level. | ||
fields: | ||
entity_id: | ||
name: Entity | ||
description: Alexa Media Player device to restore volume on. | ||
required: true | ||
selector: | ||
entity: | ||
domain: media_player | ||
integration: alexa_media | ||
|
||
update_last_called: | ||
# Description of the service | ||
description: Force logout of Alexa Login account and deletion of .pickle. Intended for debugging use. | ||
description: Forces update of last_called echo device for each Alexa account. | ||
# Different fields that your service accepts | ||
fields: | ||
# Key of the field | ||
email: | ||
# Description of the field | ||
description: List of Alexa accounts to log out. If empty, will log out from all known accounts. | ||
description: List of Alexa accounts to update. If empty, will update all known accounts. | ||
# Example value that can be passed for this field | ||
example: "[email protected]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "alexa_media_player" | ||
version = "5.1.0" | ||
version = "5.3.0" | ||
description = "This is a custom component to allow control of Amazon Alexa devices in [Homeassistant](https://home-assistant.io) using the unofficial Alexa API." | ||
authors = [ | ||
"Keaton Taylor <[email protected]>", | ||
|