mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-06 03:50:06 +02:00
Update protobufs to 1.1.73.517
This commit is contained in:
parent
4f51c1e810
commit
40163754bb
200 changed files with 3016 additions and 978 deletions
|
@ -1,4 +1,4 @@
|
|||
// Extracted from: Spotify 1.1.61.583 (Windows)
|
||||
// Extracted from: Spotify 1.1.73.517 (macOS)
|
||||
|
||||
syntax = "proto2";
|
||||
|
||||
|
@ -6,6 +6,7 @@ package spotify.show_cosmos.proto;
|
|||
|
||||
import "metadata/episode_metadata.proto";
|
||||
import "metadata/show_metadata.proto";
|
||||
import "played_state/episode_played_state.proto";
|
||||
import "show_episode_state.proto";
|
||||
import "show_show_state.proto";
|
||||
import "podcast_virality.proto";
|
||||
|
@ -13,7 +14,10 @@ import "transcripts.proto";
|
|||
import "podcastextensions.proto";
|
||||
import "clips_cover.proto";
|
||||
import "show_access.proto";
|
||||
import "podcast_ratings.proto";
|
||||
import "greenroom_extension.proto";
|
||||
|
||||
option objc_class_prefix = "SPTShowCosmos";
|
||||
option optimize_for = CODE_SIZE;
|
||||
|
||||
message Item {
|
||||
|
@ -21,9 +25,10 @@ message Item {
|
|||
optional cosmos_util.proto.EpisodeMetadata episode_metadata = 2;
|
||||
optional EpisodeCollectionState episode_collection_state = 3;
|
||||
optional EpisodeOfflineState episode_offline_state = 4;
|
||||
optional EpisodePlayState episode_play_state = 5;
|
||||
optional cosmos_util.proto.EpisodePlayState episode_play_state = 5;
|
||||
optional corex.transcripts.metadata.EpisodeTranscript episode_transcripts = 7;
|
||||
optional podcastvirality.v1.PodcastVirality episode_virality = 8;
|
||||
optional clips.ClipsCover episode_clips = 9;
|
||||
|
||||
reserved 6;
|
||||
}
|
||||
|
@ -43,6 +48,7 @@ message Response {
|
|||
optional uint32 unranged_length = 7;
|
||||
optional AuxiliarySections auxiliary_sections = 8;
|
||||
optional podcast_paywalls.ShowAccess access_info = 9;
|
||||
optional uint32 range_offset = 10;
|
||||
|
||||
reserved 3, "online_data";
|
||||
}
|
||||
|
@ -53,6 +59,9 @@ message AuxiliarySections {
|
|||
optional TrailerSection trailer_section = 3;
|
||||
optional podcast.extensions.PodcastHtmlDescription html_description_section = 5;
|
||||
optional clips.ClipsCover clips_section = 6;
|
||||
optional ratings.PodcastRating rating_section = 7;
|
||||
optional greenroom.api.extendedmetadata.v1.GreenroomSection greenroom_section = 8;
|
||||
optional LatestUnplayedEpisodeSection latest_unplayed_episode_section = 9;
|
||||
|
||||
reserved 4;
|
||||
}
|
||||
|
@ -64,3 +73,7 @@ message ContinueListeningSection {
|
|||
message TrailerSection {
|
||||
optional Item item = 1;
|
||||
}
|
||||
|
||||
message LatestUnplayedEpisodeSection {
|
||||
optional Item item = 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue