update 【gRPC API】 proto files

This commit is contained in:
社会易姐QwQ
2022-09-15 18:00:56 +08:00
parent 9322217103
commit b4bb815ae6
11 changed files with 1397 additions and 322 deletions

View File

@@ -0,0 +1,38 @@
syntax = "proto3";
package bilibili.pagination;
//
message FeedPagination {
//
int32 page_size = 1;
//
string offset = 2;
//
bool is_refresh = 3;
}
//
message FeedPaginationReply {
//
string next_offset = 1;
//
string prev_offset = 2;
//
string last_read_offset = 3;
}
//
message Pagination {
//
int32 page_size = 1;
//
string next = 2;
}
//
message PaginationReply {
//
string next = 1;
//
string prev = 2;
}