diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-02-10 12:37:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 12:37:07 -0500 |
commit | 14be78d492fc31e743e9e5855ddb8b4c9520985a (patch) | |
tree | 470e0ef08a30d39fc20d6093166a8333f35d47a8 /stubs | |
parent | Avoid fetching unused account data in sync. (#14973) (diff) | |
download | synapse-14be78d492fc31e743e9e5855ddb8b4c9520985a.tar.xz |
Support for MSC3758: exact_event_match push condition (#14964)
This specifies to search for an exact value match, instead of string globbing. It only works across non-compound JSON values (null, boolean, integer, and strings).
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/synapse/synapse_rust/push.pyi | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/stubs/synapse/synapse_rust/push.pyi b/stubs/synapse/synapse_rust/push.pyi index 754acab2f9..328f681a29 100644 --- a/stubs/synapse/synapse_rust/push.pyi +++ b/stubs/synapse/synapse_rust/push.pyi @@ -14,7 +14,7 @@ from typing import Any, Collection, Dict, Mapping, Optional, Sequence, Set, Tuple, Union -from synapse.types import JsonDict +from synapse.types import JsonDict, SimpleJsonValue class PushRule: @property @@ -56,17 +56,18 @@ def get_base_rule_ids() -> Collection[str]: ... class PushRuleEvaluator: def __init__( self, - flattened_keys: Mapping[str, str], + flattened_keys: Mapping[str, SimpleJsonValue], has_mentions: bool, user_mentions: Set[str], room_mention: bool, room_member_count: int, sender_power_level: Optional[int], notification_power_levels: Mapping[str, int], - related_events_flattened: Mapping[str, Mapping[str, str]], + related_events_flattened: Mapping[str, Mapping[str, SimpleJsonValue]], related_event_match_enabled: bool, room_version_feature_flags: Tuple[str, ...], msc3931_enabled: bool, + msc3758_exact_event_match: bool, ): ... def run( self, |