From 5abeb184ee039b8fc4a27e786b639fdb235fddc3 Mon Sep 17 00:00:00 2001 From: Konstantin Ivanov <54908981+konstantiniiv@users.noreply.github.com> Date: Wed, 2 Oct 2024 10:19:55 +0200 Subject: [PATCH] DROID-2875 Protocol | Integrate 0.36.0-rc6 (#1616) --- gradle/libs.versions.toml | 2 +- protocol/src/main/proto/commands.proto | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f0c53b3558..b7c217fa84 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -middlewareVersion = "v0.36.0-rc5" +middlewareVersion = "v0.36.0-rc6" kotlinVersion = '2.0.0' kspVersion = "2.0.0-1.0.22" diff --git a/protocol/src/main/proto/commands.proto b/protocol/src/main/proto/commands.proto index d15d6b2709..240ce4533e 100644 --- a/protocol/src/main/proto/commands.proto +++ b/protocol/src/main/proto/commands.proto @@ -3034,6 +3034,30 @@ message Rpc { } } } + + message ListWithValue { + message Request { + string spaceId = 1; + google.protobuf.Value value = 2; + } + + message Response { + Error error = 1; + repeated string relationKeys = 2; + repeated int64 counters = 3; + + message Error { + Code code = 1; + string description = 2; + + enum Code { + NULL = 0; + UNKNOWN_ERROR = 1; + BAD_INPUT = 2; + } + } + } + } } message History {