update grpc_api from 7.26.0 (#728)

* update package bilibili.pgc.gateway.player.v2 from 7.26.0

* update package bilibili.app.viewunite.v1 from 7.26.0

* delete some unused grpc package based on 7.26.0

* update package bilibili.playershared from 7.26.0

* update package bilibili.polymer.app.search.v1 from 7.26.0

* redir package bilibili.polymer.contract.v1

* update package bilibili.app.dynamic.v2 from 7.26.0

* add package bilibili.app.search.v2 from 7.26.0

* fix: typo
This commit is contained in:
陈寒彤
2023-07-03 16:44:26 +08:00
committed by GitHub
parent d023b55918
commit 7d389d8f72
12 changed files with 2922 additions and 852 deletions

View File

@@ -0,0 +1,29 @@
syntax = "proto3";
package bilibili.broadcast.message.main;
import "google/protobuf/empty.proto";
import "bilibili/app/dynamic/v2/dynamic.proto";
service Search {
rpc ChatResultPush (google.protobuf.Empty) returns (stream ChatResult);
}
//
message Bubble {
repeated bilibili.app.dynamic.v2.Paragraph paragraphs = 1;
}
//
message ChatResult {
//
int32 code = 1;
//
string session_id = 2;
//
repeated Bubble bubble = 3;
//
string rewrite_word = 4;
//
string title = 5;
}