google-apis-youtube_v3 0.56.0 → 0.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e9d09c0a776b4946a8332d3f760d9f3dd1619f805950c3b08ffdd50dc3aff572
4
- data.tar.gz: ac0a7f672fd1f399f7636a037c46d906b290bee4446c75edabd5dfc3c3b20c42
3
+ metadata.gz: 65f5728729c027ad8d48532d9d34d5f505214e01ab24cec299b3cee85a7be2e5
4
+ data.tar.gz: 72e423350cf43f687117f2329b09fda738ac91ada832eae941f39c68634ab202
5
5
  SHA512:
6
- metadata.gz: fdb9680d60dd3a2eea4785c645225b68997267b1267d3013a25bd851d78a6a84625af73bfe2f16cb05b5e5dbe66c4d61b41efa91ad8549d60dd52329794994d8
7
- data.tar.gz: d0e3906a2fdebec11ad5f855ab097adbfc455bc25c77f2d0edc2ef87aa5a1f8c4a454acdc70fb0875ebd821df78232e33b64edc6f23e5e51bc11647808338ed5
6
+ metadata.gz: b3613875df7c1c40f8e5f8c65042ee9b2aab58f44e5822837b32a47965c6ee210ad85e42fa3fb71add3f96b96257b1cc2ce730eb88ddedd6c2b755bba3cc9ca2
7
+ data.tar.gz: ecbb93d6bf9a7d841d571c5a6c9cbf6ccd40b567713e016cfa7c2d3b383104e0404e31af82e039e2a0bc40e9c2996061a6ad32d3858137f66917d9d05a49e6ab
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-youtube_v3
2
2
 
3
+ ### v0.57.0 (2025-07-20)
4
+
5
+ * Regenerated from discovery document revision 20250714
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.56.0 (2025-05-04)
4
9
 
5
10
  * Regenerated from discovery document revision 20250422
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module YoutubeV3
18
18
  # Version of the google-apis-youtube_v3 gem
19
- GEM_VERSION = "0.56.0"
19
+ GEM_VERSION = "0.57.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250422"
25
+ REVISION = "20250714"
26
26
  end
27
27
  end
28
28
  end
@@ -4192,6 +4192,56 @@ module Google
4192
4192
  command.query['quotaUser'] = quota_user unless quota_user.nil?
4193
4193
  execute_or_queue_command(command, &block)
4194
4194
  end
4195
+
4196
+ # Allows a user to load live chat through a server-streamed RPC.
4197
+ # @param [String] hl
4198
+ # Specifies the localization language in which the system messages should be
4199
+ # returned.
4200
+ # @param [String] live_chat_id
4201
+ # The id of the live chat for which comments should be returned.
4202
+ # @param [Fixnum] max_results
4203
+ # The *maxResults* parameter specifies the maximum number of items that should
4204
+ # be returned in the result set. Not used in the streaming RPC.
4205
+ # @param [String] page_token
4206
+ # The *pageToken* parameter identifies a specific page in the result set that
4207
+ # should be returned. In an API response, the nextPageToken property identify
4208
+ # other pages that could be retrieved.
4209
+ # @param [Array<String>, String] part
4210
+ # The *part* parameter specifies the liveChatComment resource parts that the API
4211
+ # response will include. Supported values are id, snippet, and authorDetails.
4212
+ # @param [Fixnum] profile_image_size
4213
+ # Specifies the size of the profile image that should be returned for each user.
4214
+ # @param [String] fields
4215
+ # Selector specifying which fields to include in a partial response.
4216
+ # @param [String] quota_user
4217
+ # Available to use for quota purposes for server-side applications. Can be any
4218
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4219
+ # @param [Google::Apis::RequestOptions] options
4220
+ # Request-specific options
4221
+ #
4222
+ # @yield [result, err] Result & error if block supplied
4223
+ # @yieldparam result [Google::Apis::YoutubeV3::LiveChatMessageListResponse] parsed result object
4224
+ # @yieldparam err [StandardError] error object if request failed
4225
+ #
4226
+ # @return [Google::Apis::YoutubeV3::LiveChatMessageListResponse]
4227
+ #
4228
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4229
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4230
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4231
+ def stream_youtube_v3_live_chat_message(hl: nil, live_chat_id: nil, max_results: nil, page_token: nil, part: nil, profile_image_size: nil, fields: nil, quota_user: nil, options: nil, &block)
4232
+ command = make_simple_command(:get, 'youtube/v3/liveChat/messages/stream', options)
4233
+ command.response_representation = Google::Apis::YoutubeV3::LiveChatMessageListResponse::Representation
4234
+ command.response_class = Google::Apis::YoutubeV3::LiveChatMessageListResponse
4235
+ command.query['hl'] = hl unless hl.nil?
4236
+ command.query['liveChatId'] = live_chat_id unless live_chat_id.nil?
4237
+ command.query['maxResults'] = max_results unless max_results.nil?
4238
+ command.query['pageToken'] = page_token unless page_token.nil?
4239
+ command.query['part'] = part unless part.nil?
4240
+ command.query['profileImageSize'] = profile_image_size unless profile_image_size.nil?
4241
+ command.query['fields'] = fields unless fields.nil?
4242
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4243
+ execute_or_queue_command(command, &block)
4244
+ end
4195
4245
 
4196
4246
  protected
4197
4247
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-youtube_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.56.0
4
+ version: 0.57.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-youtube_v3/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-youtube_v3/v0.56.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-youtube_v3/v0.57.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-youtube_v3
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for YouTube Data API v3 V3
79
79
  test_files: []