@maxim_mazurok/gapi.client.slides-v1 0.0.20240229 → 0.0.20240312
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +13 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://slides.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240312
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -491,6 +491,8 @@ declare namespace gapi.client {
|
|
|
491
491
|
sheetsChart?: SheetsChart;
|
|
492
492
|
/** The size of the page element. */
|
|
493
493
|
size?: Size;
|
|
494
|
+
/** A Speaker Spotlight. */
|
|
495
|
+
speakerSpotlight?: SpeakerSpotlight;
|
|
494
496
|
/** A table page element. */
|
|
495
497
|
table?: Table;
|
|
496
498
|
/** The title of the page element. Combined with description to display alt text. The field is not supported for Group elements. */
|
|
@@ -852,6 +854,16 @@ declare namespace gapi.client {
|
|
|
852
854
|
/** The color value of the solid fill. */
|
|
853
855
|
color?: OpaqueColor;
|
|
854
856
|
}
|
|
857
|
+
interface SpeakerSpotlight {
|
|
858
|
+
/** The properties of the Speaker Spotlight. */
|
|
859
|
+
speakerSpotlightProperties?: SpeakerSpotlightProperties;
|
|
860
|
+
}
|
|
861
|
+
interface SpeakerSpotlightProperties {
|
|
862
|
+
/** The outline of the Speaker Spotlight. If not set, it has no outline. */
|
|
863
|
+
outline?: Outline;
|
|
864
|
+
/** The shadow of the Speaker Spotlight. If not set, it has no shadow. */
|
|
865
|
+
shadow?: Shadow;
|
|
866
|
+
}
|
|
855
867
|
interface StretchedPictureFill {
|
|
856
868
|
/** Reading the content_url: An URL to a picture with a default lifetime of 30 minutes. This URL is tagged with the account of the requester. Anyone with the URL effectively accesses the picture as the original requester. Access to the picture may be lost if the presentation's sharing settings change. Writing the content_url: The picture is fetched once at insertion time and a copy is stored for display inside the presentation. Pictures must be less than 50MB in size, cannot exceed 25 megapixels, and must be in one of PNG, JPEG, or GIF format. The provided URL can be at most 2 kB in length. */
|
|
857
869
|
contentUrl?: string;
|