js-waku/proto/waku/v2/store.proto

40 lines
684 B
Protocol Buffer
Raw Normal View History

2021-04-07 01:04:30 +00:00
syntax = "proto3";
package waku.v2;
import "waku/v2/message.proto";
message Index {
bytes digest = 1;
double received_time = 2;
}
enum Direction {
DIRECTION_BACKWARD_UNSPECIFIED = 0;
DIRECTION_FORWARD = 1;
}
2021-04-13 00:36:22 +00:00
message PagingInfo {
uint64 page_size = 1;
2021-04-07 01:04:30 +00:00
Index cursor = 2;
Direction direction = 3;
}
message HistoryQuery {
2021-04-13 00:36:22 +00:00
repeated string topics = 2;
optional PagingInfo paging_info = 3;
optional double start_time = 4;
optional double end_time = 5;
2021-04-07 01:04:30 +00:00
}
message HistoryResponse {
repeated WakuMessageProto messages = 1;
2021-04-13 00:36:22 +00:00
PagingInfo paging_info = 2;
2021-04-07 01:04:30 +00:00
}
message HistoryRPC {
string request_id = 1;
HistoryQuery query = 2;
HistoryResponse response = 3;
}