@maxim_mazurok/gapi.client.analyticsdata-v1beta 0.2.20260617 → 0.3.20260623
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/index.d.ts +5 -13
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://analyticsdata.googleapis.com/$discovery/rest?version=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260623
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -33,9 +33,7 @@ declare namespace gapi.client {
|
|
|
33
33
|
metricName?: string;
|
|
34
34
|
/** The reason for this metric's restriction. */
|
|
35
35
|
restrictedMetricTypes?:
|
|
36
|
-
| '
|
|
37
|
-
| 'COST_DATA'
|
|
38
|
-
| 'REVENUE_DATA'[];
|
|
36
|
+
'RESTRICTED_METRIC_TYPE_UNSPECIFIED' | 'COST_DATA' | 'REVENUE_DATA'[];
|
|
39
37
|
}
|
|
40
38
|
interface AudienceExport {
|
|
41
39
|
/** Required. The audience resource name. This resource name identifies the audience being listed and is shared between the Analytics Data & Admin APIs. Format: `properties/{property}/audiences/{audience}` */
|
|
@@ -93,9 +91,7 @@ declare namespace gapi.client {
|
|
|
93
91
|
interface CheckCompatibilityRequest {
|
|
94
92
|
/** Filters the dimensions and metrics in the response to just this compatibility. Commonly used as `”compatibilityFilter”: “COMPATIBLE”` to only return compatible dimensions & metrics. */
|
|
95
93
|
compatibilityFilter?:
|
|
96
|
-
| '
|
|
97
|
-
| 'COMPATIBLE'
|
|
98
|
-
| 'INCOMPATIBLE';
|
|
94
|
+
'COMPATIBILITY_UNSPECIFIED' | 'COMPATIBLE' | 'INCOMPATIBLE';
|
|
99
95
|
/** The filter clause of dimensions. `dimensionFilter` should be the same value as in your `runReport` request. */
|
|
100
96
|
dimensionFilter?: FilterExpression;
|
|
101
97
|
/** The dimensions in this report. `dimensions` should be the same value as in your `runReport` request. */
|
|
@@ -178,9 +174,7 @@ declare namespace gapi.client {
|
|
|
178
174
|
interface DimensionCompatibility {
|
|
179
175
|
/** The compatibility of this dimension. If the compatibility is COMPATIBLE, this dimension can be successfully added to the report. */
|
|
180
176
|
compatibility?:
|
|
181
|
-
| '
|
|
182
|
-
| 'COMPATIBLE'
|
|
183
|
-
| 'INCOMPATIBLE';
|
|
177
|
+
'COMPATIBILITY_UNSPECIFIED' | 'COMPATIBLE' | 'INCOMPATIBLE';
|
|
184
178
|
/** The dimension metadata contains the API name for this compatibility information. The dimension metadata also contains other helpful information like the UI name and description. */
|
|
185
179
|
dimensionMetadata?: DimensionMetadata;
|
|
186
180
|
}
|
|
@@ -286,9 +280,7 @@ declare namespace gapi.client {
|
|
|
286
280
|
interface MetricCompatibility {
|
|
287
281
|
/** The compatibility of this metric. If the compatibility is COMPATIBLE, this metric can be successfully added to the report. */
|
|
288
282
|
compatibility?:
|
|
289
|
-
| '
|
|
290
|
-
| 'COMPATIBLE'
|
|
291
|
-
| 'INCOMPATIBLE';
|
|
283
|
+
'COMPATIBILITY_UNSPECIFIED' | 'COMPATIBLE' | 'INCOMPATIBLE';
|
|
292
284
|
/** The metric metadata contains the API name for this compatibility information. The metric metadata also contains other helpful information like the UI name and description. */
|
|
293
285
|
metricMetadata?: MetricMetadata;
|
|
294
286
|
}
|