File tree 2 files changed +25
-2
lines changed
2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 3
3
4
4
import PackageDescription
5
5
6
- let checksum = " 65874b401714b5ed9aedfe74700b2a8fbbd50d635c780f6e4092201aa2b55381 "
7
- let version = " v1.1.52 "
6
+ let checksum = " bdca00279f81b10376b9aae67625b77c76334b8e22e87365f07b79f436be9bb0 "
7
+ let version = " v1.1.53 "
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 @@ -2404,6 +2404,12 @@ public func FfiConverterTypeEventTimelineItem_lower(_ value: EventTimelineItem)
2404
2404
2405
2405
public protocol HomeserverLoginDetailsProtocol : AnyObject {
2406
2406
2407
+ /**
2408
+ * The URL of the discovered or manually set sliding sync proxy,
2409
+ * if any.
2410
+ */
2411
+ func slidingSyncProxy() -> String?
2412
+
2407
2413
/**
2408
2414
* Whether the current homeserver supports login using OIDC.
2409
2415
*/
@@ -2462,6 +2468,20 @@ open class HomeserverLoginDetails:
2462
2468
2463
2469
2464
2470
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
+ }
2465
2485
/**
2466
2486
* Whether the current homeserver supports login using OIDC.
2467
2487
*/
@@ -23306,6 +23326,9 @@ private var initializationResult: InitializationResult {
23306
23326
if (uniffi_matrix_sdk_ffi_checksum_method_eventtimelineitem_transaction_id() != 40338) {
23307
23327
return InitializationResult.apiChecksumMismatch
23308
23328
}
23329
+ if (uniffi_matrix_sdk_ffi_checksum_method_homeserverlogindetails_sliding_sync_proxy() != 46815) {
23330
+ return InitializationResult.apiChecksumMismatch
23331
+ }
23309
23332
if (uniffi_matrix_sdk_ffi_checksum_method_homeserverlogindetails_supports_oidc_login() != 46090) {
23310
23333
return InitializationResult.apiChecksumMismatch
23311
23334
}
You can’t perform that action at this time.
0 commit comments