File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 3
3
4
4
import PackageDescription
5
5
6
- let checksum = " 93715098185ee35f44c698091f6a665ed88745d95522e16b2593e1fe6c431d9b "
7
- let version = " v1.0.23 -alpha "
6
+ let checksum = " 55b0787651aa7bd7afe19e2324ecdb7301d87e177d353e6b5493d38ee1cc1912 "
7
+ let version = " v1.0.24 -alpha "
8
8
let url = " https://github.com/matrix-org/matrix-rust-components-swift/releases/download/ \( version) /MatrixSDKFFI.xcframework.zip "
9
9
10
10
let package = Package (
Original file line number Diff line number Diff line change @@ -1414,6 +1414,7 @@ public protocol RoomProtocol {
1414
1414
func `membership`( ) -> Membership
1415
1415
func `name`( ) -> String ?
1416
1416
func `removeTimeline`( )
1417
+ func `retryDecryption`( `sessionIds`: [ String ] )
1417
1418
func `topic`( ) -> String ?
1418
1419
1419
1420
}
@@ -1635,6 +1636,15 @@ public class Room: RoomProtocol {
1635
1636
1636
1637
_uniffi_matrix_sdk_ffi_impl_Room_remove_timeline_a9df ( self . pointer, $0
1637
1638
)
1639
+ }
1640
+ }
1641
+ public func `retryDecryption`( `sessionIds`: [ String ] ) {
1642
+ try !
1643
+ rustCall ( ) {
1644
+
1645
+ _uniffi_matrix_sdk_ffi_impl_Room_retry_decryption_b803 ( self . pointer,
1646
+ FfiConverterSequenceString . lower ( `sessionIds`) , $0
1647
+ )
1638
1648
}
1639
1649
}
1640
1650
public func `topic`( ) -> String ? {
You can’t perform that action at this time.
0 commit comments