Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/play_integrity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion clients/play_integrity/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.PlayIntegrity.Mixfile do
use Mix.Project

@version "0.11.0"
@version "0.12.0"

def project() do
[
Expand Down
Loading