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:
Sanaz Taheri Boshrooyeh 2021-04-09 09:46:45 -07:00 committed by GitHub
parent c8d7231633
commit 84d430366c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}