From 4e5cc16523ca7edea7df393de9b04b7cbc9a9986 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 11 Dec 2024 19:17:49 +0000 Subject: [PATCH] Bump SDK version to 0.2.71 (matrix-rust-sdk to fda374ee81dad3b803cc72d2fb79bd13f261bc5e) --- buildSrc/src/main/kotlin/BuildVersionsSDK.kt | 2 +- .../rustcomponents/sdk/matrix_sdk_ffi.kt | 36 +++++++++++++++++-- 2 files changed, 35 insertions(+), 3 deletions(-) diff --git a/buildSrc/src/main/kotlin/BuildVersionsSDK.kt b/buildSrc/src/main/kotlin/BuildVersionsSDK.kt index d339305..3e48fbc 100644 --- a/buildSrc/src/main/kotlin/BuildVersionsSDK.kt +++ b/buildSrc/src/main/kotlin/BuildVersionsSDK.kt @@ -1,5 +1,5 @@ object BuildVersionsSDK { const val majorVersion = 0 const val minorVersion = 2 - const val patchVersion = 70 + const val patchVersion = 71 } diff --git a/sdk/sdk-android/src/main/kotlin/org/matrix/rustcomponents/sdk/matrix_sdk_ffi.kt b/sdk/sdk-android/src/main/kotlin/org/matrix/rustcomponents/sdk/matrix_sdk_ffi.kt index bf05734..afc0c62 100644 --- a/sdk/sdk-android/src/main/kotlin/org/matrix/rustcomponents/sdk/matrix_sdk_ffi.kt +++ b/sdk/sdk-android/src/main/kotlin/org/matrix/rustcomponents/sdk/matrix_sdk_ffi.kt @@ -26149,7 +26149,27 @@ data class UnableToDecryptInfo ( * What we know about what caused this UTD. E.g. was this event sent when * we were not a member of this room? */ - var `cause`: UtdCause + var `cause`: UtdCause, + /** + * The difference between the event creation time (`origin_server_ts`) and + * the time our device was created. If negative, this event was sent + * *before* our device was created. + */ + var `eventLocalAgeMillis`: kotlin.Long, + /** + * Whether the user had verified their own identity at the point they + * received the UTD event. + */ + var `userTrustsOwnIdentity`: kotlin.Boolean, + /** + * The homeserver of the user that sent the undecryptable event. + */ + var `senderHomeserver`: kotlin.String, + /** + * Our local user's own homeserver, or `None` if the client is not logged + * in. + */ + var `ownHomeserver`: kotlin.String? ) { companion object @@ -26161,19 +26181,31 @@ public object FfiConverterTypeUnableToDecryptInfo: FfiConverterRustBuffer