Author SHA1 Message Date
SionoiS e13f5230ae proper folder structure 2025-01-20 11:56:11 -05:00
SionoiS df0cfb1567 transfer v1 2025-01-20 10:53:30 -05:00
NagyZoltanPeter 0751e39289 feat: Added missing HistoryResponse Error codes, introduced by Rate Limiting (#21)
* Added missing HistoryResponse Error codes, introduced by Rate Limiting non relay protocol

* Found I misstyped name of the Error code (already fixed in jswaku))
2025-01-17 13:24:46 +01:00
2 changed files with 13 additions and 0 deletions
+2
View File
@@ -43,6 +43,8 @@ message HistoryResponse {
enum Error {
NONE = 0;
INVALID_CURSOR = 1;
TOO_MANY_REQUESTS = 429;
SERVICE_UNAVAILABLE = 503;
}
Error error = 4;
}
+11
View File
@@ -0,0 +1,11 @@
syntax = "proto3";
package waku.sync.transfer.v1;
import "waku/message/v1/message.proto";
message WakuMessageAndTopic {
// Full message content and associated pubsub_topic as value
optional waku.message.v1.WakuMessage message = 1;
optional string pubsub_topic = 2;
}