@google-analytics/data 2.8.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -52,8 +52,8 @@ message MinuteRange {
52
52
  //
53
53
  // If unspecified, `startMinutesAgo` is defaulted to 29. Standard Analytics
54
54
  // properties can request up to the last 30 minutes of event data
55
- // (`startMinutesAgo <= 29`), and 360 Analytics properties can request up to
56
- // the last 60 minutes of event data (`startMinutesAgo <= 59`).
55
+ // (`startMinutesAgo <= 29`), and Google Analytics 360 properties can request
56
+ // up to the last 60 minutes of event data (`startMinutesAgo <= 59`).
57
57
  optional int32 start_minutes_ago = 1;
58
58
 
59
59
  // The inclusive end minute for the query as a number of minutes before now.
@@ -63,8 +63,8 @@ message MinuteRange {
63
63
  //
64
64
  // If unspecified, `endMinutesAgo` is defaulted to 0. Standard Analytics
65
65
  // properties can request any minute in the last 30 minutes of event data
66
- // (`endMinutesAgo <= 29`), and 360 Analytics properties can request any
67
- // minute in the last 60 minutes of event data (`endMinutesAgo <= 59`).
66
+ // (`endMinutesAgo <= 29`), and Google Analytics 360 properties can request
67
+ // any minute in the last 60 minutes of event data (`endMinutesAgo <= 59`).
68
68
  optional int32 end_minutes_ago = 2;
69
69
 
70
70
  // Assigns a name to this minute range. The dimension `dateRange` is valued to
@@ -87,7 +87,7 @@ message Dimension {
87
87
  // would like within the allowed character set. For example if a
88
88
  // `dimensionExpression` concatenates `country` and `city`, you could call
89
89
  // that dimension `countryAndCity`. Dimension names that you choose must match
90
- // the regular expression "^[a-zA-Z0-9_]$".
90
+ // the regular expression `^[a-zA-Z0-9_]$`.
91
91
  //
92
92
  // Dimensions are referenced by `name` in `dimensionFilter`, `orderBys`,
93
93
  // `dimensionExpression`, and `pivots`.
@@ -152,7 +152,7 @@ message Metric {
152
152
  // within the allowed character set. For example if `expression` is
153
153
  // `screenPageViews/sessions`, you could call that metric's name =
154
154
  // `viewsPerSession`. Metric names that you choose must match the regular
155
- // expression "^[a-zA-Z0-9_]$".
155
+ // expression `^[a-zA-Z0-9_]$`.
156
156
  //
157
157
  // Metrics are referenced by `name` in `metricFilter`, `orderBys`, and metric
158
158
  // `expression`.