1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00

Sliding sync: add include_old_rooms; remove is_tombstoned

This commit is contained in:
Kegan Dougal
2022-10-21 17:16:55 +01:00
parent a12e6185f9
commit 219eab9139

View File

@@ -33,6 +33,7 @@ const BUFFER_PERIOD_MS = 10 * 1000;
export interface MSC3575RoomSubscription {
required_state?: string[][];
timeline_limit?: number;
include_old_rooms?: MSC3575RoomSubscription;
}
/**
@@ -42,7 +43,6 @@ export interface MSC3575Filter {
is_dm?: boolean;
is_encrypted?: boolean;
is_invite?: boolean;
is_tombstoned?: boolean;
room_name_like?: string;
room_types?: string[];
not_room_types?: string[];