diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index e16c28da28..d539225215 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -middlewareVersion = "v0.32.0-rc3" +middlewareVersion = "v0.32.0-rc4" kotlinVersion = '1.8.22' androidxCoreVersion = "1.12.0" diff --git a/protocol/src/main/proto/commands.proto b/protocol/src/main/proto/commands.proto index 5cd7311fe4..b5cbb9eea1 100644 --- a/protocol/src/main/proto/commands.proto +++ b/protocol/src/main/proto/commands.proto @@ -5014,6 +5014,7 @@ message Rpc { string blockId = 2; string targetId = 3; ResponseEvent event = 4; + google.protobuf.Struct details = 5; message Error { Code code = 1; diff --git a/protocol/src/main/proto/models.proto b/protocol/src/main/proto/models.proto index 5b9759a225..ff44494a09 100644 --- a/protocol/src/main/proto/models.proto +++ b/protocol/src/main/proto/models.proto @@ -911,6 +911,8 @@ enum SpaceStatus { SpaceActive = 8; // SpaceJoining - the account is joining the space SpaceJoining = 9; + // SpaceRemoving - the account is removing from space or the space is removed from network + SpaceRemoving = 10; } message ParticipantPermissionChange {