mirror of https://github.com/vacp2p/rfc.git
Some fixes on the store protocol specs (#342)
* fixes the paging direction enum to match the implementation * int64 to uint64 * makes enum proto2 compatible
This commit is contained in:
parent
c8d7231633
commit
84d430366c
|
@ -42,11 +42,11 @@ message Index {
|
|||
}
|
||||
|
||||
message PagingInfo {
|
||||
int64 pageSize = 1;
|
||||
uint64 pageSize = 1;
|
||||
Index cursor = 2;
|
||||
enum Direction {
|
||||
FORWARD = 0;
|
||||
BACKWARD = 1;
|
||||
BACKWARD = 0;
|
||||
FORWARD = 1;
|
||||
}
|
||||
Direction direction = 3;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue