Skip to content

Commit 4849480

Browse files
Google APIscopybara-github
authored andcommitted
fix!: rename the type FunnelFilter to FunnelFieldFilter
fix!: rename the `funnel_filter` field of the `FunnelFilterExpression` type to `funnel_field_filter` PiperOrigin-RevId: 455204231
1 parent db1cd5e commit 4849480

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

google/analytics/data/v1alpha/analytics_data_api.proto

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,12 @@ message RunFunnelReportRequest {
9696

9797
// If specified, next action adds a dimension to the funnel visualization sub
9898
// report response. This next action dimension expands each funnel step to the
99-
// unique values of the next action. For example a breakdown by the
99+
// unique values of the next action. For example a next action of the
100100
// `eventName` dimension will create rows for several events (i.e.
101101
// `session_start` & `click`) and the total.
102+
//
103+
// Next action only supports `eventName` and most Page / Screen dimensions
104+
// like `pageTitle` and `pagePath`.
102105
FunnelNextAction funnel_next_action = 5;
103106

104107
// The funnel visualization type controls the dimensions present in the funnel

google/analytics/data/v1alpha/data.proto

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,10 @@ message FunnelNextAction {
403403
// The dimension column added to the funnel visualization sub report response.
404404
// The next action dimension returns the next dimension value of this
405405
// dimension after the user has attained the `i`th funnel step.
406-
// `nextActionDimension` currently only supports the `eventName` dimension.
406+
//
407+
// `nextActionDimension` currently only supports `eventName` and most Page /
408+
// Screen dimensions like `pageTitle` and `pagePath`. `nextActionDimension`
409+
// cannot be a dimension expression.
407410
Dimension next_action_dimension = 1;
408411

409412
// The maximum number of distinct values of the breakdown dimension to return
@@ -1026,8 +1029,8 @@ message FunnelFilterExpression {
10261029
// The FunnelFilterExpression is NOT of `notExpression`.
10271030
FunnelFilterExpression not_expression = 3;
10281031

1029-
// A primitive funnel filter.
1030-
FunnelFilter funnel_filter = 4;
1032+
// A funnel filter for a dimension or metric.
1033+
FunnelFieldFilter funnel_field_filter = 4;
10311034

10321035
// Creates a filter that matches events of a single event name. If a
10331036
// parameter filter expression is specified, only the subset of events that
@@ -1044,7 +1047,7 @@ message FunnelFilterExpressionList {
10441047
}
10451048

10461049
// An expression to filter dimension or metric values.
1047-
message FunnelFilter {
1050+
message FunnelFieldFilter {
10481051
// The dimension name or metric name.
10491052
string field_name = 1;
10501053

0 commit comments

Comments
 (0)