@maxim_mazurok/gapi.client.slides-v1 0.0.20221208 → 0.0.20221219
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 +6 -6
- package/package.json +1 -1
- package/tests.ts +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: 20221219
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -103,8 +103,8 @@ declare namespace gapi.client {
|
|
|
103
103
|
interface CreateImageRequest {
|
|
104
104
|
/**
|
|
105
105
|
* The element properties for the image. When the aspect ratio of the provided size does not match the image aspect ratio, the image is scaled and centered with respect to the size in
|
|
106
|
-
* order to maintain aspect ratio. The provided transform is applied after this operation. The PageElementProperties.size property is optional. If you don't specify the size, the
|
|
107
|
-
* default size of the image is used. The PageElementProperties.transform property is optional. If you don't specify a transform, the image will be placed at the top
|
|
106
|
+
* order to maintain the aspect ratio. The provided transform is applied after this operation. The PageElementProperties.size property is optional. If you don't specify the size, the
|
|
107
|
+
* default size of the image is used. The PageElementProperties.transform property is optional. If you don't specify a transform, the image will be placed at the top-left corner of the
|
|
108
108
|
* page.
|
|
109
109
|
*/
|
|
110
110
|
elementProperties?: PageElementProperties;
|
|
@@ -115,9 +115,9 @@ declare namespace gapi.client {
|
|
|
115
115
|
*/
|
|
116
116
|
objectId?: string;
|
|
117
117
|
/**
|
|
118
|
-
* The image URL. The image is fetched once at insertion time and a copy is stored for display inside the presentation. Images must be less than
|
|
119
|
-
* megapixels, and must be in one of PNG, JPEG, or GIF
|
|
120
|
-
*
|
|
118
|
+
* The image URL. The image is fetched once at insertion time and a copy is stored for display inside the presentation. Images must be less than 50 MB in size, can't exceed 25
|
|
119
|
+
* megapixels, and must be in one of PNG, JPEG, or GIF formats. The provided URL can be up to 2 KB in length. The URL is saved with the image, and exposed through the Image.source_url
|
|
120
|
+
* field.
|
|
121
121
|
*/
|
|
122
122
|
url?: string;
|
|
123
123
|
}
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20221219
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|