update 【gRPC API】 proto files

This commit is contained in:
社会易姐QwQ 2022-09-16 22:41:58 +08:00
parent 283c718206
commit 17eee20dce
11 changed files with 3094 additions and 125 deletions

View File

@ -1,4 +1,5 @@
syntax = "proto3";
package bilibili.app.view.v1;
import "google/protobuf/any.proto";
@ -33,7 +34,7 @@ service View {
rpc CacheView(CacheViewReq) returns (CacheViewReply);
//
rpc ContinuousPlay(ContinuousPlayReq) returns (ContinuousPlayReply);
//
// IFS
rpc RelatesFeed(RelatesFeedReq) returns (RelatesFeedReply);
//
rpc PremiereArchive(PremiereArchiveReq) returns (PremiereArchiveReply);
@ -1662,7 +1663,7 @@ message RelateItem {
string cover = 2;
}
//
// IFS-
message RelatesFeedReply {
//
repeated Relate list = 1;
@ -1672,7 +1673,7 @@ message RelatesFeedReply {
bilibili.pagination.PaginationReply pagination = 3;
}
//
// IFS-
message RelatesFeedReq {
//
int64 aid = 1;

View File

@ -7,25 +7,27 @@ import "google/protobuf/any.proto";
//
service Reply {
//
rpc MainList (MainListReq) returns (MainListReply);
rpc MainList(MainListReq) returns (MainListReply);
//
rpc DetailList (DetailListReq) returns (DetailListReply);
rpc DetailList(DetailListReq) returns (DetailListReply);
//
rpc DialogList (DialogListReq) returns (DialogListReply);
rpc DialogList(DialogListReq) returns (DialogListReply);
//
rpc PreviewList (PreviewListReq) returns (PreviewListReply);
rpc PreviewList(PreviewListReq) returns (PreviewListReply);
// item前置发布接口
rpc SearchItemPreHook (SearchItemPreHookReq) returns (SearchItemPreHookReply);
rpc SearchItemPreHook(SearchItemPreHookReq) returns (SearchItemPreHookReply);
//
rpc SearchItem (SearchItemReq) returns (SearchItemReply);
rpc SearchItem(SearchItemReq) returns (SearchItemReply);
// at用户搜索接口
rpc AtSearch(AtSearchReq) returns (AtSearchReply);
//
rpc ReplyInfo(ReplyInfoReq) returns (ReplyInfoReply);
//
rpc AtSearch (AtSearchReq) returns (AtSearchReply);
//
rpc ReplyInfo (ReplyInfoReq) returns (ReplyInfoReply);
//
rpc UserCallback (UserCallbackReq) returns (UserCallbackReply);
//
rpc ShareRepliesInfo (ShareRepliesInfoReq) returns (ShareRepliesInfoResp);
rpc UserCallback(UserCallbackReq) returns (UserCallbackReply);
//
rpc ShareRepliesInfo(ShareRepliesInfoReq) returns (ShareRepliesInfoResp);
//
rpc SuggestEmotes(SuggestEmotesReq) returns (SuggestEmotesResp);
}
//
@ -49,41 +51,41 @@ message ArticleSearchItem {
repeated string covers = 3;
}
//
// at用户搜索组
message AtGroup {
//
//
int32 group_type = 1;
//
//
string group_name = 2;
//
// at用户搜索列表
repeated AtItem items = 3;
}
//
// at用户搜索条目
message AtItem {
//
// mid
int64 mid = 1;
//
//
string name = 2;
//
// url
string face = 3;
//
//
int32 fans = 4;
//
//
int32 official_verify_type = 5;
}
//
// at用户搜索-
message AtSearchReply {
//
// at用户搜索组
repeated AtGroup groups = 1;
}
//
// at用户搜索-
message AtSearchReq {
//
int64 mid = 1;
//
//
string keyword = 2;
}
@ -97,7 +99,7 @@ message CM {
message Content {
//
string message = 1;
// at到的用户信息
//
map<string, Member> menber = 2;
//
map<string, Emote> emote = 3;
@ -107,6 +109,10 @@ message Content {
map<string, Url> url = 5;
//
Vote vote = 6;
// at到的用户mid列表
map<string, int64> at_name_to_mid = 7;
//
RichText rich_text = 8;
}
//
@ -154,7 +160,7 @@ message DetailListReply {
message DetailListReq {
// id
int64 oid = 1;
//
// type
int64 type = 2;
// rpid
int64 root = 3;
@ -168,9 +174,9 @@ message DetailListReq {
//
enum DetailListScene {
REPLY = 0; //
REPLY = 0; //
MSG_FEED = 1; //
NOTIFY = 2; //
NOTIFY = 2; //
}
// -
@ -189,7 +195,7 @@ message DialogListReply {
message DialogListReq {
// id
int64 oid = 1;
//
// type
int64 type = 2;
// rpid
int64 root = 3;
@ -222,6 +228,8 @@ message Emote {
int64 package_id = 6;
//
string gif_url = 7;
//
string text = 8;
}
//
@ -318,16 +326,20 @@ message MainListReply {
message MainListReq {
// id
int64 oid = 1;
//
// type
int64 type = 2;
//
CursorReq cursor = 3;
// json
string extra = 4;
// 广json
// 广
string ad_extra = 5;
// rpid
int64 rpid = 6;
//
int64 seek_rpid = 7;
// : ["全部" "粉丝评论" "笔记长评"]
string filter_tag_name = 8;
}
//
@ -406,13 +418,13 @@ message Member {
string vip_label_text = 23;
//
string vip_label_theme = 24;
//
//
int64 fans_medal_color_end = 25;
//
//
int64 fans_medal_color_border = 26;
//
//
int64 fans_medal_color_name = 27;
//
//
int64 fans_medal_color_level = 28;
//
int64 fans_guard_level = 29;
@ -430,6 +442,156 @@ message Member {
string fans_honor_icon = 35;
}
// V2
message MemberV2 {
//
message Basic {
// mid
int64 mid = 1;
//
string name = 2;
//
string sex = 3;
// url
string face = 4;
//
int64 level = 5;
}
//
message Official {
//
int64 verify_type = 1;
}
//
message Vip {
//
// 0: 1: 2:
int64 type = 1;
//
int64 status = 2;
//
int64 theme_type = 3;
// url
string label_path = 4;
//
string nickname_color = 5;
//
int32 avatar_subscript = 6;
//
string label_text = 7;
//
string vip_label_theme = 8;
}
//
message Garb {
// url
string pendant_image = 1;
// url
string card_image = 2;
// url
string card_image_with_focus = 3;
// url
string card_jump_url = 4;
// id
string card_number = 5;
// id显示颜色
string card_fan_color = 6;
//
bool card_is_fan = 7;
}
//
message Medal {
//
string name = 1;
//
int64 level = 2;
//
int64 color_start = 3;
//
int64 color_end = 4;
//
int64 color_border = 5;
//
int64 color_name = 6;
//
int64 color_level = 7;
//
int64 guard_level = 8;
//
string first_icon = 9;
//
int64 level_bg_color = 11;
}
//
enum RegionType {
DEFAULT = 0; //
MAINLAND = 1; //
GAT = 2; //
}
//
message Region {
//
RegionType type = 1;
//
string icon = 2;
//
int32 show_status = 3;
}
//
message Interaction {
//
string itype = 1;
//
string metadata_url = 2;
//
string nft_id = 3;
//
Region region = 4;
}
// NFT
message Nft {
//
int32 face = 1;
//
Interaction interaction = 2;
}
//
message Senior {
//
int32 is_senior_member = 1;
}
//
message Contractor {
//
bool is_contractor = 1;
//
string contract_desc = 2;
}
//
enum ShowStatus {
SHOWDEFAULT = 0; //
ZOOMINMAINLAND = 1; //
RAW = 2; //
}
//
Basic basic = 1;
//
Official official = 2;
//
Vip vip = 3;
//
Garb garb = 4;
//
Medal medal = 5;
// NFT信息
Nft nft = 6;
//
Senior senior = 7;
//
Contractor contractor = 8;
}
//
enum Mode {
DEFAULT = 0; //
@ -504,7 +666,7 @@ message PreviewListReply {
message PreviewListReq {
// id
int64 oid = 1;
//
// type
int64 type = 2;
//
CursorReq cursor = 3;
@ -538,30 +700,34 @@ message QoeScoreItem {
float score = 3;
}
//
//
message ReplyCardLabel {
//
//
string text_content = 1;
//
//
string text_color_day = 2;
//
//
string text_color_night = 3;
//
//
string label_color_day = 4;
//
//
string label_color_night = 5;
//
string image = 6;
//
int32 type = 7;
//
// url
string background = 8;
//
//
double background_width = 9;
//
//
double background_height = 10;
//
// url
string jump_url = 11;
//
int64 effect = 12;
//
int64 effect_start_time = 13;
}
//
@ -603,19 +769,19 @@ message ReplyControl {
bool is_contractor = 17;
//
bool is_note = 18;
//
//
repeated ReplyCardLabel card_labels = 19;
//
// "共x条回复"
string sub_reply_entry_text = 20;
//
// "相关回复共x条"
string sub_reply_title_text = 21;
//
string contract_desc = 22;
//
// "x天前发布"
string time_desc = 23;
//
string biz_scene = 24;
//
// IP属地信息 "IP属地xxx"
string location = 25;
}
@ -661,22 +827,45 @@ message ReplyInfo {
Member member = 13;
//
ReplyControl reply_control = 14;
// V2
MemberV2 member_v2 = 15;
}
//
// -
message ReplyInfoReply {
//
//
ReplyInfo reply = 1;
}
//
// -
message ReplyInfoReq {
//
// rpid
int64 rpid = 1;
//
int32 scene = 2;
}
//
message RichText {
//
oneof item {
//
RichTextNote note = 1;
}
}
//
message RichTextNote {
//
string summary = 1;
//
repeated string images = 2;
//
string click_url = 3;
//
string last_mtime_text = 4;
}
//
message SearchItem {
//
@ -722,7 +911,7 @@ message SearchItemPreHookReply {
message SearchItemPreHookReq {
// id
int64 oid = 1;
//
// type
int64 type = 2;
}
@ -744,22 +933,22 @@ message SearchItemReplyExtraInfo {
// -
message SearchItemReq {
//
//
SearchItemCursorReq cursor = 1;
//id
// id
int64 oid = 2;
//
// type
int64 type = 3;
//
//
string keyword = 4;
}
//
enum SearchItemType {
DEFAULT_ITEM_TYPE = 0; //
GOODS = 1; //
VIDEO = 2; //
ARTICLE = 3; //
GOODS = 1; //
VIDEO = 2; //
ARTICLE = 3; //
}
//
@ -768,34 +957,36 @@ enum SearchItemVideoSubType {
PGC = 1; //
}
//
// -
message ShareRepliesInfoReq {
//
// rpid列表
repeated int64 rpids = 1;
// id
int64 oid = 2;
//
// type
int64 type = 3;
}
//
// -
message ShareRepliesInfoResp {
//
message ShareExtra {
//
bool is_pgc = 1;
}
//
//
repeated ShareReplyInfo infos = 1;
//
//
string from_title = 2;
//
// UP主
string from_up = 3;
//
// url
string from_pic = 4;
//
// url
string url = 5;
//
// logo url
string slogan_pic = 6;
//
//
string slogan_text = 7;
//
ShareReplyTopic topic = 8;
@ -803,17 +994,17 @@ message ShareRepliesInfoResp {
ShareExtra extra = 9;
}
//
//
message ShareReplyInfo {
//
//
Member member = 1;
//
//
Content content = 2;
//
// ()
string title = 3;
//
// "发表了评论"
string sub_title = 4;
//
// "获得了up主点赞"
string achievement_text = 5;
//
string label_url = 6;
@ -829,6 +1020,13 @@ message ShareReplyTopic {
//
message SubjectControl {
//
message FilterTag {
//
string name = 1;
//
string event_id = 2;
}
// UP主mid
int64 up_mid = 1;
//
@ -865,10 +1063,32 @@ message SubjectControl {
string title = 17;
//
string giveup_text = 18;
//
//
bool has_note_access = 19;
//
bool disable_jump_emote = 20;
//
string empty_background_text_plain = 21;
//
string empty_background_text_highlight = 22;
//
string empty_background_uri = 23;
//
repeated FilterTag support_filter_tags = 24;
}
// -
message SuggestEmotesReq {
// id
int64 oid = 1;
// type
int64 type = 2;
}
// -
message SuggestEmotesResp {
//
repeated Emote emotes = 1;
}
//
@ -891,7 +1111,7 @@ message UGCVideoSearchItem {
string cover = 4;
}
//
//
message UpSelection {
//
int64 pending_count = 1;
@ -901,7 +1121,7 @@ message UpSelection {
//
message Url {
//
//
message Extra {
//
int64 goods_item_id = 1;
@ -909,7 +1129,7 @@ message Url {
string goods_prefetched_cache = 2;
//
int32 goods_show_type = 3;
//
//
bool is_word_search = 4;
//
int64 goods_cm_control = 5;
@ -920,7 +1140,7 @@ message Url {
int64 state = 2;
// url
string prefix_icon = 3;
//
// uri
string app_url_schema = 4;
//
string app_name = 5;
@ -928,17 +1148,17 @@ message Url {
string app_package_name = 6;
// id
string click_report = 7;
//
//
bool is_half_screen = 8;
//
string exposure_report = 9;
//
//
Extra extra = 10;
//
// 线
bool underline = 11;
//
bool match_once = 12;
//
// url
string pc_url = 13;
//
int32 icon_position = 14;
@ -950,9 +1170,7 @@ enum UserCallbackAction {
}
//
message UserCallbackReply {
}
message UserCallbackReply {}
//
message UserCallbackReq {

View File

@ -1,4 +1,5 @@
syntax = "proto3";
package bilibili.pagination;
//

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,96 @@
syntax = "proto3";
package bilibili.polymer.app.govern.v1;
//
service AntiHarassmentService {
//
rpc StoreAntiHarassmentSettings(StoreAntiHarassmentSettingsReq) returns (StoreAntiHarassmentSettingsRsp);
//
rpc LoadAntiHarassmentSettings(LoadAntiHarassmentSettingsReq) returns (LoadAntiHarassmentSettingsRsp);
}
//
message AntiHarassmentInfo {
//
int32 limit = 1;
//
int32 follow_time_limit_second = 2;
//
int64 expire_time = 3;
}
//
enum AntiHarassmentLimit {
DefaultLimit = 0; //
FollowLimit = 1; //
ReFollowLimit = 2; //
TwoWayFollow = 3; //
AllLimit = 4; //
}
//
message AntiHarassmentSetting {
//
int64 mid = 1;
//
bool auto_limit = 2;
//
AntiHarassmentInfo im = 3;
//
AntiHarassmentInfo reply = 4;
//
AntiHarassmentInfo dm = 5;
//
AntiHarassmentInfo reply_me = 6;
//
AntiHarassmentInfo like_me = 7;
//
AntiHarassmentInfo at_me = 8;
//
int64 auto_limit_expire_time = 9;
}
//
enum BizType {
InvalidBizType = 0; //
Im = 1; //
Dm = 2; //
Reply = 3; //
ReplyMe = 4; //
LikeMe = 5; //
AtMe = 6; //
}
//
message LoadAntiHarassmentSettingsReq {
//
int32 biz_type = 1;
//
int64 recv_mid = 2;
//
int64 send_mid = 3;
}
//
message LoadAntiHarassmentSettingsRsp {
//
bool anti_harassment_ret = 1;
//
AntiHarassmentSetting anti_harassment_setting = 2;
//
int32 show_window = 3;
}
//
message StoreAntiHarassmentSettingsReq {
//
int32 biz_type = 1;
//
int64 mid = 2;
//
AntiHarassmentSetting anti_harassment_setting = 3;
}
//
message StoreAntiHarassmentSettingsRsp {}

View File

@ -4,10 +4,26 @@ package bilibili.polymer.contract;
import "google/protobuf/empty.proto";
//
//
service Contract {
//
rpc AddContract(AddContractReq) returns (google.protobuf.Empty);
//
rpc AddContractV2(AddContractReq) returns (AddContractReply);
//
rpc ContractConfig(ContractConfigReq) returns (ContractConfigReply);
}
//
message AddContractReply {
//
bool allow_message = 1;
//
bool allow_reply = 2;
//
string input_text = 3;
//
string input_title = 4;
}
//
@ -20,6 +36,8 @@ message AddContractReq {
int64 up_mid = 3;
//
int64 aid = 4;
//
int32 source = 5;
}
//
@ -40,3 +58,34 @@ message CommonReq {
string spmid = 7;
}
//
message ContractCard {
//
string title = 1;
//
string sub_title = 2;
}
//
message ContractConfigReply {
//
int32 is_follow_display = 1;
//
int32 is_triple_display = 2;
//
ContractCard contract_card = 3;
}
//
message ContractConfigReq {
//
CommonReq common = 1;
//
int64 mid = 2;
//
int64 up_mid = 3;
//
int64 aid = 4;
//
int32 source = 5;
}

View File

@ -41,6 +41,4 @@ message FavoriteTabReply {
}
//
message FavoriteTabReq {
}
message FavoriteTabReq {}

View File

@ -34,6 +34,8 @@ message CommandDm {
string extra = 9;
// id str类型
string idStr = 10;
//
int64 display = 11;
}
// ott互动弹幕条目信息
@ -119,8 +121,10 @@ message DanmakuElem {
// ai云屏蔽条目
message DanmakuFlag {
int64 dmid = 1; // dmid
uint32 flag = 2; //
// dmid
int64 dmid = 1;
//
uint32 flag = 2;
}
//
@ -315,6 +319,8 @@ message TvViewProgressReq {
int64 from = 9;
//
string guest_access_key = 10;
//
int64 epid = 11;
}
//

View File

@ -377,6 +377,10 @@ message Arc {
int64 season_id = 29;
//
repeated DescV2 desc_v2 = 30;
//
bool is_chargeable_season = 31;
//
bool is_blooper = 32;
}
//
@ -523,9 +527,7 @@ message NameplateInfo {
}
//
message NoReply {
}
message NoReply {}
//
message OfficialInfo {
@ -557,10 +559,10 @@ message OperationRelate {
//
enum OrderType {
TypeNone = 0; //
TypeNone = 0; //
TypeOrderActivity = 1; //
TypeFavSeason = 2; //
TypeClick = 3; //
TypeFavSeason = 2; //
TypeClick = 3; //
}
//
@ -597,6 +599,12 @@ message PendantInfo {
int64 expire = 4;
}
//
message ReasonStyle {
//
string text = 1;
}
//
message Relate {
//
@ -744,8 +752,8 @@ message ReplyEmoteMeta {
//
enum ReplyEmoteMetaSize {
EMOTE_META_SIZE_UNSPECIFIED = 0; //
EMOTE_META_SIZE_SMALL = 1; //
EMOTE_META_SIZE_BIG = 2; //
EMOTE_META_SIZE_SMALL = 1; //
EMOTE_META_SIZE_BIG = 2; //
}
//
@ -952,6 +960,10 @@ message Rights {
int32 is_cooperation = 10;
//
int32 ugc_pay_preview = 11;
//
int32 arc_pay = 12;
//
int32 free_watch = 13;
}
//
@ -976,6 +988,8 @@ message SeasonEpisode {
Page page = 9;
//
string bvid = 10;
//
ReasonStyle badge_style = 11;
}
//
@ -1188,6 +1202,8 @@ message UGCSeason {
int64 ep_count = 10;
//
int64 season_type = 11;
//
bool is_pay_season = 12;
}
//

View File

@ -0,0 +1,282 @@
syntax = "proto3";
package bilibili.web.space.v1;
//
message NoReply {}
//
message OfficialReply {
//
int64 id = 1;
//
int64 uid = 2;
//
string name = 3;
//
string icon = 4;
//
string scheme = 5;
//
string rcmd = 6;
//
string ios_url = 7;
//
string android_url = 8;
//
string button = 9;
//
string deleted = 10;
//
int64 mtime = 11;
}
//
message OfficialRequest {
//
int64 mid = 1;
}
//
message PhotoMall {
//
int64 id = 1;
//
string name = 2;
//
string img = 3;
//
string night_img = 4;
//
int64 is_activated = 5;
}
//
message PhotoMallListReply {
//
repeated PhotoMall list = 1;
}
//
message PhotoMallListReq {
//
string mobiapp = 1;
//
int64 mid = 2;
//
string device = 3;
}
//
message PrivacyReply {
//
map<string, int64> privacy = 1;
}
//
message PrivacyRequest {
//
int64 mid = 1;
}
//
message SetTopPhotoReq {
//
string mobiapp = 1;
//
int64 i_d = 2;
//
int64 mid = 3;
//
int32 type = 4;
}
//
message SpaceSettingReply {
//
int64 channel = 1;
//
int64 fav_video = 2;
//
int64 coins_video = 3;
//
int64 likes_video = 4;
//
int64 bangumi = 5;
//
int64 played_game = 6;
//
int64 groups = 7;
//
int64 comic = 8;
//
int64 b_bq = 9;
//
int64 dress_up = 10;
//
int64 disable_following = 11;
//
int64 live_playback = 12;
//
int64 close_space_medal = 13;
//
int64 only_show_wearing = 14;
//
int64 disable_show_school = 15;
//
int64 disable_show_nft = 16;
}
//
message SpaceSettingReq {
//
int64 mid = 1;
}
//
message TopPhoto {
//
string img_url = 1;
//
string night_img_url = 2;
//
int64 sid = 3;
}
//
message TopPhotoArc {
//
bool show = 1;
//
int64 aid = 2;
//
string pic = 3;
}
//
message TopPhotoArcCancelReq {
//
int64 mid = 1;
}
//
message TopPhotoReply {
//
TopPhoto top_photo = 1;
//
TopPhotoArc top_photo_arc = 2;
}
//
message TopPhotoReq {
//
string mobiapp = 1;
//
int64 mid = 2;
//
int32 build = 3;
//
string device = 4;
//
int64 login_mid = 5;
}
//
enum TopPhotoType {
UNKNOWN = 0; //
PIC = 1; //
ARCHIVE = 2; //
}
//
message UpActivityTabReq {
//
int64 mid = 1;
//
int32 state = 2;
//
int64 tab_cont = 3;
//
string tab_name = 4;
}
//
message UpActivityTabResp {
//
bool success = 1;
}
//
message UpRcmdBlackListReply {}
//
message UserTabReply {
//
int32 tab_type = 1;
//
int64 mid = 2;
//
string tab_name = 3;
//
int32 tab_order = 4;
//
int64 tab_cont = 5;
//
int32 is_default = 6;
//
string h5_link = 7;
}
//
message UserTabReq {
//
int64 mid = 1;
//
int32 plat = 2;
//
int32 build = 3;
}
//
message WhitelistAddReply {
//
bool add_ok = 1;
}
//
message WhitelistAddReq {
//
int64 mid = 1;
//
int64 stime = 2;
//
int64 etime = 3;
}
//
message WhitelistReply {
//
bool is_white = 1;
}
//
message WhitelistReq {
//
int64 mid = 1;
}
//
message WhitelistUpReply {
//
bool up_ok = 1;
}
//
message WhitelistValidTimeReply {
//
bool is_white = 1;
//
int64 stime = 2;
//
int64 etime = 3;
}

View File

@ -25,14 +25,10 @@ service VegaFrameDoc {
}
//
message AuthReq {
}
message AuthReq {}
//
message AuthResp {
}
message AuthResp {}
//
message FrameOption {
@ -53,14 +49,10 @@ message FrameOption {
}
//
message HeartbeatReq {
}
message HeartbeatReq {}
//
message HeartbeatResp {
}
message HeartbeatResp {}
//
message MessageAckReq {