@maxim_mazurok/gapi.client.analyticsdata-v1beta 0.0.20241112 → 0.0.20241118
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 +4 -1
- 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: 20241118
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -211,9 +211,12 @@ declare namespace gapi.client {
|
|
|
211
211
|
/** Value as a string if the dimension type is a string. */
|
|
212
212
|
value?: string;
|
|
213
213
|
}
|
|
214
|
+
interface EmptyFilter {}
|
|
214
215
|
interface Filter {
|
|
215
216
|
/** A filter for two values. */
|
|
216
217
|
betweenFilter?: BetweenFilter;
|
|
218
|
+
/** A filter for empty values such as "(not set)" and "" values. */
|
|
219
|
+
emptyFilter?: any;
|
|
217
220
|
/** The dimension name or metric name. In most methods, dimensions & metrics can be used for the first time in this field. However in a RunPivotReportRequest, this field must be additionally specified by name in the RunPivotReportRequest's dimensions or metrics. */
|
|
218
221
|
fieldName?: string;
|
|
219
222
|
/** A filter for in list values. */
|