@maxim_mazurok/gapi.client.analyticsdata-v1beta 0.0.20230327 → 0.0.20230402
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 -4
- package/package.json +1 -1
- package/tests.ts +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: 20230402
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -368,7 +368,7 @@ declare namespace gapi.client {
|
|
|
368
368
|
fieldNames?: string[];
|
|
369
369
|
/**
|
|
370
370
|
* The number of unique combinations of dimension values to return in this pivot. The `limit` parameter is required. A `limit` of 10,000 is common for single pivot requests. The
|
|
371
|
-
* product of the `limit` for each `pivot` in a `RunPivotReportRequest` must not exceed
|
|
371
|
+
* product of the `limit` for each `pivot` in a `RunPivotReportRequest` must not exceed 250,000. For example, a two pivot request with `limit: 1000` in each pivot will fail because the
|
|
372
372
|
* product is `1,000,000`.
|
|
373
373
|
*/
|
|
374
374
|
limit?: string;
|
|
@@ -553,7 +553,7 @@ declare namespace gapi.client {
|
|
|
553
553
|
/** The dimensions requested and displayed. */
|
|
554
554
|
dimensions?: Dimension[];
|
|
555
555
|
/**
|
|
556
|
-
* The number of rows to return. If unspecified, 10,000 rows are returned. The API returns a maximum of
|
|
556
|
+
* The number of rows to return. If unspecified, 10,000 rows are returned. The API returns a maximum of 250,000 rows per request, no matter how many you ask for. `limit` must be
|
|
557
557
|
* positive. The API can also return fewer rows than the requested `limit`, if there aren't as many dimension values as the `limit`. For instance, there are fewer than 300 possible
|
|
558
558
|
* values for the dimension `country`, so when reporting on only `country`, you can't get more than 300 rows, even if you set `limit` to a higher value.
|
|
559
559
|
*/
|
|
@@ -621,7 +621,7 @@ declare namespace gapi.client {
|
|
|
621
621
|
*/
|
|
622
622
|
keepEmptyRows?: boolean;
|
|
623
623
|
/**
|
|
624
|
-
* The number of rows to return. If unspecified, 10,000 rows are returned. The API returns a maximum of
|
|
624
|
+
* The number of rows to return. If unspecified, 10,000 rows are returned. The API returns a maximum of 250,000 rows per request, no matter how many you ask for. `limit` must be
|
|
625
625
|
* positive. The API can also return fewer rows than the requested `limit`, if there aren't as many dimension values as the `limit`. For instance, there are fewer than 300 possible
|
|
626
626
|
* values for the dimension `country`, so when reporting on only `country`, you can't get more than 300 rows, even if you set `limit` to a higher value. To learn more about this
|
|
627
627
|
* pagination parameter, see [Pagination](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230402
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|