@maxim_mazurok/gapi.client.dataform-v1beta1 0.0.20250202 → 0.0.20250223
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 +8 -1
- package/package.json +1 -1
- package/readme.md +3 -0
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: 20250223
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -57,6 +57,7 @@ declare namespace gapi.client {
|
|
|
57
57
|
role?: string;
|
|
58
58
|
}
|
|
59
59
|
interface CancelWorkflowInvocationRequest {}
|
|
60
|
+
interface CancelWorkflowInvocationResponse {}
|
|
60
61
|
interface CodeCompilationConfig {
|
|
61
62
|
/** Optional. The default schema (BigQuery dataset ID) for assertions. */
|
|
62
63
|
assertionSchema?: string;
|
|
@@ -127,6 +128,7 @@ declare namespace gapi.client {
|
|
|
127
128
|
/** Optional. Full file paths to commit including filename, rooted at workspace root. If left empty, all files will be committed. */
|
|
128
129
|
paths?: string[];
|
|
129
130
|
}
|
|
131
|
+
interface CommitWorkspaceChangesResponse {}
|
|
130
132
|
interface CompilationError {
|
|
131
133
|
/** Output only. The identifier of the action where this error occurred, if available. */
|
|
132
134
|
actionTarget?: Target;
|
|
@@ -452,10 +454,12 @@ declare namespace gapi.client {
|
|
|
452
454
|
/** Optional. The name of the branch in the Git remote from which to pull commits. If left unset, the repository's default branch name will be used. */
|
|
453
455
|
remoteBranch?: string;
|
|
454
456
|
}
|
|
457
|
+
interface PullGitCommitsResponse {}
|
|
455
458
|
interface PushGitCommitsRequest {
|
|
456
459
|
/** Optional. The name of the branch in the Git remote to which commits should be pushed. If left unset, the repository's default branch name will be used. */
|
|
457
460
|
remoteBranch?: string;
|
|
458
461
|
}
|
|
462
|
+
interface PushGitCommitsResponse {}
|
|
459
463
|
interface QueryCompilationResultActionsResponse {
|
|
460
464
|
/** List of compilation result actions. */
|
|
461
465
|
compilationResultActions?: CompilationResultAction[];
|
|
@@ -550,10 +554,12 @@ declare namespace gapi.client {
|
|
|
550
554
|
/** Required. The directory's full path including directory name, relative to the workspace root. */
|
|
551
555
|
path?: string;
|
|
552
556
|
}
|
|
557
|
+
interface RemoveDirectoryResponse {}
|
|
553
558
|
interface RemoveFileRequest {
|
|
554
559
|
/** Required. The file's full path including filename, relative to the workspace root. */
|
|
555
560
|
path?: string;
|
|
556
561
|
}
|
|
562
|
+
interface RemoveFileResponse {}
|
|
557
563
|
interface Repository {
|
|
558
564
|
/** Output only. The timestamp of when the repository was created. */
|
|
559
565
|
createTime?: string;
|
|
@@ -586,6 +592,7 @@ declare namespace gapi.client {
|
|
|
586
592
|
/** Optional. Full file paths to reset back to their committed state including filename, rooted at workspace root. If left empty, all files will be reset. */
|
|
587
593
|
paths?: string[];
|
|
588
594
|
}
|
|
595
|
+
interface ResetWorkspaceChangesResponse {}
|
|
589
596
|
interface ScheduledExecutionRecord {
|
|
590
597
|
/** The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful. */
|
|
591
598
|
errorStatus?: Status;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -48,6 +48,9 @@ Don't forget to authenticate your client before sending any request to resources
|
|
|
48
48
|
// declare client_id registered in Google Developers Console
|
|
49
49
|
var client_id = '',
|
|
50
50
|
scope = [
|
|
51
|
+
// View and manage your data in Google BigQuery and see the email address for your Google Account
|
|
52
|
+
'https://www.googleapis.com/auth/bigquery',
|
|
53
|
+
|
|
51
54
|
// See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
|
52
55
|
'https://www.googleapis.com/auth/cloud-platform',
|
|
53
56
|
],
|