Skip to content

Commit 4223404

Browse files
committed
update source versions and fix summary statement in get-playlist
1 parent b4b15da commit 4223404

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

components/spotify/actions/get-playlist/get-playlist.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "Get a Playlist",
55
description: "Get a playlist owned by a Spotify user. [See the documentation](https://developer.spotify.com/documentation/web-api/reference/get-playlist).",
66
key: "spotify-get-playlist",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "action",
99
props: {
1010
spotify,
@@ -26,7 +26,7 @@ export default {
2626
playlistId,
2727
});
2828

29-
$.export("$summary", `The playlist with Id: ${playlistId.value} was successfully fetched!`);
29+
$.export("$summary", `The playlist with Id: ${playlistId} was successfully fetched!`);
3030

3131
return response;
3232
},

components/spotify/sources/new-playlist/new-playlist.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "spotify-new-playlist",
77
name: "New Playlist",
88
description: "Emit new event when a new playlist is created or followed by the current Spotify user.",
9-
version: "0.1.1",
9+
version: "0.1.2",
1010
props: {
1111
...common.props,
1212
},

components/spotify/sources/new-saved-track/new-saved-track.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "spotify-new-saved-track",
77
name: "New Saved Track",
88
description: "Emit new event for each new track saved to the current Spotify user's Music Library.",
9-
version: "0.1.1",
9+
version: "0.1.2",
1010
props: {
1111
...common.props,
1212
db: "$.service.db",

components/spotify/sources/new-track-by-artist/new-track-by-artist.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "spotify-new-track-by-artist",
88
name: "New Track by Artist",
99
description: "Emit new event for each new Spotify track related with an artist. [see docs here](https://developer.spotify.com/documentation/web-api/reference/#/operations/get-multiple-albums)",
10-
version: "0.1.1",
10+
version: "0.1.2",
1111
props: {
1212
...common.props,
1313
db: "$.service.db",

components/spotify/sources/new-track-in-playlist/new-track-in-playlist.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "spotify-new-track-in-playlist",
88
name: "New Track in Playlist",
99
description: "Emit new event for each new Spotify track added to a playlist",
10-
version: "0.1.1",
10+
version: "0.1.2",
1111
props: {
1212
...common.props,
1313
db: "$.service.db",

0 commit comments

Comments
 (0)