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:
@@ -1098,18 +1098,38 @@ message SearchBannerCard {
|
||||
|
||||
//
|
||||
message SearchByTypeRequest {
|
||||
enum CategorySort {
|
||||
CATEGORY_SORT_DEFAULT = 0;
|
||||
CATEGORY_SORT_PUBLISH_TIME = 1;
|
||||
CATEGORY_SORT_CLICK_COUNT = 2;
|
||||
CATEGORY_SORT_COMMENT_COUNT = 3;
|
||||
CATEGORY_SORT_LIKE_COUNT = 4;
|
||||
}
|
||||
enum UserType {
|
||||
ALL = 0;
|
||||
UP = 1;
|
||||
NORMAL_USER = 2;
|
||||
AUTHENTICATED_USER = 3;
|
||||
}
|
||||
enum UserSort {
|
||||
USER_SORT_DEFAULT = 0;
|
||||
USER_SORT_FANS_DESCEND = 1;
|
||||
USER_SORT_FANS_ASCEND = 2;
|
||||
USER_SORT_LEVEL_DESCEND = 3;
|
||||
USER_SORT_LEVEL_ASCEND = 4;
|
||||
}
|
||||
// 搜索目标类型, 番剧为7
|
||||
int32 type = 1;
|
||||
// 关键词
|
||||
string keyword = 2;
|
||||
//
|
||||
int32 category_sort = 3;
|
||||
CategorySort category_sort = 3;
|
||||
//
|
||||
int64 category_id = 4;
|
||||
//
|
||||
int32 user_type = 5;
|
||||
UserType user_type = 5;
|
||||
//
|
||||
int32 user_sort = 6;
|
||||
UserSort user_sort = 6;
|
||||
//
|
||||
bilibili.pagination.Pagination pagination = 7;
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user