File tree Expand file tree Collapse file tree 2 files changed +49
-2
lines changed Expand file tree Collapse file tree 2 files changed +49
-2
lines changed Original file line number Diff line number Diff line change 2313
2313
"flatPath" : " youtube/v3/playlistImages" ,
2314
2314
"httpMethod" : " PUT" ,
2315
2315
"id" : " youtube.playlistImages.update" ,
2316
+ "mediaUpload" : {
2317
+ "accept" : [
2318
+ " image/jpeg" ,
2319
+ " image/png" ,
2320
+ " application/octet-stream"
2321
+ ],
2322
+ "maxSize" : " 2097152" ,
2323
+ "protocols" : {
2324
+ "resumable" : {
2325
+ "multipart" : true ,
2326
+ "path" : " /resumable/upload/youtube/v3/playlistImages"
2327
+ },
2328
+ "simple" : {
2329
+ "multipart" : true ,
2330
+ "path" : " /upload/youtube/v3/playlistImages"
2331
+ }
2332
+ }
2333
+ },
2316
2334
"parameterOrder" : [],
2317
2335
"parameters" : {
2318
2336
"onBehalfOfContentOwner" : {
2338
2356
" https://www.googleapis.com/auth/youtube" ,
2339
2357
" https://www.googleapis.com/auth/youtube.force-ssl" ,
2340
2358
" https://www.googleapis.com/auth/youtubepartner"
2341
- ]
2359
+ ],
2360
+ "supportsMediaUpload" : true
2342
2361
}
2343
2362
}
2344
2363
},
4018
4037
}
4019
4038
}
4020
4039
},
4021
- "revision" : " 20240226 " ,
4040
+ "revision" : " 20240312 " ,
4022
4041
"rootUrl" : " https://youtube.googleapis.com/" ,
4023
4042
"schemas" : {
4024
4043
"AbuseReport" : {
5337
5356
"type" : " string"
5338
5357
},
5339
5358
"moderateComments" : {
5359
+ "deprecated" : true ,
5340
5360
"description" : " Whether user-submitted comments left on the channel page need to be approved by the channel owner to be publicly visible." ,
5341
5361
"type" : " boolean"
5342
5362
},
8725
8745
"LiveChatMessageListResponse" : {
8726
8746
"id" : " LiveChatMessageListResponse" ,
8727
8747
"properties" : {
8748
+ "activePollItem" : {
8749
+ "$ref" : " LiveChatMessage" ,
8750
+ "description" : " Set when there is an active poll."
8751
+ },
8728
8752
"etag" : {
8729
8753
"description" : " Etag of this resource." ,
8730
8754
"type" : " string"
Original file line number Diff line number Diff line change @@ -2418,6 +2418,10 @@ export namespace youtube_v3 {
2418
2418
deletedMessageId?: string | null;
2419
2419
}
2420
2420
export interface Schema$LiveChatMessageListResponse {
2421
+ /**
2422
+ * Set when there is an active poll.
2423
+ */
2424
+ activePollItem?: Schema$LiveChatMessage;
2421
2425
/**
2422
2426
* Etag of this resource.
2423
2427
*/
@@ -10010,6 +10014,10 @@ export namespace youtube_v3 {
10010
10014
options
10011
10015
),
10012
10016
params,
10017
+ mediaUrl: (rootUrl + '/upload/youtube/v3/playlistImages').replace(
10018
+ /([^:]\/)\/+/g,
10019
+ '$1'
10020
+ ),
10013
10021
requiredParams: [],
10014
10022
pathParams: [],
10015
10023
context: this.context,
@@ -10113,6 +10121,21 @@ export namespace youtube_v3 {
10113
10121
* Request body metadata
10114
10122
*/
10115
10123
requestBody?: Schema$PlaylistImage;
10124
+
10125
+ /**
10126
+ * Media metadata
10127
+ */
10128
+ media?: {
10129
+ /**
10130
+ * Media mime-type
10131
+ */
10132
+ mimeType?: string;
10133
+
10134
+ /**
10135
+ * Media body contents
10136
+ */
10137
+ body?: any;
10138
+ };
10116
10139
}
10117
10140
10118
10141
export class Resource$Playlistitems {
You can’t perform that action at this time.
0 commit comments