@googleapis/sheets 9.7.0 → 9.8.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [9.8.0](https://github.com/googleapis/google-api-nodejs-client/compare/sheets-v9.7.0...sheets-v9.8.0) (2025-05-05)
4
+
5
+
6
+ ### Features
7
+
8
+ * **sheets:** update the API ([b88652e](https://github.com/googleapis/google-api-nodejs-client/commit/b88652eee6a1fd55ba45853aff83161758489b59))
9
+
3
10
  ## [9.7.0](https://github.com/googleapis/google-api-nodejs-client/compare/sheets-v9.6.0...sheets-v9.7.0) (2025-04-18)
4
11
 
5
12
 
package/build/v4.d.ts CHANGED
@@ -250,6 +250,15 @@ export declare namespace sheets_v4 {
250
250
  */
251
251
  slicer?: Schema$Slicer;
252
252
  }
253
+ /**
254
+ * Adds a new table to the spreadsheet.
255
+ */
256
+ export interface Schema$AddTableRequest {
257
+ /**
258
+ * Required. The table to add.
259
+ */
260
+ table?: Schema$Table;
261
+ }
253
262
  /**
254
263
  * Adds new cells after the last row with data in a sheet, inserting new rows into the sheet if necessary.
255
264
  */
@@ -266,6 +275,10 @@ export declare namespace sheets_v4 {
266
275
  * The sheet ID to append the data to.
267
276
  */
268
277
  sheetId?: number | null;
278
+ /**
279
+ * The ID of the table to append data to. The data will be only appended to the table body. This field also takes precedence over the `sheet_id` field.
280
+ */
281
+ tableId?: string | null;
269
282
  }
270
283
  /**
271
284
  * Appends rows or columns to the end of a sheet.
@@ -580,6 +593,10 @@ export declare namespace sheets_v4 {
580
593
  * The sort order per column. Later specifications are used when values are equal in the earlier specifications.
581
594
  */
582
595
  sortSpecs?: Schema$SortSpec[];
596
+ /**
597
+ * The table this filter is backed by, if any. When writing, only one of range or table_id may be set.
598
+ */
599
+ tableId?: string | null;
583
600
  }
584
601
  /**
585
602
  * Style override settings for a single series data point.
@@ -616,7 +633,7 @@ export declare namespace sheets_v4 {
616
633
  */
617
634
  export interface Schema$BatchClearValuesByDataFilterResponse {
618
635
  /**
619
- * The ranges that were cleared, in [A1 notation](/sheets/api/guides/concepts#cell). If the requests are for an unbounded range or a ranger larger than the bounds of the sheet, this is the actual ranges that were cleared, bounded to the sheet's limits.
636
+ * The ranges that were cleared, in [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell). If the requests are for an unbounded range or a ranger larger than the bounds of the sheet, this is the actual ranges that were cleared, bounded to the sheet's limits.
620
637
  */
621
638
  clearedRanges?: string[] | null;
622
639
  /**
@@ -629,7 +646,7 @@ export declare namespace sheets_v4 {
629
646
  */
630
647
  export interface Schema$BatchClearValuesRequest {
631
648
  /**
632
- * The ranges to clear, in [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell).
649
+ * The ranges to clear, in [A1 notation or R1C1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell).
633
650
  */
634
651
  ranges?: string[] | null;
635
652
  }
@@ -1457,7 +1474,7 @@ export declare namespace sheets_v4 {
1457
1474
  */
1458
1475
  export interface Schema$ColorStyle {
1459
1476
  /**
1460
- * RGB color. The [`alpha`](/sheets/api/reference/rest/v4/spreadsheets/other#Color.FIELDS.alpha) value in the [`Color`](/sheets/api/reference/rest/v4/spreadsheets/other#color) object isn't generally supported.
1477
+ * RGB color. The [`alpha`](https://developers.google.com/workspace/sheets/api/reference/rest/v4/spreadsheets/other#Color.FIELDS.alpha) value in the [`Color`](https://developers.google.com/workspace/sheets/api/reference/rest/v4/spreadsheets/other#color) object isn't generally supported.
1461
1478
  */
1462
1479
  rgbColor?: Schema$Color;
1463
1480
  /**
@@ -2095,6 +2112,15 @@ export declare namespace sheets_v4 {
2095
2112
  */
2096
2113
  sheetId?: number | null;
2097
2114
  }
2115
+ /**
2116
+ * Removes the table with the given ID from the spreadsheet.
2117
+ */
2118
+ export interface Schema$DeleteTableRequest {
2119
+ /**
2120
+ * The ID of the table to delete.
2121
+ */
2122
+ tableId?: string | null;
2123
+ }
2098
2124
  /**
2099
2125
  * Developer metadata associated with a location or object in a spreadsheet. Developer metadata may be used to associate arbitrary data with various parts of a spreadsheet and will remain associated at those locations as they move around and the spreadsheet is edited. For example, if developer metadata is associated with row 5 and another row is then subsequently inserted above row 5, that original metadata will still be associated with the row it was first associated with (what is now row 6). If the associated object is deleted its metadata is deleted too.
2100
2126
  */
@@ -2456,17 +2482,21 @@ export declare namespace sheets_v4 {
2456
2482
  */
2457
2483
  filterViewId?: number | null;
2458
2484
  /**
2459
- * The named range this filter view is backed by, if any. When writing, only one of range or named_range_id may be set.
2485
+ * The named range this filter view is backed by, if any. When writing, only one of range or named_range_id or table_id may be set.
2460
2486
  */
2461
2487
  namedRangeId?: string | null;
2462
2488
  /**
2463
- * The range this filter view covers. When writing, only one of range or named_range_id may be set.
2489
+ * The range this filter view covers. When writing, only one of range or named_range_id or table_id may be set.
2464
2490
  */
2465
2491
  range?: Schema$GridRange;
2466
2492
  /**
2467
2493
  * The sort order per column. Later specifications are used when values are equal in the earlier specifications.
2468
2494
  */
2469
2495
  sortSpecs?: Schema$SortSpec[];
2496
+ /**
2497
+ * The table this filter view is backed by, if any. When writing, only one of range or named_range_id or table_id may be set.
2498
+ */
2499
+ tableId?: string | null;
2470
2500
  /**
2471
2501
  * The name of the filter view.
2472
2502
  */
@@ -2546,6 +2576,10 @@ export declare namespace sheets_v4 {
2546
2576
  * The DataFilters used to select which ranges to retrieve from the spreadsheet.
2547
2577
  */
2548
2578
  dataFilters?: Schema$DataFilter[];
2579
+ /**
2580
+ * True if tables should be excluded in the banded ranges. False if not set.
2581
+ */
2582
+ excludeTablesInBandedRanges?: boolean | null;
2549
2583
  /**
2550
2584
  * True if grid data should be returned. This parameter is ignored if a field mask was set in the request.
2551
2585
  */
@@ -2948,7 +2982,7 @@ export declare namespace sheets_v4 {
2948
2982
  */
2949
2983
  export interface Schema$NumberFormat {
2950
2984
  /**
2951
- * Pattern string used for formatting. If not set, a default pattern based on the user's locale will be used if necessary for the given type. See the [Date and Number Formats guide](/sheets/api/guides/formats) for more information about the supported patterns.
2985
+ * Pattern string used for formatting. If not set, a default pattern based on the user's locale will be used if necessary for the given type. See the [Date and Number Formats guide](https://developers.google.com/workspace/sheets/api/guides/formats) for more information about the supported patterns.
2952
2986
  */
2953
2987
  pattern?: string | null;
2954
2988
  /**
@@ -3322,7 +3356,7 @@ export declare namespace sheets_v4 {
3322
3356
  */
3323
3357
  editors?: Schema$Editors;
3324
3358
  /**
3325
- * The named range this protected range is backed by, if any. When writing, only one of range or named_range_id may be set.
3359
+ * The named range this protected range is backed by, if any. When writing, only one of range or named_range_id or table_id may be set.
3326
3360
  */
3327
3361
  namedRangeId?: string | null;
3328
3362
  /**
@@ -3330,13 +3364,17 @@ export declare namespace sheets_v4 {
3330
3364
  */
3331
3365
  protectedRangeId?: number | null;
3332
3366
  /**
3333
- * The range that is being protected. The range may be fully unbounded, in which case this is considered a protected sheet. When writing, only one of range or named_range_id may be set.
3367
+ * The range that is being protected. The range may be fully unbounded, in which case this is considered a protected sheet. When writing, only one of range or named_range_id or table_id may be set.
3334
3368
  */
3335
3369
  range?: Schema$GridRange;
3336
3370
  /**
3337
3371
  * True if the user who requested this protected range can edit the protected area. This field is read-only.
3338
3372
  */
3339
3373
  requestingUserCanEdit?: boolean | null;
3374
+ /**
3375
+ * The table this protected range is backed by, if any. When writing, only one of range or named_range_id or table_id may be set.
3376
+ */
3377
+ tableId?: string | null;
3340
3378
  /**
3341
3379
  * The list of unprotected ranges within a protected sheet. Unprotected ranges are only supported on protected sheets.
3342
3380
  */
@@ -3472,6 +3510,10 @@ export declare namespace sheets_v4 {
3472
3510
  * Adds a slicer.
3473
3511
  */
3474
3512
  addSlicer?: Schema$AddSlicerRequest;
3513
+ /**
3514
+ * Adds a table.
3515
+ */
3516
+ addTable?: Schema$AddTableRequest;
3475
3517
  /**
3476
3518
  * Appends cells after the last row with data in a sheet.
3477
3519
  */
@@ -3560,6 +3602,10 @@ export declare namespace sheets_v4 {
3560
3602
  * Deletes a sheet.
3561
3603
  */
3562
3604
  deleteSheet?: Schema$DeleteSheetRequest;
3605
+ /**
3606
+ * A request for deleting a table.
3607
+ */
3608
+ deleteTable?: Schema$DeleteTableRequest;
3563
3609
  /**
3564
3610
  * Duplicates a filter view.
3565
3611
  */
@@ -3696,6 +3742,10 @@ export declare namespace sheets_v4 {
3696
3742
  * Updates the spreadsheet's properties.
3697
3743
  */
3698
3744
  updateSpreadsheetProperties?: Schema$UpdateSpreadsheetPropertiesRequest;
3745
+ /**
3746
+ * Updates a table.
3747
+ */
3748
+ updateTable?: Schema$UpdateTableRequest;
3699
3749
  }
3700
3750
  /**
3701
3751
  * A single response from an update.
@@ -3944,6 +3994,10 @@ export declare namespace sheets_v4 {
3944
3994
  * The slicers on this sheet.
3945
3995
  */
3946
3996
  slicers?: Schema$Slicer[];
3997
+ /**
3998
+ * The tables on this sheet.
3999
+ */
4000
+ tables?: Schema$Table[];
3947
4001
  }
3948
4002
  /**
3949
4003
  * Properties of a sheet.
@@ -4198,6 +4252,82 @@ export declare namespace sheets_v4 {
4198
4252
  */
4199
4253
  themeColors?: Schema$ThemeColorPair[];
4200
4254
  }
4255
+ /**
4256
+ * A table.
4257
+ */
4258
+ export interface Schema$Table {
4259
+ /**
4260
+ * The table column properties.
4261
+ */
4262
+ columnProperties?: Schema$TableColumnProperties[];
4263
+ /**
4264
+ * The table name. This is unique to all tables in the same spreadsheet.
4265
+ */
4266
+ name?: string | null;
4267
+ /**
4268
+ * The table range.
4269
+ */
4270
+ range?: Schema$GridRange;
4271
+ /**
4272
+ * The table rows properties.
4273
+ */
4274
+ rowsProperties?: Schema$TableRowsProperties;
4275
+ /**
4276
+ * The id of the table.
4277
+ */
4278
+ tableId?: string | null;
4279
+ }
4280
+ /**
4281
+ * A data validation rule for a column in a table.
4282
+ */
4283
+ export interface Schema$TableColumnDataValidationRule {
4284
+ /**
4285
+ * The condition that data in the cell must match. Valid only if the [BooleanCondition.type] is ONE_OF_LIST.
4286
+ */
4287
+ condition?: Schema$BooleanCondition;
4288
+ }
4289
+ /**
4290
+ * The table column.
4291
+ */
4292
+ export interface Schema$TableColumnProperties {
4293
+ /**
4294
+ * The 0-based column index. This index is relative to its position in the table and is not necessarily the same as the column index in the sheet.
4295
+ */
4296
+ columnIndex?: number | null;
4297
+ /**
4298
+ * The column name.
4299
+ */
4300
+ columnName?: string | null;
4301
+ /**
4302
+ * The column type.
4303
+ */
4304
+ columnType?: string | null;
4305
+ /**
4306
+ * The column data validation rule. Only set for dropdown column type.
4307
+ */
4308
+ dataValidationRule?: Schema$TableColumnDataValidationRule;
4309
+ }
4310
+ /**
4311
+ * The table row properties.
4312
+ */
4313
+ export interface Schema$TableRowsProperties {
4314
+ /**
4315
+ * The first color that is alternating. If this field is set, the first banded row is filled with the specified color. Otherwise, the first banded row is filled with a default color.
4316
+ */
4317
+ firstBandColorStyle?: Schema$ColorStyle;
4318
+ /**
4319
+ * The color of the last row. If this field is not set a footer is not added, the last row is filled with either first_band_color_style or second_band_color_style, depending on the color of the previous row. If updating an existing table without a footer to have a footer, the range will be expanded by 1 row. If updating an existing table with a footer and removing a footer, the range will be shrunk by 1 row.
4320
+ */
4321
+ footerColorStyle?: Schema$ColorStyle;
4322
+ /**
4323
+ * The color of the header row. If this field is set, the header row is filled with the specified color. Otherwise, the header row is filled with a default color.
4324
+ */
4325
+ headerColorStyle?: Schema$ColorStyle;
4326
+ /**
4327
+ * The second color that is alternating. If this field is set, the second banded row is filled with the specified color. Otherwise, the second banded row is filled with a default color.
4328
+ */
4329
+ secondBandColorStyle?: Schema$ColorStyle;
4330
+ }
4201
4331
  /**
4202
4332
  * The format of a run of text in a cell. Absent values indicate that the field isn't specified.
4203
4333
  */
@@ -4779,6 +4909,19 @@ export declare namespace sheets_v4 {
4779
4909
  */
4780
4910
  properties?: Schema$SpreadsheetProperties;
4781
4911
  }
4912
+ /**
4913
+ * Updates a table in the spreadsheet.
4914
+ */
4915
+ export interface Schema$UpdateTableRequest {
4916
+ /**
4917
+ * Required. The fields that should be updated. At least one field must be specified. The root `table` is implied and should not be specified. A single `"*"` can be used as short-hand for listing every field.
4918
+ */
4919
+ fields?: string | null;
4920
+ /**
4921
+ * Required. The table to update.
4922
+ */
4923
+ table?: Schema$Table;
4924
+ }
4782
4925
  /**
4783
4926
  * The response when updating a range of values by a data filter in a spreadsheet.
4784
4927
  */
@@ -4800,7 +4943,7 @@ export declare namespace sheets_v4 {
4800
4943
  */
4801
4944
  updatedData?: Schema$ValueRange;
4802
4945
  /**
4803
- * The range (in [A1 notation](/sheets/api/guides/concepts#cell)) that updates were applied to.
4946
+ * The range (in [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell)) that updates were applied to.
4804
4947
  */
4805
4948
  updatedRange?: string | null;
4806
4949
  /**
@@ -4846,7 +4989,7 @@ export declare namespace sheets_v4 {
4846
4989
  */
4847
4990
  majorDimension?: string | null;
4848
4991
  /**
4849
- * The range the values cover, in [A1 notation](/sheets/api/guides/concepts#cell). For output, this range indicates the entire requested range, even though the values will exclude trailing rows and columns. When appending values, this field represents the range to search for a table, after which values will be appended.
4992
+ * The range the values cover, in [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell). For output, this range indicates the entire requested range, even though the values will exclude trailing rows and columns. When appending values, this field represents the range to search for a table, after which values will be appended.
4850
4993
  */
4851
4994
  range?: string | null;
4852
4995
  /**
@@ -5002,7 +5145,7 @@ export declare namespace sheets_v4 {
5002
5145
  create(params: Params$Resource$Spreadsheets$Create, callback: BodyResponseCallback<Schema$Spreadsheet>): void;
5003
5146
  create(callback: BodyResponseCallback<Schema$Spreadsheet>): void;
5004
5147
  /**
5005
- * Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. By default, data within grids is not returned. You can include grid data in one of 2 ways: * Specify a [field mask](https://developers.google.com/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData URL parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want. To retrieve only subsets of spreadsheet data, use the ranges URL parameter. Ranges are specified using [A1 notation](/sheets/api/guides/concepts#cell). You can define a single cell (for example, `A1`) or multiple cells (for example, `A1:D5`). You can also get cells from other sheets within the same spreadsheet (for example, `Sheet2!A1:C4`) or retrieve multiple ranges at once (for example, `?ranges=A1:D5&ranges=Sheet2!A1:C4`). Limiting the range returns only the portions of the spreadsheet that intersect the requested ranges.
5148
+ * Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. By default, data within grids is not returned. You can include grid data in one of 2 ways: * Specify a [field mask](https://developers.google.com/workspace/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData URL parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want. To retrieve only subsets of spreadsheet data, use the ranges URL parameter. Ranges are specified using [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell). You can define a single cell (for example, `A1`) or multiple cells (for example, `A1:D5`). You can also get cells from other sheets within the same spreadsheet (for example, `Sheet2!A1:C4`) or retrieve multiple ranges at once (for example, `?ranges=A1:D5&ranges=Sheet2!A1:C4`). Limiting the range returns only the portions of the spreadsheet that intersect the requested ranges.
5006
5149
  *
5007
5150
  * @param params - Parameters for request
5008
5151
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -5016,7 +5159,7 @@ export declare namespace sheets_v4 {
5016
5159
  get(params: Params$Resource$Spreadsheets$Get, callback: BodyResponseCallback<Schema$Spreadsheet>): void;
5017
5160
  get(callback: BodyResponseCallback<Schema$Spreadsheet>): void;
5018
5161
  /**
5019
- * Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. This method differs from GetSpreadsheet in that it allows selecting which subsets of spreadsheet data to return by specifying a dataFilters parameter. Multiple DataFilters can be specified. Specifying one or more data filters returns the portions of the spreadsheet that intersect ranges matched by any of the filters. By default, data within grids is not returned. You can include grid data one of 2 ways: * Specify a [field mask](https://developers.google.com/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want.
5162
+ * Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. This method differs from GetSpreadsheet in that it allows selecting which subsets of spreadsheet data to return by specifying a dataFilters parameter. Multiple DataFilters can be specified. Specifying one or more data filters returns the portions of the spreadsheet that intersect ranges matched by any of the filters. By default, data within grids is not returned. You can include grid data one of 2 ways: * Specify a [field mask](https://developers.google.com/workspace/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want.
5020
5163
  *
5021
5164
  * @param params - Parameters for request
5022
5165
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -5047,6 +5190,10 @@ export declare namespace sheets_v4 {
5047
5190
  requestBody?: Schema$Spreadsheet;
5048
5191
  }
5049
5192
  export interface Params$Resource$Spreadsheets$Get extends StandardParameters {
5193
+ /**
5194
+ * True if tables should be excluded in the banded ranges. False if not set.
5195
+ */
5196
+ excludeTablesInBandedRanges?: boolean;
5050
5197
  /**
5051
5198
  * True if grid data should be returned. This parameter is ignored if a field mask was set in the request.
5052
5199
  */
@@ -5158,7 +5305,7 @@ export declare namespace sheets_v4 {
5158
5305
  context: APIRequestContext;
5159
5306
  constructor(context: APIRequestContext);
5160
5307
  /**
5161
- * Appends values to a spreadsheet. The input range is used to search for existing data and find a "table" within that range. Values will be appended to the next row of the table, starting with the first column of the table. See the [guide](/sheets/api/guides/values#appending_values) and [sample code](/sheets/api/samples/writing#append_values) for specific details of how tables are detected and data is appended. The caller must specify the spreadsheet ID, range, and a valueInputOption. The `valueInputOption` only controls how the input data will be added to the sheet (column-wise or row-wise), it does not influence what cell the data starts being written to.
5308
+ * Appends values to a spreadsheet. The input range is used to search for existing data and find a "table" within that range. Values will be appended to the next row of the table, starting with the first column of the table. See the [guide](https://developers.google.com/workspace/sheets/api/guides/values#appending_values) and [sample code](https://developers.google.com/workspace/sheets/api/samples/writing#append_values) for specific details of how tables are detected and data is appended. The caller must specify the spreadsheet ID, range, and a valueInputOption. The `valueInputOption` only controls how the input data will be added to the sheet (column-wise or row-wise), it does not influence what cell the data starts being written to.
5162
5309
  *
5163
5310
  * @param params - Parameters for request
5164
5311
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -5308,7 +5455,7 @@ export declare namespace sheets_v4 {
5308
5455
  */
5309
5456
  insertDataOption?: string;
5310
5457
  /**
5311
- * The [A1 notation](/sheets/api/guides/concepts#cell) of a range to search for a logical table of data. Values are appended after the last row of the table.
5458
+ * The [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell) of a range to search for a logical table of data. Values are appended after the last row of the table.
5312
5459
  */
5313
5460
  range?: string;
5314
5461
  /**
@@ -5362,7 +5509,7 @@ export declare namespace sheets_v4 {
5362
5509
  */
5363
5510
  majorDimension?: string;
5364
5511
  /**
5365
- * The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the range to retrieve values from.
5512
+ * The [A1 notation or R1C1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell) of the range to retrieve values from.
5366
5513
  */
5367
5514
  ranges?: string[];
5368
5515
  /**
@@ -5406,7 +5553,7 @@ export declare namespace sheets_v4 {
5406
5553
  }
5407
5554
  export interface Params$Resource$Spreadsheets$Values$Clear extends StandardParameters {
5408
5555
  /**
5409
- * The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the values to clear.
5556
+ * The [A1 notation or R1C1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell) of the values to clear.
5410
5557
  */
5411
5558
  range?: string;
5412
5559
  /**
@@ -5428,7 +5575,7 @@ export declare namespace sheets_v4 {
5428
5575
  */
5429
5576
  majorDimension?: string;
5430
5577
  /**
5431
- * The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the range to retrieve values from.
5578
+ * The [A1 notation or R1C1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell) of the range to retrieve values from.
5432
5579
  */
5433
5580
  range?: string;
5434
5581
  /**
@@ -5446,7 +5593,7 @@ export declare namespace sheets_v4 {
5446
5593
  */
5447
5594
  includeValuesInResponse?: boolean;
5448
5595
  /**
5449
- * The [A1 notation](/sheets/api/guides/concepts#cell) of the values to update.
5596
+ * The [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell) of the values to update.
5450
5597
  */
5451
5598
  range?: string;
5452
5599
  /**
package/build/v4.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"v4.js","sourceRoot":"","sources":["../v4.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"v4.js","sourceRoot":"","sources":["../v4.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@googleapis/sheets",
3
- "version": "9.7.0",
3
+ "version": "9.8.0",
4
4
  "description": "sheets",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
package/v4.ts CHANGED
@@ -303,6 +303,15 @@ export namespace sheets_v4 {
303
303
  */
304
304
  slicer?: Schema$Slicer;
305
305
  }
306
+ /**
307
+ * Adds a new table to the spreadsheet.
308
+ */
309
+ export interface Schema$AddTableRequest {
310
+ /**
311
+ * Required. The table to add.
312
+ */
313
+ table?: Schema$Table;
314
+ }
306
315
  /**
307
316
  * Adds new cells after the last row with data in a sheet, inserting new rows into the sheet if necessary.
308
317
  */
@@ -319,6 +328,10 @@ export namespace sheets_v4 {
319
328
  * The sheet ID to append the data to.
320
329
  */
321
330
  sheetId?: number | null;
331
+ /**
332
+ * The ID of the table to append data to. The data will be only appended to the table body. This field also takes precedence over the `sheet_id` field.
333
+ */
334
+ tableId?: string | null;
322
335
  }
323
336
  /**
324
337
  * Appends rows or columns to the end of a sheet.
@@ -631,6 +644,10 @@ export namespace sheets_v4 {
631
644
  * The sort order per column. Later specifications are used when values are equal in the earlier specifications.
632
645
  */
633
646
  sortSpecs?: Schema$SortSpec[];
647
+ /**
648
+ * The table this filter is backed by, if any. When writing, only one of range or table_id may be set.
649
+ */
650
+ tableId?: string | null;
634
651
  }
635
652
  /**
636
653
  * Style override settings for a single series data point.
@@ -667,7 +684,7 @@ export namespace sheets_v4 {
667
684
  */
668
685
  export interface Schema$BatchClearValuesByDataFilterResponse {
669
686
  /**
670
- * The ranges that were cleared, in [A1 notation](/sheets/api/guides/concepts#cell). If the requests are for an unbounded range or a ranger larger than the bounds of the sheet, this is the actual ranges that were cleared, bounded to the sheet's limits.
687
+ * The ranges that were cleared, in [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell). If the requests are for an unbounded range or a ranger larger than the bounds of the sheet, this is the actual ranges that were cleared, bounded to the sheet's limits.
671
688
  */
672
689
  clearedRanges?: string[] | null;
673
690
  /**
@@ -680,7 +697,7 @@ export namespace sheets_v4 {
680
697
  */
681
698
  export interface Schema$BatchClearValuesRequest {
682
699
  /**
683
- * The ranges to clear, in [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell).
700
+ * The ranges to clear, in [A1 notation or R1C1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell).
684
701
  */
685
702
  ranges?: string[] | null;
686
703
  }
@@ -1507,7 +1524,7 @@ export namespace sheets_v4 {
1507
1524
  */
1508
1525
  export interface Schema$ColorStyle {
1509
1526
  /**
1510
- * RGB color. The [`alpha`](/sheets/api/reference/rest/v4/spreadsheets/other#Color.FIELDS.alpha) value in the [`Color`](/sheets/api/reference/rest/v4/spreadsheets/other#color) object isn't generally supported.
1527
+ * RGB color. The [`alpha`](https://developers.google.com/workspace/sheets/api/reference/rest/v4/spreadsheets/other#Color.FIELDS.alpha) value in the [`Color`](https://developers.google.com/workspace/sheets/api/reference/rest/v4/spreadsheets/other#color) object isn't generally supported.
1511
1528
  */
1512
1529
  rgbColor?: Schema$Color;
1513
1530
  /**
@@ -2145,6 +2162,15 @@ export namespace sheets_v4 {
2145
2162
  */
2146
2163
  sheetId?: number | null;
2147
2164
  }
2165
+ /**
2166
+ * Removes the table with the given ID from the spreadsheet.
2167
+ */
2168
+ export interface Schema$DeleteTableRequest {
2169
+ /**
2170
+ * The ID of the table to delete.
2171
+ */
2172
+ tableId?: string | null;
2173
+ }
2148
2174
  /**
2149
2175
  * Developer metadata associated with a location or object in a spreadsheet. Developer metadata may be used to associate arbitrary data with various parts of a spreadsheet and will remain associated at those locations as they move around and the spreadsheet is edited. For example, if developer metadata is associated with row 5 and another row is then subsequently inserted above row 5, that original metadata will still be associated with the row it was first associated with (what is now row 6). If the associated object is deleted its metadata is deleted too.
2150
2176
  */
@@ -2504,17 +2530,21 @@ export namespace sheets_v4 {
2504
2530
  */
2505
2531
  filterViewId?: number | null;
2506
2532
  /**
2507
- * The named range this filter view is backed by, if any. When writing, only one of range or named_range_id may be set.
2533
+ * The named range this filter view is backed by, if any. When writing, only one of range or named_range_id or table_id may be set.
2508
2534
  */
2509
2535
  namedRangeId?: string | null;
2510
2536
  /**
2511
- * The range this filter view covers. When writing, only one of range or named_range_id may be set.
2537
+ * The range this filter view covers. When writing, only one of range or named_range_id or table_id may be set.
2512
2538
  */
2513
2539
  range?: Schema$GridRange;
2514
2540
  /**
2515
2541
  * The sort order per column. Later specifications are used when values are equal in the earlier specifications.
2516
2542
  */
2517
2543
  sortSpecs?: Schema$SortSpec[];
2544
+ /**
2545
+ * The table this filter view is backed by, if any. When writing, only one of range or named_range_id or table_id may be set.
2546
+ */
2547
+ tableId?: string | null;
2518
2548
  /**
2519
2549
  * The name of the filter view.
2520
2550
  */
@@ -2594,6 +2624,10 @@ export namespace sheets_v4 {
2594
2624
  * The DataFilters used to select which ranges to retrieve from the spreadsheet.
2595
2625
  */
2596
2626
  dataFilters?: Schema$DataFilter[];
2627
+ /**
2628
+ * True if tables should be excluded in the banded ranges. False if not set.
2629
+ */
2630
+ excludeTablesInBandedRanges?: boolean | null;
2597
2631
  /**
2598
2632
  * True if grid data should be returned. This parameter is ignored if a field mask was set in the request.
2599
2633
  */
@@ -2996,7 +3030,7 @@ export namespace sheets_v4 {
2996
3030
  */
2997
3031
  export interface Schema$NumberFormat {
2998
3032
  /**
2999
- * Pattern string used for formatting. If not set, a default pattern based on the user's locale will be used if necessary for the given type. See the [Date and Number Formats guide](/sheets/api/guides/formats) for more information about the supported patterns.
3033
+ * Pattern string used for formatting. If not set, a default pattern based on the user's locale will be used if necessary for the given type. See the [Date and Number Formats guide](https://developers.google.com/workspace/sheets/api/guides/formats) for more information about the supported patterns.
3000
3034
  */
3001
3035
  pattern?: string | null;
3002
3036
  /**
@@ -3368,7 +3402,7 @@ export namespace sheets_v4 {
3368
3402
  */
3369
3403
  editors?: Schema$Editors;
3370
3404
  /**
3371
- * The named range this protected range is backed by, if any. When writing, only one of range or named_range_id may be set.
3405
+ * The named range this protected range is backed by, if any. When writing, only one of range or named_range_id or table_id may be set.
3372
3406
  */
3373
3407
  namedRangeId?: string | null;
3374
3408
  /**
@@ -3376,13 +3410,17 @@ export namespace sheets_v4 {
3376
3410
  */
3377
3411
  protectedRangeId?: number | null;
3378
3412
  /**
3379
- * The range that is being protected. The range may be fully unbounded, in which case this is considered a protected sheet. When writing, only one of range or named_range_id may be set.
3413
+ * The range that is being protected. The range may be fully unbounded, in which case this is considered a protected sheet. When writing, only one of range or named_range_id or table_id may be set.
3380
3414
  */
3381
3415
  range?: Schema$GridRange;
3382
3416
  /**
3383
3417
  * True if the user who requested this protected range can edit the protected area. This field is read-only.
3384
3418
  */
3385
3419
  requestingUserCanEdit?: boolean | null;
3420
+ /**
3421
+ * The table this protected range is backed by, if any. When writing, only one of range or named_range_id or table_id may be set.
3422
+ */
3423
+ tableId?: string | null;
3386
3424
  /**
3387
3425
  * The list of unprotected ranges within a protected sheet. Unprotected ranges are only supported on protected sheets.
3388
3426
  */
@@ -3518,6 +3556,10 @@ export namespace sheets_v4 {
3518
3556
  * Adds a slicer.
3519
3557
  */
3520
3558
  addSlicer?: Schema$AddSlicerRequest;
3559
+ /**
3560
+ * Adds a table.
3561
+ */
3562
+ addTable?: Schema$AddTableRequest;
3521
3563
  /**
3522
3564
  * Appends cells after the last row with data in a sheet.
3523
3565
  */
@@ -3606,6 +3648,10 @@ export namespace sheets_v4 {
3606
3648
  * Deletes a sheet.
3607
3649
  */
3608
3650
  deleteSheet?: Schema$DeleteSheetRequest;
3651
+ /**
3652
+ * A request for deleting a table.
3653
+ */
3654
+ deleteTable?: Schema$DeleteTableRequest;
3609
3655
  /**
3610
3656
  * Duplicates a filter view.
3611
3657
  */
@@ -3742,6 +3788,10 @@ export namespace sheets_v4 {
3742
3788
  * Updates the spreadsheet's properties.
3743
3789
  */
3744
3790
  updateSpreadsheetProperties?: Schema$UpdateSpreadsheetPropertiesRequest;
3791
+ /**
3792
+ * Updates a table.
3793
+ */
3794
+ updateTable?: Schema$UpdateTableRequest;
3745
3795
  }
3746
3796
  /**
3747
3797
  * A single response from an update.
@@ -3990,6 +4040,10 @@ export namespace sheets_v4 {
3990
4040
  * The slicers on this sheet.
3991
4041
  */
3992
4042
  slicers?: Schema$Slicer[];
4043
+ /**
4044
+ * The tables on this sheet.
4045
+ */
4046
+ tables?: Schema$Table[];
3993
4047
  }
3994
4048
  /**
3995
4049
  * Properties of a sheet.
@@ -4244,6 +4298,82 @@ export namespace sheets_v4 {
4244
4298
  */
4245
4299
  themeColors?: Schema$ThemeColorPair[];
4246
4300
  }
4301
+ /**
4302
+ * A table.
4303
+ */
4304
+ export interface Schema$Table {
4305
+ /**
4306
+ * The table column properties.
4307
+ */
4308
+ columnProperties?: Schema$TableColumnProperties[];
4309
+ /**
4310
+ * The table name. This is unique to all tables in the same spreadsheet.
4311
+ */
4312
+ name?: string | null;
4313
+ /**
4314
+ * The table range.
4315
+ */
4316
+ range?: Schema$GridRange;
4317
+ /**
4318
+ * The table rows properties.
4319
+ */
4320
+ rowsProperties?: Schema$TableRowsProperties;
4321
+ /**
4322
+ * The id of the table.
4323
+ */
4324
+ tableId?: string | null;
4325
+ }
4326
+ /**
4327
+ * A data validation rule for a column in a table.
4328
+ */
4329
+ export interface Schema$TableColumnDataValidationRule {
4330
+ /**
4331
+ * The condition that data in the cell must match. Valid only if the [BooleanCondition.type] is ONE_OF_LIST.
4332
+ */
4333
+ condition?: Schema$BooleanCondition;
4334
+ }
4335
+ /**
4336
+ * The table column.
4337
+ */
4338
+ export interface Schema$TableColumnProperties {
4339
+ /**
4340
+ * The 0-based column index. This index is relative to its position in the table and is not necessarily the same as the column index in the sheet.
4341
+ */
4342
+ columnIndex?: number | null;
4343
+ /**
4344
+ * The column name.
4345
+ */
4346
+ columnName?: string | null;
4347
+ /**
4348
+ * The column type.
4349
+ */
4350
+ columnType?: string | null;
4351
+ /**
4352
+ * The column data validation rule. Only set for dropdown column type.
4353
+ */
4354
+ dataValidationRule?: Schema$TableColumnDataValidationRule;
4355
+ }
4356
+ /**
4357
+ * The table row properties.
4358
+ */
4359
+ export interface Schema$TableRowsProperties {
4360
+ /**
4361
+ * The first color that is alternating. If this field is set, the first banded row is filled with the specified color. Otherwise, the first banded row is filled with a default color.
4362
+ */
4363
+ firstBandColorStyle?: Schema$ColorStyle;
4364
+ /**
4365
+ * The color of the last row. If this field is not set a footer is not added, the last row is filled with either first_band_color_style or second_band_color_style, depending on the color of the previous row. If updating an existing table without a footer to have a footer, the range will be expanded by 1 row. If updating an existing table with a footer and removing a footer, the range will be shrunk by 1 row.
4366
+ */
4367
+ footerColorStyle?: Schema$ColorStyle;
4368
+ /**
4369
+ * The color of the header row. If this field is set, the header row is filled with the specified color. Otherwise, the header row is filled with a default color.
4370
+ */
4371
+ headerColorStyle?: Schema$ColorStyle;
4372
+ /**
4373
+ * The second color that is alternating. If this field is set, the second banded row is filled with the specified color. Otherwise, the second banded row is filled with a default color.
4374
+ */
4375
+ secondBandColorStyle?: Schema$ColorStyle;
4376
+ }
4247
4377
  /**
4248
4378
  * The format of a run of text in a cell. Absent values indicate that the field isn't specified.
4249
4379
  */
@@ -4825,6 +4955,19 @@ export namespace sheets_v4 {
4825
4955
  */
4826
4956
  properties?: Schema$SpreadsheetProperties;
4827
4957
  }
4958
+ /**
4959
+ * Updates a table in the spreadsheet.
4960
+ */
4961
+ export interface Schema$UpdateTableRequest {
4962
+ /**
4963
+ * Required. The fields that should be updated. At least one field must be specified. The root `table` is implied and should not be specified. A single `"*"` can be used as short-hand for listing every field.
4964
+ */
4965
+ fields?: string | null;
4966
+ /**
4967
+ * Required. The table to update.
4968
+ */
4969
+ table?: Schema$Table;
4970
+ }
4828
4971
  /**
4829
4972
  * The response when updating a range of values by a data filter in a spreadsheet.
4830
4973
  */
@@ -4846,7 +4989,7 @@ export namespace sheets_v4 {
4846
4989
  */
4847
4990
  updatedData?: Schema$ValueRange;
4848
4991
  /**
4849
- * The range (in [A1 notation](/sheets/api/guides/concepts#cell)) that updates were applied to.
4992
+ * The range (in [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell)) that updates were applied to.
4850
4993
  */
4851
4994
  updatedRange?: string | null;
4852
4995
  /**
@@ -4892,7 +5035,7 @@ export namespace sheets_v4 {
4892
5035
  */
4893
5036
  majorDimension?: string | null;
4894
5037
  /**
4895
- * The range the values cover, in [A1 notation](/sheets/api/guides/concepts#cell). For output, this range indicates the entire requested range, even though the values will exclude trailing rows and columns. When appending values, this field represents the range to search for a table, after which values will be appended.
5038
+ * The range the values cover, in [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell). For output, this range indicates the entire requested range, even though the values will exclude trailing rows and columns. When appending values, this field represents the range to search for a table, after which values will be appended.
4896
5039
  */
4897
5040
  range?: string | null;
4898
5041
  /**
@@ -5210,7 +5353,7 @@ export namespace sheets_v4 {
5210
5353
  }
5211
5354
 
5212
5355
  /**
5213
- * Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. By default, data within grids is not returned. You can include grid data in one of 2 ways: * Specify a [field mask](https://developers.google.com/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData URL parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want. To retrieve only subsets of spreadsheet data, use the ranges URL parameter. Ranges are specified using [A1 notation](/sheets/api/guides/concepts#cell). You can define a single cell (for example, `A1`) or multiple cells (for example, `A1:D5`). You can also get cells from other sheets within the same spreadsheet (for example, `Sheet2!A1:C4`) or retrieve multiple ranges at once (for example, `?ranges=A1:D5&ranges=Sheet2!A1:C4`). Limiting the range returns only the portions of the spreadsheet that intersect the requested ranges.
5356
+ * Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. By default, data within grids is not returned. You can include grid data in one of 2 ways: * Specify a [field mask](https://developers.google.com/workspace/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData URL parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want. To retrieve only subsets of spreadsheet data, use the ranges URL parameter. Ranges are specified using [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell). You can define a single cell (for example, `A1`) or multiple cells (for example, `A1:D5`). You can also get cells from other sheets within the same spreadsheet (for example, `Sheet2!A1:C4`) or retrieve multiple ranges at once (for example, `?ranges=A1:D5&ranges=Sheet2!A1:C4`). Limiting the range returns only the portions of the spreadsheet that intersect the requested ranges.
5214
5357
  *
5215
5358
  * @param params - Parameters for request
5216
5359
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -5297,7 +5440,7 @@ export namespace sheets_v4 {
5297
5440
  }
5298
5441
 
5299
5442
  /**
5300
- * Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. This method differs from GetSpreadsheet in that it allows selecting which subsets of spreadsheet data to return by specifying a dataFilters parameter. Multiple DataFilters can be specified. Specifying one or more data filters returns the portions of the spreadsheet that intersect ranges matched by any of the filters. By default, data within grids is not returned. You can include grid data one of 2 ways: * Specify a [field mask](https://developers.google.com/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want.
5443
+ * Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. This method differs from GetSpreadsheet in that it allows selecting which subsets of spreadsheet data to return by specifying a dataFilters parameter. Multiple DataFilters can be specified. Specifying one or more data filters returns the portions of the spreadsheet that intersect ranges matched by any of the filters. By default, data within grids is not returned. You can include grid data one of 2 ways: * Specify a [field mask](https://developers.google.com/workspace/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want.
5301
5444
  *
5302
5445
  * @param params - Parameters for request
5303
5446
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -5404,6 +5547,10 @@ export namespace sheets_v4 {
5404
5547
  requestBody?: Schema$Spreadsheet;
5405
5548
  }
5406
5549
  export interface Params$Resource$Spreadsheets$Get extends StandardParameters {
5550
+ /**
5551
+ * True if tables should be excluded in the banded ranges. False if not set.
5552
+ */
5553
+ excludeTablesInBandedRanges?: boolean;
5407
5554
  /**
5408
5555
  * True if grid data should be returned. This parameter is ignored if a field mask was set in the request.
5409
5556
  */
@@ -5768,7 +5915,7 @@ export namespace sheets_v4 {
5768
5915
  }
5769
5916
 
5770
5917
  /**
5771
- * Appends values to a spreadsheet. The input range is used to search for existing data and find a "table" within that range. Values will be appended to the next row of the table, starting with the first column of the table. See the [guide](/sheets/api/guides/values#appending_values) and [sample code](/sheets/api/samples/writing#append_values) for specific details of how tables are detected and data is appended. The caller must specify the spreadsheet ID, range, and a valueInputOption. The `valueInputOption` only controls how the input data will be added to the sheet (column-wise or row-wise), it does not influence what cell the data starts being written to.
5918
+ * Appends values to a spreadsheet. The input range is used to search for existing data and find a "table" within that range. Values will be appended to the next row of the table, starting with the first column of the table. See the [guide](https://developers.google.com/workspace/sheets/api/guides/values#appending_values) and [sample code](https://developers.google.com/workspace/sheets/api/samples/writing#append_values) for specific details of how tables are detected and data is appended. The caller must specify the spreadsheet ID, range, and a valueInputOption. The `valueInputOption` only controls how the input data will be added to the sheet (column-wise or row-wise), it does not influence what cell the data starts being written to.
5772
5919
  *
5773
5920
  * @param params - Parameters for request
5774
5921
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -6715,7 +6862,7 @@ export namespace sheets_v4 {
6715
6862
  */
6716
6863
  insertDataOption?: string;
6717
6864
  /**
6718
- * The [A1 notation](/sheets/api/guides/concepts#cell) of a range to search for a logical table of data. Values are appended after the last row of the table.
6865
+ * The [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell) of a range to search for a logical table of data. Values are appended after the last row of the table.
6719
6866
  */
6720
6867
  range?: string;
6721
6868
  /**
@@ -6775,7 +6922,7 @@ export namespace sheets_v4 {
6775
6922
  */
6776
6923
  majorDimension?: string;
6777
6924
  /**
6778
- * The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the range to retrieve values from.
6925
+ * The [A1 notation or R1C1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell) of the range to retrieve values from.
6779
6926
  */
6780
6927
  ranges?: string[];
6781
6928
  /**
@@ -6826,7 +6973,7 @@ export namespace sheets_v4 {
6826
6973
  export interface Params$Resource$Spreadsheets$Values$Clear
6827
6974
  extends StandardParameters {
6828
6975
  /**
6829
- * The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the values to clear.
6976
+ * The [A1 notation or R1C1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell) of the values to clear.
6830
6977
  */
6831
6978
  range?: string;
6832
6979
  /**
@@ -6850,7 +6997,7 @@ export namespace sheets_v4 {
6850
6997
  */
6851
6998
  majorDimension?: string;
6852
6999
  /**
6853
- * The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the range to retrieve values from.
7000
+ * The [A1 notation or R1C1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell) of the range to retrieve values from.
6854
7001
  */
6855
7002
  range?: string;
6856
7003
  /**
@@ -6869,7 +7016,7 @@ export namespace sheets_v4 {
6869
7016
  */
6870
7017
  includeValuesInResponse?: boolean;
6871
7018
  /**
6872
- * The [A1 notation](/sheets/api/guides/concepts#cell) of the values to update.
7019
+ * The [A1 notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell) of the values to update.
6873
7020
  */
6874
7021
  range?: string;
6875
7022
  /**