mirror of
https://github.com/musix-org/musix-oss
synced 2025-06-17 04:26:00 +00:00
24 lines
527 B
JavaScript
24 lines
527 B
JavaScript
exports.PARTS = {
|
|
Search: 'snippet',
|
|
Videos: 'snippet,contentDetails',
|
|
Playlists: 'snippet',
|
|
PlaylistItems: 'snippet,status',
|
|
Channels: 'snippet'
|
|
};
|
|
|
|
exports.KINDS = {
|
|
Video: 'youtube#video',
|
|
PlaylistItem: 'youtube#playlistItem',
|
|
Playlist: 'youtube#playlist',
|
|
SearchResult: 'youtube#searchResult',
|
|
Channel: 'youtube#channel'
|
|
};
|
|
|
|
exports.ENDPOINTS = {
|
|
PlaylistItems: 'playlistItems',
|
|
Channels: 'channels',
|
|
Videos: 'videos',
|
|
Playlists: 'playlists',
|
|
Search: 'search'
|
|
};
|