Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[gRPC] 补充搜索子区直播信息定义 #1058

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions grpc_api/bilibili/polymer/app/search/v1/search.proto
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,8 @@ message Item {
SearchBangumiCard bangumi = 38;
//
SearchSportInlineCard esports_inline = 39;
//
SearchLiveRoom live_room = 50;
}
}

Expand Down Expand Up @@ -1392,6 +1394,38 @@ message SearchLiveCard {
RightTopLiveBadge right_top_live_badge = 11;
}

//
message SearchLiveRoom {
//
string title = 1;
//
string name = 2;
//
string cover = 3;
//
string uri = 4;
//
string param = 5;
//
WatchedShow watched_show = 6;
//
int64 room_id = 7;
//
string short_id = 8;
//
string goto = 9;
//
string area_v2_name = 10;
//
int32 online = 11;
//
int64 mid = 12;
//
int32 live_status = 13;
//
string live_link = 14;
}

//
message SearchLiveInlineCard {
//
Expand Down