librespot-protocol 0.7.1

The protobuf logic for communicating with Spotify servers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Extracted from: Spotify 1.2.52.442 (windows)

syntax = "proto3";

package spotify.your_library.proto;

import "your_library_config.proto";

option java_package = "spotify.your_library.esperanto.proto";
option java_multiple_files = true;
option optimize_for = CODE_SIZE;

message YourLibraryDecorateRequest {
    repeated string requested_uri = 3;
    YourLibraryPseudoPlaylistConfig pseudo_playlist_config = 6;
    int32 update_throttling = 7;
}