Skip to content

Commit

Permalink
feat(slides): update the API
Browse files Browse the repository at this point in the history
#### slides:v1

The following keys were added:
- schemas.SlideProperties.properties.isSkipped.description
- schemas.SlideProperties.properties.isSkipped.type
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Jul 2, 2021
1 parent 1c3ee52 commit 5c23f85
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion discovery/slides-v1.json
Expand Up @@ -313,7 +313,7 @@
}
}
},
"revision": "20210322",
"revision": "20210622",
"rootUrl": "https://slides.googleapis.com/",
"schemas": {
"AffineTransform": {
Expand Down Expand Up @@ -3461,6 +3461,10 @@
"description": "The properties of Page that are only relevant for pages with page_type SLIDE.",
"id": "SlideProperties",
"properties": {
"isSkipped": {
"description": "Whether the slide is skipped in the presentation mode. Defaults to false.",
"type": "boolean"
},
"layoutObjectId": {
"description": "The object ID of the layout that this slide is based on. This property is read-only.",
"type": "string"
Expand Down
4 changes: 4 additions & 0 deletions src/apis/slides/v1.ts
Expand Up @@ -1832,6 +1832,10 @@ export namespace slides_v1 {
* The properties of Page that are only relevant for pages with page_type SLIDE.
*/
export interface Schema$SlideProperties {
/**
* Whether the slide is skipped in the presentation mode. Defaults to false.
*/
isSkipped?: boolean | null;
/**
* The object ID of the layout that this slide is based on. This property is read-only.
*/
Expand Down

0 comments on commit 5c23f85

Please sign in to comment.