Skip to content

Commit

Permalink
feat: Automated regeneration of WalletObjects client (#12533)
Browse files Browse the repository at this point in the history
Auto-created at 2024-11-15 13:18:34 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Nov 18, 2024
1 parent 9f17f5c commit 2ff1d13
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clients/wallet_objects/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_wallet_objects, "~> 0.9"}]
[{:google_api_wallet_objects, "~> 0.10"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.WalletObjects.V1 do
API client metadata for GoogleApi.WalletObjects.V1.
"""

@discovery_revision "20241017"
@discovery_revision "20241114"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ defmodule GoogleApi.WalletObjects.V1.Model.AppLinkData do
## Attributes
* `androidAppLinkInfo` (*type:* `GoogleApi.WalletObjects.V1.Model.AppLinkDataAppLinkInfo.t`, *default:* `nil`) - Optional information about the partner app link.
* `displayText` (*type:* `GoogleApi.WalletObjects.V1.Model.LocalizedString.t`, *default:* `nil`) - Optional display text for the app link button. Character limit is 30.
* `iosAppLinkInfo` (*type:* `GoogleApi.WalletObjects.V1.Model.AppLinkDataAppLinkInfo.t`, *default:* `nil`) - Deprecated. Links to open iOS apps are not supported.
* `webAppLinkInfo` (*type:* `GoogleApi.WalletObjects.V1.Model.AppLinkDataAppLinkInfo.t`, *default:* `nil`) - Optional information about the partner web link.
"""
Expand All @@ -31,11 +32,13 @@ defmodule GoogleApi.WalletObjects.V1.Model.AppLinkData do
@type t :: %__MODULE__{
:androidAppLinkInfo =>
GoogleApi.WalletObjects.V1.Model.AppLinkDataAppLinkInfo.t() | nil,
:displayText => GoogleApi.WalletObjects.V1.Model.LocalizedString.t() | nil,
:iosAppLinkInfo => GoogleApi.WalletObjects.V1.Model.AppLinkDataAppLinkInfo.t() | nil,
:webAppLinkInfo => GoogleApi.WalletObjects.V1.Model.AppLinkDataAppLinkInfo.t() | nil
}

field(:androidAppLinkInfo, as: GoogleApi.WalletObjects.V1.Model.AppLinkDataAppLinkInfo)
field(:displayText, as: GoogleApi.WalletObjects.V1.Model.LocalizedString)
field(:iosAppLinkInfo, as: GoogleApi.WalletObjects.V1.Model.AppLinkDataAppLinkInfo)
field(:webAppLinkInfo, as: GoogleApi.WalletObjects.V1.Model.AppLinkDataAppLinkInfo)
end
Expand Down
2 changes: 1 addition & 1 deletion clients/wallet_objects/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.WalletObjects.Mixfile do
use Mix.Project

@version "0.9.0"
@version "0.10.0"

def project() do
[
Expand Down

0 comments on commit 2ff1d13

Please sign in to comment.