@maxim_mazurok/gapi.client.workflowexecutions-v1 0.0.20230905 → 0.0.20230912
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 +6 -6
- package/package.json +1 -1
- package/tests.ts +3 -3
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://workflowexecutions.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230912
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -26,7 +26,7 @@ declare namespace gapi.client {
|
|
|
26
26
|
/** Output only. The payloads received by the callback that have not been processed by a waiting execution step. */
|
|
27
27
|
availablePayloads?:
|
|
28
28
|
string[];
|
|
29
|
-
/** Output only. The method accepted by the callback.
|
|
29
|
+
/** Output only. The method accepted by the callback. For example: GET, POST, PUT. */
|
|
30
30
|
method?:
|
|
31
31
|
string;
|
|
32
32
|
/** Output only. The resource name of the callback. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}/callback/{callback} */
|
|
@@ -102,7 +102,7 @@ declare namespace gapi.client {
|
|
|
102
102
|
string;
|
|
103
103
|
}
|
|
104
104
|
interface ExportDataResponse {
|
|
105
|
-
/** The JSON string with customer data and metadata
|
|
105
|
+
/** The JSON string with customer data and metadata for an execution with the given name */
|
|
106
106
|
data?:
|
|
107
107
|
string;
|
|
108
108
|
}
|
|
@@ -216,7 +216,7 @@ declare namespace gapi.client {
|
|
|
216
216
|
string;
|
|
217
217
|
}
|
|
218
218
|
interface CallbacksResource {
|
|
219
|
-
/** Returns a list of active callbacks
|
|
219
|
+
/** Returns a list of active callbacks that belong to the execution with the given name. The returned callbacks are ordered by callback ID. */
|
|
220
220
|
list(request?: {
|
|
221
221
|
/** V1 error format. */
|
|
222
222
|
"$.xgafv"?:
|
|
@@ -434,7 +434,7 @@ declare namespace gapi.client {
|
|
|
434
434
|
string;
|
|
435
435
|
},
|
|
436
436
|
body: Execution): Request<Execution>;
|
|
437
|
-
/** Returns all metadata stored about an execution, excluding most data that is already accessible
|
|
437
|
+
/** Returns all metadata stored about an execution, excluding most data that is already accessible using other API methods. */
|
|
438
438
|
exportData(request?: {
|
|
439
439
|
/** V1 error format. */
|
|
440
440
|
"$.xgafv"?:
|
|
@@ -454,7 +454,7 @@ declare namespace gapi.client {
|
|
|
454
454
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
455
455
|
key?:
|
|
456
456
|
string;
|
|
457
|
-
/** Required. Name of the execution to be
|
|
457
|
+
/** Required. Name of the execution for which data is to be exported. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution} */
|
|
458
458
|
name:
|
|
459
459
|
string;
|
|
460
460
|
/** OAuth 2.0 token for the current user. */
|
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: 20230912
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -97,7 +97,7 @@ gapi.load('client', async () => {
|
|
|
97
97
|
},
|
|
98
98
|
workflowRevisionId: "Test string",
|
|
99
99
|
});
|
|
100
|
-
/** Returns all metadata stored about an execution, excluding most data that is already accessible
|
|
100
|
+
/** Returns all metadata stored about an execution, excluding most data that is already accessible using other API methods. */
|
|
101
101
|
await gapi.client.workflowexecutions.projects.locations.workflows.executions.exportData({
|
|
102
102
|
name: "Test string",
|
|
103
103
|
});
|
|
@@ -118,7 +118,7 @@ gapi.load('client', async () => {
|
|
|
118
118
|
parent: "Test string",
|
|
119
119
|
view: "Test string",
|
|
120
120
|
});
|
|
121
|
-
/** Returns a list of active callbacks
|
|
121
|
+
/** Returns a list of active callbacks that belong to the execution with the given name. The returned callbacks are ordered by callback ID. */
|
|
122
122
|
await gapi.client.workflowexecutions.projects.locations.workflows.executions.callbacks.list({
|
|
123
123
|
pageSize: 42,
|
|
124
124
|
pageToken: "Test string",
|