Skip to content

Commit 972c709

Browse files
feat: Automated regeneration of AndroidPublisher client (#13057)
Auto-created at 2025-02-28 13:17:42 +0000 using the toys pull request generator.
1 parent cbe0569 commit 972c709

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

clients/android_publisher/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_android_publisher, "~> 0.42"}]
14+
[{:google_api_android_publisher, "~> 0.43"}]
1515
end
1616
```
1717

clients/android_publisher/lib/google_api/android_publisher/v3/metadata.ex

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

23-
@discovery_revision "20250102"
23+
@discovery_revision "20250227"
2424

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

clients/android_publisher/lib/google_api/android_publisher/v3/model/convert_region_prices_response.ex

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ defmodule GoogleApi.AndroidPublisher.V3.Model.ConvertRegionPricesResponse do
2323
2424
* `convertedOtherRegionsPrice` (*type:* `GoogleApi.AndroidPublisher.V3.Model.ConvertedOtherRegionsPrice.t`, *default:* `nil`) - Converted other regions prices in USD and EUR, to use for countries where Play doesn't support a country's local currency.
2525
* `convertedRegionPrices` (*type:* `%{optional(String.t) => GoogleApi.AndroidPublisher.V3.Model.ConvertedRegionPrice.t}`, *default:* `nil`) - Map from region code to converted region price.
26+
* `regionVersion` (*type:* `GoogleApi.AndroidPublisher.V3.Model.RegionsVersion.t`, *default:* `nil`) - The region version at which the prices were generated.
2627
"""
2728

2829
use GoogleApi.Gax.ModelBase
@@ -34,7 +35,8 @@ defmodule GoogleApi.AndroidPublisher.V3.Model.ConvertRegionPricesResponse do
3435
%{
3536
optional(String.t()) => GoogleApi.AndroidPublisher.V3.Model.ConvertedRegionPrice.t()
3637
}
37-
| nil
38+
| nil,
39+
:regionVersion => GoogleApi.AndroidPublisher.V3.Model.RegionsVersion.t() | nil
3840
}
3941

4042
field(:convertedOtherRegionsPrice,
@@ -45,6 +47,8 @@ defmodule GoogleApi.AndroidPublisher.V3.Model.ConvertRegionPricesResponse do
4547
as: GoogleApi.AndroidPublisher.V3.Model.ConvertedRegionPrice,
4648
type: :map
4749
)
50+
51+
field(:regionVersion, as: GoogleApi.AndroidPublisher.V3.Model.RegionsVersion)
4852
end
4953

5054
defimpl Poison.Decoder, for: GoogleApi.AndroidPublisher.V3.Model.ConvertRegionPricesResponse do

clients/android_publisher/mix.exs

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

21-
@version "0.42.1"
21+
@version "0.43.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)