@maxim_mazurok/gapi.client.youtube-v3 0.1.20251204 → 0.1.20251218
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.
- package/index.d.ts +5 -7
- 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:
|
|
12
|
+
// Revision: 20251218
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2282,16 +2282,14 @@ declare namespace gapi.client {
|
|
|
2282
2282
|
contentDetails?: VideoStatsContentDetails;
|
|
2283
2283
|
/** Output only. Etag of this resource. */
|
|
2284
2284
|
etag?: string;
|
|
2285
|
+
/** Output only. The ID that YouTube uses to uniquely identify the video. */
|
|
2286
|
+
id?: string;
|
|
2285
2287
|
/** Output only. Identifies what kind of resource this is. Value: the fixed string "youtube#videoStats". */
|
|
2286
2288
|
kind?: string;
|
|
2287
|
-
/** Output only. Identifier. The resource name for the `VideoStats` resource, in the format `videoStats/{video_stat}`. */
|
|
2288
|
-
name?: string;
|
|
2289
2289
|
/** Output only. The VideoStatsSnippet object contains basic details about the video, such publish time. */
|
|
2290
2290
|
snippet?: VideoStatsSnippet;
|
|
2291
2291
|
/** Output only. The VideoStatsStatistics object contains statistics about the video. */
|
|
2292
2292
|
statistics?: VideoStatsStatistics;
|
|
2293
|
-
/** Output only. The ID that YouTube uses to uniquely identify the video. */
|
|
2294
|
-
videoId?: string;
|
|
2295
2293
|
}
|
|
2296
2294
|
interface VideoStatistics {
|
|
2297
2295
|
/** The number of comments for the video. */
|
|
@@ -6183,6 +6181,8 @@ declare namespace gapi.client {
|
|
|
6183
6181
|
callback?: string;
|
|
6184
6182
|
/** Selector specifying which fields to include in a partial response. */
|
|
6185
6183
|
fields?: string;
|
|
6184
|
+
/** Required. Return videos with the given ids. */
|
|
6185
|
+
id?: string | string[];
|
|
6186
6186
|
/** 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. */
|
|
6187
6187
|
key?: string;
|
|
6188
6188
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -6199,8 +6199,6 @@ declare namespace gapi.client {
|
|
|
6199
6199
|
upload_protocol?: string;
|
|
6200
6200
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6201
6201
|
uploadType?: string;
|
|
6202
|
-
/** Required. Return videos with the given ids. */
|
|
6203
|
-
videoIds?: string | string[];
|
|
6204
6202
|
}): Request<BatchGetStatsResponse>;
|
|
6205
6203
|
}
|
|
6206
6204
|
interface V3Resource {
|