@maxim_mazurok/gapi.client.analyticsadmin-v1beta 0.0.20231003 → 0.0.20231006
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=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231006
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -730,6 +730,18 @@ declare namespace gapi.client {
|
|
|
730
730
|
/** The dimensions requested and displayed in the response. Requests are allowed up to 9 dimensions. */
|
|
731
731
|
dimensions?:
|
|
732
732
|
GoogleAnalyticsAdminV1betaAccessDimension[];
|
|
733
|
+
/**
|
|
734
|
+
* 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
|
|
735
|
+
* specified property or account. If false, only the users with direct access will be returned.
|
|
736
|
+
*/
|
|
737
|
+
expandGroups?:
|
|
738
|
+
boolean;
|
|
739
|
+
/**
|
|
740
|
+
* 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
|
|
741
|
+
* 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.
|
|
742
|
+
*/
|
|
743
|
+
includeAllUsers?:
|
|
744
|
+
boolean;
|
|
733
745
|
/**
|
|
734
746
|
* 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
|
|
735
747
|
* 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: 20231006
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -142,6 +142,8 @@ gapi.load('client', async () => {
|
|
|
142
142
|
dimensionName: "Test string",
|
|
143
143
|
}
|
|
144
144
|
],
|
|
145
|
+
expandGroups: true,
|
|
146
|
+
includeAllUsers: true,
|
|
145
147
|
limit: "Test string",
|
|
146
148
|
metricFilter: {
|
|
147
149
|
accessFilter: {
|
|
@@ -360,6 +362,8 @@ gapi.load('client', async () => {
|
|
|
360
362
|
dimensionName: "Test string",
|
|
361
363
|
}
|
|
362
364
|
],
|
|
365
|
+
expandGroups: true,
|
|
366
|
+
includeAllUsers: true,
|
|
363
367
|
limit: "Test string",
|
|
364
368
|
metricFilter: {
|
|
365
369
|
accessFilter: {
|