-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update grpc proto from 7.57.2 (#881)
* update pugvanymodel proto from 7.57.2 * update playerunite/pugvanymodel proto from 7.57.2 * update playerunite related proto from 7.57.2 * update search v2 related proto from 7.57.2 * update metadata related proto from 7.57.2 * update viewunite related proto from 7.57.2
- Loading branch information
Showing
8 changed files
with
768 additions
and
16 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
grpc_api/bilibili/app/playerunite/pugvanymodel.proto/pugvanymodel.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
syntax = "proto3"; | ||
|
||
package bilibili.app.playerunite.pugvanymodel; | ||
|
||
// | ||
enum EpisodeStatus { | ||
EPISODE_STATUS_UNSPECIFIED = 0; | ||
EPISODE_STATUS_TRY_WATCH_WHOLE = 1; | ||
EPISODE_STATUS_NOT_TRY_WATCH = 2; | ||
EPISODE_STATUS_TRY_WATCH_5_MINUTES = 3; | ||
} | ||
|
||
// | ||
message PlayerMask { | ||
// | ||
string title = 1; | ||
// | ||
string prefix = 2; | ||
// | ||
string suffix = 3; | ||
} | ||
|
||
// | ||
message PUGVAnyModel { | ||
// | ||
int64 season_id = 1; | ||
// | ||
int64 episode_id = 2; | ||
// | ||
EpisodeStatus status = 3; | ||
// | ||
RiskControl risk_control = 4; | ||
// | ||
PlayerMask player_mask = 5; | ||
} | ||
|
||
// | ||
message RiskControl { | ||
// | ||
bool need_send_sms = 1; | ||
// | ||
string title = 2; | ||
// | ||
string risk_message = 3; | ||
// | ||
string action_desc = 4; | ||
// | ||
string send_sms_url = 5; | ||
// | ||
string buvid = 6; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.