Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of AdMob client #10890

Merged
Merged
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/ad_mob/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_ad_mob, "~> 0.9"}]
[{:google_api_ad_mob, "~> 0.10"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion clients/ad_mob/lib/google_api/ad_mob/v1/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.AdMob.V1 do
API client metadata for GoogleApi.AdMob.V1.
"""

@discovery_revision "20221026"
@discovery_revision "20240311"

def discovery_revision(), do: @discovery_revision
end
3 changes: 3 additions & 0 deletions clients/ad_mob/lib/google_api/ad_mob/v1/model/app.ex
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ defmodule GoogleApi.AdMob.V1.Model.App do

## Attributes

* `appApprovalState` (*type:* `String.t`, *default:* `nil`) - Output only. The approval state for the app. The field is read-only.
* `appId` (*type:* `String.t`, *default:* `nil`) - The externally visible ID of the app which can be used to integrate with the AdMob SDK. This is a read only property. Example: ca-app-pub-9876543210987654~0123456789
* `linkedAppInfo` (*type:* `GoogleApi.AdMob.V1.Model.AppLinkedAppInfo.t`, *default:* `nil`) - Immutable. The information for an app that is linked to an app store. This field is present if and only if the app is linked to an app store.
* `manualAppInfo` (*type:* `GoogleApi.AdMob.V1.Model.AppManualAppInfo.t`, *default:* `nil`) - The information for an app that is not linked to any app store. After an app is linked, this information is still retrivable. If no name is provided for the app upon creation, a placeholder name will be used.
Expand All @@ -31,13 +32,15 @@ defmodule GoogleApi.AdMob.V1.Model.App do
use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:appApprovalState => String.t() | nil,
:appId => String.t() | nil,
:linkedAppInfo => GoogleApi.AdMob.V1.Model.AppLinkedAppInfo.t() | nil,
:manualAppInfo => GoogleApi.AdMob.V1.Model.AppManualAppInfo.t() | nil,
:name => String.t() | nil,
:platform => String.t() | nil
}

field(:appApprovalState)
field(:appId)
field(:linkedAppInfo, as: GoogleApi.AdMob.V1.Model.AppLinkedAppInfo)
field(:manualAppInfo, as: GoogleApi.AdMob.V1.Model.AppManualAppInfo)
Expand Down
2 changes: 1 addition & 1 deletion clients/ad_mob/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.AdMob.Mixfile do
use Mix.Project

@version "0.9.4"
@version "0.10.0"

def project() do
[
Expand Down
Loading