@google-analytics/data 4.10.0 → 4.12.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/build/protos/google/analytics/data/v1alpha/data.proto +18 -2
- package/build/protos/google/analytics/data/v1beta/analytics_data_api.proto +27 -21
- package/build/protos/google/analytics/data/v1beta/data.proto +8 -2
- package/build/protos/protos.d.ts +202 -2
- package/build/protos/protos.js +469 -4
- package/build/protos/protos.json +23 -2
- package/build/src/v1beta/beta_analytics_data_client.d.ts +23 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.12.0](https://github.com/googleapis/google-cloud-node/compare/data-v4.11.0...data-v4.12.0) (2024-12-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* [analytics-data] add the `EmptyFilter` type to the Data API v1alpha ([#5845](https://github.com/googleapis/google-cloud-node/issues/5845)) ([1bcd241](https://github.com/googleapis/google-cloud-node/commit/1bcd2412bd72ce3c3d9b03128c44138964c8a0e6))
|
|
9
|
+
|
|
10
|
+
## [4.11.0](https://github.com/googleapis/google-cloud-node/compare/data-v4.10.0...data-v4.11.0) (2024-11-21)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* [analytics-data] add `EmptyFilter` type to the Data API v1beta ([#5831](https://github.com/googleapis/google-cloud-node/issues/5831)) ([ced8054](https://github.com/googleapis/google-cloud-node/commit/ced80544ee74321deb881ee42dc5c2db05fbd0a4))
|
|
16
|
+
|
|
3
17
|
## [4.10.0](https://github.com/googleapis/google-cloud-node/compare/data-v4.9.0...data-v4.10.0) (2024-10-30)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -201,6 +201,9 @@ message Filter {
|
|
|
201
201
|
|
|
202
202
|
// A filter for between two values.
|
|
203
203
|
BetweenFilter between_filter = 5;
|
|
204
|
+
|
|
205
|
+
// A filter for empty values such as "(not set)" and "" values.
|
|
206
|
+
EmptyFilter empty_filter = 6;
|
|
204
207
|
}
|
|
205
208
|
}
|
|
206
209
|
|
|
@@ -341,6 +344,9 @@ message BetweenFilter {
|
|
|
341
344
|
NumericValue to_value = 2;
|
|
342
345
|
}
|
|
343
346
|
|
|
347
|
+
// Filter for empty values.
|
|
348
|
+
message EmptyFilter {}
|
|
349
|
+
|
|
344
350
|
// To represent a number.
|
|
345
351
|
message NumericValue {
|
|
346
352
|
// One of a numeric value
|
|
@@ -554,6 +560,16 @@ message ResponseMetaData {
|
|
|
554
560
|
// Demographics and
|
|
555
561
|
// Interests](https://support.google.com/analytics/answer/2799357).
|
|
556
562
|
optional bool subject_to_thresholding = 8;
|
|
563
|
+
|
|
564
|
+
// If this report's results are
|
|
565
|
+
// [sampled](https://support.google.com/analytics/answer/13331292), this
|
|
566
|
+
// describes the percentage of events used in this report. One
|
|
567
|
+
// `samplingMetadatas` is populated for each date range. Each
|
|
568
|
+
// `samplingMetadatas` corresponds to a date range in the order that date
|
|
569
|
+
// ranges were specified in the request.
|
|
570
|
+
//
|
|
571
|
+
// However if the results are not sampled, this field will not be defined.
|
|
572
|
+
repeated SamplingMetadata sampling_metadatas = 9;
|
|
557
573
|
}
|
|
558
574
|
|
|
559
575
|
// Describes a dimension column in the report. Dimensions requested in a report
|
|
@@ -1472,8 +1488,8 @@ message FunnelResponseMetadata {
|
|
|
1472
1488
|
// [sampled](https://support.google.com/analytics/answer/13331292), this
|
|
1473
1489
|
// describes what percentage of events were used in this funnel report. One
|
|
1474
1490
|
// `samplingMetadatas` is populated for each date range. Each
|
|
1475
|
-
// `samplingMetadatas` corresponds to a date range in order that date
|
|
1476
|
-
// were specified in the request.
|
|
1491
|
+
// `samplingMetadatas` corresponds to a date range in the order that date
|
|
1492
|
+
// ranges were specified in the request.
|
|
1477
1493
|
//
|
|
1478
1494
|
// However if the results are not sampled, this field will not be defined.
|
|
1479
1495
|
repeated SamplingMetadata sampling_metadatas = 1;
|
|
@@ -71,7 +71,7 @@ service BetaAnalyticsData {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
// Returns multiple reports in a batch. All reports must be for the same
|
|
74
|
-
//
|
|
74
|
+
// Google Analytics property.
|
|
75
75
|
rpc BatchRunReports(BatchRunReportsRequest)
|
|
76
76
|
returns (BatchRunReportsResponse) {
|
|
77
77
|
option (google.api.http) = {
|
|
@@ -81,7 +81,7 @@ service BetaAnalyticsData {
|
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
// Returns multiple pivot reports in a batch. All reports must be for the same
|
|
84
|
-
//
|
|
84
|
+
// Google Analytics property.
|
|
85
85
|
rpc BatchRunPivotReports(BatchRunPivotReportsRequest)
|
|
86
86
|
returns (BatchRunPivotReportsResponse) {
|
|
87
87
|
option (google.api.http) = {
|
|
@@ -92,7 +92,7 @@ service BetaAnalyticsData {
|
|
|
92
92
|
|
|
93
93
|
// Returns metadata for dimensions and metrics available in reporting methods.
|
|
94
94
|
// Used to explore the dimensions and metrics. In this method, a Google
|
|
95
|
-
// Analytics
|
|
95
|
+
// Analytics property identifier is specified in the request, and
|
|
96
96
|
// the metadata response includes Custom dimensions and metrics as well as
|
|
97
97
|
// Universal metadata.
|
|
98
98
|
//
|
|
@@ -256,7 +256,7 @@ service BetaAnalyticsData {
|
|
|
256
256
|
// report; fields shared with the `runReport` request should be the same values
|
|
257
257
|
// as in your `runReport` request.
|
|
258
258
|
message CheckCompatibilityRequest {
|
|
259
|
-
// A Google Analytics
|
|
259
|
+
// A Google Analytics property identifier whose events are tracked. To
|
|
260
260
|
// learn more, see [where to find your Property
|
|
261
261
|
// ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
|
|
262
262
|
// `property` should be the same value as in your `runReport` request.
|
|
@@ -318,7 +318,7 @@ message Metadata {
|
|
|
318
318
|
|
|
319
319
|
// The request to generate a report.
|
|
320
320
|
message RunReportRequest {
|
|
321
|
-
// A Google Analytics
|
|
321
|
+
// A Google Analytics property identifier whose events are tracked.
|
|
322
322
|
// Specified in the URL path and not the body. To learn more, see [where to
|
|
323
323
|
// find your Property
|
|
324
324
|
// ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
|
|
@@ -378,9 +378,13 @@ message RunReportRequest {
|
|
|
378
378
|
|
|
379
379
|
// Aggregation of metrics. Aggregated metric values will be shown in rows
|
|
380
380
|
// where the dimension_values are set to "RESERVED_(MetricAggregation)".
|
|
381
|
+
// Aggregates including both comparisons and multiple date ranges will
|
|
382
|
+
// be aggregated based on the date ranges.
|
|
381
383
|
repeated MetricAggregation metric_aggregations = 9;
|
|
382
384
|
|
|
383
385
|
// Specifies how rows are ordered in the response.
|
|
386
|
+
// Requests including both comparisons and multiple date ranges will
|
|
387
|
+
// have order bys applied on the comparisons.
|
|
384
388
|
repeated OrderBy order_bys = 10;
|
|
385
389
|
|
|
386
390
|
// A currency code in ISO4217 format, such as "AED", "USD", "JPY".
|
|
@@ -396,15 +400,15 @@ message RunReportRequest {
|
|
|
396
400
|
// removed by a filter.
|
|
397
401
|
//
|
|
398
402
|
// Regardless of this `keep_empty_rows` setting, only data recorded by the
|
|
399
|
-
// Google Analytics
|
|
403
|
+
// Google Analytics property can be displayed in a report.
|
|
400
404
|
//
|
|
401
405
|
// For example if a property never logs a `purchase` event, then a query for
|
|
402
406
|
// the `eventName` dimension and `eventCount` metric will not have a row
|
|
403
407
|
// eventName: "purchase" and eventCount: 0.
|
|
404
408
|
bool keep_empty_rows = 13;
|
|
405
409
|
|
|
406
|
-
// Toggles whether to return the current state of this Analytics
|
|
407
|
-
// quota. Quota is returned in [PropertyQuota](#PropertyQuota).
|
|
410
|
+
// Toggles whether to return the current state of this Google Analytics
|
|
411
|
+
// property's quota. Quota is returned in [PropertyQuota](#PropertyQuota).
|
|
408
412
|
bool return_property_quota = 14;
|
|
409
413
|
|
|
410
414
|
// Optional. The configuration of comparisons requested and displayed. The
|
|
@@ -448,7 +452,7 @@ message RunReportResponse {
|
|
|
448
452
|
// Metadata for the report.
|
|
449
453
|
ResponseMetaData metadata = 8;
|
|
450
454
|
|
|
451
|
-
// This Analytics
|
|
455
|
+
// This Google Analytics property's quota state including this request.
|
|
452
456
|
PropertyQuota property_quota = 9;
|
|
453
457
|
|
|
454
458
|
// Identifies what kind of resource this message is. This `kind` is always the
|
|
@@ -459,7 +463,7 @@ message RunReportResponse {
|
|
|
459
463
|
|
|
460
464
|
// The request to generate a pivot report.
|
|
461
465
|
message RunPivotReportRequest {
|
|
462
|
-
// A Google Analytics
|
|
466
|
+
// A Google Analytics property identifier whose events are tracked.
|
|
463
467
|
// Specified in the URL path and not the body. To learn more, see [where to
|
|
464
468
|
// find your Property
|
|
465
469
|
// ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
|
|
@@ -513,15 +517,15 @@ message RunPivotReportRequest {
|
|
|
513
517
|
// removed by a filter.
|
|
514
518
|
//
|
|
515
519
|
// Regardless of this `keep_empty_rows` setting, only data recorded by the
|
|
516
|
-
// Google Analytics
|
|
520
|
+
// Google Analytics property can be displayed in a report.
|
|
517
521
|
//
|
|
518
522
|
// For example if a property never logs a `purchase` event, then a query for
|
|
519
523
|
// the `eventName` dimension and `eventCount` metric will not have a row
|
|
520
524
|
// eventName: "purchase" and eventCount: 0.
|
|
521
525
|
bool keep_empty_rows = 10;
|
|
522
526
|
|
|
523
|
-
// Toggles whether to return the current state of this Analytics
|
|
524
|
-
// quota. Quota is returned in [PropertyQuota](#PropertyQuota).
|
|
527
|
+
// Toggles whether to return the current state of this Google Analytics
|
|
528
|
+
// property's quota. Quota is returned in [PropertyQuota](#PropertyQuota).
|
|
525
529
|
bool return_property_quota = 11;
|
|
526
530
|
|
|
527
531
|
// Optional. The configuration of comparisons requested and displayed. The
|
|
@@ -590,7 +594,7 @@ message RunPivotReportResponse {
|
|
|
590
594
|
// Metadata for the report.
|
|
591
595
|
ResponseMetaData metadata = 6;
|
|
592
596
|
|
|
593
|
-
// This Analytics
|
|
597
|
+
// This Google Analytics property's quota state including this request.
|
|
594
598
|
PropertyQuota property_quota = 7;
|
|
595
599
|
|
|
596
600
|
// Identifies what kind of resource this message is. This `kind` is always the
|
|
@@ -601,7 +605,7 @@ message RunPivotReportResponse {
|
|
|
601
605
|
|
|
602
606
|
// The batch request containing multiple report requests.
|
|
603
607
|
message BatchRunReportsRequest {
|
|
604
|
-
// A Google Analytics
|
|
608
|
+
// A Google Analytics property identifier whose events are tracked.
|
|
605
609
|
// Specified in the URL path and not the body. To learn more, see [where to
|
|
606
610
|
// find your Property
|
|
607
611
|
// ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
|
|
@@ -630,7 +634,7 @@ message BatchRunReportsResponse {
|
|
|
630
634
|
|
|
631
635
|
// The batch request containing multiple pivot report requests.
|
|
632
636
|
message BatchRunPivotReportsRequest {
|
|
633
|
-
// A Google Analytics
|
|
637
|
+
// A Google Analytics property identifier whose events are tracked.
|
|
634
638
|
// Specified in the URL path and not the body. To learn more, see [where to
|
|
635
639
|
// find your Property
|
|
636
640
|
// ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
|
|
@@ -661,7 +665,7 @@ message BatchRunPivotReportsResponse {
|
|
|
661
665
|
message GetMetadataRequest {
|
|
662
666
|
// Required. The resource name of the metadata to retrieve. This name field is
|
|
663
667
|
// specified in the URL path and not URL parameters. Property is a numeric
|
|
664
|
-
// Google Analytics
|
|
668
|
+
// Google Analytics property identifier. To learn more, see [where to find
|
|
665
669
|
// your Property
|
|
666
670
|
// ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
|
|
667
671
|
//
|
|
@@ -680,7 +684,7 @@ message GetMetadataRequest {
|
|
|
680
684
|
|
|
681
685
|
// The request to generate a realtime report.
|
|
682
686
|
message RunRealtimeReportRequest {
|
|
683
|
-
// A Google Analytics
|
|
687
|
+
// A Google Analytics property identifier whose events are tracked.
|
|
684
688
|
// Specified in the URL path and not the body. To learn more, see [where to
|
|
685
689
|
// find your Property
|
|
686
690
|
// ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
|
|
@@ -719,8 +723,9 @@ message RunRealtimeReportRequest {
|
|
|
719
723
|
// Specifies how rows are ordered in the response.
|
|
720
724
|
repeated OrderBy order_bys = 8;
|
|
721
725
|
|
|
722
|
-
// Toggles whether to return the current state of this Analytics
|
|
723
|
-
// Realtime quota. Quota is returned in
|
|
726
|
+
// Toggles whether to return the current state of this Google Analytics
|
|
727
|
+
// property's Realtime quota. Quota is returned in
|
|
728
|
+
// [PropertyQuota](#PropertyQuota).
|
|
724
729
|
bool return_property_quota = 9;
|
|
725
730
|
|
|
726
731
|
// The minute ranges of event data to read. If unspecified, one minute range
|
|
@@ -760,7 +765,8 @@ message RunRealtimeReportResponse {
|
|
|
760
765
|
// only 50 rows.
|
|
761
766
|
int32 row_count = 7;
|
|
762
767
|
|
|
763
|
-
// This Analytics
|
|
768
|
+
// This Google Analytics property's Realtime quota state including this
|
|
769
|
+
// request.
|
|
764
770
|
PropertyQuota property_quota = 8;
|
|
765
771
|
|
|
766
772
|
// Identifies what kind of resource this message is. This `kind` is always the
|
|
@@ -318,6 +318,9 @@ message Filter {
|
|
|
318
318
|
NumericValue to_value = 2;
|
|
319
319
|
}
|
|
320
320
|
|
|
321
|
+
// Filter for empty values.
|
|
322
|
+
message EmptyFilter {}
|
|
323
|
+
|
|
321
324
|
// The dimension name or metric name.
|
|
322
325
|
//
|
|
323
326
|
// In most methods, dimensions & metrics can be used for the first time in
|
|
@@ -339,6 +342,9 @@ message Filter {
|
|
|
339
342
|
|
|
340
343
|
// A filter for two values.
|
|
341
344
|
BetweenFilter between_filter = 6;
|
|
345
|
+
|
|
346
|
+
// A filter for empty values such as "(not set)" and "" values.
|
|
347
|
+
EmptyFilter empty_filter = 8;
|
|
342
348
|
}
|
|
343
349
|
}
|
|
344
350
|
|
|
@@ -1048,8 +1054,8 @@ enum MetricType {
|
|
|
1048
1054
|
TYPE_KILOMETERS = 13;
|
|
1049
1055
|
}
|
|
1050
1056
|
|
|
1051
|
-
// Categories of data that you may be restricted from viewing on certain
|
|
1052
|
-
// properties.
|
|
1057
|
+
// Categories of data that you may be restricted from viewing on certain
|
|
1058
|
+
// Google Analytics properties.
|
|
1053
1059
|
enum RestrictedMetricType {
|
|
1054
1060
|
// Unspecified type.
|
|
1055
1061
|
RESTRICTED_METRIC_TYPE_UNSPECIFIED = 0;
|
package/build/protos/protos.d.ts
CHANGED
|
@@ -9518,6 +9518,9 @@ export namespace google {
|
|
|
9518
9518
|
|
|
9519
9519
|
/** Filter betweenFilter */
|
|
9520
9520
|
betweenFilter?: (google.analytics.data.v1alpha.IBetweenFilter|null);
|
|
9521
|
+
|
|
9522
|
+
/** Filter emptyFilter */
|
|
9523
|
+
emptyFilter?: (google.analytics.data.v1alpha.IEmptyFilter|null);
|
|
9521
9524
|
}
|
|
9522
9525
|
|
|
9523
9526
|
/** Represents a Filter. */
|
|
@@ -9544,8 +9547,11 @@ export namespace google {
|
|
|
9544
9547
|
/** Filter betweenFilter. */
|
|
9545
9548
|
public betweenFilter?: (google.analytics.data.v1alpha.IBetweenFilter|null);
|
|
9546
9549
|
|
|
9550
|
+
/** Filter emptyFilter. */
|
|
9551
|
+
public emptyFilter?: (google.analytics.data.v1alpha.IEmptyFilter|null);
|
|
9552
|
+
|
|
9547
9553
|
/** Filter oneFilter. */
|
|
9548
|
-
public oneFilter?: ("stringFilter"|"inListFilter"|"numericFilter"|"betweenFilter");
|
|
9554
|
+
public oneFilter?: ("stringFilter"|"inListFilter"|"numericFilter"|"betweenFilter"|"emptyFilter");
|
|
9549
9555
|
|
|
9550
9556
|
/**
|
|
9551
9557
|
* Creates a new Filter instance using the specified properties.
|
|
@@ -10396,6 +10402,97 @@ export namespace google {
|
|
|
10396
10402
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10397
10403
|
}
|
|
10398
10404
|
|
|
10405
|
+
/** Properties of an EmptyFilter. */
|
|
10406
|
+
interface IEmptyFilter {
|
|
10407
|
+
}
|
|
10408
|
+
|
|
10409
|
+
/** Represents an EmptyFilter. */
|
|
10410
|
+
class EmptyFilter implements IEmptyFilter {
|
|
10411
|
+
|
|
10412
|
+
/**
|
|
10413
|
+
* Constructs a new EmptyFilter.
|
|
10414
|
+
* @param [properties] Properties to set
|
|
10415
|
+
*/
|
|
10416
|
+
constructor(properties?: google.analytics.data.v1alpha.IEmptyFilter);
|
|
10417
|
+
|
|
10418
|
+
/**
|
|
10419
|
+
* Creates a new EmptyFilter instance using the specified properties.
|
|
10420
|
+
* @param [properties] Properties to set
|
|
10421
|
+
* @returns EmptyFilter instance
|
|
10422
|
+
*/
|
|
10423
|
+
public static create(properties?: google.analytics.data.v1alpha.IEmptyFilter): google.analytics.data.v1alpha.EmptyFilter;
|
|
10424
|
+
|
|
10425
|
+
/**
|
|
10426
|
+
* Encodes the specified EmptyFilter message. Does not implicitly {@link google.analytics.data.v1alpha.EmptyFilter.verify|verify} messages.
|
|
10427
|
+
* @param message EmptyFilter message or plain object to encode
|
|
10428
|
+
* @param [writer] Writer to encode to
|
|
10429
|
+
* @returns Writer
|
|
10430
|
+
*/
|
|
10431
|
+
public static encode(message: google.analytics.data.v1alpha.IEmptyFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10432
|
+
|
|
10433
|
+
/**
|
|
10434
|
+
* Encodes the specified EmptyFilter message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.EmptyFilter.verify|verify} messages.
|
|
10435
|
+
* @param message EmptyFilter message or plain object to encode
|
|
10436
|
+
* @param [writer] Writer to encode to
|
|
10437
|
+
* @returns Writer
|
|
10438
|
+
*/
|
|
10439
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IEmptyFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10440
|
+
|
|
10441
|
+
/**
|
|
10442
|
+
* Decodes an EmptyFilter message from the specified reader or buffer.
|
|
10443
|
+
* @param reader Reader or buffer to decode from
|
|
10444
|
+
* @param [length] Message length if known beforehand
|
|
10445
|
+
* @returns EmptyFilter
|
|
10446
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10447
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10448
|
+
*/
|
|
10449
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.EmptyFilter;
|
|
10450
|
+
|
|
10451
|
+
/**
|
|
10452
|
+
* Decodes an EmptyFilter message from the specified reader or buffer, length delimited.
|
|
10453
|
+
* @param reader Reader or buffer to decode from
|
|
10454
|
+
* @returns EmptyFilter
|
|
10455
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10456
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10457
|
+
*/
|
|
10458
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.EmptyFilter;
|
|
10459
|
+
|
|
10460
|
+
/**
|
|
10461
|
+
* Verifies an EmptyFilter message.
|
|
10462
|
+
* @param message Plain object to verify
|
|
10463
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10464
|
+
*/
|
|
10465
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10466
|
+
|
|
10467
|
+
/**
|
|
10468
|
+
* Creates an EmptyFilter message from a plain object. Also converts values to their respective internal types.
|
|
10469
|
+
* @param object Plain object
|
|
10470
|
+
* @returns EmptyFilter
|
|
10471
|
+
*/
|
|
10472
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.EmptyFilter;
|
|
10473
|
+
|
|
10474
|
+
/**
|
|
10475
|
+
* Creates a plain object from an EmptyFilter message. Also converts values to other types if specified.
|
|
10476
|
+
* @param message EmptyFilter
|
|
10477
|
+
* @param [options] Conversion options
|
|
10478
|
+
* @returns Plain object
|
|
10479
|
+
*/
|
|
10480
|
+
public static toObject(message: google.analytics.data.v1alpha.EmptyFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10481
|
+
|
|
10482
|
+
/**
|
|
10483
|
+
* Converts this EmptyFilter to JSON.
|
|
10484
|
+
* @returns JSON object
|
|
10485
|
+
*/
|
|
10486
|
+
public toJSON(): { [k: string]: any };
|
|
10487
|
+
|
|
10488
|
+
/**
|
|
10489
|
+
* Gets the default type url for EmptyFilter
|
|
10490
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10491
|
+
* @returns The default type url
|
|
10492
|
+
*/
|
|
10493
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10494
|
+
}
|
|
10495
|
+
|
|
10399
10496
|
/** Properties of a NumericValue. */
|
|
10400
10497
|
interface INumericValue {
|
|
10401
10498
|
|
|
@@ -10957,6 +11054,9 @@ export namespace google {
|
|
|
10957
11054
|
|
|
10958
11055
|
/** ResponseMetaData subjectToThresholding */
|
|
10959
11056
|
subjectToThresholding?: (boolean|null);
|
|
11057
|
+
|
|
11058
|
+
/** ResponseMetaData samplingMetadatas */
|
|
11059
|
+
samplingMetadatas?: (google.analytics.data.v1alpha.ISamplingMetadata[]|null);
|
|
10960
11060
|
}
|
|
10961
11061
|
|
|
10962
11062
|
/** Represents a ResponseMetaData. */
|
|
@@ -10986,6 +11086,9 @@ export namespace google {
|
|
|
10986
11086
|
/** ResponseMetaData subjectToThresholding. */
|
|
10987
11087
|
public subjectToThresholding?: (boolean|null);
|
|
10988
11088
|
|
|
11089
|
+
/** ResponseMetaData samplingMetadatas. */
|
|
11090
|
+
public samplingMetadatas: google.analytics.data.v1alpha.ISamplingMetadata[];
|
|
11091
|
+
|
|
10989
11092
|
/** ResponseMetaData _schemaRestrictionResponse. */
|
|
10990
11093
|
public _schemaRestrictionResponse?: "schemaRestrictionResponse";
|
|
10991
11094
|
|
|
@@ -20569,6 +20672,9 @@ export namespace google {
|
|
|
20569
20672
|
|
|
20570
20673
|
/** Filter betweenFilter */
|
|
20571
20674
|
betweenFilter?: (google.analytics.data.v1beta.Filter.IBetweenFilter|null);
|
|
20675
|
+
|
|
20676
|
+
/** Filter emptyFilter */
|
|
20677
|
+
emptyFilter?: (google.analytics.data.v1beta.Filter.IEmptyFilter|null);
|
|
20572
20678
|
}
|
|
20573
20679
|
|
|
20574
20680
|
/** Represents a Filter. */
|
|
@@ -20595,8 +20701,11 @@ export namespace google {
|
|
|
20595
20701
|
/** Filter betweenFilter. */
|
|
20596
20702
|
public betweenFilter?: (google.analytics.data.v1beta.Filter.IBetweenFilter|null);
|
|
20597
20703
|
|
|
20704
|
+
/** Filter emptyFilter. */
|
|
20705
|
+
public emptyFilter?: (google.analytics.data.v1beta.Filter.IEmptyFilter|null);
|
|
20706
|
+
|
|
20598
20707
|
/** Filter oneFilter. */
|
|
20599
|
-
public oneFilter?: ("stringFilter"|"inListFilter"|"numericFilter"|"betweenFilter");
|
|
20708
|
+
public oneFilter?: ("stringFilter"|"inListFilter"|"numericFilter"|"betweenFilter"|"emptyFilter");
|
|
20600
20709
|
|
|
20601
20710
|
/**
|
|
20602
20711
|
* Creates a new Filter instance using the specified properties.
|
|
@@ -21122,6 +21231,97 @@ export namespace google {
|
|
|
21122
21231
|
*/
|
|
21123
21232
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
21124
21233
|
}
|
|
21234
|
+
|
|
21235
|
+
/** Properties of an EmptyFilter. */
|
|
21236
|
+
interface IEmptyFilter {
|
|
21237
|
+
}
|
|
21238
|
+
|
|
21239
|
+
/** Represents an EmptyFilter. */
|
|
21240
|
+
class EmptyFilter implements IEmptyFilter {
|
|
21241
|
+
|
|
21242
|
+
/**
|
|
21243
|
+
* Constructs a new EmptyFilter.
|
|
21244
|
+
* @param [properties] Properties to set
|
|
21245
|
+
*/
|
|
21246
|
+
constructor(properties?: google.analytics.data.v1beta.Filter.IEmptyFilter);
|
|
21247
|
+
|
|
21248
|
+
/**
|
|
21249
|
+
* Creates a new EmptyFilter instance using the specified properties.
|
|
21250
|
+
* @param [properties] Properties to set
|
|
21251
|
+
* @returns EmptyFilter instance
|
|
21252
|
+
*/
|
|
21253
|
+
public static create(properties?: google.analytics.data.v1beta.Filter.IEmptyFilter): google.analytics.data.v1beta.Filter.EmptyFilter;
|
|
21254
|
+
|
|
21255
|
+
/**
|
|
21256
|
+
* Encodes the specified EmptyFilter message. Does not implicitly {@link google.analytics.data.v1beta.Filter.EmptyFilter.verify|verify} messages.
|
|
21257
|
+
* @param message EmptyFilter message or plain object to encode
|
|
21258
|
+
* @param [writer] Writer to encode to
|
|
21259
|
+
* @returns Writer
|
|
21260
|
+
*/
|
|
21261
|
+
public static encode(message: google.analytics.data.v1beta.Filter.IEmptyFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21262
|
+
|
|
21263
|
+
/**
|
|
21264
|
+
* Encodes the specified EmptyFilter message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.Filter.EmptyFilter.verify|verify} messages.
|
|
21265
|
+
* @param message EmptyFilter message or plain object to encode
|
|
21266
|
+
* @param [writer] Writer to encode to
|
|
21267
|
+
* @returns Writer
|
|
21268
|
+
*/
|
|
21269
|
+
public static encodeDelimited(message: google.analytics.data.v1beta.Filter.IEmptyFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21270
|
+
|
|
21271
|
+
/**
|
|
21272
|
+
* Decodes an EmptyFilter message from the specified reader or buffer.
|
|
21273
|
+
* @param reader Reader or buffer to decode from
|
|
21274
|
+
* @param [length] Message length if known beforehand
|
|
21275
|
+
* @returns EmptyFilter
|
|
21276
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21277
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21278
|
+
*/
|
|
21279
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.Filter.EmptyFilter;
|
|
21280
|
+
|
|
21281
|
+
/**
|
|
21282
|
+
* Decodes an EmptyFilter message from the specified reader or buffer, length delimited.
|
|
21283
|
+
* @param reader Reader or buffer to decode from
|
|
21284
|
+
* @returns EmptyFilter
|
|
21285
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21286
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21287
|
+
*/
|
|
21288
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.Filter.EmptyFilter;
|
|
21289
|
+
|
|
21290
|
+
/**
|
|
21291
|
+
* Verifies an EmptyFilter message.
|
|
21292
|
+
* @param message Plain object to verify
|
|
21293
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
21294
|
+
*/
|
|
21295
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
21296
|
+
|
|
21297
|
+
/**
|
|
21298
|
+
* Creates an EmptyFilter message from a plain object. Also converts values to their respective internal types.
|
|
21299
|
+
* @param object Plain object
|
|
21300
|
+
* @returns EmptyFilter
|
|
21301
|
+
*/
|
|
21302
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.Filter.EmptyFilter;
|
|
21303
|
+
|
|
21304
|
+
/**
|
|
21305
|
+
* Creates a plain object from an EmptyFilter message. Also converts values to other types if specified.
|
|
21306
|
+
* @param message EmptyFilter
|
|
21307
|
+
* @param [options] Conversion options
|
|
21308
|
+
* @returns Plain object
|
|
21309
|
+
*/
|
|
21310
|
+
public static toObject(message: google.analytics.data.v1beta.Filter.EmptyFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
21311
|
+
|
|
21312
|
+
/**
|
|
21313
|
+
* Converts this EmptyFilter to JSON.
|
|
21314
|
+
* @returns JSON object
|
|
21315
|
+
*/
|
|
21316
|
+
public toJSON(): { [k: string]: any };
|
|
21317
|
+
|
|
21318
|
+
/**
|
|
21319
|
+
* Gets the default type url for EmptyFilter
|
|
21320
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
21321
|
+
* @returns The default type url
|
|
21322
|
+
*/
|
|
21323
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
21324
|
+
}
|
|
21125
21325
|
}
|
|
21126
21326
|
|
|
21127
21327
|
/** Properties of an OrderBy. */
|