@devvit/protos 0.11.8-next-2025-02-21-00ba78383.0 → 0.11.8-next-2025-02-25-6f95f6f49.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,6 +27,7 @@ option java_package = "com.reddit.devvit.plugin.redis";
27
27
  service RedisAPI {
28
28
  // Simple Key-Value operations
29
29
  rpc Get(KeyRequest) returns (google.protobuf.StringValue) {}
30
+ rpc GetBytes(KeyRequest) returns (google.protobuf.BytesValue) {}
30
31
  rpc Set(SetRequest) returns (google.protobuf.StringValue) {}
31
32
  rpc Del(KeysRequest) returns (google.protobuf.Int64Value) {}
32
33
  rpc Type(KeyRequest) returns (google.protobuf.StringValue) {}