1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 02:09:26 +02:00

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
This commit is contained in:
Felix Prillwitz 2024-12-24 09:39:49 +01:00 committed by GitHub
parent 0ad1f7249b
commit 2a574267ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
335 changed files with 3331 additions and 1204 deletions

View file

@ -1,31 +1,37 @@
// Extracted from: Spotify 1.1.73.517 (macOS)
// Extracted from: Spotify 1.2.52.442 (windows)
syntax = "proto3";
package spotify.stream_reporting_esperanto.proto;
import "google/protobuf/timestamp.proto";
import "media_type.proto";
import "play_reason.proto";
import "playback_stack.proto";
import "playback_stack_v2.proto";
import "streaming_rule.proto";
option objc_class_prefix = "ESP";
option java_package = "com.spotify.stream_reporting_esperanto.proto";
message StreamStartRequest {
string playback_id = 1;
string parent_playback_id = 2;
reserved 9;
reserved 10;
reserved 13;
reserved 14;
reserved 27;
reserved 25;
reserved 35;
bytes playback_id = 1;
bytes parent_playback_id = 2;
string parent_play_track = 3;
string video_session_id = 4;
string play_context = 5;
string uri = 6;
string displayed_uri = 7;
string feature_identifier = 8;
string feature_version = 9;
string view_uri = 10;
string content_uri = 6;
string displayed_content_uri = 7;
PlaybackStack playback_stack = 8;
string provider = 11;
string referrer = 12;
string referrer_version = 13;
string referrer_vendor = 14;
StreamingRule streaming_rule = 15;
string connect_controller_device_id = 16;
string page_instance_id = 17;
@ -33,12 +39,25 @@ message StreamStartRequest {
string source_start = 19;
PlayReason reason_start = 20;
bool is_shuffle = 23;
bool is_incognito = 25;
string media_id = 28;
MediaType media_type = 29;
uint64 playback_start_time = 30;
uint64 start_position = 31;
bool is_live = 32;
bool stream_was_offlined = 33;
bool content_is_downloaded = 33;
bool client_offline = 34;
string feature_uuid = 36;
string decision_id = 37;
string custom_reporting_attribution = 38;
string play_context_decision_id = 39;
google.protobuf.Timestamp client_timestamp = 40;
bool is_video_on = 44;
string player_session_id = 47;
optional bool is_repeating_track = 41;
optional bool is_repeating_context = 42;
optional bool is_audio_on = 43;
optional string video_surface = 45;
optional PlaybackStackV2 playback_stack_v2 = 46;
optional string preview_impression_uri = 48;
}