@google-analytics/data 4.0.1 → 4.2.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 +14 -0
- package/README.md +4 -0
- package/build/protos/google/analytics/data/v1alpha/analytics_data_api.proto +447 -81
- package/build/protos/google/analytics/data/v1alpha/data.proto +14 -5
- package/build/protos/protos.d.ts +942 -35
- package/build/protos/protos.js +3137 -883
- package/build/protos/protos.json +426 -19
- package/build/src/v1alpha/alpha_analytics_data_client.d.ts +418 -92
- package/build/src/v1alpha/alpha_analytics_data_client.js +261 -41
- package/build/src/v1alpha/alpha_analytics_data_client_config.json +20 -0
- package/package.json +6 -6
|
@@ -23,8 +23,8 @@ option java_multiple_files = true;
|
|
|
23
23
|
option java_outer_classname = "ReportingApiProto";
|
|
24
24
|
option java_package = "com.google.analytics.data.v1alpha";
|
|
25
25
|
|
|
26
|
-
// A contiguous set of days: startDate
|
|
27
|
-
// are allowed up to 4 date ranges.
|
|
26
|
+
// A contiguous set of days: `startDate`, `startDate + 1`, ..., `endDate`.
|
|
27
|
+
// Requests are allowed up to 4 date ranges.
|
|
28
28
|
message DateRange {
|
|
29
29
|
// The inclusive start date for the query in the format `YYYY-MM-DD`. Cannot
|
|
30
30
|
// be after `end_date`. The format `NdaysAgo`, `yesterday`, or `today` is also
|
|
@@ -51,7 +51,16 @@ message DateRange {
|
|
|
51
51
|
message Dimension {
|
|
52
52
|
// The name of the dimension. See the [API
|
|
53
53
|
// Dimensions](https://developers.google.com/analytics/devguides/reporting/data/v1/api-schema#dimensions)
|
|
54
|
-
// for the list of dimension names
|
|
54
|
+
// for the list of dimension names supported by core reporting methods such
|
|
55
|
+
// as `runReport` and `batchRunReports`. See
|
|
56
|
+
// [Realtime
|
|
57
|
+
// Dimensions](https://developers.google.com/analytics/devguides/reporting/data/v1/realtime-api-schema#dimensions)
|
|
58
|
+
// for the list of dimension names supported by the `runRealtimeReport`
|
|
59
|
+
// method. See
|
|
60
|
+
// [Funnel
|
|
61
|
+
// Dimensions](https://developers.google.com/analytics/devguides/reporting/data/v1/exploration-api-schema#dimensions)
|
|
62
|
+
// for the list of dimension names supported by the `runFunnelReport`
|
|
63
|
+
// method.
|
|
55
64
|
//
|
|
56
65
|
// If `dimensionExpression` is specified, `name` can be any string that you
|
|
57
66
|
// would like within the allowed character set. For example if a
|
|
@@ -1168,7 +1177,7 @@ message FunnelParameterFilter {
|
|
|
1168
1177
|
// the funnel report.
|
|
1169
1178
|
message FunnelResponseMetadata {
|
|
1170
1179
|
// If funnel report results are
|
|
1171
|
-
// [sampled](https://support.google.com/analytics/answer/
|
|
1180
|
+
// [sampled](https://support.google.com/analytics/answer/13331292), this
|
|
1172
1181
|
// describes what percentage of events were used in this funnel report. One
|
|
1173
1182
|
// `samplingMetadatas` is populated for each date range. Each
|
|
1174
1183
|
// `samplingMetadatas` corresponds to a date range in order that date ranges
|
|
@@ -1179,7 +1188,7 @@ message FunnelResponseMetadata {
|
|
|
1179
1188
|
}
|
|
1180
1189
|
|
|
1181
1190
|
// If funnel report results are
|
|
1182
|
-
// [sampled](https://support.google.com/analytics/answer/
|
|
1191
|
+
// [sampled](https://support.google.com/analytics/answer/13331292), this
|
|
1183
1192
|
// metadata describes what percentage of events were used in this funnel
|
|
1184
1193
|
// report for a date range. Sampling is the practice of analyzing a subset of
|
|
1185
1194
|
// all data in order to uncover the meaningful information in the larger data
|