@maxim_mazurok/gapi.client.docs-v1 0.2.20250925 → 0.2.20251020
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 +9 -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://docs.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251020
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -252,6 +252,10 @@ declare namespace gapi.client {
|
|
|
252
252
|
/** The title of the document. */
|
|
253
253
|
title?: string;
|
|
254
254
|
}
|
|
255
|
+
interface DocumentFormat {
|
|
256
|
+
/** Whether the document has pages or is pageless. */
|
|
257
|
+
documentMode?: string;
|
|
258
|
+
}
|
|
255
259
|
interface DocumentStyle {
|
|
256
260
|
/** The background of the document. Documents cannot have a transparent background color. */
|
|
257
261
|
background?: Background;
|
|
@@ -259,6 +263,8 @@ declare namespace gapi.client {
|
|
|
259
263
|
defaultFooterId?: string;
|
|
260
264
|
/** The ID of the default header. If not set, there's no default header. This property is read-only. */
|
|
261
265
|
defaultHeaderId?: string;
|
|
266
|
+
/** Specifies document-level format settings, such as the document mode (pages vs pageless). */
|
|
267
|
+
documentFormat?: DocumentFormat;
|
|
262
268
|
/** The ID of the footer used only for even pages. The value of use_even_page_header_footer determines whether to use the default_footer_id or this value for the footer on even pages. If not set, there's no even page footer. This property is read-only. */
|
|
263
269
|
evenPageFooterId?: string;
|
|
264
270
|
/** The ID of the header used only for even pages. The value of use_even_page_header_footer determines whether to use the default_header_id or this value for the header on even pages. If not set, there's no even page header. This property is read-only. */
|
|
@@ -1465,6 +1471,8 @@ declare namespace gapi.client {
|
|
|
1465
1471
|
tableColumnProperties?: TableColumnProperties[];
|
|
1466
1472
|
}
|
|
1467
1473
|
interface TabProperties {
|
|
1474
|
+
/** Optional. The emoji icon displayed with the tab. A valid emoji icon is represented by a non-empty Unicode string. Any set of characters that don't represent a single emoji is invalid. If an emoji is invalid, a 400 bad request error is returned. If this value is unset or empty, the tab will display the default tab icon. */
|
|
1475
|
+
iconEmoji?: string;
|
|
1468
1476
|
/** The zero-based index of the tab within the parent. */
|
|
1469
1477
|
index?: number;
|
|
1470
1478
|
/** Output only. The depth of the tab within the document. Root-level tabs start at 0. */
|