Skip to content

Commit b94e94f

Browse files
authored
Add search action for spotify #18791 (#19358)
* Added actions * Bump versions
1 parent 1113a5a commit b94e94f

File tree

23 files changed

+139
-20
lines changed

23 files changed

+139
-20
lines changed

components/spotify/actions/add-items-to-playlist/add-items-to-playlist.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Add Items to a Playlist",
77
description: "Add one or more items to a user’s playlist. [See the docs here](https://developer.spotify.com/documentation/web-api/reference/#/operations/add-tracks-to-playlist).",
88
key: "spotify-add-items-to-playlist",
9-
version: "0.1.3",
9+
version: "0.1.4",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Create a Playlist",
66
description: "Create a playlist for a Spotify user. The playlist will be empty until you add tracks. [See the docs here](https://developer.spotify.com/documentation/web-api/reference/#/operations/create-playlist).",
77
key: "spotify-create-playlist",
8-
version: "0.1.3",
8+
version: "0.1.4",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/spotify/actions/get-album-tracks/get-album-tracks.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "Get Album Tracks",
88
description: "Get all tracks in an album. [See the docs here](https://developer.spotify.com/documentation/web-api/reference/get-an-albums-tracks)",
99
key: "spotify-get-album-tracks",
10-
version: "0.0.3",
10+
version: "0.0.4",
1111
annotations: {
1212
destructiveHint: false,
1313
openWorldHint: true,

components/spotify/actions/get-all-tracks-by-artist/get-all-tracks-by-artist.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Get All Tracks by Artist",
66
description: "Get Spotify tracks information related with an artist's. [see docs here](https://developer.spotify.com/documentation/web-api/reference/#/operations/get-multiple-albums).",
77
key: "spotify-get-all-tracks-by-artist",
8-
version: "0.1.3",
8+
version: "0.1.4",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/spotify/actions/get-artist-top-tracks/get-artist-top-tracks.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Get an Artist's Top Tracks",
77
description: "Get Spotify catalog information about an artist’s top tracks by country. [See the docs here](https://developer.spotify.com/documentation/web-api/reference/#/operations/get-an-artists-top-tracks).",
88
key: "spotify-get-artist-top-tracks",
9-
version: "0.1.3",
9+
version: "0.1.4",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

components/spotify/actions/get-audio-features-for-a-track/get-audio-features-for-a-track.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Get Audio Features for a Track",
77
description: "Get audio feature information for a single track identified by its unique Spotify ID. [See the docs here](https://developer.spotify.com/documentation/web-api/reference/#/operations/get-audio-features).",
88
key: "spotify-get-audio-features-for-a-track",
9-
version: "0.1.3",
9+
version: "0.1.4",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Get a Category's Playlists",
77
description: "Get a list of Spotify playlists tagged with a particular category. [See the docs here](https://developer.spotify.com/documentation/web-api/reference/#/operations/get-a-categories-playlists).",
88
key: "spotify-get-categorys-playlist",
9-
version: "0.1.3",
9+
version: "0.1.4",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

components/spotify/actions/get-currently-playing-track/get-currently-playing-track.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
description:
88
"Get the object currently being played on the user's Spotify account. [See the documentation](https://developer.spotify.com/documentation/web-api/reference/get-the-users-currently-playing-track)",
99
key: "spotify-get-currently-playing-track",
10-
version: "0.0.3",
10+
version: "0.0.4",
1111
annotations: {
1212
destructiveHint: false,
1313
openWorldHint: true,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Get a Playlist's Items",
77
description: "Get full details of the items of a playlist owned by a Spotify user. [See the docs here](https://developer.spotify.com/documentation/web-api/reference/#/operations/get-playlists-tracks).",
88
key: "spotify-get-playlist-items",
9-
version: "0.1.3",
9+
version: "0.1.4",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

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

Lines changed: 1 addition & 1 deletion
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.4",
7+
version: "0.0.5",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

0 commit comments

Comments
 (0)