Skip to content

Commit 3d838e7

Browse files
yoshi-automationsofisl
authored andcommitted
feat(youtube): update the API
#### youtube:v3 The following keys were added: - schemas.PlaylistStatus.properties.podcastStatus.description - schemas.PlaylistStatus.properties.podcastStatus.enum - schemas.PlaylistStatus.properties.podcastStatus.enumDescriptions - schemas.PlaylistStatus.properties.podcastStatus.type The following keys were changed: - resources.liveChatMessages.methods.list.parameters.part.description
1 parent 4b60597 commit 3d838e7

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

discovery/youtube-v3.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1770,7 +1770,7 @@
17701770
"type": "string"
17711771
},
17721772
"part": {
1773-
"description": "The *part* parameter specifies the liveChatComment resource parts that the API response will include. Supported values are id and snippet.",
1773+
"description": "The *part* parameter specifies the liveChatComment resource parts that the API response will include. Supported values are id, snippet, and authorDetails.",
17741774
"location": "query",
17751775
"repeated": true,
17761776
"required": true,
@@ -4072,7 +4072,7 @@
40724072
}
40734073
}
40744074
},
4075-
"revision": "20240529",
4075+
"revision": "20240814",
40764076
"rootUrl": "https://youtube.googleapis.com/",
40774077
"schemas": {
40784078
"AbuseReport": {
@@ -10259,6 +10259,18 @@
1025910259
"PlaylistStatus": {
1026010260
"id": "PlaylistStatus",
1026110261
"properties": {
10262+
"podcastStatus": {
10263+
"description": "The playlist's podcast status.",
10264+
"enum": [
10265+
"enabled",
10266+
"disabled"
10267+
],
10268+
"enumDescriptions": [
10269+
"",
10270+
""
10271+
],
10272+
"type": "string"
10273+
},
1026210274
"privacyStatus": {
1026310275
"description": "The playlist's privacy status.",
1026410276
"enum": [

src/apis/youtube/v3.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3351,6 +3351,10 @@ export namespace youtube_v3 {
33513351
title?: string | null;
33523352
}
33533353
export interface Schema$PlaylistStatus {
3354+
/**
3355+
* The playlist's podcast status.
3356+
*/
3357+
podcastStatus?: string | null;
33543358
/**
33553359
* The playlist's privacy status.
33563360
*/
@@ -8786,7 +8790,7 @@ export namespace youtube_v3 {
87868790
*/
87878791
pageToken?: string;
87888792
/**
8789-
* The *part* parameter specifies the liveChatComment resource parts that the API response will include. Supported values are id and snippet.
8793+
* The *part* parameter specifies the liveChatComment resource parts that the API response will include. Supported values are id, snippet, and authorDetails.
87908794
*/
87918795
part?: string[];
87928796
/**

0 commit comments

Comments
 (0)