@maxim_mazurok/gapi.client.sheets-v4 0.0.20250429 → 0.0.20250509
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 +7 -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: 20250509
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -108,6 +108,10 @@ declare namespace gapi.client {
|
|
|
108
108
|
/** Required. The table to add. */
|
|
109
109
|
table?: Table;
|
|
110
110
|
}
|
|
111
|
+
interface AddTableResponse {
|
|
112
|
+
/** Output only. The table that was added. */
|
|
113
|
+
table?: Table;
|
|
114
|
+
}
|
|
111
115
|
interface AppendCellsRequest {
|
|
112
116
|
/** The fields of CellData that should be updated. At least one field must be specified. The root is the CellData; 'row.values.' should not be specified. A single `"*"` can be used as short-hand for listing every field. */
|
|
113
117
|
fields?: string;
|
|
@@ -1780,6 +1784,8 @@ declare namespace gapi.client {
|
|
|
1780
1784
|
addSheet?: AddSheetResponse;
|
|
1781
1785
|
/** A reply from adding a slicer. */
|
|
1782
1786
|
addSlicer?: AddSlicerResponse;
|
|
1787
|
+
/** A reply from adding a table. */
|
|
1788
|
+
addTable?: AddTableResponse;
|
|
1783
1789
|
/** A reply from cancelling data source object refreshes. */
|
|
1784
1790
|
cancelDataSourceRefresh?: CancelDataSourceRefreshResponse;
|
|
1785
1791
|
/** A reply from creating a developer metadata entry. */
|