Skip to content

Commit ddbfec5

Browse files
feat: Automated regeneration of AndroidPublisher client (#12732)
Auto-created at 2024-12-17 13:13:31 +0000 using the toys pull request generator.
1 parent 365a9c8 commit ddbfec5

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.41"}]
14+
[{:google_api_android_publisher, "~> 0.42"}]
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 "20241125"
23+
@discovery_revision "20241216"
2424

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

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ defmodule GoogleApi.AndroidPublisher.V3.Model.AutoRenewingPlan do
2424
* `autoRenewEnabled` (*type:* `boolean()`, *default:* `nil`) - If the subscription is currently set to auto-renew, e.g. the user has not canceled the subscription
2525
* `installmentDetails` (*type:* `GoogleApi.AndroidPublisher.V3.Model.InstallmentPlan.t`, *default:* `nil`) - The installment plan commitment and state related info for the auto renewing plan.
2626
* `priceChangeDetails` (*type:* `GoogleApi.AndroidPublisher.V3.Model.SubscriptionItemPriceChangeDetails.t`, *default:* `nil`) - The information of the last price change for the item since subscription signup.
27+
* `recurringPrice` (*type:* `GoogleApi.AndroidPublisher.V3.Model.Money.t`, *default:* `nil`) - The current recurring price of the auto renewing plan.
2728
"""
2829

2930
use GoogleApi.Gax.ModelBase
@@ -32,7 +33,8 @@ defmodule GoogleApi.AndroidPublisher.V3.Model.AutoRenewingPlan do
3233
:autoRenewEnabled => boolean() | nil,
3334
:installmentDetails => GoogleApi.AndroidPublisher.V3.Model.InstallmentPlan.t() | nil,
3435
:priceChangeDetails =>
35-
GoogleApi.AndroidPublisher.V3.Model.SubscriptionItemPriceChangeDetails.t() | nil
36+
GoogleApi.AndroidPublisher.V3.Model.SubscriptionItemPriceChangeDetails.t() | nil,
37+
:recurringPrice => GoogleApi.AndroidPublisher.V3.Model.Money.t() | nil
3638
}
3739

3840
field(:autoRenewEnabled)
@@ -41,6 +43,8 @@ defmodule GoogleApi.AndroidPublisher.V3.Model.AutoRenewingPlan do
4143
field(:priceChangeDetails,
4244
as: GoogleApi.AndroidPublisher.V3.Model.SubscriptionItemPriceChangeDetails
4345
)
46+
47+
field(:recurringPrice, as: GoogleApi.AndroidPublisher.V3.Model.Money)
4448
end
4549

4650
defimpl Poison.Decoder, for: GoogleApi.AndroidPublisher.V3.Model.AutoRenewingPlan 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.41.0"
21+
@version "0.42.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)