@devvit/protos 0.11.8-next-2025-02-18-2c543294a.0 → 0.11.8-next-2025-02-19-b3d899e85.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -74,7 +74,7 @@ service RedisAPI {
74
74
  rpc ZRemRangeByRank(ZRemRangeByRankRequest) returns (google.protobuf.Int64Value) {}
75
75
  rpc ZRemRangeByScore(ZRemRangeByScoreRequest) returns (google.protobuf.Int64Value) {}
76
76
  rpc ZScore(ZScoreRequest) returns (google.protobuf.DoubleValue) {}
77
- rpc ZRank(ZRankRequest) returns (ZRankResponse) {}
77
+ rpc ZRank(ZRankRequest) returns (google.protobuf.Int64Value) {}
78
78
  rpc ZIncrBy(ZIncrByRequest) returns (google.protobuf.DoubleValue) {}
79
79
  rpc ZScan(ZScanRequest) returns (ZScanResponse);
80
80
 
@@ -170,7 +170,6 @@ message ZScoreRequest {
170
170
  message ZRankRequest {
171
171
  KeyRequest key = 1;
172
172
  string member = 2;
173
- bool with_score = 3;
174
173
  optional RedisKeyScope scope = 100;
175
174
  }
176
175
 
@@ -179,13 +178,6 @@ message RedisRankScore {
179
178
  double score = 2;
180
179
  }
181
180
 
182
- message ZRankResponse {
183
- oneof result {
184
- int64 value = 1; // rank
185
- RedisRankScore rank_score_pair = 2;
186
- }
187
- }
188
-
189
181
  message ZIncrByRequest {
190
182
  string key = 1;
191
183
  string member = 2;