File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11// swift-tools-version:5.9
22// The swift-tools-version declares the minimum version of Swift required to build this package.
33import PackageDescription
4- let checksum = " 46e2bea4a7016a5f8c36522c063640673f7caa3c9db683e47987d80beb5c8627 "
5- let version = " v1.0.5 "
4+ let checksum = " e3122675004b523102cc800d8dac6c2f157c191ddafdd77c3b83ba2155219da3 "
5+ let version = " v1.0.6 "
66let url = " https://github.com/element-hq/matrix-rust-components-swift/releases/download/ \( version) /MatrixSDKFFI.xcframework.zip "
77let package = Package (
88 name: " MatrixRustSDK " ,
Original file line number Diff line number Diff line change @@ -15361,6 +15361,7 @@ public enum HumanQrLoginError {
1536115361 case InvalidQrCode
1536215362 case SlidingSyncNotAvailable
1536315363 case OidcMetadataInvalid
15364+ case OtherDeviceNotSignedIn
1536415365}
1536515366
1536615367
@@ -15383,6 +15384,7 @@ public struct FfiConverterTypeHumanQrLoginError: FfiConverterRustBuffer {
1538315384 case 7: return .InvalidQrCode
1538415385 case 8: return .SlidingSyncNotAvailable
1538515386 case 9: return .OidcMetadataInvalid
15387+ case 10: return .OtherDeviceNotSignedIn
1538615388
1538715389 default: throw UniffiInternalError.unexpectedEnumCase
1538815390 }
@@ -15430,6 +15432,10 @@ public struct FfiConverterTypeHumanQrLoginError: FfiConverterRustBuffer {
1543015432 case .OidcMetadataInvalid:
1543115433 writeInt(&buf, Int32(9))
1543215434
15435+
15436+ case .OtherDeviceNotSignedIn:
15437+ writeInt(&buf, Int32(10))
15438+
1543315439 }
1543415440 }
1543515441}
You can’t perform that action at this time.
0 commit comments