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 MerchantAPI client #12607

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.MerchantAPI.Reports_v1beta do
API client metadata for GoogleApi.MerchantAPI.Reports_v1beta.
"""

@discovery_revision "20241022"
@discovery_revision "20241119"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defmodule GoogleApi.MerchantAPI.Reports_v1beta.Model.ProductStatusChangeMessage
* `account` (*type:* `String.t`, *default:* `nil`) - The target account that owns the entity that changed. Format : `accounts/{merchant_id}`
* `attribute` (*type:* `String.t`, *default:* `nil`) - The attribute in the resource that changed, in this case it will be always `Status`.
* `changes` (*type:* `list(GoogleApi.MerchantAPI.Reports_v1beta.Model.ProductChange.t)`, *default:* `nil`) - A message to describe the change that happened to the product
* `expirationTime` (*type:* `DateTime.t`, *default:* `nil`) - The product expiration time.
* `expirationTime` (*type:* `DateTime.t`, *default:* `nil`) - The product expiration time. This field will not bet set if the notification is sent for a product deletion event.
* `managingAccount` (*type:* `String.t`, *default:* `nil`) - The account that manages the merchant's account. can be the same as merchant id if it is standalone account. Format : `accounts/{service_provider_id}`
* `resource` (*type:* `String.t`, *default:* `nil`) - The product name. Format: `{product.name=accounts/{account}/products/{product}}`
* `resourceId` (*type:* `String.t`, *default:* `nil`) - The product id.
Expand Down
2 changes: 1 addition & 1 deletion clients/merchant_api/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.MerchantAPI.Mixfile do
use Mix.Project

@version "0.4.0"
@version "0.4.1"

def project() do
[
Expand Down
Loading