diff --git a/clients/play_integrity/README.md b/clients/play_integrity/README.md index 9931caf11a..d5dea36f85 100644 --- a/clients/play_integrity/README.md +++ b/clients/play_integrity/README.md @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding ```elixir def deps do - [{:google_api_play_integrity, "~> 0.11"}] + [{:google_api_play_integrity, "~> 0.12"}] end ``` diff --git a/clients/play_integrity/lib/google_api/play_integrity/v1/metadata.ex b/clients/play_integrity/lib/google_api/play_integrity/v1/metadata.ex index 55f7a20f6b..5ebab20bc6 100644 --- a/clients/play_integrity/lib/google_api/play_integrity/v1/metadata.ex +++ b/clients/play_integrity/lib/google_api/play_integrity/v1/metadata.ex @@ -20,7 +20,7 @@ defmodule GoogleApi.PlayIntegrity.V1 do API client metadata for GoogleApi.PlayIntegrity.V1. """ - @discovery_revision "20241119" + @discovery_revision "20241127" def discovery_revision(), do: @discovery_revision end diff --git a/clients/play_integrity/lib/google_api/play_integrity/v1/model/device_integrity.ex b/clients/play_integrity/lib/google_api/play_integrity/v1/model/device_integrity.ex index c8d2500fcc..0ff28d18d4 100644 --- a/clients/play_integrity/lib/google_api/play_integrity/v1/model/device_integrity.ex +++ b/clients/play_integrity/lib/google_api/play_integrity/v1/model/device_integrity.ex @@ -24,6 +24,7 @@ defmodule GoogleApi.PlayIntegrity.V1.Model.DeviceIntegrity do * `deviceAttributes` (*type:* `GoogleApi.PlayIntegrity.V1.Model.DeviceAttributes.t`, *default:* `nil`) - Attributes of the device where the integrity token was generated. * `deviceRecall` (*type:* `GoogleApi.PlayIntegrity.V1.Model.DeviceRecall.t`, *default:* `nil`) - Details about the device recall bits set by the developer. * `deviceRecognitionVerdict` (*type:* `list(String.t)`, *default:* `nil`) - Details about the integrity of the device the app is running on. + * `legacyDeviceRecognitionVerdict` (*type:* `list(String.t)`, *default:* `nil`) - Contains legacy details about the integrity of the device the app is running on. Only for devices with Android version T or higher and only for apps opted in to the new verdicts. Only available during the transition period to the new verdicts system and will be removed afterwards. * `recentDeviceActivity` (*type:* `GoogleApi.PlayIntegrity.V1.Model.RecentDeviceActivity.t`, *default:* `nil`) - Details about the device activity of the device the app is running on. """ @@ -33,12 +34,14 @@ defmodule GoogleApi.PlayIntegrity.V1.Model.DeviceIntegrity do :deviceAttributes => GoogleApi.PlayIntegrity.V1.Model.DeviceAttributes.t() | nil, :deviceRecall => GoogleApi.PlayIntegrity.V1.Model.DeviceRecall.t() | nil, :deviceRecognitionVerdict => list(String.t()) | nil, + :legacyDeviceRecognitionVerdict => list(String.t()) | nil, :recentDeviceActivity => GoogleApi.PlayIntegrity.V1.Model.RecentDeviceActivity.t() | nil } field(:deviceAttributes, as: GoogleApi.PlayIntegrity.V1.Model.DeviceAttributes) field(:deviceRecall, as: GoogleApi.PlayIntegrity.V1.Model.DeviceRecall) field(:deviceRecognitionVerdict, type: :list) + field(:legacyDeviceRecognitionVerdict, type: :list) field(:recentDeviceActivity, as: GoogleApi.PlayIntegrity.V1.Model.RecentDeviceActivity) end diff --git a/clients/play_integrity/mix.exs b/clients/play_integrity/mix.exs index 49d7d60e57..02ec49ce0e 100644 --- a/clients/play_integrity/mix.exs +++ b/clients/play_integrity/mix.exs @@ -18,7 +18,7 @@ defmodule GoogleApi.PlayIntegrity.Mixfile do use Mix.Project - @version "0.11.0" + @version "0.12.0" def project() do [