Skip to content

Commit 39992bf

Browse files
feat: Automated regeneration of YouTube client (googleapis#12458)
Auto-created at 2024-11-02 13:11:30 +0000 using the toys pull request generator.
1 parent 2b13da6 commit 39992bf

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

clients/you_tube/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111

1212
```elixir
1313
def deps do
14-
[{:google_api_you_tube, "~> 0.50"}]
14+
[{:google_api_you_tube, "~> 0.51"}]
1515
end
1616
```
1717

clients/you_tube/lib/google_api/you_tube/v3/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.YouTube.V3 do
2020
API client metadata for GoogleApi.YouTube.V3.
2121
"""
2222

23-
@discovery_revision "20241030"
23+
@discovery_revision "20241031"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/you_tube/lib/google_api/you_tube/v3/model/video_status.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ defmodule GoogleApi.YouTube.V3.Model.VideoStatus do
2121
2222
## Attributes
2323
24+
* `containsSyntheticMedia` (*type:* `boolean()`, *default:* `nil`) - Indicates if the video contains altered or synthetic media.
2425
* `embeddable` (*type:* `boolean()`, *default:* `nil`) - This value indicates if the video can be embedded on another website. @mutable youtube.videos.insert youtube.videos.update
2526
* `failureReason` (*type:* `String.t`, *default:* `nil`) - This value explains why a video failed to upload. This property is only present if the uploadStatus property indicates that the upload failed.
2627
* `license` (*type:* `String.t`, *default:* `nil`) - The video's license. @mutable youtube.videos.insert youtube.videos.update
@@ -36,6 +37,7 @@ defmodule GoogleApi.YouTube.V3.Model.VideoStatus do
3637
use GoogleApi.Gax.ModelBase
3738

3839
@type t :: %__MODULE__{
40+
:containsSyntheticMedia => boolean() | nil,
3941
:embeddable => boolean() | nil,
4042
:failureReason => String.t() | nil,
4143
:license => String.t() | nil,
@@ -48,6 +50,7 @@ defmodule GoogleApi.YouTube.V3.Model.VideoStatus do
4850
:uploadStatus => String.t() | nil
4951
}
5052

53+
field(:containsSyntheticMedia)
5154
field(:embeddable)
5255
field(:failureReason)
5356
field(:license)

clients/you_tube/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.YouTube.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.50.1"
21+
@version "0.51.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)