@maxim_mazurok/gapi.client.workflows-v1 0.0.20230123 → 0.0.20230201
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 -1
- package/package.json +1 -1
- package/tests.ts +2 -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://workflows.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230201
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -349,6 +349,11 @@ declare namespace gapi.client {
|
|
|
349
349
|
prettyPrint?: boolean;
|
|
350
350
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
351
351
|
quotaUser?: string;
|
|
352
|
+
/**
|
|
353
|
+
* Optional. Optional. The revision of the workflow to retrieve. If the revision_id is empty, the latest revision is retrieved. The format is "000001-a4d", where the first 6
|
|
354
|
+
* characters define the zero-padded decimal revision number. They are followed by a hyphen and 3 hexadecimal characters. (go/wf_adr_clh_1)
|
|
355
|
+
*/
|
|
356
|
+
revisionId?: string;
|
|
352
357
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
353
358
|
upload_protocol?: string;
|
|
354
359
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
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: 20230201
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -88,6 +88,7 @@ gapi.load('client', async () => {
|
|
|
88
88
|
/** Gets details of a single workflow. */
|
|
89
89
|
await gapi.client.workflows.projects.locations.workflows.get({
|
|
90
90
|
name: "Test string",
|
|
91
|
+
revisionId: "Test string",
|
|
91
92
|
});
|
|
92
93
|
/** Lists workflows in a given project and location. The default order is not specified. */
|
|
93
94
|
await gapi.client.workflows.projects.locations.workflows.list({
|