@@ -15255,6 +15255,7 @@ public enum RoomListEntriesDynamicFilterKind {
15255
15255
)
15256
15256
case nonLeft
15257
15257
case unread
15258
+ case favourite
15258
15259
case category(
15259
15260
expect: RoomListFilterCategory
15260
15261
)
@@ -15286,17 +15287,19 @@ public struct FfiConverterTypeRoomListEntriesDynamicFilterKind: FfiConverterRust
15286
15287
15287
15288
case 4: return .unread
15288
15289
15289
- case 5: return .category(
15290
+ case 5: return .favourite
15291
+
15292
+ case 6: return .category(
15290
15293
expect: try FfiConverterTypeRoomListFilterCategory.read(from: &buf)
15291
15294
)
15292
15295
15293
- case 6 : return .none
15296
+ case 7 : return .none
15294
15297
15295
- case 7 : return .normalizedMatchRoomName(
15298
+ case 8 : return .normalizedMatchRoomName(
15296
15299
pattern: try FfiConverterString.read(from: &buf)
15297
15300
)
15298
15301
15299
- case 8 : return .fuzzyMatchRoomName(
15302
+ case 9 : return .fuzzyMatchRoomName(
15300
15303
pattern: try FfiConverterString.read(from: &buf)
15301
15304
)
15302
15305
@@ -15326,22 +15329,26 @@ public struct FfiConverterTypeRoomListEntriesDynamicFilterKind: FfiConverterRust
15326
15329
writeInt(&buf, Int32(4))
15327
15330
15328
15331
15329
- case let .category(expect) :
15332
+ case .favourite :
15330
15333
writeInt(&buf, Int32(5))
15334
+
15335
+
15336
+ case let .category(expect):
15337
+ writeInt(&buf, Int32(6))
15331
15338
FfiConverterTypeRoomListFilterCategory.write(expect, into: &buf)
15332
15339
15333
15340
15334
15341
case .none:
15335
- writeInt(&buf, Int32(6 ))
15342
+ writeInt(&buf, Int32(7 ))
15336
15343
15337
15344
15338
15345
case let .normalizedMatchRoomName(pattern):
15339
- writeInt(&buf, Int32(7 ))
15346
+ writeInt(&buf, Int32(8 ))
15340
15347
FfiConverterString.write(pattern, into: &buf)
15341
15348
15342
15349
15343
15350
case let .fuzzyMatchRoomName(pattern):
15344
- writeInt(&buf, Int32(8 ))
15351
+ writeInt(&buf, Int32(9 ))
15345
15352
FfiConverterString.write(pattern, into: &buf)
15346
15353
15347
15354
}
0 commit comments