@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.
- package/CHANGELOG.md +25 -0
- package/README.md +28 -19
- package/build/protos/google/analytics/data/v1alpha/analytics_data_api.proto +107 -415
- package/build/protos/google/analytics/data/v1alpha/data.proto +888 -448
- package/build/protos/google/analytics/data/v1beta/data.proto +6 -6
- package/build/protos/protos.d.ts +10977 -9982
- package/build/protos/protos.js +32387 -30308
- package/build/protos/protos.json +3560 -3418
- package/build/src/v1alpha/alpha_analytics_data_client.d.ts +92 -38
- package/build/src/v1alpha/alpha_analytics_data_client.js +10 -383
- package/build/src/v1alpha/alpha_analytics_data_client.js.map +1 -1
- package/build/src/v1alpha/alpha_analytics_data_client_config.json +1 -38
- package/build/src/v1alpha/index.js +2 -1
- package/build/src/v1alpha/index.js.map +1 -1
- package/build/src/v1beta/beta_analytics_data_client.d.ts +399 -13
- package/build/src/v1beta/beta_analytics_data_client.js +7 -368
- package/build/src/v1beta/beta_analytics_data_client.js.map +1 -1
- package/build/src/v1beta/index.js +2 -1
- package/build/src/v1beta/index.js.map +1 -1
- package/package.json +10 -10
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
155
|
+
// expression `^[a-zA-Z0-9_]$`.
|
|
156
156
|
//
|
|
157
157
|
// Metrics are referenced by `name` in `metricFilter`, `orderBys`, and metric
|
|
158
158
|
// `expression`.
|