@@ -15358,7 +15358,6 @@ public enum HumanQrLoginError {
15358
15358
case ConnectionInsecure
15359
15359
case Declined
15360
15360
case Unknown
15361
- case InvalidQrCode
15362
15361
case SlidingSyncNotAvailable
15363
15362
case OidcMetadataInvalid
15364
15363
case OtherDeviceNotSignedIn
@@ -15381,10 +15380,9 @@ public struct FfiConverterTypeHumanQrLoginError: FfiConverterRustBuffer {
15381
15380
case 4: return .ConnectionInsecure
15382
15381
case 5: return .Declined
15383
15382
case 6: return .Unknown
15384
- case 7: return .InvalidQrCode
15385
- case 8: return .SlidingSyncNotAvailable
15386
- case 9: return .OidcMetadataInvalid
15387
- case 10: return .OtherDeviceNotSignedIn
15383
+ case 7: return .SlidingSyncNotAvailable
15384
+ case 8: return .OidcMetadataInvalid
15385
+ case 9: return .OtherDeviceNotSignedIn
15388
15386
15389
15387
default: throw UniffiInternalError.unexpectedEnumCase
15390
15388
}
@@ -15421,20 +15419,16 @@ public struct FfiConverterTypeHumanQrLoginError: FfiConverterRustBuffer {
15421
15419
writeInt(&buf, Int32(6))
15422
15420
15423
15421
15424
- case .InvalidQrCode:
15425
- writeInt(&buf, Int32(7))
15426
-
15427
-
15428
15422
case .SlidingSyncNotAvailable:
15429
- writeInt(&buf, Int32(8 ))
15423
+ writeInt(&buf, Int32(7 ))
15430
15424
15431
15425
15432
15426
case .OidcMetadataInvalid:
15433
- writeInt(&buf, Int32(9 ))
15427
+ writeInt(&buf, Int32(8 ))
15434
15428
15435
15429
15436
15430
case .OtherDeviceNotSignedIn:
15437
- writeInt(&buf, Int32(10 ))
15431
+ writeInt(&buf, Int32(9 ))
15438
15432
15439
15433
}
15440
15434
}
0 commit comments