@maxim_mazurok/gapi.client.batch-v1 0.0.20230917 → 0.0.20231003
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 +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://batch.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231003
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -767,6 +767,12 @@ declare namespace gapi.client {
|
|
|
767
767
|
/** Container runnable. */
|
|
768
768
|
container?:
|
|
769
769
|
Container;
|
|
770
|
+
/**
|
|
771
|
+
* Optional. DisplayName is an optional field that can be provided by the caller. If provided, it will be used in logs and other outputs to identify the script, making it easier for
|
|
772
|
+
* users to understand the logs. If not provided the index of the runnable will be used for outputs.
|
|
773
|
+
*/
|
|
774
|
+
displayName?:
|
|
775
|
+
string;
|
|
770
776
|
/** Environment variables for this Runnable (overrides variables set for the whole Task or TaskGroup). */
|
|
771
777
|
environment?:
|
|
772
778
|
Environment;
|
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: 20231003
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -248,6 +248,7 @@ gapi.load('client', async () => {
|
|
|
248
248
|
"Test string"
|
|
249
249
|
],
|
|
250
250
|
},
|
|
251
|
+
displayName: "Test string",
|
|
251
252
|
environment: {
|
|
252
253
|
encryptedVariables: {
|
|
253
254
|
cipherText: "Test string",
|