@maxim_mazurok/gapi.client.dataform-v1beta1 0.0.20230701 → 0.0.20230707
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 +7 -1
- package/package.json +1 -1
- package/tests.ts +6 -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://dataform.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230707
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -327,6 +327,9 @@ declare namespace gapi.client {
|
|
|
327
327
|
/** Optional. The set of action identifiers to include. */
|
|
328
328
|
includedTargets?:
|
|
329
329
|
Target[];
|
|
330
|
+
/** Optional. The service account to run workflow invocations under. */
|
|
331
|
+
serviceAccount?:
|
|
332
|
+
string;
|
|
330
333
|
/** Optional. When set to true, transitive dependencies of included actions will be executed. */
|
|
331
334
|
transitiveDependenciesIncluded?:
|
|
332
335
|
boolean;
|
|
@@ -689,6 +692,9 @@ declare namespace gapi.client {
|
|
|
689
692
|
*/
|
|
690
693
|
npmrcEnvironmentVariablesSecretVersion?:
|
|
691
694
|
string;
|
|
695
|
+
/** Optional. The service account to run workflow invocations under. */
|
|
696
|
+
serviceAccount?:
|
|
697
|
+
string;
|
|
692
698
|
/**
|
|
693
699
|
* Optional. If set, fields of `workspace_compilation_overrides` override the default compilation settings that are specified in dataform.json when creating workspace-scoped
|
|
694
700
|
* compilation results. See documentation for `WorkspaceCompilationOverrides` for more information.
|
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: 20230707
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -57,6 +57,7 @@ gapi.load('client', async () => {
|
|
|
57
57
|
},
|
|
58
58
|
name: "Test string",
|
|
59
59
|
npmrcEnvironmentVariablesSecretVersion: "Test string",
|
|
60
|
+
serviceAccount: "Test string",
|
|
60
61
|
workspaceCompilationOverrides: {
|
|
61
62
|
defaultDatabase: "Test string",
|
|
62
63
|
schemaSuffix: "Test string",
|
|
@@ -102,6 +103,7 @@ gapi.load('client', async () => {
|
|
|
102
103
|
},
|
|
103
104
|
name: "Test string",
|
|
104
105
|
npmrcEnvironmentVariablesSecretVersion: "Test string",
|
|
106
|
+
serviceAccount: "Test string",
|
|
105
107
|
workspaceCompilationOverrides: {
|
|
106
108
|
defaultDatabase: "Test string",
|
|
107
109
|
schemaSuffix: "Test string",
|
|
@@ -302,6 +304,7 @@ gapi.load('client', async () => {
|
|
|
302
304
|
schema: "Test string",
|
|
303
305
|
}
|
|
304
306
|
],
|
|
307
|
+
serviceAccount: "Test string",
|
|
305
308
|
transitiveDependenciesIncluded: true,
|
|
306
309
|
transitiveDependentsIncluded: true,
|
|
307
310
|
},
|
|
@@ -356,6 +359,7 @@ gapi.load('client', async () => {
|
|
|
356
359
|
schema: "Test string",
|
|
357
360
|
}
|
|
358
361
|
],
|
|
362
|
+
serviceAccount: "Test string",
|
|
359
363
|
transitiveDependenciesIncluded: true,
|
|
360
364
|
transitiveDependentsIncluded: true,
|
|
361
365
|
},
|
|
@@ -400,6 +404,7 @@ gapi.load('client', async () => {
|
|
|
400
404
|
schema: "Test string",
|
|
401
405
|
}
|
|
402
406
|
],
|
|
407
|
+
serviceAccount: "Test string",
|
|
403
408
|
transitiveDependenciesIncluded: true,
|
|
404
409
|
transitiveDependentsIncluded: true,
|
|
405
410
|
},
|