From c1945e65cab0156e13bbce4b93fad32b47018ec3 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Tue, 17 Dec 2024 13:13:31 +0000 Subject: [PATCH] feat: Automated regeneration of AndroidPublisher client --- clients/android_publisher/README.md | 2 +- .../lib/google_api/android_publisher/v3/metadata.ex | 2 +- .../android_publisher/v3/model/auto_renewing_plan.ex | 6 +++++- clients/android_publisher/mix.exs | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/clients/android_publisher/README.md b/clients/android_publisher/README.md index fd77337519..74d7519cbf 100644 --- a/clients/android_publisher/README.md +++ b/clients/android_publisher/README.md @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding ```elixir def deps do - [{:google_api_android_publisher, "~> 0.41"}] + [{:google_api_android_publisher, "~> 0.42"}] end ``` diff --git a/clients/android_publisher/lib/google_api/android_publisher/v3/metadata.ex b/clients/android_publisher/lib/google_api/android_publisher/v3/metadata.ex index 946117c6b7..a14892bbf1 100644 --- a/clients/android_publisher/lib/google_api/android_publisher/v3/metadata.ex +++ b/clients/android_publisher/lib/google_api/android_publisher/v3/metadata.ex @@ -20,7 +20,7 @@ defmodule GoogleApi.AndroidPublisher.V3 do API client metadata for GoogleApi.AndroidPublisher.V3. """ - @discovery_revision "20241125" + @discovery_revision "20241216" def discovery_revision(), do: @discovery_revision end diff --git a/clients/android_publisher/lib/google_api/android_publisher/v3/model/auto_renewing_plan.ex b/clients/android_publisher/lib/google_api/android_publisher/v3/model/auto_renewing_plan.ex index 3334578a1a..c1131ff96d 100644 --- a/clients/android_publisher/lib/google_api/android_publisher/v3/model/auto_renewing_plan.ex +++ b/clients/android_publisher/lib/google_api/android_publisher/v3/model/auto_renewing_plan.ex @@ -24,6 +24,7 @@ defmodule GoogleApi.AndroidPublisher.V3.Model.AutoRenewingPlan do * `autoRenewEnabled` (*type:* `boolean()`, *default:* `nil`) - If the subscription is currently set to auto-renew, e.g. the user has not canceled the subscription * `installmentDetails` (*type:* `GoogleApi.AndroidPublisher.V3.Model.InstallmentPlan.t`, *default:* `nil`) - The installment plan commitment and state related info for the auto renewing plan. * `priceChangeDetails` (*type:* `GoogleApi.AndroidPublisher.V3.Model.SubscriptionItemPriceChangeDetails.t`, *default:* `nil`) - The information of the last price change for the item since subscription signup. + * `recurringPrice` (*type:* `GoogleApi.AndroidPublisher.V3.Model.Money.t`, *default:* `nil`) - The current recurring price of the auto renewing plan. """ use GoogleApi.Gax.ModelBase @@ -32,7 +33,8 @@ defmodule GoogleApi.AndroidPublisher.V3.Model.AutoRenewingPlan do :autoRenewEnabled => boolean() | nil, :installmentDetails => GoogleApi.AndroidPublisher.V3.Model.InstallmentPlan.t() | nil, :priceChangeDetails => - GoogleApi.AndroidPublisher.V3.Model.SubscriptionItemPriceChangeDetails.t() | nil + GoogleApi.AndroidPublisher.V3.Model.SubscriptionItemPriceChangeDetails.t() | nil, + :recurringPrice => GoogleApi.AndroidPublisher.V3.Model.Money.t() | nil } field(:autoRenewEnabled) @@ -41,6 +43,8 @@ defmodule GoogleApi.AndroidPublisher.V3.Model.AutoRenewingPlan do field(:priceChangeDetails, as: GoogleApi.AndroidPublisher.V3.Model.SubscriptionItemPriceChangeDetails ) + + field(:recurringPrice, as: GoogleApi.AndroidPublisher.V3.Model.Money) end defimpl Poison.Decoder, for: GoogleApi.AndroidPublisher.V3.Model.AutoRenewingPlan do diff --git a/clients/android_publisher/mix.exs b/clients/android_publisher/mix.exs index f28b903b6f..528c50cb08 100644 --- a/clients/android_publisher/mix.exs +++ b/clients/android_publisher/mix.exs @@ -18,7 +18,7 @@ defmodule GoogleApi.AndroidPublisher.Mixfile do use Mix.Project - @version "0.41.0" + @version "0.42.0" def project() do [