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.TestItem.properties.featuredPart.type
  • Loading branch information
yoshi-automation authored and sofisl committed Jun 4, 2021
1 parent c45e34e commit 2eb77c3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion discovery/youtube-v3.json
Expand Up @@ -3764,7 +3764,7 @@
}
}
},
"revision": "20210417",
"revision": "20210602",
"rootUrl": "https://youtube.googleapis.com/",
"schemas": {
"AbuseReport": {
Expand Down Expand Up @@ -9977,6 +9977,9 @@
"TestItem": {
"id": "TestItem",
"properties": {
"featuredPart": {
"type": "boolean"
},
"gaia": {
"format": "int64",
"type": "string"
Expand Down
3 changes: 3 additions & 0 deletions src/apis/youtube/v3.ts
Expand Up @@ -3506,6 +3506,7 @@ export namespace youtube_v3 {
stickerId?: string | null;
}
export interface Schema$TestItem {
featuredPart?: boolean | null;
gaia?: string | null;
id?: string | null;
snippet?: Schema$TestItemTestItemSnippet;
Expand Down Expand Up @@ -14463,6 +14464,7 @@ export namespace youtube_v3 {
* requestBody: {
* // request body parameters
* // {
* // "featuredPart": false,
* // "gaia": "my_gaia",
* // "id": "my_id",
* // "snippet": {}
Expand All @@ -14473,6 +14475,7 @@ export namespace youtube_v3 {
*
* // Example response
* // {
* // "featuredPart": false,
* // "gaia": "my_gaia",
* // "id": "my_id",
* // "snippet": {}
Expand Down

0 comments on commit 2eb77c3

Please sign in to comment.