mirror of https://github.com/status-im/go-waku.git
52 lines
906 B
Protocol Buffer
52 lines
906 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pb;
|
|
|
|
import "waku_message.proto";
|
|
|
|
message Index {
|
|
bytes digest = 1;
|
|
sint64 receiverTime = 2;
|
|
sint64 senderTime = 3;
|
|
string pubsubTopic = 4;
|
|
}
|
|
|
|
message PagingInfo {
|
|
uint64 pageSize = 1;
|
|
Index cursor = 2;
|
|
enum Direction {
|
|
BACKWARD = 0;
|
|
FORWARD = 1;
|
|
}
|
|
Direction direction = 3;
|
|
}
|
|
|
|
message ContentFilter {
|
|
string contentTopic = 1;
|
|
}
|
|
|
|
message HistoryQuery {
|
|
string pubsubTopic = 2;
|
|
repeated ContentFilter contentFilters = 3;
|
|
PagingInfo pagingInfo = 4; // used for pagination
|
|
sint64 startTime = 5;
|
|
sint64 endTime = 6;
|
|
}
|
|
|
|
message HistoryResponse {
|
|
// the first field is reserved for future use
|
|
repeated WakuMessage messages = 2;
|
|
PagingInfo pagingInfo = 3;
|
|
enum Error {
|
|
NONE = 0;
|
|
INVALID_CURSOR = 1;
|
|
}
|
|
Error error = 4;
|
|
}
|
|
|
|
message HistoryRPC {
|
|
string request_id = 1;
|
|
HistoryQuery query = 2;
|
|
HistoryResponse response = 3;
|
|
}
|