@maxim_mazurok/gapi.client.sheets-v4 0.0.20250528 → 0.0.20250603
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 +27 -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://sheets.googleapis.com/$discovery/rest?version=v4
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250603
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -521,6 +521,8 @@ declare namespace gapi.client {
|
|
|
521
521
|
data?: ChartData;
|
|
522
522
|
}
|
|
523
523
|
interface CellData {
|
|
524
|
+
/** Optional. Runs of chips applied to subsections of the cell. Properties of a run start at a specific index in the text and continue until the next run. When reading, all chipped and non-chipped runs are included. Non-chipped runs will have an empty chip_run.chip. When writing, only runs with chips are included. Runs containing chips are of length 1 and are represented in the user-entered text by an “@” placeholder symbol. New runs will overwrite any prior runs. Writing a new user_entered_value will erase previous runs. */
|
|
525
|
+
chipRuns?: ChipRun[];
|
|
524
526
|
/** Output only. Information about a data source formula on the cell. The field is set if user_entered_value is a formula referencing some DATA_SOURCE sheet, e.g. `=SUM(DataSheet!Column)`. */
|
|
525
527
|
dataSourceFormula?: DataSourceFormula;
|
|
526
528
|
/** A data source table anchored at this cell. The size of data source table itself is computed dynamically based on its configuration. Only the first cell of the data source table contains the data source table definition. The other cells will contain the display values of the data source table result in their effective_value fields. */
|
|
@@ -668,6 +670,18 @@ declare namespace gapi.client {
|
|
|
668
670
|
/** A waterfall chart specification. */
|
|
669
671
|
waterfallChart?: WaterfallChartSpec;
|
|
670
672
|
}
|
|
673
|
+
interface Chip {
|
|
674
|
+
/** Properties of a linked person. */
|
|
675
|
+
personProperties?: PersonProperties;
|
|
676
|
+
/** Properties of a rich link. */
|
|
677
|
+
richLinkProperties?: RichLinkProperties;
|
|
678
|
+
}
|
|
679
|
+
interface ChipRun {
|
|
680
|
+
/** Optional. The chip of this run. */
|
|
681
|
+
chip?: Chip;
|
|
682
|
+
/** Required. The zero-based character index where this run starts, in UTF-16 code units. */
|
|
683
|
+
startIndex?: number;
|
|
684
|
+
}
|
|
671
685
|
interface ClearBasicFilterRequest {
|
|
672
686
|
/** The sheet ID on which the basic filter should be cleared. */
|
|
673
687
|
sheetId?: number;
|
|
@@ -1453,6 +1467,12 @@ declare namespace gapi.client {
|
|
|
1453
1467
|
/** How the data should be pasted. */
|
|
1454
1468
|
type?: string;
|
|
1455
1469
|
}
|
|
1470
|
+
interface PersonProperties {
|
|
1471
|
+
/** Optional. The display format of the person chip. If not set, the default display format is used. */
|
|
1472
|
+
displayFormat?: string;
|
|
1473
|
+
/** Required. The email address linked to this person. This field is always present. */
|
|
1474
|
+
email?: string;
|
|
1475
|
+
}
|
|
1456
1476
|
interface PieChartSpec {
|
|
1457
1477
|
/** The data that covers the domain of the pie chart. */
|
|
1458
1478
|
domain?: ChartData;
|
|
@@ -1819,6 +1839,12 @@ declare namespace gapi.client {
|
|
|
1819
1839
|
/** A reply from updating an embedded object's position. */
|
|
1820
1840
|
updateEmbeddedObjectPosition?: UpdateEmbeddedObjectPositionResponse;
|
|
1821
1841
|
}
|
|
1842
|
+
interface RichLinkProperties {
|
|
1843
|
+
/** Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the link, if there's one (for example, when it's a file in Drive). */
|
|
1844
|
+
mimeType?: string;
|
|
1845
|
+
/** Required. The URI to the link. This is always present. */
|
|
1846
|
+
uri?: string;
|
|
1847
|
+
}
|
|
1822
1848
|
interface RowData {
|
|
1823
1849
|
/** The values in the row, one per column. */
|
|
1824
1850
|
values?: CellData[];
|