From a7de11c7dbbe8b3e62817642a1c8f53bcc2c767c Mon Sep 17 00:00:00 2001 From: Vincent Eichhorn Date: Tue, 9 Jul 2024 11:24:01 +0200 Subject: [PATCH] reintroduces tinkerResponses in play,next,previous --- src/SpotifyConnect/SPOCApiNext.class.st | 7 +++++++ src/SpotifyConnect/SPOCApiPause.class.st | 8 ++++++++ src/SpotifyConnect/SPOCApiPlay.class.st | 7 +++++++ src/SpotifyConnect/SPOCApiPrevious.class.st | 8 ++++++++ 4 files changed, 30 insertions(+) diff --git a/src/SpotifyConnect/SPOCApiNext.class.st b/src/SpotifyConnect/SPOCApiNext.class.st index eec89ba..1199756 100644 --- a/src/SpotifyConnect/SPOCApiNext.class.st +++ b/src/SpotifyConnect/SPOCApiNext.class.st @@ -45,3 +45,10 @@ SPOCApiNext >> skipToNextOn: aDevice [ self execute: (Dictionary new at: #device_id put: aDevice; yourself) ] + +{ + #category : #'api-call', + #'squeak_changestamp' : 'VE 7/9/2024 11:22' +} +SPOCApiNext >> tinkerReponseContent: aContentStream [ +] diff --git a/src/SpotifyConnect/SPOCApiPause.class.st b/src/SpotifyConnect/SPOCApiPause.class.st index 396ee36..4d358e3 100644 --- a/src/SpotifyConnect/SPOCApiPause.class.st +++ b/src/SpotifyConnect/SPOCApiPause.class.st @@ -45,3 +45,11 @@ SPOCApiPause >> pauseOn: aDevice [ self execute: (Dictionary new at: #device_id put: aDevice; yourself) ] + +{ + #category : #'api-call', + #'squeak_changestamp' : 'VE 7/9/2024 11:21' +} +SPOCApiPause >> tinkerReponseContent: aContentStream [ + +] diff --git a/src/SpotifyConnect/SPOCApiPlay.class.st b/src/SpotifyConnect/SPOCApiPlay.class.st index 3edbf31..314477a 100644 --- a/src/SpotifyConnect/SPOCApiPlay.class.st +++ b/src/SpotifyConnect/SPOCApiPlay.class.st @@ -134,3 +134,10 @@ SPOCApiPlay >> playTrack: aString withPlaylist: anotherString on: aDevice [ at: #uris put: (self buildUris: aString); yourself) ] + +{ + #category : #parameters, + #'squeak_changestamp' : 'VE 7/9/2024 11:21' +} +SPOCApiPlay >> tinkerReponseContent: aContentStream [ +] diff --git a/src/SpotifyConnect/SPOCApiPrevious.class.st b/src/SpotifyConnect/SPOCApiPrevious.class.st index 9062aa3..aca1e7a 100644 --- a/src/SpotifyConnect/SPOCApiPrevious.class.st +++ b/src/SpotifyConnect/SPOCApiPrevious.class.st @@ -45,3 +45,11 @@ SPOCApiPrevious >> skipToPreviousOn: aDevice [ self execute: (Dictionary new at: #device_id put: aDevice; yourself) ] + +{ + #category : #'api-call', + #'squeak_changestamp' : 'VE 7/9/2024 11:23' +} +SPOCApiPrevious >> tinkerReponseContent: aContentStream [ + +]