@@ -12722,6 +12722,7 @@ extension RoomError: Error { }
12722
12722
public enum RoomListEntriesDynamicFilterKind {
12723
12723
12724
12724
case all
12725
+ case allNonLeft
12725
12726
case none
12726
12727
case normalizedMatchRoomName(pattern: String)
12727
12728
case fuzzyMatchRoomName(pattern: String)
@@ -12736,13 +12737,15 @@ public struct FfiConverterTypeRoomListEntriesDynamicFilterKind: FfiConverterRust
12736
12737
12737
12738
case 1: return .all
12738
12739
12739
- case 2: return .none
12740
+ case 2: return .allNonLeft
12740
12741
12741
- case 3: return .normalizedMatchRoomName(
12742
+ case 3: return .none
12743
+
12744
+ case 4: return .normalizedMatchRoomName(
12742
12745
pattern: try FfiConverterString.read(from: &buf)
12743
12746
)
12744
12747
12745
- case 4 : return .fuzzyMatchRoomName(
12748
+ case 5 : return .fuzzyMatchRoomName(
12746
12749
pattern: try FfiConverterString.read(from: &buf)
12747
12750
)
12748
12751
@@ -12758,17 +12761,21 @@ public struct FfiConverterTypeRoomListEntriesDynamicFilterKind: FfiConverterRust
12758
12761
writeInt(&buf, Int32(1))
12759
12762
12760
12763
12761
- case .none :
12764
+ case .allNonLeft :
12762
12765
writeInt(&buf, Int32(2))
12763
12766
12764
12767
12765
- case let .normalizedMatchRoomName(pattern) :
12768
+ case .none :
12766
12769
writeInt(&buf, Int32(3))
12770
+
12771
+
12772
+ case let .normalizedMatchRoomName(pattern):
12773
+ writeInt(&buf, Int32(4))
12767
12774
FfiConverterString.write(pattern, into: &buf)
12768
12775
12769
12776
12770
12777
case let .fuzzyMatchRoomName(pattern):
12771
- writeInt(&buf, Int32(4 ))
12778
+ writeInt(&buf, Int32(5 ))
12772
12779
FfiConverterString.write(pattern, into: &buf)
12773
12780
12774
12781
}
0 commit comments