Skip to content

Commit

Permalink
fix(slides): update the API
Browse files Browse the repository at this point in the history
#### slides:v1
The following keys were changed:
- schemas.PageElement.properties.description.description
- schemas.PageElement.properties.title.description
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Jun 16, 2020
1 parent 1bda652 commit a8fc1fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions discovery/slides-v1.json
Expand Up @@ -304,7 +304,7 @@
}
}
},
"revision": "20200508",
"revision": "20200611",
"rootUrl": "https://slides.googleapis.com/",
"schemas": {
"AffineTransform": {
Expand Down Expand Up @@ -2052,7 +2052,7 @@
"id": "PageElement",
"properties": {
"description": {
"description": "The description of the page element. Combined with title to display alt\ntext.",
"description": "The description of the page element. Combined with title to display alt\ntext.\n\nThe field is not supported for Group\nelements.",
"type": "string"
},
"elementGroup": {
Expand Down Expand Up @@ -2088,7 +2088,7 @@
"description": "A table page element."
},
"title": {
"description": "The title of the page element. Combined with description to display alt\ntext.",
"description": "The title of the page element. Combined with description to display alt\ntext.\n\nThe field is not supported for Group\nelements.",
"type": "string"
},
"transform": {
Expand Down
4 changes: 2 additions & 2 deletions src/apis/slides/v1.ts
Expand Up @@ -1070,7 +1070,7 @@ export namespace slides_v1 {
*/
export interface Schema$PageElement {
/**
* The description of the page element. Combined with title to display alt text.
* The description of the page element. Combined with title to display alt text. The field is not supported for Group elements.
*/
description?: string | null;
/**
Expand Down Expand Up @@ -1106,7 +1106,7 @@ export namespace slides_v1 {
*/
table?: Schema$Table;
/**
* The title of the page element. Combined with description to display alt text.
* The title of the page element. Combined with description to display alt text. The field is not supported for Group elements.
*/
title?: string | null;
/**
Expand Down

0 comments on commit a8fc1fb

Please sign in to comment.