2024-12-15 19:51:02 +00:00
|
|
|
// Extracted from: Spotify 1.2.52.442 (windows)
|
2021-06-19 20:29:48 +00:00
|
|
|
|
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package spotify.collection_platform.proto;
|
|
|
|
|
2024-12-15 19:51:02 +00:00
|
|
|
import "collection_platform_items.proto";
|
|
|
|
|
|
|
|
option java_package = "com.spotify.collection_platform.esperanto.proto";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
option objc_class_prefix = "ESP";
|
2021-06-19 20:29:48 +00:00
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
|
|
|
|
message CollectionPlatformItemsRequest {
|
|
|
|
CollectionSet set = 1;
|
|
|
|
repeated string items = 2;
|
|
|
|
}
|
|
|
|
|
2024-12-15 19:51:02 +00:00
|
|
|
message CollectionPlatformContextItemsRequest {
|
|
|
|
CollectionSet set = 1;
|
|
|
|
repeated CollectionPlatformContextItem items = 2;
|
|
|
|
}
|
|
|
|
|
2021-06-19 20:29:48 +00:00
|
|
|
enum CollectionSet {
|
|
|
|
UNKNOWN = 0;
|
|
|
|
IGNOREINRECS = 4;
|
2021-12-10 19:33:43 +00:00
|
|
|
ENHANCED = 5;
|
2024-12-15 19:51:02 +00:00
|
|
|
BANNED_ARTISTS = 8;
|
|
|
|
CONCERTS = 10;
|
|
|
|
TAGS = 11;
|
|
|
|
PRERELEASE = 12;
|
|
|
|
MARKED_AS_FINISHED = 13;
|
|
|
|
NOT_INTERESTED = 14;
|
|
|
|
LOCAL_BANS = 15;
|
2021-06-19 20:29:48 +00:00
|
|
|
}
|
2024-12-15 19:51:02 +00:00
|
|
|
|