@maxim_mazurok/gapi.client.analyticshub-v1 0.0.20230210 → 0.0.20230224
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 +3 -1
- package/package.json +1 -1
- package/tests.ts +3 -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://analyticshub.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230224
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -259,6 +259,8 @@ declare namespace gapi.client {
|
|
|
259
259
|
primaryContact?: string;
|
|
260
260
|
}
|
|
261
261
|
interface RestrictedExportConfig {
|
|
262
|
+
/** If true, enable restricted export. */
|
|
263
|
+
enabled?: boolean;
|
|
262
264
|
/** If true, restrict direct table access(read api/tabledata.list) on linked table. */
|
|
263
265
|
restrictDirectTableAccess?: boolean;
|
|
264
266
|
/** If true, restrict export of query result derived from restricted linked dataset table. */
|
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: 20230224
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -157,6 +157,7 @@ gapi.load('client', async () => {
|
|
|
157
157
|
},
|
|
158
158
|
requestAccess: "Test string",
|
|
159
159
|
restrictedExportConfig: {
|
|
160
|
+
enabled: true,
|
|
160
161
|
restrictDirectTableAccess: true,
|
|
161
162
|
restrictQueryResult: true,
|
|
162
163
|
},
|
|
@@ -211,6 +212,7 @@ gapi.load('client', async () => {
|
|
|
211
212
|
},
|
|
212
213
|
requestAccess: "Test string",
|
|
213
214
|
restrictedExportConfig: {
|
|
215
|
+
enabled: true,
|
|
214
216
|
restrictDirectTableAccess: true,
|
|
215
217
|
restrictQueryResult: true,
|
|
216
218
|
},
|