diff --git a/clients/script/README.md b/clients/script/README.md index 7509a55138..46a535d447 100644 --- a/clients/script/README.md +++ b/clients/script/README.md @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding ```elixir def deps do - [{:google_api_script, "~> 0.17"}] + [{:google_api_script, "~> 0.18"}] end ``` diff --git a/clients/script/lib/google_api/script/v1/api/scripts.ex b/clients/script/lib/google_api/script/v1/api/scripts.ex index 4b81940c59..14df79e324 100644 --- a/clients/script/lib/google_api/script/v1/api/scripts.ex +++ b/clients/script/lib/google_api/script/v1/api/scripts.ex @@ -31,7 +31,7 @@ defmodule GoogleApi.Script.V1.Api.Scripts do ## Parameters * `connection` (*type:* `GoogleApi.Script.V1.Connection.t`) - Connection to server - * `script_id` (*type:* `String.t`) - The script ID of the script to be executed. Find the script ID on the **Project settings** page under "IDs." + * `script_id` (*type:* `String.t`) - The script ID of the script to be executed. Find the script ID on the **Project settings** page under "IDs." As multiple executable APIs can be deployed in new IDE for same script, this field should be populated with DeploymentID generated while deploying in new IDE instead of script ID. * `optional_params` (*type:* `keyword()`) - Optional parameters * `:"$.xgafv"` (*type:* `String.t`) - V1 error format. * `:access_token` (*type:* `String.t`) - OAuth access token. diff --git a/clients/script/lib/google_api/script/v1/metadata.ex b/clients/script/lib/google_api/script/v1/metadata.ex index 7e85463215..c5593ade32 100644 --- a/clients/script/lib/google_api/script/v1/metadata.ex +++ b/clients/script/lib/google_api/script/v1/metadata.ex @@ -20,7 +20,7 @@ defmodule GoogleApi.Script.V1 do API client metadata for GoogleApi.Script.V1. """ - @discovery_revision "20220323" + @discovery_revision "20240303" def discovery_revision(), do: @discovery_revision end diff --git a/clients/script/lib/google_api/script/v1/model/google_apps_script_type_process.ex b/clients/script/lib/google_api/script/v1/model/google_apps_script_type_process.ex index 49d1d6a7ed..9041212dc4 100644 --- a/clients/script/lib/google_api/script/v1/model/google_apps_script_type_process.ex +++ b/clients/script/lib/google_api/script/v1/model/google_apps_script_type_process.ex @@ -26,6 +26,7 @@ defmodule GoogleApi.Script.V1.Model.GoogleAppsScriptTypeProcess do * `processStatus` (*type:* `String.t`, *default:* `nil`) - The executions status. * `processType` (*type:* `String.t`, *default:* `nil`) - The executions type. * `projectName` (*type:* `String.t`, *default:* `nil`) - Name of the script being executed. + * `runtimeVersion` (*type:* `String.t`, *default:* `nil`) - Which version of maestro to use to execute the script. * `startTime` (*type:* `DateTime.t`, *default:* `nil`) - Time the execution started. * `userAccessLevel` (*type:* `String.t`, *default:* `nil`) - The executing users access level to the script. """ @@ -38,6 +39,7 @@ defmodule GoogleApi.Script.V1.Model.GoogleAppsScriptTypeProcess do :processStatus => String.t() | nil, :processType => String.t() | nil, :projectName => String.t() | nil, + :runtimeVersion => String.t() | nil, :startTime => DateTime.t() | nil, :userAccessLevel => String.t() | nil } @@ -47,6 +49,7 @@ defmodule GoogleApi.Script.V1.Model.GoogleAppsScriptTypeProcess do field(:processStatus) field(:processType) field(:projectName) + field(:runtimeVersion) field(:startTime, as: DateTime) field(:userAccessLevel) end diff --git a/clients/script/mix.exs b/clients/script/mix.exs index 096def9840..a08de282ff 100644 --- a/clients/script/mix.exs +++ b/clients/script/mix.exs @@ -18,7 +18,7 @@ defmodule GoogleApi.Script.Mixfile do use Mix.Project - @version "0.17.1" + @version "0.18.0" def project() do [