Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
feat(script): update the api
#### script:v1

The following keys were added:
- schemas.GoogleAppsScriptTypeProcess.properties.runtimeVersion.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed May 24, 2023
1 parent 00765a7 commit ded1e61
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/dyn/script_v1.processes.html
Expand Up @@ -155,6 +155,7 @@ <h3>Method Details</h3>
&quot;processStatus&quot;: &quot;A String&quot;, # The executions status.
&quot;processType&quot;: &quot;A String&quot;, # The executions type.
&quot;projectName&quot;: &quot;A String&quot;, # Name of the script being executed.
&quot;runtimeVersion&quot;: &quot;A String&quot;, # Which version of maestro to use to execute the script.
&quot;startTime&quot;: &quot;A String&quot;, # Time the execution started.
&quot;userAccessLevel&quot;: &quot;A String&quot;, # The executing users access level to the script.
},
Expand Down Expand Up @@ -221,6 +222,7 @@ <h3>Method Details</h3>
&quot;processStatus&quot;: &quot;A String&quot;, # The executions status.
&quot;processType&quot;: &quot;A String&quot;, # The executions type.
&quot;projectName&quot;: &quot;A String&quot;, # Name of the script being executed.
&quot;runtimeVersion&quot;: &quot;A String&quot;, # Which version of maestro to use to execute the script.
&quot;startTime&quot;: &quot;A String&quot;, # Time the execution started.
&quot;userAccessLevel&quot;: &quot;A String&quot;, # The executing users access level to the script.
},
Expand Down
16 changes: 15 additions & 1 deletion googleapiclient/discovery_cache/documents/script.v1.json
Expand Up @@ -887,7 +887,7 @@
}
}
},
"revision": "20230417",
"revision": "20230514",
"rootUrl": "https://script.googleapis.com/",
"schemas": {
"Content": {
Expand Down Expand Up @@ -1314,6 +1314,20 @@
"description": "Name of the script being executed.",
"type": "string"
},
"runtimeVersion": {
"description": "Which version of maestro to use to execute the script.",
"enum": [
"RUNTIME_VERSION_UNSPECIFIED",
"DEPRECATED_ES5",
"V8"
],
"enumDescriptions": [
"Runtime version unset / unknown.",
"Legacy rhino version of the Apps script runtime",
"Current default V8 version of the apps script runtime."
],
"type": "string"
},
"startTime": {
"description": "Time the execution started.",
"format": "google-datetime",
Expand Down

0 comments on commit ded1e61

Please sign in to comment.