Version 1.1.0 - Refactor + Intergration Backend

This commit is contained in:
2025-07-25 17:56:30 +02:00
parent a59d7a66db
commit 98cdae97c0
58 changed files with 244 additions and 70 deletions

16
src/utils/QueryType.js Normal file
View File

@@ -0,0 +1,16 @@
/**
* Enum for query types
* @readonly
*/
const QueryType = {
SPOTIFY_PLAYLIST: 'spotify_playlist',
SPOTIFY_ALBUM: 'spotify_album',
SPOTIFY_SONG: 'spotify_song',
YOUTUBE_PLAYLIST: 'youtube_playlist',
YOUTUBE_VIDEO: 'youtube_video',
SOUNDCLOUD_TRACK: 'soundcloud_track',
SOUNDCLOUD_PLAYLIST: 'soundcloud_playlist',
YOUTUBE_SEARCH: 'youtube_search',
}
module.exports = { QueryType };