Skip to content

Commit

Permalink
Bump to v1.1.53 (matrix-rust-sdk/main baac38fec5192354cec3b21359510c8…
Browse files Browse the repository at this point in the history
…5356c73b5)
  • Loading branch information
pixlwave committed Mar 25, 2024
1 parent 2ff6c2a commit e7c6a0e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import PackageDescription

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

let package = Package(
Expand Down
23 changes: 23 additions & 0 deletions Sources/MatrixRustSDK/matrix_sdk_ffi.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2404,6 +2404,12 @@ public func FfiConverterTypeEventTimelineItem_lower(_ value: EventTimelineItem)

public protocol HomeserverLoginDetailsProtocol : AnyObject {

/**
* The URL of the discovered or manually set sliding sync proxy,
* if any.
*/
func slidingSyncProxy() -> String?

/**
* Whether the current homeserver supports login using OIDC.
*/
Expand Down Expand Up @@ -2462,6 +2468,20 @@ open class HomeserverLoginDetails:



/**
* The URL of the discovered or manually set sliding sync proxy,
* if any.
*/
open func slidingSyncProxy() -> String? {
return try! FfiConverterOptionString.lift(
try!
rustCall() {

uniffi_matrix_sdk_ffi_fn_method_homeserverlogindetails_sliding_sync_proxy(self.uniffiClonePointer(), $0
)
}
)
}
/**
* Whether the current homeserver supports login using OIDC.
*/
Expand Down Expand Up @@ -23306,6 +23326,9 @@ private var initializationResult: InitializationResult {
if (uniffi_matrix_sdk_ffi_checksum_method_eventtimelineitem_transaction_id() != 40338) {
return InitializationResult.apiChecksumMismatch
}
if (uniffi_matrix_sdk_ffi_checksum_method_homeserverlogindetails_sliding_sync_proxy() != 46815) {
return InitializationResult.apiChecksumMismatch
}
if (uniffi_matrix_sdk_ffi_checksum_method_homeserverlogindetails_supports_oidc_login() != 46090) {
return InitializationResult.apiChecksumMismatch
}
Expand Down

0 comments on commit e7c6a0e

Please sign in to comment.