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