File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export type CustomPropertyFilterDimensions = string;
6464export type GoalDimension = "event:goal" ;
6565export type TimeDimensions = "time" | "time:month" | "time:week" | "time:day" | "time:hour" ;
6666export type FilterTree = FilterEntry | FilterAndOr | FilterNot ;
67- export type FilterEntry = FilterWithoutGoals | FilterWithGoals | FilterWithPattern ;
67+ export type FilterEntry = FilterWithoutGoals | FilterWithGoals | FilterWithPattern | FilterForSegment ;
6868/**
6969 * @minItems 3
7070 * @maxItems 4
@@ -115,6 +115,11 @@ export type FilterWithPattern = [
115115 * filter operation
116116 */
117117export type FilterOperationRegex = "matches" | "matches_not" ;
118+ /**
119+ * @minItems 3
120+ * @maxItems 3
121+ */
122+ export type FilterForSegment = [ "is" , "segment" , number [ ] ] ;
118123/**
119124 * @minItems 2
120125 * @maxItems 2
You can’t perform that action at this time.
0 commit comments