Skip to content

Commit

Permalink
feat(youtube): update the API
Browse files Browse the repository at this point in the history
#### 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
  • Loading branch information
yoshi-automation authored and sofisl committed Aug 27, 2024
1 parent 4b60597 commit 3d838e7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
16 changes: 14 additions & 2 deletions discovery/youtube-v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -1770,7 +1770,7 @@
"type": "string"
},
"part": {
"description": "The *part* parameter specifies the liveChatComment resource parts that the API response will include. Supported values are id and snippet.",
"description": "The *part* parameter specifies the liveChatComment resource parts that the API response will include. Supported values are id, snippet, and authorDetails.",
"location": "query",
"repeated": true,
"required": true,
Expand Down Expand Up @@ -4072,7 +4072,7 @@
}
}
},
"revision": "20240529",
"revision": "20240814",
"rootUrl": "https://youtube.googleapis.com/",
"schemas": {
"AbuseReport": {
Expand Down Expand Up @@ -10259,6 +10259,18 @@
"PlaylistStatus": {
"id": "PlaylistStatus",
"properties": {
"podcastStatus": {
"description": "The playlist's podcast status.",
"enum": [
"enabled",
"disabled"
],
"enumDescriptions": [
"",
""
],
"type": "string"
},
"privacyStatus": {
"description": "The playlist's privacy status.",
"enum": [
Expand Down
6 changes: 5 additions & 1 deletion src/apis/youtube/v3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3351,6 +3351,10 @@ export namespace youtube_v3 {
title?: string | null;
}
export interface Schema$PlaylistStatus {
/**
* The playlist's podcast status.
*/
podcastStatus?: string | null;
/**
* The playlist's privacy status.
*/
Expand Down Expand Up @@ -8786,7 +8790,7 @@ export namespace youtube_v3 {
*/
pageToken?: string;
/**
* The *part* parameter specifies the liveChatComment resource parts that the API response will include. Supported values are id and snippet.
* The *part* parameter specifies the liveChatComment resource parts that the API response will include. Supported values are id, snippet, and authorDetails.
*/
part?: string[];
/**
Expand Down

0 comments on commit 3d838e7

Please sign in to comment.