Skip to content

Commit

Permalink
schema
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed Oct 18, 2023
1 parent 437997b commit 0ef9a1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/queries/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@
"type": "string"
},
"personsOnEventsMode": {
"enum": ["disabled", "v1_enabled", "v2_enabled", "v1_mixed"],
"enum": ["disabled", "v1_enabled", "v1_mixed", "v2_enabled"],
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion posthog/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ class PersonsArgMaxVersion(str, Enum):
class PersonsOnEventsMode(str, Enum):
disabled = "disabled"
v1_enabled = "v1_enabled"
v2_enabled = "v2_enabled"
v1_mixed = "v1_mixed"
v2_enabled = "v2_enabled"


class HogQLQueryModifiers(BaseModel):
Expand Down

0 comments on commit 0ef9a1b

Please sign in to comment.