From bba1464e98119f13e87bfd054499f693fb9a3d0b Mon Sep 17 00:00:00 2001 From: Taha Yassine Kraiem Date: Fri, 17 Dec 2021 18:01:34 +0100 Subject: [PATCH] feat(api): search sessions operators --- api/schemas.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/api/schemas.py b/api/schemas.py index ec3cbafb8..a3ab4eb09 100644 --- a/api/schemas.py +++ b/api/schemas.py @@ -310,15 +310,15 @@ class SourcemapUploadPayloadSchema(BaseModel): class SearchEventOperator(str, Enum): _is = "is" - _is_any = "isany" + _is_any = "isAny" _on = "on" - _on_any = "onany" - _isnot = "isnot" - _noton = "noton" + _on_any = "onAny" + _isnot = "isNot" + _noton = "notOn" _contains = "contains" - _notcontains = "notcontains" - _starts_with = "startswith" - _ends_with = "endswith" + _notcontains = "notContains" + _starts_with = "startsWith" + _ends_with = "endsWith" class PlatformType(str, Enum):