File tree Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 33
44import PackageDescription
55
6- let checksum = " 65874b401714b5ed9aedfe74700b2a8fbbd50d635c780f6e4092201aa2b55381 "
7- let version = " v1.1.52 "
6+ let checksum = " bdca00279f81b10376b9aae67625b77c76334b8e22e87365f07b79f436be9bb0 "
7+ let version = " v1.1.53 "
88let url = " https://github.com/matrix-org/matrix-rust-components-swift/releases/download/ \( version) /MatrixSDKFFI.xcframework.zip "
99
1010let package = Package (
Original file line number Diff line number Diff line change @@ -2404,6 +2404,12 @@ public func FfiConverterTypeEventTimelineItem_lower(_ value: EventTimelineItem)
24042404
24052405public 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 }
You can’t perform that action at this time.
0 commit comments