update dependencies

This commit is contained in:
Sebastian Thiel
2023-01-25 11:39:00 +01:00
parent 37ccd2238d
commit 3edefb7f01
357 changed files with 128026 additions and 16259 deletions

View File

@@ -169,7 +169,7 @@
]
},
"get": {
"description": "Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. By default, data within grids will not be returned. You can include grid data one of two ways: * Specify a field mask 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, it is recommended to retrieve only the specific fields of the spreadsheet that you want. To retrieve only subsets of the spreadsheet, use the ranges URL parameter. Multiple ranges can be specified. Limiting the range will return only the portions of the spreadsheet that intersect the requested ranges. Ranges are specified using A1 notation.",
"description": "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.",
"flatPath": "v4/spreadsheets/{spreadsheetId}",
"httpMethod": "GET",
"id": "sheets.spreadsheets.get",
@@ -208,7 +208,7 @@
]
},
"getByDataFilter": {
"description": "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 will return the portions of the spreadsheet that intersect ranges matched by any of the filters. By default, data within grids will not be returned. You can include grid data one of two ways: * Specify a field mask 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, it is recommended to retrieve only the specific fields of the spreadsheet that you want.",
"description": "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.",
"flatPath": "v4/spreadsheets/{spreadsheetId}:getByDataFilter",
"httpMethod": "POST",
"id": "sheets.spreadsheets.getByDataFilter",
@@ -377,7 +377,7 @@
"type": "string"
},
"range": {
"description": "The A1 notation of a range to search for a logical table of data. Values are appended after the last row of the table.",
"description": "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.",
"location": "path",
"required": true,
"type": "string"
@@ -446,7 +446,7 @@
]
},
"batchClear": {
"description": "Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more ranges. Only values are cleared -- all other properties of the cell (such as formatting, data validation, etc..) are kept.",
"description": "Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more ranges. Only values are cleared -- all other properties of the cell (such as formatting and data validation) are kept.",
"flatPath": "v4/spreadsheets/{spreadsheetId}/values:batchClear",
"httpMethod": "POST",
"id": "sheets.spreadsheets.values.batchClear",
@@ -526,7 +526,7 @@
"type": "string"
},
"majorDimension": {
"description": "The major dimension that results should use. For example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`, then requesting `range=A1:B2,majorDimension=ROWS` returns `[[1,2],[3,4]]`, whereas requesting `range=A1:B2,majorDimension=COLUMNS` returns `[[1,3],[2,4]]`.",
"description": "The major dimension that results should use. For example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`, then requesting `ranges=[\"A1:B2\"],majorDimension=ROWS` returns `[[1,2],[3,4]]`, whereas requesting `ranges=[\"A1:B2\"],majorDimension=COLUMNS` returns `[[1,3],[2,4]]`.",
"enum": [
"DIMENSION_UNSPECIFIED",
"ROWS",
@@ -541,7 +541,7 @@
"type": "string"
},
"ranges": {
"description": "The A1 notation or R1C1 notation of the range to retrieve values from.",
"description": "The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the range to retrieve values from.",
"location": "query",
"repeated": true,
"type": "string"
@@ -678,7 +678,7 @@
],
"parameters": {
"range": {
"description": "The A1 notation or R1C1 notation of the values to clear.",
"description": "The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the values to clear.",
"location": "path",
"required": true,
"type": "string"
@@ -727,7 +727,7 @@
"type": "string"
},
"majorDimension": {
"description": "The major dimension that results should use. For example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`, then requesting `range=A1:B2,majorDimension=ROWS` returns `[[1,2],[3,4]]`, whereas requesting `range=A1:B2,majorDimension=COLUMNS` returns `[[1,3],[2,4]]`.",
"description": "The major dimension that results should use. For example, if the spreadsheet data in Sheet1 is: `A1=1,B1=2,A2=3,B2=4`, then requesting `range=Sheet1!A1:B2?majorDimension=ROWS` returns `[[1,2],[3,4]]`, whereas requesting `range=Sheet1!A1:B2?majorDimension=COLUMNS` returns `[[1,3],[2,4]]`.",
"enum": [
"DIMENSION_UNSPECIFIED",
"ROWS",
@@ -742,7 +742,7 @@
"type": "string"
},
"range": {
"description": "The A1 notation or R1C1 notation of the range to retrieve values from.",
"description": "The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the range to retrieve values from.",
"location": "path",
"required": true,
"type": "string"
@@ -797,7 +797,7 @@
"type": "boolean"
},
"range": {
"description": "The A1 notation of the values to update.",
"description": "The [A1 notation](/sheets/api/guides/concepts#cell) of the values to update.",
"location": "path",
"required": true,
"type": "string"
@@ -870,7 +870,7 @@
}
}
},
"revision": "20220221",
"revision": "20230119",
"rootUrl": "https://sheets.googleapis.com/",
"schemas": {
"AddBandingRequest": {
@@ -1232,7 +1232,7 @@
"properties": {
"firstBandColor": {
"$ref": "Color",
"description": "The first color that is alternating. (Required)"
"description": "The first color that is alternating. (Required) Deprecated: Use first_band_color_style."
},
"firstBandColorStyle": {
"$ref": "ColorStyle",
@@ -1240,7 +1240,7 @@
},
"footerColor": {
"$ref": "Color",
"description": "The color of the last row or column. If this field is not set, the last row or column is filled with either first_band_color or second_band_color, depending on the color of the previous row or column."
"description": "The color of the last row or column. If this field is not set, the last row or column is filled with either first_band_color or second_band_color, depending on the color of the previous row or column. Deprecated: Use footer_color_style."
},
"footerColorStyle": {
"$ref": "ColorStyle",
@@ -1248,7 +1248,7 @@
},
"headerColor": {
"$ref": "Color",
"description": "The color of the first row or column. If this field is set, the first row or column is filled with this color and the colors alternate between first_band_color and second_band_color starting from the second row or column. Otherwise, the first row or column is filled with first_band_color and the colors proceed to alternate as they normally would."
"description": "The color of the first row or column. If this field is set, the first row or column is filled with this color and the colors alternate between first_band_color and second_band_color starting from the second row or column. Otherwise, the first row or column is filled with first_band_color and the colors proceed to alternate as they normally would. Deprecated: Use header_color_style."
},
"headerColorStyle": {
"$ref": "ColorStyle",
@@ -1256,7 +1256,7 @@
},
"secondBandColor": {
"$ref": "Color",
"description": "The second color that is alternating. (Required)"
"description": "The second color that is alternating. (Required) Deprecated: Use second_band_color_style."
},
"secondBandColorStyle": {
"$ref": "ColorStyle",
@@ -1289,7 +1289,7 @@
},
"negativeColor": {
"$ref": "Color",
"description": "Color to be used, in case baseline value represents a negative change for key value. This field is optional."
"description": "Color to be used, in case baseline value represents a negative change for key value. This field is optional. Deprecated: Use negative_color_style."
},
"negativeColorStyle": {
"$ref": "ColorStyle",
@@ -1301,7 +1301,7 @@
},
"positiveColor": {
"$ref": "Color",
"description": "Color to be used, in case baseline value represents a positive change for key value. This field is optional."
"description": "Color to be used, in case baseline value represents a positive change for key value. This field is optional. Deprecated: Use positive_color_style."
},
"positiveColorStyle": {
"$ref": "ColorStyle",
@@ -1374,7 +1374,7 @@
"properties": {
"color": {
"$ref": "Color",
"description": "The color for elements (such as bars, lines, and points) associated with this series. If empty, a default color is used."
"description": "The color for elements (such as bars, lines, and points) associated with this series. If empty, a default color is used. Deprecated: Use color_style."
},
"colorStyle": {
"$ref": "ColorStyle",
@@ -1607,7 +1607,7 @@
"properties": {
"color": {
"$ref": "Color",
"description": "Color of the series data point. If empty, the series default is used."
"description": "Color of the series data point. If empty, the series default is used. Deprecated: Use color_style."
},
"colorStyle": {
"$ref": "ColorStyle",
@@ -1644,7 +1644,7 @@
"id": "BatchClearValuesByDataFilterResponse",
"properties": {
"clearedRanges": {
"description": "The ranges that were cleared, in A1 notation. 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.",
"description": "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.",
"items": {
"type": "string"
},
@@ -1662,7 +1662,7 @@
"id": "BatchClearValuesRequest",
"properties": {
"ranges": {
"description": "The ranges to clear, in A1 or R1C1 notation.",
"description": "The ranges to clear, in [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell).",
"items": {
"type": "string"
},
@@ -2178,7 +2178,7 @@
"properties": {
"color": {
"$ref": "Color",
"description": "The color of the border."
"description": "The color of the border. Deprecated: Use color_style."
},
"colorStyle": {
"$ref": "ColorStyle",
@@ -2245,7 +2245,7 @@
"properties": {
"bubbleBorderColor": {
"$ref": "Color",
"description": "The bubble border color."
"description": "The bubble border color. Deprecated: Use bubble_border_color_style."
},
"bubbleBorderColorStyle": {
"$ref": "ColorStyle",
@@ -2447,7 +2447,7 @@
"properties": {
"backgroundColor": {
"$ref": "Color",
"description": "The background color of the cell."
"description": "The background color of the cell. Deprecated: Use background_color_style."
},
"backgroundColorStyle": {
"$ref": "ColorStyle",
@@ -2474,7 +2474,7 @@
"type": "string"
},
"hyperlinkDisplayType": {
"description": "How a hyperlink, if it exists, should be displayed in the cell.",
"description": "If one exists, how a hyperlink should be displayed in the cell.",
"enum": [
"HYPERLINK_DISPLAY_TYPE_UNSPECIFIED",
"LINKED",
@@ -2511,11 +2511,11 @@
},
"textFormat": {
"$ref": "TextFormat",
"description": "The format of the text in the cell (unless overridden by a format run). Setting a cell-level link here will clear the cell's existing links. Setting the link field in a TextFormatRun will take precedence over the cell-level link."
"description": "The format of the text in the cell (unless overridden by a format run). Setting a cell-level link here clears the cell's existing links. Setting the link field in a TextFormatRun takes precedence over the cell-level link."
},
"textRotation": {
"$ref": "TextRotation",
"description": "The rotation applied to text in a cell"
"description": "The rotation applied to text in the cell."
},
"verticalAlignment": {
"description": "The vertical alignment of the value in the cell.",
@@ -2751,7 +2751,7 @@
},
"backgroundColor": {
"$ref": "Color",
"description": "The background color of the entire chart. Not applicable to Org charts."
"description": "The background color of the entire chart. Not applicable to Org charts. Deprecated: Use background_color_style."
},
"backgroundColorStyle": {
"$ref": "ColorStyle",
@@ -2930,7 +2930,7 @@
"properties": {
"rgbColor": {
"$ref": "Color",
"description": "RGB color."
"description": "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."
},
"themeColor": {
"description": "Theme color.",
@@ -3147,6 +3147,7 @@
"DATA_EXECUTION_ERROR_CODE_UNSPECIFIED",
"TIMED_OUT",
"TOO_MANY_ROWS",
"TOO_MANY_COLUMNS",
"TOO_MANY_CELLS",
"ENGINE",
"PARAMETER_INVALID",
@@ -3167,6 +3168,7 @@
"Default value, do not use.",
"The data execution timed out.",
"The data execution returns more rows than the limit.",
"The data execution returns more columns than the limit.",
"The data execution returns more cells than the limit.",
"Error is received from the backend data execution engine (e.g. BigQuery). Check error_message for details.",
"One or some of the provided data source parameters are invalid.",
@@ -4340,7 +4342,7 @@
"properties": {
"color": {
"$ref": "Color",
"description": "The color of the border."
"description": "The color of the border. Deprecated: Use color_style."
},
"colorStyle": {
"$ref": "ColorStyle",
@@ -4453,7 +4455,7 @@
},
"visibleBackgroundColor": {
"$ref": "Color",
"description": "The background fill color to filter by; only cells with this fill color are shown. Mutually exclusive with visible_foreground_color."
"description": "The background fill color to filter by; only cells with this fill color are shown. Mutually exclusive with visible_foreground_color. Deprecated: Use visible_background_color_style."
},
"visibleBackgroundColorStyle": {
"$ref": "ColorStyle",
@@ -4461,7 +4463,7 @@
},
"visibleForegroundColor": {
"$ref": "Color",
"description": "The foreground color to filter by; only cells with this foreground color are shown. Mutually exclusive with visible_background_color."
"description": "The foreground color to filter by; only cells with this foreground color are shown. Mutually exclusive with visible_background_color. Deprecated: Use visible_foreground_color_style."
},
"visibleForegroundColorStyle": {
"$ref": "ColorStyle",
@@ -4748,7 +4750,7 @@
"type": "object"
},
"GridRange": {
"description": "A range on a sheet. All indexes are zero-based. Indexes are half open, i.e. the start index is inclusive and the end index is exclusive -- [start_index, end_index). Missing indexes indicate the range is unbounded on that side. For example, if `\"Sheet1\"` is sheet ID 0, then: `Sheet1!A1:A1 == sheet_id: 0, start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0, start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 == sheet_id:0` The start index must always be less than or equal to the end index. If the start index equals the end index, then the range is empty. Empty ranges are typically not meaningful and are usually rendered in the UI as `#REF!`.",
"description": "A range on a sheet. All indexes are zero-based. Indexes are half open, i.e. the start index is inclusive and the end index is exclusive -- [start_index, end_index). Missing indexes indicate the range is unbounded on that side. For example, if `\"Sheet1\"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id: 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2, end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or equal to the end index. If the start index equals the end index, then the range is empty. Empty ranges are typically not meaningful and are usually rendered in the UI as `#REF!`.",
"id": "GridRange",
"properties": {
"endColumnIndex": {
@@ -4857,7 +4859,7 @@
"properties": {
"barColor": {
"$ref": "Color",
"description": "The color of the column representing this series in each bucket. This field is optional."
"description": "The color of the column representing this series in each bucket. This field is optional. Deprecated: Use bar_color_style."
},
"barColorStyle": {
"$ref": "ColorStyle",
@@ -4916,7 +4918,7 @@
"properties": {
"color": {
"$ref": "Color",
"description": "The color this interpolation point should use."
"description": "The color this interpolation point should use. Deprecated: Use color_style."
},
"colorStyle": {
"$ref": "ColorStyle",
@@ -5222,7 +5224,7 @@
},
"nodeColor": {
"$ref": "Color",
"description": "The color of the org chart nodes."
"description": "The color of the org chart nodes. Deprecated: Use node_color_style."
},
"nodeColorStyle": {
"$ref": "ColorStyle",
@@ -5250,7 +5252,7 @@
},
"selectedNodeColor": {
"$ref": "Color",
"description": "The color of the selected org chart nodes."
"description": "The color of the selected org chart nodes. Deprecated: Use selected_node_color_style."
},
"selectedNodeColorStyle": {
"$ref": "ColorStyle",
@@ -6537,7 +6539,7 @@
},
"tabColor": {
"$ref": "Color",
"description": "The color of the tab in the UI."
"description": "The color of the tab in the UI. Deprecated: Use tab_color_style."
},
"tabColorStyle": {
"$ref": "ColorStyle",
@@ -6580,7 +6582,7 @@
},
"backgroundColor": {
"$ref": "Color",
"description": "The background color of the slicer."
"description": "The background color of the slicer. Deprecated: Use background_color_style."
},
"backgroundColorStyle": {
"$ref": "ColorStyle",
@@ -6650,7 +6652,7 @@
"properties": {
"backgroundColor": {
"$ref": "Color",
"description": "The background fill color to sort by; cells with this fill color are sorted to the top. Mutually exclusive with foreground_color."
"description": "The background fill color to sort by; cells with this fill color are sorted to the top. Mutually exclusive with foreground_color. Deprecated: Use background_color_style."
},
"backgroundColorStyle": {
"$ref": "ColorStyle",
@@ -6667,7 +6669,7 @@
},
"foregroundColor": {
"$ref": "Color",
"description": "The foreground color to sort by; cells with this foreground color are sorted to the top. Mutually exclusive with background_color."
"description": "The foreground color to sort by; cells with this foreground color are sorted to the top. Mutually exclusive with background_color. Deprecated: Use foreground_color_style."
},
"foregroundColorStyle": {
"$ref": "ColorStyle",
@@ -6859,7 +6861,7 @@
},
"foregroundColor": {
"$ref": "Color",
"description": "The foreground color of the text."
"description": "The foreground color of the text. Deprecated: Use foreground_color_style."
},
"foregroundColorStyle": {
"$ref": "ColorStyle",
@@ -7048,7 +7050,7 @@
"properties": {
"maxValueColor": {
"$ref": "Color",
"description": "The background color for cells with a color value greater than or equal to maxValue. Defaults to #109618 if not specified."
"description": "The background color for cells with a color value greater than or equal to maxValue. Defaults to #109618 if not specified. Deprecated: Use max_value_color_style."
},
"maxValueColorStyle": {
"$ref": "ColorStyle",
@@ -7056,7 +7058,7 @@
},
"midValueColor": {
"$ref": "Color",
"description": "The background color for cells with a color value at the midpoint between minValue and maxValue. Defaults to #efe6dc if not specified."
"description": "The background color for cells with a color value at the midpoint between minValue and maxValue. Defaults to #efe6dc if not specified. Deprecated: Use mid_value_color_style."
},
"midValueColorStyle": {
"$ref": "ColorStyle",
@@ -7064,7 +7066,7 @@
},
"minValueColor": {
"$ref": "Color",
"description": "The background color for cells with a color value less than or equal to minValue. Defaults to #dc3912 if not specified."
"description": "The background color for cells with a color value less than or equal to minValue. Defaults to #dc3912 if not specified. Deprecated: Use min_value_color_style."
},
"minValueColorStyle": {
"$ref": "ColorStyle",
@@ -7072,7 +7074,7 @@
},
"noDataColor": {
"$ref": "Color",
"description": "The background color for cells that have no color data associated with them. Defaults to #000000 if not specified."
"description": "The background color for cells that have no color data associated with them. Defaults to #000000 if not specified. Deprecated: Use no_data_color_style."
},
"noDataColorStyle": {
"$ref": "ColorStyle",
@@ -7095,7 +7097,7 @@
},
"headerColor": {
"$ref": "Color",
"description": "The background color for header cells."
"description": "The background color for header cells. Deprecated: Use header_color_style."
},
"headerColorStyle": {
"$ref": "ColorStyle",
@@ -7608,7 +7610,7 @@
"description": "The values of the cells in the range matched by the dataFilter after all updates were applied. This is only included if the request's `includeValuesInResponse` field was `true`."
},
"updatedRange": {
"description": "The range (in A1 notation) that updates were applied to.",
"description": "The range (in [A1 notation](/sheets/api/guides/concepts#cell)) that updates were applied to.",
"type": "string"
},
"updatedRows": {
@@ -7672,7 +7674,7 @@
"type": "string"
},
"range": {
"description": "The range the values cover, in A1 notation. 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.",
"description": "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.",
"type": "string"
},
"values": {
@@ -7694,7 +7696,7 @@
"properties": {
"color": {
"$ref": "Color",
"description": "The color of the column."
"description": "The color of the column. Deprecated: Use color_style."
},
"colorStyle": {
"$ref": "ColorStyle",