@maxim_mazurok/gapi.client.youtube-v3 0.0.20250710 → 0.0.20250715

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.
Files changed (2) hide show
  1. package/index.d.ts +44 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://youtube.googleapis.com/$discovery/rest?version=v3
12
- // Revision: 20250710
12
+ // Revision: 20250715
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -6088,6 +6088,48 @@ declare namespace gapi.client {
6088
6088
  uploadType?: string;
6089
6089
  }): Request<void>;
6090
6090
  }
6091
+ interface MessagesResource {
6092
+ /** Allows a user to load live chat through a server-streamed RPC. */
6093
+ stream(request?: {
6094
+ /** V1 error format. */
6095
+ '$.xgafv'?: string;
6096
+ /** OAuth access token. */
6097
+ access_token?: string;
6098
+ /** Data format for response. */
6099
+ alt?: string;
6100
+ /** JSONP */
6101
+ callback?: string;
6102
+ /** Selector specifying which fields to include in a partial response. */
6103
+ fields?: string;
6104
+ /** Specifies the localization language in which the system messages should be returned. */
6105
+ hl?: string;
6106
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
6107
+ key?: string;
6108
+ /** The id of the live chat for which comments should be returned. */
6109
+ liveChatId?: string;
6110
+ /** The *maxResults* parameter specifies the maximum number of items that should be returned in the result set. Not used in the streaming RPC. */
6111
+ maxResults?: number;
6112
+ /** OAuth 2.0 token for the current user. */
6113
+ oauth_token?: string;
6114
+ /** The *pageToken* parameter identifies a specific page in the result set that should be returned. In an API response, the nextPageToken property identify other pages that could be retrieved. */
6115
+ pageToken?: string;
6116
+ /** The *part* parameter specifies the liveChatComment resource parts that the API response will include. Supported values are id, snippet, and authorDetails. */
6117
+ part?: string | string[];
6118
+ /** Returns response with indentations and line breaks. */
6119
+ prettyPrint?: boolean;
6120
+ /** Specifies the size of the profile image that should be returned for each user. */
6121
+ profileImageSize?: number;
6122
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
6123
+ quotaUser?: string;
6124
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6125
+ upload_protocol?: string;
6126
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6127
+ uploadType?: string;
6128
+ }): Request<LiveChatMessageListResponse>;
6129
+ }
6130
+ interface LiveChatResource {
6131
+ messages: MessagesResource;
6132
+ }
6091
6133
  interface V3Resource {
6092
6134
  /** Updates an existing resource. */
6093
6135
  updateCommentThreads(request: {
@@ -6147,6 +6189,7 @@ declare namespace gapi.client {
6147
6189
  },
6148
6190
  body: CommentThread,
6149
6191
  ): Request<CommentThread>;
6192
+ liveChat: LiveChatResource;
6150
6193
  }
6151
6194
  interface YoutubeResource {
6152
6195
  v3: V3Resource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.youtube-v3",
3
- "version": "0.0.20250710",
3
+ "version": "0.0.20250715",
4
4
  "description": "TypeScript typings for YouTube Data API v3 v3",
5
5
  "repository": {
6
6
  "type": "git",