@maxim_mazurok/gapi.client.analyticsadmin-v1alpha 0.0.20231003 → 0.0.20231004
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 +13 -1
- package/package.json +1 -1
- package/tests.ts +5 -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://analyticsadmin.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231004
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1759,6 +1759,18 @@ declare namespace gapi.client {
|
|
|
1759
1759
|
/** The dimensions requested and displayed in the response. Requests are allowed up to 9 dimensions. */
|
|
1760
1760
|
dimensions?:
|
|
1761
1761
|
GoogleAnalyticsAdminV1alphaAccessDimension[];
|
|
1762
|
+
/**
|
|
1763
|
+
* Optional. Decides whether to return the users within user groups. This field works only when include_all_users is set to true. If true, it will return all users with access to the
|
|
1764
|
+
* specified property or account. If false, only the users with direct access will be returned.
|
|
1765
|
+
*/
|
|
1766
|
+
expandGroups?:
|
|
1767
|
+
boolean;
|
|
1768
|
+
/**
|
|
1769
|
+
* Optional. Determines whether to include users who have never made an API call in the response. If true, all users with access to the specified property or account are included in
|
|
1770
|
+
* the response, regardless of whether they have made an API call or not. If false, only the users who have made an API call will be included.
|
|
1771
|
+
*/
|
|
1772
|
+
includeAllUsers?:
|
|
1773
|
+
boolean;
|
|
1762
1774
|
/**
|
|
1763
1775
|
* The number of rows to return. If unspecified, 10,000 rows are returned. The API returns a maximum of 100,000 rows per request, no matter how many you ask for. `limit` must be
|
|
1764
1776
|
* positive. The API may return fewer rows than the requested `limit`, if there aren't as many remaining rows as the `limit`. For instance, there are fewer than 300 possible values for
|
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: 20231004
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -146,6 +146,8 @@ gapi.load('client', async () => {
|
|
|
146
146
|
dimensionName: "Test string",
|
|
147
147
|
}
|
|
148
148
|
],
|
|
149
|
+
expandGroups: true,
|
|
150
|
+
includeAllUsers: true,
|
|
149
151
|
limit: "Test string",
|
|
150
152
|
metricFilter: {
|
|
151
153
|
accessFilter: {
|
|
@@ -552,6 +554,8 @@ gapi.load('client', async () => {
|
|
|
552
554
|
dimensionName: "Test string",
|
|
553
555
|
}
|
|
554
556
|
],
|
|
557
|
+
expandGroups: true,
|
|
558
|
+
includeAllUsers: true,
|
|
555
559
|
limit: "Test string",
|
|
556
560
|
metricFilter: {
|
|
557
561
|
accessFilter: {
|