feat(api): search sessions operators
This commit is contained in:
parent
265a89dd1f
commit
bba1464e98
1 changed files with 7 additions and 7 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue