changedInput schema / description
Previous value: -"Manages the current playback with the following actions:\n- get: Get information about user's current track.\n- start: Starts playing new item or resumes current playback if called with no uri.\n- pause: Pauses current playback.\n- skip: Skips current track."New value: +"Manage playback: get current track, start/resume, pause, skip, previous, seek, set volume.\n- get: info about the current track.\n- start: play spotify_uri, or resume if omitted.\n- pause / skip / previous.\n- seek: jump to position_ms.\n- volume: set volume_percent (0-100)."
changedInput schema / properties / action / description
Previous value: -"Action to perform: 'get', 'start', 'pause' or 'skip'."New value: +"One of: get, start, pause, skip, previous, seek, volume."
changedInput schema / properties / num_skips / description
Previous value: -"Number of tracks to skip for `skip` action."New value: +"Number of tracks to skip for 'skip'."
addedInput schema / properties / position_ms
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Target position for 'seek', in ms.",
+ "title": "Position Ms"
+}
changedInput schema / properties / spotify_uri / description
Previous value: -"Spotify uri of item to play for 'start' action. If omitted, resumes current playback."New value: +"URI for 'start'. If omitted, resumes."
addedInput schema / properties / volume_percent
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Volume 0-100 for 'volume'.",
+ "title": "Volume Percent"
+}