1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-03 09:49:31 +02:00
librespot/protocol/proto/es_prefs.proto
Felix Prillwitz 2a574267ae
Update protobuf files (#1424)
* update protobuf definitions

* add additionally required proto files

* update version.rs

* adjust code to protobuf changes

* fix formatting

* apply suggestions, improve errors
2024-12-24 09:39:49 +01:00

51 lines
961 B
Protocol Buffer

// Extracted from: Spotify 1.2.52.442 (windows)
syntax = "proto3";
package spotify.prefs.esperanto.proto;
option objc_class_prefix = "ESP";
option java_package = "com.spotify.prefs.esperanto.proto";
service Prefs {
rpc Get(GetParams) returns (PrefValues);
rpc Sub(SubParams) returns (stream PrefValues);
rpc GetAll(GetAllParams) returns (PrefValues);
rpc SubAll(SubAllParams) returns (stream PrefValues);
rpc Set(SetParams) returns (PrefValues);
rpc Create(CreateParams) returns (PrefValues);
}
message GetParams {
string key = 1;
}
message SubParams {
string key = 1;
}
message GetAllParams {
}
message SubAllParams {
}
message Value {
oneof value {
int64 number = 1;
bool bool = 2;
string string = 3;
}
}
message SetParams {
map<string, Value> entries = 1;
}
message CreateParams {
map<string, Value> entries = 1;
}
message PrefValues {
map<string, Value> entries = 1;
}