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 YouTube client #12888

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/you_tube/lib/google_api/you_tube/v3/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.YouTube.V3 do
API client metadata for GoogleApi.YouTube.V3.
"""

@discovery_revision "20250122"
@discovery_revision "20250128"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ defmodule GoogleApi.YouTube.V3.Model.ChannelStatus do

## Attributes

* `isChannelMonetizationEnabled` (*type:* `boolean()`, *default:* `nil`) - Whether the channel is considered ypp monetization enabled. See go/yppornot for more details.
* `isLinked` (*type:* `boolean()`, *default:* `nil`) - If true, then the user is linked to either a YouTube username or G+ account. Otherwise, the user doesn't have a public YouTube identity.
* `longUploadsStatus` (*type:* `String.t`, *default:* `nil`) - The long uploads status of this channel. See https://support.google.com/youtube/answer/71673 for more information.
* `madeForKids` (*type:* `boolean()`, *default:* `nil`) -
Expand All @@ -31,13 +32,15 @@ defmodule GoogleApi.YouTube.V3.Model.ChannelStatus do
use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:isChannelMonetizationEnabled => boolean() | nil,
:isLinked => boolean() | nil,
:longUploadsStatus => String.t() | nil,
:madeForKids => boolean() | nil,
:privacyStatus => String.t() | nil,
:selfDeclaredMadeForKids => boolean() | nil
}

field(:isChannelMonetizationEnabled)
field(:isLinked)
field(:longUploadsStatus)
field(:madeForKids)
Expand Down
Loading