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 AuthorizedBuyersMarketplace client #12779

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/authorized_buyers_marketplace/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_authorized_buyers_marketplace, "~> 0.6"}]
[{:google_api_authorized_buyers_marketplace, "~> 0.7"}]
end
```

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

@discovery_revision "20241120"
@discovery_revision "20250107"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ defmodule GoogleApi.AuthorizedBuyersMarketplace.V1.Model.AuctionPackage do

* `createTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. Time the auction package was created.
* `creator` (*type:* `String.t`, *default:* `nil`) - Output only. The buyer that created this auction package. Format: `buyers/{buyerAccountId}`
* `dealOwnerSeatId` (*type:* `String.t`, *default:* `nil`) - Output only. If set, this field contains the DSP specific seat id set by the media planner account that is considered the owner of this deal. The seat ID is in the calling DSP's namespace.
* `description` (*type:* `String.t`, *default:* `nil`) - Output only. A description of the auction package.
* `displayName` (*type:* `String.t`, *default:* `nil`) - The display_name assigned to the auction package.
* `eligibleSeatIds` (*type:* `list(String.t)`, *default:* `nil`) - Output only. If set, this field contains the list of DSP specific seat ids set by media planners that are eligible to transact on this deal. The seat ID is in the calling DSP's namespace.
* `eligibleSeatIds` (*type:* `list(String.t)`, *default:* `nil`) - Output only. If set, this field identifies a seat that the media planner selected as the owner of this auction package. This is a seat ID in the DSP's namespace that was provided to the media planner.
* `name` (*type:* `String.t`, *default:* `nil`) - Immutable. The unique identifier for the auction package. Format: `buyers/{accountId}/auctionPackages/{auctionPackageId}` The auction_package_id part of name is sent in the BidRequest to all RTB bidders and is returned as deal_id by the bidder in the BidResponse.
* `subscribedBuyers` (*type:* `list(String.t)`, *default:* `nil`) - Output only. The list of buyers that are subscribed to the AuctionPackage. This field is only populated when calling as a bidder. Format: `buyers/{buyerAccountId}`
* `subscribedClients` (*type:* `list(String.t)`, *default:* `nil`) - Output only. When calling as a buyer, the list of clients of the current buyer that are subscribed to the AuctionPackage. When calling as a bidder, the list of clients that are subscribed to the AuctionPackage owned by the bidder or its buyers. Format: `buyers/{buyerAccountId}/clients/{clientAccountId}`
Expand All @@ -38,6 +39,7 @@ defmodule GoogleApi.AuthorizedBuyersMarketplace.V1.Model.AuctionPackage do
@type t :: %__MODULE__{
:createTime => DateTime.t() | nil,
:creator => String.t() | nil,
:dealOwnerSeatId => String.t() | nil,
:description => String.t() | nil,
:displayName => String.t() | nil,
:eligibleSeatIds => list(String.t()) | nil,
Expand All @@ -51,6 +53,7 @@ defmodule GoogleApi.AuthorizedBuyersMarketplace.V1.Model.AuctionPackage do

field(:createTime, as: DateTime)
field(:creator)
field(:dealOwnerSeatId)
field(:description)
field(:displayName)
field(:eligibleSeatIds, type: :list)
Expand Down
2 changes: 1 addition & 1 deletion clients/authorized_buyers_marketplace/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.AuthorizedBuyersMarketplace.Mixfile do
use Mix.Project

@version "0.6.2"
@version "0.7.0"

def project() do
[
Expand Down
Loading