Skip to content

Commit e5fef8c

Browse files
feat: Automated regeneration of RecaptchaEnterprise client (googleapis#12332)
Auto-created at 2024-10-15 13:18:56 +0000 using the toys pull request generator.
1 parent 5284100 commit e5fef8c

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

clients/recaptcha_enterprise/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111

1212
```elixir
1313
def deps do
14-
[{:google_api_recaptcha_enterprise, "~> 0.13"}]
14+
[{:google_api_recaptcha_enterprise, "~> 0.14"}]
1515
end
1616
```
1717

clients/recaptcha_enterprise/lib/google_api/recaptcha_enterprise/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.RecaptchaEnterprise.V1 do
2020
API client metadata for GoogleApi.RecaptchaEnterprise.V1.
2121
"""
2222

23-
@discovery_revision "20240906"
23+
@discovery_revision "20241013"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/recaptcha_enterprise/lib/google_api/recaptcha_enterprise/v1/model/google_cloud_recaptchaenterprise_v1_risk_analysis.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ defmodule GoogleApi.RecaptchaEnterprise.V1.Model.GoogleCloudRecaptchaenterpriseV
2121
2222
## Attributes
2323
24+
* `challenge` (*type:* `String.t`, *default:* `nil`) - Output only. Challenge information for SCORE_AND_CHALLENGE keys
2425
* `extendedVerdictReasons` (*type:* `list(String.t)`, *default:* `nil`) - Output only. Extended verdict reasons to be used for experimentation only. The set of possible reasons is subject to change.
2526
* `reasons` (*type:* `list(String.t)`, *default:* `nil`) - Output only. Reasons contributing to the risk analysis verdict.
2627
* `score` (*type:* `number()`, *default:* `nil`) - Output only. Legitimate event score from 0.0 to 1.0. (1.0 means very likely legitimate traffic while 0.0 means very likely non-legitimate traffic).
@@ -29,11 +30,13 @@ defmodule GoogleApi.RecaptchaEnterprise.V1.Model.GoogleCloudRecaptchaenterpriseV
2930
use GoogleApi.Gax.ModelBase
3031

3132
@type t :: %__MODULE__{
33+
:challenge => String.t() | nil,
3234
:extendedVerdictReasons => list(String.t()) | nil,
3335
:reasons => list(String.t()) | nil,
3436
:score => number() | nil
3537
}
3638

39+
field(:challenge)
3740
field(:extendedVerdictReasons, type: :list)
3841
field(:reasons, type: :list)
3942
field(:score)

clients/recaptcha_enterprise/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.RecaptchaEnterprise.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.13.1"
21+
@version "0.14.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)