Skip to content

Commit e7c6a0e

Browse files
committed
Bump to v1.1.53 (matrix-rust-sdk/main baac38fec5192354cec3b21359510c85356c73b5)
1 parent 2ff6c2a commit e7c6a0e

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import PackageDescription
55

6-
let checksum = "65874b401714b5ed9aedfe74700b2a8fbbd50d635c780f6e4092201aa2b55381"
7-
let version = "v1.1.52"
6+
let checksum = "bdca00279f81b10376b9aae67625b77c76334b8e22e87365f07b79f436be9bb0"
7+
let version = "v1.1.53"
88
let url = "https://github.com/matrix-org/matrix-rust-components-swift/releases/download/\(version)/MatrixSDKFFI.xcframework.zip"
99

1010
let package = Package(

Sources/MatrixRustSDK/matrix_sdk_ffi.swift

+23
Original file line numberDiff line numberDiff line change
@@ -2404,6 +2404,12 @@ public func FfiConverterTypeEventTimelineItem_lower(_ value: EventTimelineItem)
24042404

24052405
public protocol HomeserverLoginDetailsProtocol : AnyObject {
24062406

2407+
/**
2408+
* The URL of the discovered or manually set sliding sync proxy,
2409+
* if any.
2410+
*/
2411+
func slidingSyncProxy() -> String?
2412+
24072413
/**
24082414
* Whether the current homeserver supports login using OIDC.
24092415
*/
@@ -2462,6 +2468,20 @@ open class HomeserverLoginDetails:
24622468

24632469

24642470

2471+
/**
2472+
* The URL of the discovered or manually set sliding sync proxy,
2473+
* if any.
2474+
*/
2475+
open func slidingSyncProxy() -> String? {
2476+
return try! FfiConverterOptionString.lift(
2477+
try!
2478+
rustCall() {
2479+
2480+
uniffi_matrix_sdk_ffi_fn_method_homeserverlogindetails_sliding_sync_proxy(self.uniffiClonePointer(), $0
2481+
)
2482+
}
2483+
)
2484+
}
24652485
/**
24662486
* Whether the current homeserver supports login using OIDC.
24672487
*/
@@ -23306,6 +23326,9 @@ private var initializationResult: InitializationResult {
2330623326
if (uniffi_matrix_sdk_ffi_checksum_method_eventtimelineitem_transaction_id() != 40338) {
2330723327
return InitializationResult.apiChecksumMismatch
2330823328
}
23329+
if (uniffi_matrix_sdk_ffi_checksum_method_homeserverlogindetails_sliding_sync_proxy() != 46815) {
23330+
return InitializationResult.apiChecksumMismatch
23331+
}
2330923332
if (uniffi_matrix_sdk_ffi_checksum_method_homeserverlogindetails_supports_oidc_login() != 46090) {
2331023333
return InitializationResult.apiChecksumMismatch
2331123334
}

0 commit comments

Comments
 (0)