@google-analytics/data 3.3.0 → 4.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 +16 -0
- package/README.md +1 -1
- package/build/protos/google/analytics/data/v1beta/analytics_data_api.proto +26 -12
- package/build/protos/google/analytics/data/v1beta/data.proto +25 -13
- package/build/src/v1alpha/alpha_analytics_data_client.d.ts +15 -23
- package/build/src/v1alpha/alpha_analytics_data_client.js +6 -9
- package/build/src/v1beta/beta_analytics_data_client.d.ts +31 -28
- package/package.json +8 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.0.0](https://github.com/googleapis/google-cloud-node/compare/data-v3.3.0...data-v4.0.0) (2023-08-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* migrate to Node 14 ([#4443](https://github.com/googleapis/google-cloud-node/issues/4443))
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* [Many APIs] fix typings for IAM methods ([#4459](https://github.com/googleapis/google-cloud-node/issues/4459)) ([1d510be](https://github.com/googleapis/google-cloud-node/commit/1d510bef5bd7b0ac3552b4729ef3d9ebe1ac3dc4))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Miscellaneous Chores
|
|
16
|
+
|
|
17
|
+
* Migrate to Node 14 ([#4443](https://github.com/googleapis/google-cloud-node/issues/4443)) ([2260f12](https://github.com/googleapis/google-cloud-node/commit/2260f12543d171bda95345e53475f5f0fdc45770))
|
|
18
|
+
|
|
3
19
|
## [3.3.0](https://github.com/googleapis/google-cloud-node/compare/data-v3.2.2...data-v3.3.0) (2023-07-11)
|
|
4
20
|
|
|
5
21
|
|
package/README.md
CHANGED
|
@@ -130,7 +130,7 @@ also contains samples.
|
|
|
130
130
|
|
|
131
131
|
## Supported Node.js Versions
|
|
132
132
|
|
|
133
|
-
Our client libraries follow the [Node.js release schedule](https://
|
|
133
|
+
Our client libraries follow the [Node.js release schedule](https://github.com/nodejs/release#release-schedule).
|
|
134
134
|
Libraries are compatible with all current _active_ and _maintenance_ versions of
|
|
135
135
|
Node.js.
|
|
136
136
|
If you are using an end-of-life version of Node.js, we recommend that you update
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright
|
|
1
|
+
// Copyright 2023 Google LLC
|
|
2
2
|
//
|
|
3
3
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
// you may not use this file except in compliance with the License.
|
|
@@ -66,7 +66,8 @@ service BetaAnalyticsData {
|
|
|
66
66
|
|
|
67
67
|
// Returns multiple reports in a batch. All reports must be for the same
|
|
68
68
|
// GA4 Property.
|
|
69
|
-
rpc BatchRunReports(BatchRunReportsRequest)
|
|
69
|
+
rpc BatchRunReports(BatchRunReportsRequest)
|
|
70
|
+
returns (BatchRunReportsResponse) {
|
|
70
71
|
option (google.api.http) = {
|
|
71
72
|
post: "/v1beta/{property=properties/*}:batchRunReports"
|
|
72
73
|
body: "*"
|
|
@@ -75,7 +76,8 @@ service BetaAnalyticsData {
|
|
|
75
76
|
|
|
76
77
|
// Returns multiple pivot reports in a batch. All reports must be for the same
|
|
77
78
|
// GA4 Property.
|
|
78
|
-
rpc BatchRunPivotReports(BatchRunPivotReportsRequest)
|
|
79
|
+
rpc BatchRunPivotReports(BatchRunPivotReportsRequest)
|
|
80
|
+
returns (BatchRunPivotReportsResponse) {
|
|
79
81
|
option (google.api.http) = {
|
|
80
82
|
post: "/v1beta/{property=properties/*}:batchRunPivotReports"
|
|
81
83
|
body: "*"
|
|
@@ -108,7 +110,8 @@ service BetaAnalyticsData {
|
|
|
108
110
|
// For a guide to constructing realtime requests & understanding responses,
|
|
109
111
|
// see [Creating a Realtime
|
|
110
112
|
// Report](https://developers.google.com/analytics/devguides/reporting/data/v1/realtime-basics).
|
|
111
|
-
rpc RunRealtimeReport(RunRealtimeReportRequest)
|
|
113
|
+
rpc RunRealtimeReport(RunRealtimeReportRequest)
|
|
114
|
+
returns (RunRealtimeReportResponse) {
|
|
112
115
|
option (google.api.http) = {
|
|
113
116
|
post: "/v1beta/{property=properties/*}:runRealtimeReport"
|
|
114
117
|
body: "*"
|
|
@@ -125,7 +128,8 @@ service BetaAnalyticsData {
|
|
|
125
128
|
//
|
|
126
129
|
// The Realtime and Core reports have different compatibility rules. This
|
|
127
130
|
// method checks compatibility for Core reports.
|
|
128
|
-
rpc CheckCompatibility(CheckCompatibilityRequest)
|
|
131
|
+
rpc CheckCompatibility(CheckCompatibilityRequest)
|
|
132
|
+
returns (CheckCompatibilityResponse) {
|
|
129
133
|
option (google.api.http) = {
|
|
130
134
|
post: "/v1beta/{property=properties/*}:checkCompatibility"
|
|
131
135
|
body: "*"
|
|
@@ -144,10 +148,6 @@ message CheckCompatibilityRequest {
|
|
|
144
148
|
// `property` should be the same value as in your `runReport` request.
|
|
145
149
|
//
|
|
146
150
|
// Example: properties/1234
|
|
147
|
-
//
|
|
148
|
-
// Set the Property ID to 0 for compatibility checking on dimensions and
|
|
149
|
-
// metrics common to all properties. In this special mode, this method will
|
|
150
|
-
// not return custom dimensions and metrics.
|
|
151
151
|
string property = 1;
|
|
152
152
|
|
|
153
153
|
// The dimensions in this report. `dimensions` should be the same value as in
|
|
@@ -223,7 +223,7 @@ message RunReportRequest {
|
|
|
223
223
|
// must be unspecified.
|
|
224
224
|
repeated DateRange date_ranges = 4;
|
|
225
225
|
|
|
226
|
-
// Dimension filters
|
|
226
|
+
// Dimension filters let you ask for only specific dimension values in
|
|
227
227
|
// the report. To learn more, see [Fundamentals of Dimension
|
|
228
228
|
// Filters](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#dimension_filters)
|
|
229
229
|
// for examples. Metrics cannot be used in this filter.
|
|
@@ -245,7 +245,7 @@ message RunReportRequest {
|
|
|
245
245
|
int64 offset = 7;
|
|
246
246
|
|
|
247
247
|
// The number of rows to return. If unspecified, 10,000 rows are returned. The
|
|
248
|
-
// API returns a maximum of
|
|
248
|
+
// API returns a maximum of 250,000 rows per request, no matter how many you
|
|
249
249
|
// ask for. `limit` must be positive.
|
|
250
250
|
//
|
|
251
251
|
// The API can also return fewer rows than the requested `limit`, if there
|
|
@@ -276,6 +276,13 @@ message RunReportRequest {
|
|
|
276
276
|
// If false or unspecified, each row with all metrics equal to 0 will not be
|
|
277
277
|
// returned. If true, these rows will be returned if they are not separately
|
|
278
278
|
// removed by a filter.
|
|
279
|
+
//
|
|
280
|
+
// Regardless of this `keep_empty_rows` setting, only data recorded by the
|
|
281
|
+
// Google Analytics (GA4) property can be displayed in a report.
|
|
282
|
+
//
|
|
283
|
+
// For example if a property never logs a `purchase` event, then a query for
|
|
284
|
+
// the `eventName` dimension and `eventCount` metric will not have a row
|
|
285
|
+
// eventName: "purchase" and eventCount: 0.
|
|
279
286
|
bool keep_empty_rows = 13;
|
|
280
287
|
|
|
281
288
|
// Toggles whether to return the current state of this Analytics Property's
|
|
@@ -381,6 +388,13 @@ message RunPivotReportRequest {
|
|
|
381
388
|
// If false or unspecified, each row with all metrics equal to 0 will not be
|
|
382
389
|
// returned. If true, these rows will be returned if they are not separately
|
|
383
390
|
// removed by a filter.
|
|
391
|
+
//
|
|
392
|
+
// Regardless of this `keep_empty_rows` setting, only data recorded by the
|
|
393
|
+
// Google Analytics (GA4) property can be displayed in a report.
|
|
394
|
+
//
|
|
395
|
+
// For example if a property never logs a `purchase` event, then a query for
|
|
396
|
+
// the `eventName` dimension and `eventCount` metric will not have a row
|
|
397
|
+
// eventName: "purchase" and eventCount: 0.
|
|
384
398
|
bool keep_empty_rows = 10;
|
|
385
399
|
|
|
386
400
|
// Toggles whether to return the current state of this Analytics Property's
|
|
@@ -560,7 +574,7 @@ message RunRealtimeReportRequest {
|
|
|
560
574
|
FilterExpression metric_filter = 5;
|
|
561
575
|
|
|
562
576
|
// The number of rows to return. If unspecified, 10,000 rows are returned. The
|
|
563
|
-
// API returns a maximum of
|
|
577
|
+
// API returns a maximum of 250,000 rows per request, no matter how many you
|
|
564
578
|
// ask for. `limit` must be positive.
|
|
565
579
|
//
|
|
566
580
|
// The API can also return fewer rows than the requested `limit`, if there
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright
|
|
1
|
+
// Copyright 2023 Google LLC
|
|
2
2
|
//
|
|
3
3
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
// you may not use this file except in compliance with the License.
|
|
@@ -21,8 +21,8 @@ option java_multiple_files = true;
|
|
|
21
21
|
option java_outer_classname = "ReportingApiProto";
|
|
22
22
|
option java_package = "com.google.analytics.data.v1beta";
|
|
23
23
|
|
|
24
|
-
// A contiguous set of days: startDate
|
|
25
|
-
// are allowed up to 4 date ranges.
|
|
24
|
+
// A contiguous set of days: `startDate`, `startDate + 1`, ..., `endDate`.
|
|
25
|
+
// Requests are allowed up to 4 date ranges.
|
|
26
26
|
message DateRange {
|
|
27
27
|
// The inclusive start date for the query in the format `YYYY-MM-DD`. Cannot
|
|
28
28
|
// be after `end_date`. The format `NdaysAgo`, `yesterday`, or `today` is also
|
|
@@ -43,8 +43,8 @@ message DateRange {
|
|
|
43
43
|
string name = 3;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
// A contiguous set of minutes: startMinutesAgo
|
|
47
|
-
// endMinutesAgo
|
|
46
|
+
// A contiguous set of minutes: `startMinutesAgo`, `startMinutesAgo + 1`, ...,
|
|
47
|
+
// `endMinutesAgo`. Requests are allowed up to 2 minute ranges.
|
|
48
48
|
message MinuteRange {
|
|
49
49
|
// The inclusive start minute for the query as a number of minutes before now.
|
|
50
50
|
// For example, `"startMinutesAgo": 29` specifies the report should include
|
|
@@ -420,7 +420,7 @@ message Pivot {
|
|
|
420
420
|
// single pivot requests.
|
|
421
421
|
//
|
|
422
422
|
// The product of the `limit` for each `pivot` in a `RunPivotReportRequest`
|
|
423
|
-
// must not exceed
|
|
423
|
+
// must not exceed 250,000. For example, a two pivot request with `limit:
|
|
424
424
|
// 1000` in each pivot will fail because the product is `1,000,000`.
|
|
425
425
|
int64 limit = 4;
|
|
426
426
|
|
|
@@ -581,6 +581,18 @@ message ResponseMetaData {
|
|
|
581
581
|
|
|
582
582
|
// If true, indicates some buckets of dimension combinations are rolled into
|
|
583
583
|
// "(other)" row. This can happen for high cardinality reports.
|
|
584
|
+
//
|
|
585
|
+
// The metadata parameter dataLossFromOtherRow is populated based on the
|
|
586
|
+
// aggregated data table used in the report. The parameter will be accurately
|
|
587
|
+
// populated regardless of the filters and limits in the report.
|
|
588
|
+
//
|
|
589
|
+
// For example, the (other) row could be dropped from the report because the
|
|
590
|
+
// request contains a filter on sessionSource = google. This parameter will
|
|
591
|
+
// still be populated if data loss from other row was present in the input
|
|
592
|
+
// aggregate data used to generate this report.
|
|
593
|
+
//
|
|
594
|
+
// To learn more, see [About the (other) row and data
|
|
595
|
+
// sampling](https://support.google.com/analytics/answer/13208658#reports).
|
|
584
596
|
bool data_loss_from_other_row = 3;
|
|
585
597
|
|
|
586
598
|
// Describes the schema restrictions actively enforced in creating this
|
|
@@ -739,13 +751,13 @@ message NumericValue {
|
|
|
739
751
|
// property is exhausted, all requests to that property will return Resource
|
|
740
752
|
// Exhausted errors.
|
|
741
753
|
message PropertyQuota {
|
|
742
|
-
// Standard Analytics Properties can use up to
|
|
743
|
-
// Analytics 360 Properties can use
|
|
754
|
+
// Standard Analytics Properties can use up to 200,000 tokens per day;
|
|
755
|
+
// Analytics 360 Properties can use 2,000,000 tokens per day. Most requests
|
|
744
756
|
// consume fewer than 10 tokens.
|
|
745
757
|
QuotaStatus tokens_per_day = 1;
|
|
746
758
|
|
|
747
|
-
// Standard Analytics Properties can use up to
|
|
748
|
-
// Analytics 360 Properties can use
|
|
759
|
+
// Standard Analytics Properties can use up to 40,000 tokens per hour;
|
|
760
|
+
// Analytics 360 Properties can use 400,000 tokens per hour. An API request
|
|
749
761
|
// consumes a single number of tokens, and that number is deducted from all of
|
|
750
762
|
// the hourly, daily, and per project hourly quotas.
|
|
751
763
|
QuotaStatus tokens_per_hour = 2;
|
|
@@ -765,9 +777,9 @@ message PropertyQuota {
|
|
|
765
777
|
// thresholded dimensions.
|
|
766
778
|
QuotaStatus potentially_thresholded_requests_per_hour = 5;
|
|
767
779
|
|
|
768
|
-
// Analytics Properties can use up to
|
|
769
|
-
// hour. This amounts to standard Analytics Properties can use up to
|
|
770
|
-
// tokens per project per hour, and Analytics 360 Properties can use
|
|
780
|
+
// Analytics Properties can use up to 35% of their tokens per project per
|
|
781
|
+
// hour. This amounts to standard Analytics Properties can use up to 14,000
|
|
782
|
+
// tokens per project per hour, and Analytics 360 Properties can use 140,000
|
|
771
783
|
// tokens per project per hour. An API request consumes a single number of
|
|
772
784
|
// tokens, and that number is deducted from all of the hourly, daily, and per
|
|
773
785
|
// project hourly quotas.
|
|
@@ -191,9 +191,8 @@ export declare class AlphaAnalyticsDataClient {
|
|
|
191
191
|
* @param {object} [options]
|
|
192
192
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
193
193
|
* @returns {Promise} - The promise which resolves to an array.
|
|
194
|
-
* The first element of the array is an object representing {@link google.analytics.data.v1alpha.RunFunnelReportResponse
|
|
195
|
-
* Please see the
|
|
196
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
|
|
194
|
+
* The first element of the array is an object representing {@link protos.google.analytics.data.v1alpha.RunFunnelReportResponse|RunFunnelReportResponse}.
|
|
195
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
197
196
|
* for more details and examples.
|
|
198
197
|
* @example <caption>include:samples/generated/v1alpha/alpha_analytics_data.run_funnel_report.js</caption>
|
|
199
198
|
* region_tag:analyticsdata_v1alpha_generated_AlphaAnalyticsData_RunFunnelReport_async
|
|
@@ -243,9 +242,8 @@ export declare class AlphaAnalyticsDataClient {
|
|
|
243
242
|
* @param {object} [options]
|
|
244
243
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
245
244
|
* @returns {Promise} - The promise which resolves to an array.
|
|
246
|
-
* The first element of the array is an object representing {@link google.analytics.data.v1alpha.QueryAudienceListResponse
|
|
247
|
-
* Please see the
|
|
248
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
|
|
245
|
+
* The first element of the array is an object representing {@link protos.google.analytics.data.v1alpha.QueryAudienceListResponse|QueryAudienceListResponse}.
|
|
246
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
249
247
|
* for more details and examples.
|
|
250
248
|
* @example <caption>include:samples/generated/v1alpha/alpha_analytics_data.query_audience_list.js</caption>
|
|
251
249
|
* region_tag:analyticsdata_v1alpha_generated_AlphaAnalyticsData_QueryAudienceList_async
|
|
@@ -269,9 +267,8 @@ export declare class AlphaAnalyticsDataClient {
|
|
|
269
267
|
* @param {object} [options]
|
|
270
268
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
271
269
|
* @returns {Promise} - The promise which resolves to an array.
|
|
272
|
-
* The first element of the array is an object representing {@link google.analytics.data.v1alpha.AudienceList
|
|
273
|
-
* Please see the
|
|
274
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
|
|
270
|
+
* The first element of the array is an object representing {@link protos.google.analytics.data.v1alpha.AudienceList|AudienceList}.
|
|
271
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
275
272
|
* for more details and examples.
|
|
276
273
|
* @example <caption>include:samples/generated/v1alpha/alpha_analytics_data.get_audience_list.js</caption>
|
|
277
274
|
* region_tag:analyticsdata_v1alpha_generated_AlphaAnalyticsData_GetAudienceList_async
|
|
@@ -313,8 +310,7 @@ export declare class AlphaAnalyticsDataClient {
|
|
|
313
310
|
* The first element of the array is an object representing
|
|
314
311
|
* a long running operation. Its `promise()` method returns a promise
|
|
315
312
|
* you can `await` for.
|
|
316
|
-
* Please see the
|
|
317
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations)
|
|
313
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
|
|
318
314
|
* for more details and examples.
|
|
319
315
|
* @example <caption>include:samples/generated/v1alpha/alpha_analytics_data.create_audience_list.js</caption>
|
|
320
316
|
* region_tag:analyticsdata_v1alpha_generated_AlphaAnalyticsData_CreateAudienceList_async
|
|
@@ -332,8 +328,7 @@ export declare class AlphaAnalyticsDataClient {
|
|
|
332
328
|
* The operation name that will be passed.
|
|
333
329
|
* @returns {Promise} - The promise which resolves to an object.
|
|
334
330
|
* The decoded operation object has result and metadata field to get information from.
|
|
335
|
-
* Please see the
|
|
336
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations)
|
|
331
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
|
|
337
332
|
* for more details and examples.
|
|
338
333
|
* @example <caption>include:samples/generated/v1alpha/alpha_analytics_data.create_audience_list.js</caption>
|
|
339
334
|
* region_tag:analyticsdata_v1alpha_generated_AlphaAnalyticsData_CreateAudienceList_async
|
|
@@ -364,14 +359,13 @@ export declare class AlphaAnalyticsDataClient {
|
|
|
364
359
|
* @param {object} [options]
|
|
365
360
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
366
361
|
* @returns {Promise} - The promise which resolves to an array.
|
|
367
|
-
* The first element of the array is Array of {@link google.analytics.data.v1alpha.AudienceList
|
|
362
|
+
* The first element of the array is Array of {@link protos.google.analytics.data.v1alpha.AudienceList|AudienceList}.
|
|
368
363
|
* The client library will perform auto-pagination by default: it will call the API as many
|
|
369
364
|
* times as needed and will merge results from all the pages into this array.
|
|
370
365
|
* Note that it can affect your quota.
|
|
371
366
|
* We recommend using `listAudienceListsAsync()`
|
|
372
367
|
* method described below for async iteration which you can stop as needed.
|
|
373
|
-
* Please see the
|
|
374
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
|
|
368
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
|
375
369
|
* for more details and examples.
|
|
376
370
|
*/
|
|
377
371
|
listAudienceLists(request?: protos.google.analytics.data.v1alpha.IListAudienceListsRequest, options?: CallOptions): Promise<[
|
|
@@ -402,13 +396,12 @@ export declare class AlphaAnalyticsDataClient {
|
|
|
402
396
|
* @param {object} [options]
|
|
403
397
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
404
398
|
* @returns {Stream}
|
|
405
|
-
* An object stream which emits an object representing {@link google.analytics.data.v1alpha.AudienceList
|
|
399
|
+
* An object stream which emits an object representing {@link protos.google.analytics.data.v1alpha.AudienceList|AudienceList} on 'data' event.
|
|
406
400
|
* The client library will perform auto-pagination by default: it will call the API as many
|
|
407
401
|
* times as needed. Note that it can affect your quota.
|
|
408
402
|
* We recommend using `listAudienceListsAsync()`
|
|
409
403
|
* method described below for async iteration which you can stop as needed.
|
|
410
|
-
* Please see the
|
|
411
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
|
|
404
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
|
412
405
|
* for more details and examples.
|
|
413
406
|
*/
|
|
414
407
|
listAudienceListsStream(request?: protos.google.analytics.data.v1alpha.IListAudienceListsRequest, options?: CallOptions): Transform;
|
|
@@ -435,12 +428,11 @@ export declare class AlphaAnalyticsDataClient {
|
|
|
435
428
|
* @param {object} [options]
|
|
436
429
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
437
430
|
* @returns {Object}
|
|
438
|
-
* An iterable Object that allows
|
|
431
|
+
* An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
|
|
439
432
|
* When you iterate the returned iterable, each element will be an object representing
|
|
440
|
-
* {@link google.analytics.data.v1alpha.AudienceList
|
|
433
|
+
* {@link protos.google.analytics.data.v1alpha.AudienceList|AudienceList}. The API will be called under the hood as needed, once per the page,
|
|
441
434
|
* so you can stop the iteration when you don't need more results.
|
|
442
|
-
* Please see the
|
|
443
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
|
|
435
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
|
444
436
|
* for more details and examples.
|
|
445
437
|
* @example <caption>include:samples/generated/v1alpha/alpha_analytics_data.list_audience_lists.js</caption>
|
|
446
438
|
* region_tag:analyticsdata_v1alpha_generated_AlphaAnalyticsData_ListAudienceLists_async
|
|
@@ -360,8 +360,7 @@ class AlphaAnalyticsDataClient {
|
|
|
360
360
|
* The operation name that will be passed.
|
|
361
361
|
* @returns {Promise} - The promise which resolves to an object.
|
|
362
362
|
* The decoded operation object has result and metadata field to get information from.
|
|
363
|
-
* Please see the
|
|
364
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations)
|
|
363
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
|
|
365
364
|
* for more details and examples.
|
|
366
365
|
* @example <caption>include:samples/generated/v1alpha/alpha_analytics_data.create_audience_list.js</caption>
|
|
367
366
|
* region_tag:analyticsdata_v1alpha_generated_AlphaAnalyticsData_CreateAudienceList_async
|
|
@@ -414,13 +413,12 @@ class AlphaAnalyticsDataClient {
|
|
|
414
413
|
* @param {object} [options]
|
|
415
414
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
416
415
|
* @returns {Stream}
|
|
417
|
-
* An object stream which emits an object representing {@link google.analytics.data.v1alpha.AudienceList
|
|
416
|
+
* An object stream which emits an object representing {@link protos.google.analytics.data.v1alpha.AudienceList|AudienceList} on 'data' event.
|
|
418
417
|
* The client library will perform auto-pagination by default: it will call the API as many
|
|
419
418
|
* times as needed. Note that it can affect your quota.
|
|
420
419
|
* We recommend using `listAudienceListsAsync()`
|
|
421
420
|
* method described below for async iteration which you can stop as needed.
|
|
422
|
-
* Please see the
|
|
423
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
|
|
421
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
|
424
422
|
* for more details and examples.
|
|
425
423
|
*/
|
|
426
424
|
listAudienceListsStream(request, options) {
|
|
@@ -461,12 +459,11 @@ class AlphaAnalyticsDataClient {
|
|
|
461
459
|
* @param {object} [options]
|
|
462
460
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
463
461
|
* @returns {Object}
|
|
464
|
-
* An iterable Object that allows
|
|
462
|
+
* An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
|
|
465
463
|
* When you iterate the returned iterable, each element will be an object representing
|
|
466
|
-
* {@link google.analytics.data.v1alpha.AudienceList
|
|
464
|
+
* {@link protos.google.analytics.data.v1alpha.AudienceList|AudienceList}. The API will be called under the hood as needed, once per the page,
|
|
467
465
|
* so you can stop the iteration when you don't need more results.
|
|
468
|
-
* Please see the
|
|
469
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
|
|
466
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
|
470
467
|
* for more details and examples.
|
|
471
468
|
* @example <caption>include:samples/generated/v1alpha/alpha_analytics_data.list_audience_lists.js</caption>
|
|
472
469
|
* region_tag:analyticsdata_v1alpha_generated_AlphaAnalyticsData_ListAudienceLists_async
|
|
@@ -140,7 +140,7 @@ export declare class BetaAnalyticsDataClient {
|
|
|
140
140
|
* response rows for both date ranges. In a cohort request, this `dateRanges`
|
|
141
141
|
* must be unspecified.
|
|
142
142
|
* @param {google.analytics.data.v1beta.FilterExpression} request.dimensionFilter
|
|
143
|
-
* Dimension filters
|
|
143
|
+
* Dimension filters let you ask for only specific dimension values in
|
|
144
144
|
* the report. To learn more, see [Fundamentals of Dimension
|
|
145
145
|
* Filters](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#dimension_filters)
|
|
146
146
|
* for examples. Metrics cannot be used in this filter.
|
|
@@ -159,7 +159,7 @@ export declare class BetaAnalyticsDataClient {
|
|
|
159
159
|
* [Pagination](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).
|
|
160
160
|
* @param {number} request.limit
|
|
161
161
|
* The number of rows to return. If unspecified, 10,000 rows are returned. The
|
|
162
|
-
* API returns a maximum of
|
|
162
|
+
* API returns a maximum of 250,000 rows per request, no matter how many you
|
|
163
163
|
* ask for. `limit` must be positive.
|
|
164
164
|
*
|
|
165
165
|
* The API can also return fewer rows than the requested `limit`, if there
|
|
@@ -185,15 +185,21 @@ export declare class BetaAnalyticsDataClient {
|
|
|
185
185
|
* If false or unspecified, each row with all metrics equal to 0 will not be
|
|
186
186
|
* returned. If true, these rows will be returned if they are not separately
|
|
187
187
|
* removed by a filter.
|
|
188
|
+
*
|
|
189
|
+
* Regardless of this `keep_empty_rows` setting, only data recorded by the
|
|
190
|
+
* Google Analytics (GA4) property can be displayed in a report.
|
|
191
|
+
*
|
|
192
|
+
* For example if a property never logs a `purchase` event, then a query for
|
|
193
|
+
* the `eventName` dimension and `eventCount` metric will not have a row
|
|
194
|
+
* eventName: "purchase" and eventCount: 0.
|
|
188
195
|
* @param {boolean} request.returnPropertyQuota
|
|
189
196
|
* Toggles whether to return the current state of this Analytics Property's
|
|
190
197
|
* quota. Quota is returned in [PropertyQuota](#PropertyQuota).
|
|
191
198
|
* @param {object} [options]
|
|
192
199
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
193
200
|
* @returns {Promise} - The promise which resolves to an array.
|
|
194
|
-
* The first element of the array is an object representing {@link google.analytics.data.v1beta.RunReportResponse
|
|
195
|
-
* Please see the
|
|
196
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
|
|
201
|
+
* The first element of the array is an object representing {@link protos.google.analytics.data.v1beta.RunReportResponse|RunReportResponse}.
|
|
202
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
197
203
|
* for more details and examples.
|
|
198
204
|
* @example <caption>include:samples/generated/v1beta/beta_analytics_data.run_report.js</caption>
|
|
199
205
|
* region_tag:analyticsdata_v1beta_generated_BetaAnalyticsData_RunReport_async
|
|
@@ -258,15 +264,21 @@ export declare class BetaAnalyticsDataClient {
|
|
|
258
264
|
* If false or unspecified, each row with all metrics equal to 0 will not be
|
|
259
265
|
* returned. If true, these rows will be returned if they are not separately
|
|
260
266
|
* removed by a filter.
|
|
267
|
+
*
|
|
268
|
+
* Regardless of this `keep_empty_rows` setting, only data recorded by the
|
|
269
|
+
* Google Analytics (GA4) property can be displayed in a report.
|
|
270
|
+
*
|
|
271
|
+
* For example if a property never logs a `purchase` event, then a query for
|
|
272
|
+
* the `eventName` dimension and `eventCount` metric will not have a row
|
|
273
|
+
* eventName: "purchase" and eventCount: 0.
|
|
261
274
|
* @param {boolean} request.returnPropertyQuota
|
|
262
275
|
* Toggles whether to return the current state of this Analytics Property's
|
|
263
276
|
* quota. Quota is returned in [PropertyQuota](#PropertyQuota).
|
|
264
277
|
* @param {object} [options]
|
|
265
278
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
266
279
|
* @returns {Promise} - The promise which resolves to an array.
|
|
267
|
-
* The first element of the array is an object representing {@link google.analytics.data.v1beta.RunPivotReportResponse
|
|
268
|
-
* Please see the
|
|
269
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
|
|
280
|
+
* The first element of the array is an object representing {@link protos.google.analytics.data.v1beta.RunPivotReportResponse|RunPivotReportResponse}.
|
|
281
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
270
282
|
* for more details and examples.
|
|
271
283
|
* @example <caption>include:samples/generated/v1beta/beta_analytics_data.run_pivot_report.js</caption>
|
|
272
284
|
* region_tag:analyticsdata_v1beta_generated_BetaAnalyticsData_RunPivotReport_async
|
|
@@ -300,9 +312,8 @@ export declare class BetaAnalyticsDataClient {
|
|
|
300
312
|
* @param {object} [options]
|
|
301
313
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
302
314
|
* @returns {Promise} - The promise which resolves to an array.
|
|
303
|
-
* The first element of the array is an object representing {@link google.analytics.data.v1beta.BatchRunReportsResponse
|
|
304
|
-
* Please see the
|
|
305
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
|
|
315
|
+
* The first element of the array is an object representing {@link protos.google.analytics.data.v1beta.BatchRunReportsResponse|BatchRunReportsResponse}.
|
|
316
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
306
317
|
* for more details and examples.
|
|
307
318
|
* @example <caption>include:samples/generated/v1beta/beta_analytics_data.batch_run_reports.js</caption>
|
|
308
319
|
* region_tag:analyticsdata_v1beta_generated_BetaAnalyticsData_BatchRunReports_async
|
|
@@ -336,9 +347,8 @@ export declare class BetaAnalyticsDataClient {
|
|
|
336
347
|
* @param {object} [options]
|
|
337
348
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
338
349
|
* @returns {Promise} - The promise which resolves to an array.
|
|
339
|
-
* The first element of the array is an object representing {@link google.analytics.data.v1beta.BatchRunPivotReportsResponse
|
|
340
|
-
* Please see the
|
|
341
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
|
|
350
|
+
* The first element of the array is an object representing {@link protos.google.analytics.data.v1beta.BatchRunPivotReportsResponse|BatchRunPivotReportsResponse}.
|
|
351
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
342
352
|
* for more details and examples.
|
|
343
353
|
* @example <caption>include:samples/generated/v1beta/beta_analytics_data.batch_run_pivot_reports.js</caption>
|
|
344
354
|
* region_tag:analyticsdata_v1beta_generated_BetaAnalyticsData_BatchRunPivotReports_async
|
|
@@ -379,9 +389,8 @@ export declare class BetaAnalyticsDataClient {
|
|
|
379
389
|
* @param {object} [options]
|
|
380
390
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
381
391
|
* @returns {Promise} - The promise which resolves to an array.
|
|
382
|
-
* The first element of the array is an object representing {@link google.analytics.data.v1beta.Metadata
|
|
383
|
-
* Please see the
|
|
384
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
|
|
392
|
+
* The first element of the array is an object representing {@link protos.google.analytics.data.v1beta.Metadata|Metadata}.
|
|
393
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
385
394
|
* for more details and examples.
|
|
386
395
|
* @example <caption>include:samples/generated/v1beta/beta_analytics_data.get_metadata.js</caption>
|
|
387
396
|
* region_tag:analyticsdata_v1beta_generated_BetaAnalyticsData_GetMetadata_async
|
|
@@ -424,7 +433,7 @@ export declare class BetaAnalyticsDataClient {
|
|
|
424
433
|
* SQL having-clause. Dimensions cannot be used in this filter.
|
|
425
434
|
* @param {number} request.limit
|
|
426
435
|
* The number of rows to return. If unspecified, 10,000 rows are returned. The
|
|
427
|
-
* API returns a maximum of
|
|
436
|
+
* API returns a maximum of 250,000 rows per request, no matter how many you
|
|
428
437
|
* ask for. `limit` must be positive.
|
|
429
438
|
*
|
|
430
439
|
* The API can also return fewer rows than the requested `limit`, if there
|
|
@@ -449,9 +458,8 @@ export declare class BetaAnalyticsDataClient {
|
|
|
449
458
|
* @param {object} [options]
|
|
450
459
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
451
460
|
* @returns {Promise} - The promise which resolves to an array.
|
|
452
|
-
* The first element of the array is an object representing {@link google.analytics.data.v1beta.RunRealtimeReportResponse
|
|
453
|
-
* Please see the
|
|
454
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
|
|
461
|
+
* The first element of the array is an object representing {@link protos.google.analytics.data.v1beta.RunRealtimeReportResponse|RunRealtimeReportResponse}.
|
|
462
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
455
463
|
* for more details and examples.
|
|
456
464
|
* @example <caption>include:samples/generated/v1beta/beta_analytics_data.run_realtime_report.js</caption>
|
|
457
465
|
* region_tag:analyticsdata_v1beta_generated_BetaAnalyticsData_RunRealtimeReport_async
|
|
@@ -484,10 +492,6 @@ export declare class BetaAnalyticsDataClient {
|
|
|
484
492
|
* `property` should be the same value as in your `runReport` request.
|
|
485
493
|
*
|
|
486
494
|
* Example: properties/1234
|
|
487
|
-
*
|
|
488
|
-
* Set the Property ID to 0 for compatibility checking on dimensions and
|
|
489
|
-
* metrics common to all properties. In this special mode, this method will
|
|
490
|
-
* not return custom dimensions and metrics.
|
|
491
495
|
* @param {number[]} request.dimensions
|
|
492
496
|
* The dimensions in this report. `dimensions` should be the same value as in
|
|
493
497
|
* your `runReport` request.
|
|
@@ -507,9 +511,8 @@ export declare class BetaAnalyticsDataClient {
|
|
|
507
511
|
* @param {object} [options]
|
|
508
512
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
509
513
|
* @returns {Promise} - The promise which resolves to an array.
|
|
510
|
-
* The first element of the array is an object representing {@link google.analytics.data.v1beta.CheckCompatibilityResponse
|
|
511
|
-
* Please see the
|
|
512
|
-
* [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
|
|
514
|
+
* The first element of the array is an object representing {@link protos.google.analytics.data.v1beta.CheckCompatibilityResponse|CheckCompatibilityResponse}.
|
|
515
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
|
513
516
|
* for more details and examples.
|
|
514
517
|
* @example <caption>include:samples/generated/v1beta/beta_analytics_data.check_compatibility.js</caption>
|
|
515
518
|
* region_tag:analyticsdata_v1beta_generated_BetaAnalyticsData_CheckCompatibility_async
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@google-analytics/data",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Data client for Node.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -45,30 +45,27 @@
|
|
|
45
45
|
"test": "c8 mocha build/test"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"google-gax": "^
|
|
48
|
+
"google-gax": "^4.0.3"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/mocha": "^9.0.0",
|
|
52
|
-
"@types/node": "^
|
|
52
|
+
"@types/node": "^20.4.5",
|
|
53
53
|
"@types/sinon": "^10.0.0",
|
|
54
|
-
"c8": "^
|
|
55
|
-
"
|
|
54
|
+
"c8": "^8.0.1",
|
|
55
|
+
"gapic-tools": "^0.1.8",
|
|
56
|
+
"gts": "^5.0.0",
|
|
56
57
|
"jsdoc": "^4.0.0",
|
|
57
58
|
"jsdoc-fresh": "^2.0.0",
|
|
58
59
|
"jsdoc-region-tag": "^2.0.0",
|
|
59
60
|
"linkinator": "4.1.2",
|
|
60
61
|
"long": "^5.2.3",
|
|
61
62
|
"mocha": "^9.2.2",
|
|
62
|
-
"null-loader": "^4.0.0",
|
|
63
63
|
"pack-n-play": "^1.0.0-2",
|
|
64
64
|
"sinon": "^15.0.0",
|
|
65
|
-
"
|
|
66
|
-
"typescript": "^4.6.4",
|
|
67
|
-
"webpack": "^5.0.0",
|
|
68
|
-
"webpack-cli": "^5.0.0"
|
|
65
|
+
"typescript": "^5.1.6"
|
|
69
66
|
},
|
|
70
67
|
"engines": {
|
|
71
|
-
"node": ">=
|
|
68
|
+
"node": ">=14.0.0"
|
|
72
69
|
},
|
|
73
70
|
"homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-analytics-data"
|
|
74
71
|
}
|