mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2025-04-13 18:40:54 +08:00
* 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
30 lines
529 B
Protocol Buffer
30 lines
529 B
Protocol Buffer
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;
|
|
}
|