feat(api): search sessions operators

This commit is contained in:
Taha Yassine Kraiem 2021-12-17 18:01:34 +01:00
parent 265a89dd1f
commit bba1464e98

View file

@ -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):