diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 8af0d314c..506a9d101 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -118,18 +118,3 @@ This will mostly result in a lot of updated files in `tests/cassettes/`. Don't f Please add them in a dedicated commit, in order to make the review process easier. Afterwards, remember to [run the tests in offline mode](#run-tests-offline) to make sure you have recorded everything correctly. - -## Release - -Old release notes are [here](https://gist.github.com/burnash/335f977a74b8bfdc7968). - -New release system: - -- Update version number in [`gspread/__init__.py`](../gspread/__init__.py). -- Get changelog from drafting a new [GitHub release](https://github.com/burnash/gspread/releases/new) (do not publish, instead cancel.) -- Add changelog to [`HISTORY.rst`](../HISTORY.rst). -- Commit the changes as `Release vX.Y.Z` (do not push yet.) -- Run `tox -e lint,py,build,doc` to check build/etc. -- Push the commit. Wait for the CI to pass. -- Add a tag `vX.Y.Z` to the commit locally. This will trigger a new release on PyPi, and make a release on GitHub. -- View the release on [GitHub](https://github.com/burnash/gspread/releases) and [PyPi](https://pypi.org/project/gspread/)! diff --git a/HISTORY.rst b/HISTORY.rst index 5fbfb1eba..099c00152 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,31 +1,6 @@ Release History =============== -5.10.0 (2023-06-29) ------------------- - -* Fix rows_auto_resize in worksheet.py by removing redundant self by @MagicMc23 in https://github.com/burnash/gspread/pull/1194 -* Add deprecation warning for future release 6.0.x by @lavigne958 in https://github.com/burnash/gspread/pull/1195 -* FEATURE: show/hide gridlines (#1197) by @alifeee in https://github.com/burnash/gspread/pull/1202 -* CLEANUP: cleanup tox.ini, and ignore ./env by @alifeee in https://github.com/burnash/gspread/pull/1200 -* Refactor/update-contributing-guide by @alifeee in https://github.com/burnash/gspread/pull/1206 -* Spelling fix (with legacy option) by @alifeee in https://github.com/burnash/gspread/pull/1210 -* 457-fetch-without-hidden-worksheets by @alifeee in https://github.com/burnash/gspread/pull/1207 -* Add_deprecated_warning_sort_method by @lavigne958 in https://github.com/burnash/gspread/pull/1198 -* Update (and test for) internal properties on change by @alifeee in https://github.com/burnash/gspread/pull/1211 -* Feature: Add "Remove tab colour" method by @alifeee in https://github.com/burnash/gspread/pull/1199 -* Refresh-test-cassettes by @alifeee in https://github.com/burnash/gspread/pull/1217 -* update self._properties after batch_update by @alifeee in https://github.com/burnash/gspread/pull/1221 -* 700-fill-merged-cells by @alifeee in https://github.com/burnash/gspread/pull/1215 -* Fix/update-internal-properties by @alifeee in https://github.com/burnash/gspread/pull/1225 -* Add breaking change warning in Worksheet.update() by @lavigne958 in https://github.com/burnash/gspread/pull/1226 -* Bump codespell from 2.2.4 to 2.2.5 by @dependabot in https://github.com/burnash/gspread/pull/1232 -* Add/refresh last update time by @alifeee in https://github.com/burnash/gspread/pull/1233 -* Update-build-tools by @alifeee in https://github.com/burnash/gspread/pull/1231 -* add read the doc configuration file by @lavigne958 in https://github.com/burnash/gspread/pull/1235 -* update licence year by @alifeee in https://github.com/burnash/gspread/pull/1237 -* remove deprecated methods from tests by @alifeee in https://github.com/burnash/gspread/pull/1238 - 5.9.0 (2023-05-11) ------------------ diff --git a/README.md b/README.md index f5a759cab..9f1ddc198 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,10 @@ # Google Spreadsheets Python API v4 -![main workflow](https://img.shields.io/github/actions/workflow/status/burnash/gspread/main.yaml?logo=github) -![github license](https://img.shields.io/pypi/l/gspread?logo=github) -![latest download](https://img.shields.io/github/downloads-pre/burnash/gspread/latest/total?logo=github) -![documentation](https://img.shields.io/readthedocs/gspread?logo=readthedocs) -![pypi download](https://img.shields.io/pypi/dm/gspread?logo=pypi) -![pypi version](https://img.shields.io/pypi/v/gspread?logo=pypi) -![python version](https://img.shields.io/pypi/pyversions/gspread?style=pypi) +![latest workflow](https://github.com/burnash/gspread/actions/workflows/main.yaml/badge.svg?branch=master) +[![GitHub version](https://badge.fury.io/gh/burnash%2Fgspread.svg)](https://badge.fury.io/gh/burnash%2Fgspread) +![PyPi]( https://badge.fury.io/py/gspread.svg) +![downloads](https://img.shields.io/pypi/dm/gspread.svg) +![doc](https://readthedocs.org/projects/gspread/badge/?version=latest) Simple interface for working with Google Sheets. diff --git a/gspread/__init__.py b/gspread/__init__.py index 3666ed385..40f80fa8b 100644 --- a/gspread/__init__.py +++ b/gspread/__init__.py @@ -1,6 +1,6 @@ """Google Spreadsheets Python API""" -__version__ = "5.10.0" +__version__ = "6.0.0" __author__ = "Anton Burnashev" diff --git a/gspread/client.py b/gspread/client.py index a820c98fa..ff26cdf75 100644 --- a/gspread/client.py +++ b/gspread/client.py @@ -39,67 +39,6 @@ def __init__( ) -> None: self.http_client = http_client(auth) - self.timeout = None - - def login(self): - from google.auth.transport.requests import Request - - self.auth.refresh(Request(self.session)) - - self.session.headers.update({"Authorization": "Bearer %s" % self.auth.token}) - - def set_timeout(self, timeout): - """How long to wait for the server to send - data before giving up, as a float, or a ``(connect timeout, - read timeout)`` tuple. - - Value for ``timeout`` is in seconds (s). - """ - self.timeout = timeout - - def request( - self, - method, - endpoint, - params=None, - data=None, - json=None, - files=None, - headers=None, - ): - response = getattr(self.session, method)( - endpoint, - json=json, - params=params, - data=data, - files=files, - headers=headers, - timeout=self.timeout, - ) - - if response.ok: - return response - else: - raise APIError(response) - - def get_file_drive_metadata(self, id): - """Get the metadata from the Drive API for a specific file - This method is mainly here to retrieve the create/update time - of a file (these metadata are only accessible from the Drive API). - """ - - url = DRIVE_FILES_API_V3_URL + "/{}".format(id) - - params = { - "supportsAllDrives": True, - "includeItemsFromAllDrives": True, - "fields": "id,name,createdTime,modifiedTime", - } - - res = self.request("get", url, params=params) - - return res.json() - def list_spreadsheet_files( self, title: Optional[str] = None, folder_id: Optional[str] = None ) -> Tuple[List[Dict[str, Any]], Response]: diff --git a/gspread/spreadsheet.py b/gspread/spreadsheet.py index ded97abe6..70d6383e9 100644 --- a/gspread/spreadsheet.py +++ b/gspread/spreadsheet.py @@ -6,9 +6,6 @@ """ -import warnings -from typing import Union - from .exceptions import WorksheetNotFound from .urls import DRIVE_FILES_API_V3_URL, SPREADSHEET_DRIVE_URL from .utils import ExportFormat, finditem @@ -25,9 +22,6 @@ def __init__(self, http_client, properties): metadata = self.fetch_sheet_metadata() self._properties.update(metadata["properties"]) - drive_metadata = self.client.get_file_drive_metadata(self._properties["id"]) - self._properties.update(drive_metadata) - @property def id(self): """Spreadsheet ID.""" @@ -46,20 +40,21 @@ def url(self): @property def creationTime(self): """Spreadsheet Creation time.""" - return self._properties["createdTime"] + try: + return self._properties["createdTime"] + except KeyError: + metadata = self.client._get_file_drive_metadata(self.id) + self._properties.update(metadata) + return self._properties["createdTime"] @property def lastUpdateTime(self): - """Spreadsheet last updated time. - Only updated on initialisation. - For actual last updated time, use get_lastUpdateTime().""" - warnings.warn( - """ - This is only updated on initialisation and is probably outdated by the time you use it. - For an up to date last updated time, use get_lastUpdateTime(). - """ - ) - return self._properties["modifiedTime"] + """Spreadsheet last updated time.""" + try: + return self._properties["modifiedTime"] + except KeyError: + self.refresh_lastUpdateTime() + return self._properties["modifiedTime"] @property def timezone(self): @@ -233,11 +228,11 @@ def get_worksheet(self, index): except (KeyError, IndexError): raise WorksheetNotFound("index {} not found".format(index)) - def get_worksheet_by_id(self, id: Union[str, int]): + def get_worksheet_by_id(self, id): """Returns a worksheet with specified `worksheet id`. :param id: The id of a worksheet. it can be seen in the url as the value of the parameter 'gid'. - :type id: str | int + :type id: int :returns: an instance of :class:`gspread.worksheet.Worksheet`. :raises: @@ -250,19 +245,14 @@ def get_worksheet_by_id(self, id: Union[str, int]): """ sheet_data = self.fetch_sheet_metadata() - try: - worksheet_id_int = int(id) - except ValueError as ex: - raise ValueError("id should be int") from ex - try: item = finditem( - lambda x: x["properties"]["sheetId"] == worksheet_id_int, + lambda x: x["properties"]["sheetId"] == id, sheet_data["sheets"], ) return Worksheet(self.id, self.client, item["properties"]) except (StopIteration, KeyError): - raise WorksheetNotFound("id {} not found".format(worksheet_id_int)) + raise WorksheetNotFound("id {} not found".format(id)) def worksheets(self, exclude_hidden: bool = False): """Returns a list of all :class:`worksheets ` @@ -399,16 +389,12 @@ def del_worksheet(self, worksheet): return self.client.batch_update(self.id, body) - def del_worksheet_by_id(self, worksheet_id: Union[str, int]): + def del_worksheet_by_id(self, worksheet_id: str): """ Deletes a Worksheet by id """ - try: - worksheet_id_int = int(worksheet_id) - except ValueError as ex: - raise ValueError("id should be int") from ex - body = {"requests": [{"deleteSheet": {"sheetId": worksheet_id_int}}]} + body = {"requests": [{"deleteSheet": {"sheetId": worksheet_id}}]} return self.client.batch_update(self.id, body) @@ -709,16 +695,7 @@ def list_protected_ranges(self, sheetid): return sheet.get("protectedRanges", []) - def refresh_lastUpdateTime(self) -> None: - """Updates the cached value of lastUpdateTime.""" - # remove this and the below upon deprecation of lastUpdateTime @property - self._properties["modifiedTime"] = self.get_lastUpdateTime() - - def get_lastUpdateTime(self) -> str: - """Get the lastUpdateTime metadata from the Drive API. - Also updates the cached value in the _properties dict. - """ - metadata = self.client.get_file_drive_metadata(self.id) - # remove next line and the above upon deprecation of lastUpdateTime @property + def refresh_lastUpdateTime(self): + """Refresh the lastUpdateTime property of the spreadsheet.""" + metadata = self.client._get_file_drive_metadata(self.id) self._properties["modifiedTime"] = metadata["modifiedTime"] - return metadata["modifiedTime"] diff --git a/gspread/utils.py b/gspread/utils.py index b8f448da3..fb286a64d 100644 --- a/gspread/utils.py +++ b/gspread/utils.py @@ -560,29 +560,6 @@ def rightpad(row: List[Any], max_len: int) -> List[Any]: def fill_gaps( L: List[List[Any]], rows: Optional[int] = None, cols: Optional[int] = None ) -> List[List[Any]]: - """Fill gaps in a list of lists. - e.g.,:: - - >>> L = [ - ... [1, 2, 3], - ... ] - >>> fill_gaps(L, 2, 4) - [ - [1, 2, 3, ""], - ["", "", "", ""] - ] - - :param L: List of lists to fill gaps in. - :param rows: Number of rows to fill. - :param cols: Number of columns to fill. - - :type L: list[list[T]] - :type rows: int - :type cols: int - - :return: List of lists with gaps filled. - :rtype: list[list[T]]: - """ try: max_cols = max(len(row) for row in L) if cols is None else cols max_rows = len(L) if rows is None else rows diff --git a/pyproject.toml b/pyproject.toml index 2f1d5df45..d9373458d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,8 +17,6 @@ classifiers = [ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Development Status :: 5 - Production/Stable", diff --git a/tests/cassettes/CellTest.test_a1_value.json b/tests/cassettes/CellTest.test_a1_value.json index 6d1027b5d..6b8a9bd3d 100644 --- a/tests/cassettes/CellTest.test_a1_value.json +++ b/tests/cassettes/CellTest.test_a1_value.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "94" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Transfer-Encoding": [ - "chunked" - ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:47:46 GMT" + "Thu, 08 Jun 2023 22:14:06 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Server": [ - "ESF" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "181" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"name\": \"Test CellTest test_a1_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw\",\n \"name\": \"Test CellTest test_a1_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,6 +116,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -130,43 +127,40 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:06 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:47 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "3325" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,86 +189,9 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "Transfer-Encoding": [ "chunked" ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:47:47 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "191" - ] - }, - "body": { - "string": "{\n \"id\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"name\": \"Test CellTest test_a1_value\",\n \"createdTime\": \"2023-07-20T08:47:44.700Z\",\n \"modifiedTime\": \"2023-07-20T08:47:44.720Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], @@ -286,43 +200,40 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:06 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:47 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "3325" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -354,6 +262,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -362,29 +273,26 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:06 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:48 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "55" @@ -398,7 +306,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"Dummy\"]]}", "headers": { "User-Agent": [ @@ -416,9 +324,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "23" ], @@ -436,6 +341,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -444,43 +352,40 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:07 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:48 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -498,9 +403,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -512,6 +414,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -520,29 +425,26 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:07 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:48 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "116" @@ -556,7 +458,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -574,9 +476,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -591,673 +490,41 @@ "message": "No Content" }, "headers": { + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], "Vary": [ "Origin, X-Origin" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Jun 2023 22:14:07 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:47:49 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test CellTest test_a1_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "94" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:16 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "181" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"name\": \"Test CellTest test_a1_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:16 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3325" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:17 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "191" - ] - }, - "body": { - "string": "{\n \"id\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"name\": \"Test CellTest test_a1_value\",\n \"createdTime\": \"2023-07-20T08:54:14.016Z\",\n \"modifiedTime\": \"2023-07-20T08:54:14.035Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:17 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3325" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:17 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "55" - ] - }, - "body": { - "string": "{\n \"range\": \"Sheet1!D4\",\n \"majorDimension\": \"ROWS\"\n}\n" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", - "body": "{\"values\": [[\"Dummy\"]]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:18 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "165" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:18 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "116" - ] - }, - "body": { - "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\",\n \"Dummy\"\n ]\n ]\n}\n" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?supportsAllDrives=True", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 204, - "message": "No Content" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "text/html" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Content-Length": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:18 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_define_named_range.json b/tests/cassettes/CellTest.test_define_named_range.json index a136c3301..6bbbb2aa4 100644 --- a/tests/cassettes/CellTest.test_define_named_range.json +++ b/tests/cassettes/CellTest.test_define_named_range.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "104" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Transfer-Encoding": [ - "chunked" - ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:47:51 GMT" + "Thu, 08 Jun 2023 22:14:10 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Server": [ - "ESF" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "191" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,6 +116,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -130,43 +127,40 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:10 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:51 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,86 +189,9 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "Transfer-Encoding": [ "chunked" ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:47:51 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "201" - ] - }, - "body": { - "string": "{\n \"id\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-07-20T08:47:49.640Z\",\n \"modifiedTime\": \"2023-07-20T08:47:50.525Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], @@ -286,43 +200,40 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:10 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:52 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA:batchUpdate", "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDefineNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -360,6 +268,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -368,43 +279,40 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:11 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:52 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ - "413" + "412" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"1027309467\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"386178785\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI?fields=namedRanges", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA?fields=namedRanges", "body": null, "headers": { "User-Agent": [ @@ -422,9 +330,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -436,6 +341,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -444,44 +352,41 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:11 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:52 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ - "251" + "250" ] }, "body": { - "string": "{\n \"namedRanges\": [\n {\n \"namedRangeId\": \"1027309467\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n ]\n}\n" + "string": "{\n \"namedRanges\": [\n {\n \"namedRangeId\": \"386178785\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI:batchUpdate", - "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"1027309467\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA:batchUpdate", + "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"386178785\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -498,11 +403,8 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ - "68" + "67" ], "Content-Type": [ "application/json" @@ -518,6 +420,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -526,43 +431,40 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:11 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:52 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -580,9 +482,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -597,679 +496,41 @@ "message": "No Content" }, "headers": { + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], "Vary": [ "Origin, X-Origin" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Jun 2023 22:14:12 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:47:53 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test CellTest test_define_named_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "104" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:21 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "191" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:21 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3335" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:22 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "201" - ] - }, - "body": { - "string": "{\n \"id\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-07-20T08:54:19.159Z\",\n \"modifiedTime\": \"2023-07-20T08:54:19.175Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:22 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3335" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk:batchUpdate", - "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDefineNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "190" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:22 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "413" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"1179381582\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk?fields=namedRanges", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:22 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "251" - ] - }, - "body": { - "string": "{\n \"namedRanges\": [\n {\n \"namedRangeId\": \"1179381582\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n ]\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk:batchUpdate", - "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"1179381582\"}}]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "68" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:23 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "97" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"replies\": [\n {}\n ]\n}\n" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk?supportsAllDrives=True", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 204, - "message": "No Content" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "text/html" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Content-Length": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:23 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_delete_named_range.json b/tests/cassettes/CellTest.test_delete_named_range.json index bb7a39146..7035f9905 100644 --- a/tests/cassettes/CellTest.test_delete_named_range.json +++ b/tests/cassettes/CellTest.test_delete_named_range.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "104" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Transfer-Encoding": [ - "chunked" - ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:47:55 GMT" + "Thu, 08 Jun 2023 22:14:15 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Server": [ - "ESF" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "191" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,6 +116,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -130,43 +127,40 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:16 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:56 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,86 +189,9 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "Transfer-Encoding": [ "chunked" ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:47:56 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "201" - ] - }, - "body": { - "string": "{\n \"id\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"createdTime\": \"2023-07-20T08:47:53.621Z\",\n \"modifiedTime\": \"2023-07-20T08:47:53.640Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], @@ -286,43 +200,40 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:16 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:56 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k:batchUpdate", "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDeleteNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -360,6 +268,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -368,44 +279,41 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:16 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:56 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ - "413" + "412" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"1792097461\",\n \"name\": \"TestDeleteNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"506474362\",\n \"name\": \"TestDeleteNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q:batchUpdate", - "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"1792097461\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k:batchUpdate", + "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"506474362\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -422,11 +330,8 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ - "68" + "67" ], "Content-Type": [ "application/json" @@ -442,6 +347,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -450,43 +358,40 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:16 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:57 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?fields=namedRanges", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k?fields=namedRanges", "body": null, "headers": { "User-Agent": [ @@ -504,9 +409,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -518,6 +420,9 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -526,29 +431,26 @@ "X-Origin", "Referer" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:14:17 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Date": [ - "Thu, 20 Jul 2023 08:47:57 GMT" - ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ "3" @@ -562,7 +464,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -580,9 +482,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -597,679 +496,41 @@ "message": "No Content" }, "headers": { + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], "Vary": [ "Origin, X-Origin" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Jun 2023 22:14:17 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:47:57 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test CellTest test_delete_named_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "104" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:25 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "191" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:26 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3335" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:26 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "201" - ] - }, - "body": { - "string": "{\n \"id\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"createdTime\": \"2023-07-20T08:54:23.944Z\",\n \"modifiedTime\": \"2023-07-20T08:54:24.780Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:26 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3335" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts:batchUpdate", - "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDeleteNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "190" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:26 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "412" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"643866637\",\n \"name\": \"TestDeleteNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts:batchUpdate", - "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"643866637\"}}]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "67" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:27 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "97" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"replies\": [\n {}\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?fields=namedRanges", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:27 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3" - ] - }, - "body": { - "string": "{}\n" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?supportsAllDrives=True", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 204, - "message": "No Content" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "text/html" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Content-Length": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:27 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_equality.json b/tests/cassettes/CellTest.test_equality.json index 13d31400f..0a3d9709f 100644 --- a/tests/cassettes/CellTest.test_equality.json +++ b/tests/cassettes/CellTest.test_equality.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "94" ], @@ -42,211 +39,55 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:47:59 GMT" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Server": [ - "ESF" - ], - "content-length": [ - "181" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"name\": \"Test CellTest test_equality\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:47:59 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "3325" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Transfer-Encoding": [ - "chunked" - ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:48:00 GMT" + "Thu, 08 Jun 2023 22:14:21 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Server": [ - "ESF" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ - "191" + "181" ] }, "body": { - "string": "{\n \"id\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"name\": \"Test CellTest test_equality\",\n \"createdTime\": \"2023-07-20T08:47:58.076Z\",\n \"modifiedTime\": \"2023-07-20T08:47:58.885Z\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"name\": \"Test CellTest test_equality\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -264,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -278,88 +116,9 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:00 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "3325" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", - "body": "{\"values\": [[\"test_equality 1\"]]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "33" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], @@ -368,833 +127,40 @@ "X-Origin", "Referer" ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:00 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "165" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:00 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "110" - ] - }, - "body": { - "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:01 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "110" - ] - }, - "body": { - "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", - "body": "{\"values\": [[\"test_equality 1\"]]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "33" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:01 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "165" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:01 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "110" - ] - }, - "body": { - "string": "{\n \"range\": \"Sheet1!A2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", - "body": "{\"values\": [[\"test_equality 1\"]]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "33" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:01 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "165" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:01 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "110" - ] - }, - "body": { - "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?supportsAllDrives=True", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 204, - "message": "No Content" - }, - "headers": { - "Content-Type": [ - "text/html" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Content-Length": [ - "0" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:02 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test CellTest test_equality\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "94" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:30 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "181" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"name\": \"Test CellTest test_equality\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:31 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3325" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Server": [ "ESF" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "X-Content-Type-Options": [ "nosniff" ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:54:31 GMT" + "Thu, 08 Jun 2023 22:14:21 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ - "191" + "3325" ] }, "body": { - "string": "{\n \"id\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"name\": \"Test CellTest test_equality\",\n \"createdTime\": \"2023-07-20T08:54:28.355Z\",\n \"modifiedTime\": \"2023-07-20T08:54:28.372Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1212,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1226,11 +189,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1240,37 +200,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:31 GMT" + "Thu, 08 Jun 2023 22:14:21 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3325" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/edit\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ @@ -1288,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "33" ], @@ -1308,11 +268,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1322,37 +279,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:32 GMT" + "Thu, 08 Jun 2023 22:14:21 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -1370,9 +330,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1384,11 +341,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1398,23 +352,26 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:32 GMT" + "Thu, 08 Jun 2023 22:14:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "110" @@ -1428,7 +385,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -1446,9 +403,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1460,11 +414,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1474,23 +425,26 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:32 GMT" + "Thu, 08 Jun 2023 22:14:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "110" @@ -1504,7 +458,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ @@ -1522,9 +476,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "33" ], @@ -1542,11 +493,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1556,37 +504,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:32 GMT" + "Thu, 08 Jun 2023 22:14:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -1604,9 +555,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1618,11 +566,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1632,23 +577,26 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:33 GMT" + "Thu, 08 Jun 2023 22:14:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "110" @@ -1662,7 +610,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ @@ -1680,9 +628,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "33" ], @@ -1700,11 +645,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1714,37 +656,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:33 GMT" + "Thu, 08 Jun 2023 22:14:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -1762,9 +707,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1776,11 +718,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1790,23 +729,26 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:33 GMT" + "Thu, 08 Jun 2023 22:14:23 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "110" @@ -1820,7 +762,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1838,9 +780,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1855,41 +794,41 @@ "message": "No Content" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], "Vary": [ "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Content-Length": [ - "0" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:54:34 GMT" + "Thu, 08 Jun 2023 22:14:23 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_merge_cells.json b/tests/cassettes/CellTest.test_merge_cells.json index 06d1e0910..16fb4c422 100644 --- a/tests/cassettes/CellTest.test_merge_cells.json +++ b/tests/cassettes/CellTest.test_merge_cells.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "97" ], @@ -42,211 +39,55 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:04 GMT" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Server": [ - "ESF" - ], - "content-length": [ - "184" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:05 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "3328" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Transfer-Encoding": [ - "chunked" - ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:48:05 GMT" + "Thu, 08 Jun 2023 22:14:26 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Server": [ - "ESF" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ - "194" + "184" ] }, "body": { - "string": "{\n \"id\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"createdTime\": \"2023-07-20T08:48:02.877Z\",\n \"modifiedTime\": \"2023-07-20T08:48:03.770Z\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -264,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -278,88 +116,9 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:05 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "3328" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", - "body": "{\"values\": [[42, 43], [43, 44]]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "32" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], @@ -368,839 +127,40 @@ "X-Origin", "Referer" ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:05 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "168" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 4\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate", - "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ROWS\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "166" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:06 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "97" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"replies\": [\n {}\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:06 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "3638" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 1,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate", - "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "165" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:06 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "97" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"replies\": [\n {}\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:07 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "3496" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate", - "body": "{\"requests\": [{\"unmergeCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:07 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "97" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"replies\": [\n {}\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:07 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "3328" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?supportsAllDrives=True", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 204, - "message": "No Content" - }, - "headers": { - "Content-Type": [ - "text/html" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Content-Length": [ - "0" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:08 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test CellTest test_merge_cells\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "97" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:35 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "184" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:36 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3328" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Server": [ "ESF" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "X-Content-Type-Options": [ "nosniff" ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:54:36 GMT" + "Thu, 08 Jun 2023 22:14:26 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ - "194" + "3328" ] }, "body": { - "string": "{\n \"id\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"createdTime\": \"2023-07-20T08:54:34.403Z\",\n \"modifiedTime\": \"2023-07-20T08:54:34.926Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1218,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1232,11 +189,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1246,37 +200,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:36 GMT" + "Thu, 08 Jun 2023 22:14:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/edit\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", "body": "{\"values\": [[42, 43], [43, 44]]}", "headers": { "User-Agent": [ @@ -1294,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "32" ], @@ -1314,11 +268,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1328,37 +279,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:37 GMT" + "Thu, 08 Jun 2023 22:14:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 4\n}\n" + "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 4\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ROWS\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -1376,9 +330,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "166" ], @@ -1396,11 +347,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1410,37 +358,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:37 GMT" + "Thu, 08 Jun 2023 22:14:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1458,9 +409,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1472,11 +420,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1486,37 +431,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:37 GMT" + "Thu, 08 Jun 2023 22:14:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3638" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 1,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 1,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -1534,9 +482,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "165" ], @@ -1554,11 +499,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1568,37 +510,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:37 GMT" + "Thu, 08 Jun 2023 22:14:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1616,9 +561,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1630,11 +572,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1644,37 +583,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:38 GMT" + "Thu, 08 Jun 2023 22:14:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3496" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8:batchUpdate", "body": "{\"requests\": [{\"unmergeCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -1692,9 +634,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "141" ], @@ -1712,11 +651,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1726,37 +662,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:38 GMT" + "Thu, 08 Jun 2023 22:14:28 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1774,9 +713,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1788,11 +724,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1802,37 +735,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:38 GMT" + "Thu, 08 Jun 2023 22:14:28 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1850,9 +786,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1867,41 +800,41 @@ "message": "No Content" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], "Vary": [ "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Content-Length": [ - "0" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:54:38 GMT" + "Thu, 08 Jun 2023 22:14:28 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_numeric_value.json b/tests/cassettes/CellTest.test_numeric_value.json index 8fea34fe0..60fd63971 100644 --- a/tests/cassettes/CellTest.test_numeric_value.json +++ b/tests/cassettes/CellTest.test_numeric_value.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "99" ], @@ -42,1003 +39,55 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:10 GMT" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Server": [ - "ESF" - ], - "content-length": [ - "186" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], "Transfer-Encoding": [ "chunked" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:11 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "3330" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Transfer-Encoding": [ - "chunked" - ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:11 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "196" - ] - }, - "body": { - "string": "{\n \"id\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"createdTime\": \"2023-07-20T08:48:08.567Z\",\n \"modifiedTime\": \"2023-07-20T08:48:08.584Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:11 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "3330" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", - "body": "{\"values\": [[\"= 1 / 1024\"]]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "28" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:12 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "165" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:12 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "107" - ] - }, - "body": { - "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"0.0009765625\"\n ]\n ]\n}\n" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", - "body": "{\"values\": [[\"2,000,000.01\"]]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:12 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "165" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:12 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "107" - ] - }, - "body": { - "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2,000,000.01\"\n ]\n ]\n}\n" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", - "body": "{\"values\": [[\"Non-numeric value\"]]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "35" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:13 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "165" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:13 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "112" - ] - }, - "body": { - "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Non-numeric value\"\n ]\n ]\n}\n" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?supportsAllDrives=True", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 204, - "message": "No Content" - }, - "headers": { - "Content-Type": [ - "text/html" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Content-Length": [ - "0" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:13 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test CellTest test_numeric_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "99" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:41 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "186" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:41 GMT" + "Thu, 08 Jun 2023 22:14:31 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ - "3330" + "186" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/edit\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1056,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1070,55 +116,51 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "X-Content-Type-Options": [ "nosniff" ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:54:41 GMT" + "Thu, 08 Jun 2023 22:14:31 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ - "196" + "3330" ] }, "body": { - "string": "{\n \"id\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"createdTime\": \"2023-07-20T08:54:39.530Z\",\n \"modifiedTime\": \"2023-07-20T08:54:40.323Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1136,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1150,11 +189,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1164,37 +200,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:42 GMT" + "Thu, 08 Jun 2023 22:14:31 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3330" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/edit\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"= 1 / 1024\"]]}", "headers": { "User-Agent": [ @@ -1212,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "28" ], @@ -1232,11 +268,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1246,37 +279,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:42 GMT" + "Thu, 08 Jun 2023 22:14:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -1294,9 +330,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1308,11 +341,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1322,23 +352,26 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:42 GMT" + "Thu, 08 Jun 2023 22:14:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" @@ -1352,7 +385,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"2,000,000.01\"]]}", "headers": { "User-Agent": [ @@ -1370,9 +403,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "30" ], @@ -1390,11 +420,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1404,37 +431,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:42 GMT" + "Thu, 08 Jun 2023 22:14:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -1452,9 +482,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1466,11 +493,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1480,23 +504,26 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:43 GMT" + "Thu, 08 Jun 2023 22:14:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" @@ -1510,7 +537,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"Non-numeric value\"]]}", "headers": { "User-Agent": [ @@ -1528,9 +555,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "35" ], @@ -1548,11 +572,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1562,37 +583,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:43 GMT" + "Thu, 08 Jun 2023 22:14:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -1610,9 +634,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1624,11 +645,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1638,23 +656,26 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:43 GMT" + "Thu, 08 Jun 2023 22:14:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "112" @@ -1668,7 +689,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1686,9 +707,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1703,41 +721,41 @@ "message": "No Content" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], "Vary": [ "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Content-Length": [ - "0" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:54:44 GMT" + "Thu, 08 Jun 2023 22:14:33 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_properties.json b/tests/cassettes/CellTest.test_properties.json index a3e4e3300..13b5f99b0 100644 --- a/tests/cassettes/CellTest.test_properties.json +++ b/tests/cassettes/CellTest.test_properties.json @@ -22,565 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "96" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:15 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "183" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"name\": \"Test CellTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:16 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "3327" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:16 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "193" - ] - }, - "body": { - "string": "{\n \"id\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"name\": \"Test CellTest test_properties\",\n \"createdTime\": \"2023-07-20T08:48:14.243Z\",\n \"modifiedTime\": \"2023-07-20T08:48:15.032Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:16 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "3327" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", - "body": "{\"values\": [[\"test_properties 1\"]]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "35" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:16 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "165" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Cache-Control": [ - "private" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:17 GMT" - ], - "Server": [ - "ESF" - ], - "content-length": [ - "112" - ] - }, - "body": { - "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_properties 1\"\n ]\n ]\n}\n" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?supportsAllDrives=True", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 204, - "message": "No Content" - }, - "headers": { - "Content-Type": [ - "text/html" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Content-Length": [ - "0" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Date": [ - "Thu, 20 Jul 2023 08:48:17 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Server": [ - "ESF" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test CellTest test_properties\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "96" ], @@ -598,11 +39,11 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -610,43 +51,43 @@ "Vary": [ "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:54:47 GMT" + "Thu, 08 Jun 2023 22:14:36 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "183" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"name\": \"Test CellTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk\",\n \"name\": \"Test CellTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -664,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -678,11 +116,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -692,117 +127,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:47 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3327" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Server": [ "ESF" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "X-Content-Type-Options": [ "nosniff" ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:54:47 GMT" + "Thu, 08 Jun 2023 22:14:37 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ - "193" + "3327" ] }, "body": { - "string": "{\n \"id\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"name\": \"Test CellTest test_properties\",\n \"createdTime\": \"2023-07-20T08:54:44.530Z\",\n \"modifiedTime\": \"2023-07-20T08:54:44.555Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -820,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -834,11 +189,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -848,37 +200,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:47 GMT" + "Thu, 08 Jun 2023 22:14:37 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk/edit\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_properties 1\"]]}", "headers": { "User-Agent": [ @@ -896,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "35" ], @@ -916,11 +268,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -930,37 +279,40 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:48 GMT" + "Thu, 08 Jun 2023 22:14:37 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -978,9 +330,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -992,11 +341,8 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -1006,23 +352,26 @@ "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], "Date": [ - "Thu, 20 Jul 2023 08:54:48 GMT" + "Thu, 08 Jun 2023 22:14:37 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "112" @@ -1036,7 +385,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1054,9 +403,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1071,41 +417,41 @@ "message": "No Content" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], "Vary": [ "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Content-Length": [ - "0" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Thu, 20 Jul 2023 08:54:48 GMT" + "Thu, 08 Jun 2023 22:14:38 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/ClientTest.test_access_non_existing_spreadsheet.json b/tests/cassettes/ClientTest.test_access_non_existing_spreadsheet.json index 9483eaa61..be73ac0f9 100644 --- a/tests/cassettes/ClientTest.test_access_non_existing_spreadsheet.json +++ b/tests/cassettes/ClientTest.test_access_non_existing_spreadsheet.json @@ -239,9 +239,6 @@ "Connection": [ "keep-alive" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -253,8 +250,8 @@ "message": "Not Found" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -262,105 +259,29 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:29 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:18:43 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "content-length": [ - "114" - ] - }, - "body": { - "string": "{\n \"error\": {\n \"code\": 404,\n \"message\": \"Requested entity was not found.\",\n \"status\": \"NOT_FOUND\"\n }\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/test?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 404, - "message": "Not Found" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Transfer-Encoding": [ "chunked" ], - "Date": [ - "Thu, 20 Jul 2023 08:54:49 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "content-length": [ "114" ] diff --git a/tests/cassettes/ClientTest.test_copy.json b/tests/cassettes/ClientTest.test_copy.json index 48d9207bf..ddc548890 100644 --- a/tests/cassettes/ClientTest.test_copy.json +++ b/tests/cassettes/ClientTest.test_copy.json @@ -19,12 +19,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "92" ], @@ -42,297 +36,55 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-XSS-Protection": [ "0" ], - "Date": [ - "Thu, 20 Jul 2023 08:51:31 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "179" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" + "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ - "Thu, 20 Jul 2023 08:51:32 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:23:07 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "content-length": [ - "3323" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:51:32 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "Vary": [ "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "172" - ] - }, - "body": { - "string": "{\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/copy?supportsAllDrives=True", - "body": "{\"name\": null, \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "69" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:51:35 GMT" - ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], "content-length": [ - "187" + "179" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1AigJbrKSWXdEx6_lHW4f7mdWbaF_0CYyoAR-X-9xZ9s\",\n \"name\": \"Test ClientTest test_copy\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AigJbrKSWXdEx6_lHW4f7mdWbaF_0CYyoAR-X-9xZ9s?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -347,574 +99,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:51:36 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "Date": [ - "Wed, 28 Jun 2023 15:23:10 GMT" - ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3331" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:51:36 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/comments?fields=comments%2Fcontent%2Ccomments%2Fanchor%2CnextPageToken&includeDeleted=False&pageSize=100&pageToken=", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:51:36 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "21" - ] - }, - "body": { - "string": "{\n \"comments\": []\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:51:36 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3323" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:51:37 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Original\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "75" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:52 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "162" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:53 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3306" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -926,55 +110,51 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Date": [ + "Wed, 28 Jun 2023 15:23:07 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Transfer-Encoding": [ "chunked" ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:53 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "content-length": [ - "172" + "3323" ] }, "body": { - "string": "{\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1AigJbrKSWXdEx6_lHW4f7mdWbaF_0CYyoAR-X-9xZ9s\",\n \"properties\": {\n \"title\": \"Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AigJbrKSWXdEx6_lHW4f7mdWbaF_0CYyoAR-X-9xZ9s/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/copy?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1AigJbrKSWXdEx6_lHW4f7mdWbaF_0CYyoAR-X-9xZ9s/copy?supportsAllDrives=True", "body": "{\"name\": null, \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ @@ -989,12 +169,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "69" ], @@ -1012,29 +186,35 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Date": [ + "Wed, 28 Jun 2023 15:23:10 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1042,25 +222,19 @@ "Pragma": [ "no-cache" ], - "Date": [ - "Thu, 20 Jul 2023 08:54:55 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "content-length": [ - "170" + "187" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1075,12 +249,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1092,51 +260,51 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Date": [ + "Wed, 28 Jun 2023 15:23:10 GMT" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Transfer-Encoding": [ "chunked" ], - "Date": [ - "Thu, 20 Jul 2023 08:54:56 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "content-length": [ "3331" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://www.googleapis.com/drive/v3/files/1AigJbrKSWXdEx6_lHW4f7mdWbaF_0CYyoAR-X-9xZ9s/comments?fields=comments%2Fcontent%2Ccomments%2Fanchor%2CnextPageToken&includeDeleted=False&pageSize=100&pageToken=", "body": null, "headers": { "User-Agent": [ @@ -1151,12 +319,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1168,29 +330,35 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Date": [ + "Wed, 28 Jun 2023 15:23:10 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Transfer-Encoding": [ "chunked" @@ -1198,25 +366,19 @@ "Pragma": [ "no-cache" ], - "Date": [ - "Thu, 20 Jul 2023 08:54:56 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "content-length": [ - "180" + "21" ] }, "body": { - "string": "{\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n}\n" + "string": "{\n \"comments\": []\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/comments?fields=comments%2Fcontent%2Ccomments%2Fanchor%2CnextPageToken&includeDeleted=False&pageSize=100&pageToken=", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AigJbrKSWXdEx6_lHW4f7mdWbaF_0CYyoAR-X-9xZ9s?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1231,12 +393,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1248,55 +404,51 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Date": [ + "Wed, 28 Jun 2023 15:23:11 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Transfer-Encoding": [ "chunked" ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:56 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "content-length": [ - "21" + "3323" ] }, "body": { - "string": "{\n \"comments\": []\n}\n" + "string": "{\n \"spreadsheetId\": \"1AigJbrKSWXdEx6_lHW4f7mdWbaF_0CYyoAR-X-9xZ9s\",\n \"properties\": {\n \"title\": \"Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AigJbrKSWXdEx6_lHW4f7mdWbaF_0CYyoAR-X-9xZ9s/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1311,12 +463,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1328,51 +474,51 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Date": [ + "Wed, 28 Jun 2023 15:23:11 GMT" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Transfer-Encoding": [ "chunked" ], - "Date": [ - "Thu, 20 Jul 2023 08:54:56 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "content-length": [ - "3306" + "3331" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY/edit\"\n}\n" } } }, { "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false", + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1AigJbrKSWXdEx6_lHW4f7mdWbaF_0CYyoAR-X-9xZ9s?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1387,10 +533,7 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ + "Content-Length": [ "0" ], "authorization": [ @@ -1400,48 +543,49 @@ }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 204, + "message": "No Content" }, "headers": { - "Server": [ - "ESF" + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" ], "Cache-Control": [ - "private" + "no-cache, no-store, max-age=0, must-revalidate" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Date": [ + "Wed, 28 Jun 2023 15:23:11 GMT" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:54:57 GMT" + "Content-Type": [ + "text/html" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "content-length": [ - "3314" + "Pragma": [ + "no-cache" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0/edit\"\n}\n" + "string": "" } } } diff --git a/tests/cassettes/ClientTest.test_create.json b/tests/cassettes/ClientTest.test_create.json index b75a74653..9146f010c 100644 --- a/tests/cassettes/ClientTest.test_create.json +++ b/tests/cassettes/ClientTest.test_create.json @@ -1,321 +1,379 @@ { - "version": 1, - "interactions": [ - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test ClientTest test_create\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": ["python-requests/2.31.0"], - "Accept-Encoding": ["gzip, deflate"], - "Accept": ["*/*"], - "Connection": ["keep-alive"], - "Content-Length": ["94"], - "Content-Type": ["application/json"], - "authorization": [""] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-XSS-Protection": ["0"], - "X-Content-Type-Options": ["nosniff"], - "Cache-Control": ["no-cache, no-store, max-age=0, must-revalidate"], - "Date": ["Wed, 28 Jun 2023 15:23:14 GMT"], - "Server": ["ESF"], - "Alt-Svc": ["h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"], - "Vary": ["Origin, X-Origin"], - "X-Frame-Options": ["SAMEORIGIN"], - "Content-Type": ["application/json; charset=UTF-8"], - "Expires": ["Mon, 01 Jan 1990 00:00:00 GMT"], - "Transfer-Encoding": ["chunked"], - "Pragma": ["no-cache"], - "content-length": ["181"] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1q8wN5vla1TxYERIKcNzdprz25ew4zrmtz5OhAm707GY\",\n \"name\": \"Test ClientTest test_create\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q8wN5vla1TxYERIKcNzdprz25ew4zrmtz5OhAm707GY?includeGridData=false", - "body": null, - "headers": { - "User-Agent": ["python-requests/2.31.0"], - "Accept-Encoding": ["gzip, deflate"], - "Accept": ["*/*"], - "Connection": ["keep-alive"], - "authorization": [""] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-XSS-Protection": ["0"], - "X-Content-Type-Options": ["nosniff"], - "Cache-Control": ["private"], - "Date": ["Wed, 28 Jun 2023 15:23:15 GMT"], - "Server": ["ESF"], - "Alt-Svc": ["h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"], - "Vary": ["Origin", "X-Origin", "Referer"], - "X-Frame-Options": ["SAMEORIGIN"], - "Content-Type": ["application/json; charset=UTF-8"], - "Transfer-Encoding": ["chunked"], - "content-length": ["3325"] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1q8wN5vla1TxYERIKcNzdprz25ew4zrmtz5OhAm707GY\",\n \"properties\": {\n \"title\": \"Test ClientTest test_create\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q8wN5vla1TxYERIKcNzdprz25ew4zrmtz5OhAm707GY/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test Spreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": ["python-requests/2.31.0"], - "Accept-Encoding": ["gzip, deflate"], - "Accept": ["*/*"], - "Connection": ["keep-alive"], - "x-goog-api-client": ["cred-type/sa"], - "x-identity-trust-boundary": ["0"], - "Content-Length": ["83"], - "Content-Type": ["application/json"], - "authorization": [""] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" + "version": 1, + "interactions": [ + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Test ClientTest test_create\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "94" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Date": [ + "Wed, 28 Jun 2023 15:23:14 GMT" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "content-length": [ + "181" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1q8wN5vla1TxYERIKcNzdprz25ew4zrmtz5OhAm707GY\",\n \"name\": \"Test ClientTest test_create\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } }, - "headers": { - "X-Frame-Options": ["SAMEORIGIN"], - "Pragma": ["no-cache"], - "X-Content-Type-Options": ["nosniff"], - "Cache-Control": ["no-cache, no-store, max-age=0, must-revalidate"], - "X-XSS-Protection": ["0"], - "Date": ["Thu, 20 Jul 2023 08:51:39 GMT"], - "Content-Type": ["application/json; charset=UTF-8"], - "Server": ["ESF"], - "Transfer-Encoding": ["chunked"], - "Expires": ["Mon, 01 Jan 1990 00:00:00 GMT"], - "Vary": ["Origin, X-Origin"], - "Alt-Svc": ["h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"], - "content-length": ["170"] + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q8wN5vla1TxYERIKcNzdprz25ew4zrmtz5OhAm707GY?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Wed, 28 Jun 2023 15:23:15 GMT" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" + ], + "content-length": [ + "3325" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1q8wN5vla1TxYERIKcNzdprz25ew4zrmtz5OhAm707GY\",\n \"properties\": {\n \"title\": \"Test ClientTest test_create\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q8wN5vla1TxYERIKcNzdprz25ew4zrmtz5OhAm707GY/edit\"\n}\n" + } + } }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": ["python-requests/2.31.0"], - "Accept-Encoding": ["gzip, deflate"], - "Accept": ["*/*"], - "Connection": ["keep-alive"], - "x-goog-api-client": ["cred-type/sa"], - "x-identity-trust-boundary": ["0"], - "authorization": [""] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": ["SAMEORIGIN"], - "X-Content-Type-Options": ["nosniff"], - "Cache-Control": ["private"], - "X-XSS-Protection": ["0"], - "Date": ["Thu, 20 Jul 2023 08:51:40 GMT"], - "Content-Type": ["application/json; charset=UTF-8"], - "Server": ["ESF"], - "Transfer-Encoding": ["chunked"], - "Vary": ["Origin", "X-Origin", "Referer"], - "Alt-Svc": ["h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"], - "content-length": ["3314"] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": ["python-requests/2.31.0"], - "Accept-Encoding": ["gzip, deflate"], - "Accept": ["*/*"], - "Connection": ["keep-alive"], - "x-goog-api-client": ["cred-type/sa"], - "x-identity-trust-boundary": ["0"], - "authorization": [""] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": ["SAMEORIGIN"], - "Pragma": ["no-cache"], - "X-Content-Type-Options": ["nosniff"], - "Cache-Control": ["no-cache, no-store, max-age=0, must-revalidate"], - "X-XSS-Protection": ["0"], - "Date": ["Thu, 20 Jul 2023 08:51:40 GMT"], - "Content-Type": ["application/json; charset=UTF-8"], - "Server": ["ESF"], - "Transfer-Encoding": ["chunked"], - "Expires": ["Mon, 01 Jan 1990 00:00:00 GMT"], - "Vary": ["Origin, X-Origin"], - "Alt-Svc": ["h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"], - "content-length": ["180"] - }, - "body": { - "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test Spreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": ["python-requests/2.31.0"], - "Accept-Encoding": ["gzip, deflate"], - "Accept": ["*/*"], - "Connection": ["keep-alive"], - "x-goog-api-client": ["cred-type/sa"], - "x-identity-trust-boundary": ["0"], - "Content-Length": ["83"], - "Content-Type": ["application/json"], - "authorization": [""] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": ["ESF"], - "Cache-Control": ["no-cache, no-store, max-age=0, must-revalidate"], - "Content-Type": ["application/json; charset=UTF-8"], - "Vary": ["Origin, X-Origin"], - "Alt-Svc": ["h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"], - "X-XSS-Protection": ["0"], - "X-Frame-Options": ["SAMEORIGIN"], - "X-Content-Type-Options": ["nosniff"], - "Transfer-Encoding": ["chunked"], - "Pragma": ["no-cache"], - "Date": ["Thu, 20 Jul 2023 08:54:58 GMT"], - "Expires": ["Mon, 01 Jan 1990 00:00:00 GMT"], - "content-length": ["170"] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false", - "body": null, - "headers": { - "User-Agent": ["python-requests/2.31.0"], - "Accept-Encoding": ["gzip, deflate"], - "Accept": ["*/*"], - "Connection": ["keep-alive"], - "x-goog-api-client": ["cred-type/sa"], - "x-identity-trust-boundary": ["0"], - "authorization": [""] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": ["ESF"], - "Cache-Control": ["private"], - "Content-Type": ["application/json; charset=UTF-8"], - "Vary": ["Origin", "X-Origin", "Referer"], - "Alt-Svc": ["h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"], - "X-XSS-Protection": ["0"], - "X-Frame-Options": ["SAMEORIGIN"], - "Transfer-Encoding": ["chunked"], - "Date": ["Thu, 20 Jul 2023 08:54:59 GMT"], - "X-Content-Type-Options": ["nosniff"], - "content-length": ["3314"] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": ["python-requests/2.31.0"], - "Accept-Encoding": ["gzip, deflate"], - "Accept": ["*/*"], - "Connection": ["keep-alive"], - "x-goog-api-client": ["cred-type/sa"], - "x-identity-trust-boundary": ["0"], - "authorization": [""] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Test Spreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "83" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Date": [ + "Wed, 28 Jun 2023 15:23:17 GMT" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "content-length": [ + "170" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } }, - "headers": { - "Server": ["ESF"], - "Cache-Control": ["no-cache, no-store, max-age=0, must-revalidate"], - "Content-Type": ["application/json; charset=UTF-8"], - "Vary": ["Origin, X-Origin"], - "Alt-Svc": ["h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"], - "X-XSS-Protection": ["0"], - "X-Frame-Options": ["SAMEORIGIN"], - "X-Content-Type-Options": ["nosniff"], - "Transfer-Encoding": ["chunked"], - "Pragma": ["no-cache"], - "Date": ["Thu, 20 Jul 2023 08:54:59 GMT"], - "Expires": ["Mon, 01 Jan 1990 00:00:00 GMT"], - "content-length": ["180"] + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Wed, 28 Jun 2023 15:23:18 GMT" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" + } + } }, - "body": { - "string": "{\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n}\n" + { + "request": { + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1q8wN5vla1TxYERIKcNzdprz25ew4zrmtz5OhAm707GY?supportsAllDrives=True", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 204, + "message": "No Content" + }, + "headers": { + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Date": [ + "Wed, 28 Jun 2023 15:23:18 GMT" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "text/html" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Pragma": [ + "no-cache" + ] + }, + "body": { + "string": "" + } + } } - } - } - ] + ] } diff --git a/tests/cassettes/ClientTest.test_import_csv.json b/tests/cassettes/ClientTest.test_import_csv.json index 3aff3e76f..baff6aaaa 100644 --- a/tests/cassettes/ClientTest.test_import_csv.json +++ b/tests/cassettes/ClientTest.test_import_csv.json @@ -19,12 +19,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "98" ], @@ -42,11 +36,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -54,43 +45,46 @@ "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:43 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:23:22 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], "content-length": [ "185" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"name\": \"TestImportSpreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo\",\n \"name\": \"Test ClientTest test_import_csv\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,12 +99,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,8 +110,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -131,43 +119,43 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:43 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:23:22 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ "3329" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo\",\n \"properties\": {\n \"title\": \"Test ClientTest test_import_csv\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo/edit\"\n}\n" } } }, { "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, + "method": "PUT", + "uri": "https://www.googleapis.com/upload/drive/v2/files/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo?uploadType=media&convert=True&supportsAllDrives=True", + "body": "test_import_csv 1,test_import_csv 2,test_import_csv 3,test_import_csv 4\ntest_import_csv 5,test_import_csv 6,test_import_csv 7,test_import_csv 8\ntest_import_csv 9,test_import_csv 10,test_import_csv 11,test_import_csv 12\ntest_import_csv 13,test_import_csv 14,test_import_csv 15,test_import_csv 16", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -181,11 +169,11 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" + "Content-Type": [ + "text/csv" ], - "x-identity-trust-boundary": [ - "0" + "Content-Length": [ + "294" ], "authorization": [ "" @@ -198,56 +186,62 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], "X-Content-Type-Options": [ "nosniff" ], + "X-XSS-Protection": [ + "0" + ], + "ETag": [ + "\"MTY4Nzk2NTgwMzIwNA\"" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "X-XSS-Protection": [ - "0" + "Content-Length": [ + "4314" ], "Date": [ - "Thu, 20 Jul 2023 08:51:44 GMT" + "Wed, 28 Jun 2023 15:23:24 GMT" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Access-Control-Allow-Credentials": [ + "true" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "content-length": [ - "185" + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-GUploader-UploadID": [ + "ADPycdsuxJxAEux7ota5inA9MSUKUeRA1MepLentXxmeT1G6ASWDcwfFOHn9Co0xPyxskShwVofYHyn1DKmiIPsfOfFEGQ" + ], + "Pragma": [ + "no-cache" ] }, "body": { - "string": "{\n \"id\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"name\": \"TestImportSpreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:40.779Z\",\n \"modifiedTime\": \"2023-07-20T08:51:40.794Z\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"userPermission\": {\n \"id\": \"me\",\n \"type\": \"user\",\n \"role\": \"owner\",\n \"kind\": \"drive#permission\",\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo/permissions/me\",\n \"etag\": \"\\\"UfshR1OflvV3D4yqMuirBMdc8Cs\\\"\",\n \"pendingOwner\": false\n },\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo\",\n \"ownerNames\": [\n \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\"\n ],\n \"lastModifyingUserName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"editable\": true,\n \"writersCanShare\": true,\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\",\n \"exportLinks\": {\n \"application/x-vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo&exportFormat=ods\",\n \"text/tab-separated-values\": \"https://docs.google.com/spreadsheets/export?id=18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo&exportFormat=tsv\",\n \"application/pdf\": \"https://docs.google.com/spreadsheets/export?id=18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo&exportFormat=pdf\",\n \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"https://docs.google.com/spreadsheets/export?id=18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo&exportFormat=xlsx\",\n \"text/csv\": \"https://docs.google.com/spreadsheets/export?id=18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo&exportFormat=csv\",\n \"application/zip\": \"https://docs.google.com/spreadsheets/export?id=18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo&exportFormat=zip\",\n \"application/vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo&exportFormat=ods\"\n },\n \"parents\": [\n {\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo/parents/0AGIJ7XFn4BojUk9PVA\",\n \"id\": \"0AGIJ7XFn4BojUk9PVA\",\n \"isRoot\": true,\n \"kind\": \"drive#parentReference\",\n \"parentLink\": \"https://www.googleapis.com/drive/v2/files/0AGIJ7XFn4BojUk9PVA\"\n }\n ],\n \"thumbnailLink\": \"https://docs.google.com/feeds/vt?gd=true&id=18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo&v=1&s=AMedNnoAAAAAZJxsjMlTVBe-uS6RiO9PNAYcc-Bvu354&sz=s220\",\n \"appDataContents\": false,\n \"iconLink\": \"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.spreadsheet\",\n \"shared\": false,\n \"lastModifyingUser\": {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n },\n \"owners\": [\n {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n }\n ],\n \"copyable\": true,\n \"etag\": \"\\\"MTY4Nzk2NTgwMzIwNA\\\"\",\n \"alternateLink\": \"https://docs.google.com/spreadsheets/d/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo/edit?usp=drivesdk\",\n \"embedLink\": \"https://docs.google.com/spreadsheets/d/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo/htmlembed?ouid=101377741449911561961\",\n \"fileSize\": \"1024\",\n \"copyRequiresWriterPermission\": false,\n \"spaces\": [\n \"drive\"\n ],\n \"id\": \"18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo\",\n \"title\": \"Test ClientTest test_import_csv\",\n \"labels\": {\n \"viewed\": true,\n \"restricted\": false,\n \"starred\": false,\n \"hidden\": false,\n \"trashed\": false\n },\n \"explicitlyTrashed\": false,\n \"createdDate\": \"2023-06-28T15:23:19.159Z\",\n \"modifiedDate\": \"2023-06-28T15:23:23.204Z\",\n \"modifiedByMeDate\": \"2023-06-28T15:23:23.204Z\",\n \"lastViewedByMeDate\": \"2023-06-28T15:23:23.204Z\",\n \"markedViewedByMeDate\": \"1970-01-01T00:00:00.000Z\",\n \"quotaBytesUsed\": \"1024\",\n \"version\": \"5\",\n \"capabilities\": {\n \"canEdit\": true,\n \"canCopy\": true\n }\n}\n" } } }, { "request": { - "method": "PUT", - "uri": "https://www.googleapis.com/upload/drive/v2/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?uploadType=media&convert=True&supportsAllDrives=True", - "body": "test_import_csv 1,test_import_csv 2,test_import_csv 3,test_import_csv 4\ntest_import_csv 5,test_import_csv 6,test_import_csv 7,test_import_csv 8\ntest_import_csv 9,test_import_csv 10,test_import_csv 11,test_import_csv 12\ntest_import_csv 13,test_import_csv 14,test_import_csv 15,test_import_csv 16", + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo?includeGridData=false", + "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -261,18 +255,6 @@ "Connection": [ "keep-alive" ], - "Content-Type": [ - "text/csv" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "294" - ], "authorization": [ "" ] @@ -284,61 +266,51 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Credentials": [ - "true" - ], - "ETag": [ - "\"MTY4OTg0MzEwNDcyMg\"" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:45 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:23:24 GMT" ], "Server": [ "ESF" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "X-GUploader-UploadID": [ - "ADPycdvF0oeIzdug_MZPUgvInTn1qWppZmy4LdoNDGdObm8Y3tKQNS5k5Wf-Re1djaKDvBk33iy8DTEU6xySCgEYWIRczw" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" + ], + "content-length": [ + "3375" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"userPermission\": {\n \"id\": \"me\",\n \"type\": \"user\",\n \"role\": \"owner\",\n \"kind\": \"drive#permission\",\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/permissions/me\",\n \"etag\": \"\\\"8KmyKi1XzEtZ3R_KN3zjIcXjt88\\\"\",\n \"pendingOwner\": false\n },\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"ownerNames\": [\n \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\"\n ],\n \"lastModifyingUserName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"editable\": true,\n \"writersCanShare\": true,\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\",\n \"exportLinks\": {\n \"application/x-vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=ods\",\n \"text/tab-separated-values\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=tsv\",\n \"application/pdf\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=pdf\",\n \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=xlsx\",\n \"text/csv\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=csv\",\n \"application/zip\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=zip\",\n \"application/vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=ods\"\n },\n \"parents\": [\n {\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/parents/0AGIJ7XFn4BojUk9PVA\",\n \"id\": \"0AGIJ7XFn4BojUk9PVA\",\n \"isRoot\": true,\n \"kind\": \"drive#parentReference\",\n \"parentLink\": \"https://www.googleapis.com/drive/v2/files/0AGIJ7XFn4BojUk9PVA\"\n }\n ],\n \"thumbnailLink\": \"https://docs.google.com/feeds/vt?gd=true&id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&v=1&s=AMedNnoAAAAAZLkRwUal8NefOJo8lH-OyMYLE2sFQ1rI&sz=s220\",\n \"appDataContents\": false,\n \"iconLink\": \"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.spreadsheet\",\n \"shared\": false,\n \"lastModifyingUser\": {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n },\n \"owners\": [\n {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n }\n ],\n \"copyable\": true,\n \"etag\": \"\\\"MTY4OTg0MzEwNDcyMg\\\"\",\n \"alternateLink\": \"https://docs.google.com/spreadsheets/d/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/edit?usp=drivesdk\",\n \"embedLink\": \"https://docs.google.com/spreadsheets/d/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/htmlembed?ouid=101377741449911561961\",\n \"fileSize\": \"1024\",\n \"copyRequiresWriterPermission\": false,\n \"spaces\": [\n \"drive\"\n ],\n \"id\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"title\": \"TestImportSpreadsheet\",\n \"labels\": {\n \"viewed\": true,\n \"restricted\": false,\n \"starred\": false,\n \"hidden\": false,\n \"trashed\": false\n },\n \"explicitlyTrashed\": false,\n \"createdDate\": \"2023-07-20T08:51:40.779Z\",\n \"modifiedDate\": \"2023-07-20T08:51:44.722Z\",\n \"modifiedByMeDate\": \"2023-07-20T08:51:44.722Z\",\n \"lastViewedByMeDate\": \"2023-07-20T08:51:44.722Z\",\n \"markedViewedByMeDate\": \"1970-01-01T00:00:00.000Z\",\n \"quotaBytesUsed\": \"1024\",\n \"version\": \"5\",\n \"capabilities\": {\n \"canEdit\": true,\n \"canCopy\": true\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo\",\n \"properties\": {\n \"title\": \"Test ClientTest test_import_csv\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 1573873980,\n \"title\": \"Test ClientTest test_import_csv\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -353,12 +325,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -370,8 +336,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -379,42 +345,42 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:46 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:23:24 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "3354" + "3375" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 571790447,\n \"title\": \"TestImportSpreadsheet\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo\",\n \"properties\": {\n \"title\": \"Test ClientTest test_import_csv\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 1573873980,\n \"title\": \"Test ClientTest test_import_csv\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo/values/%27Test%20ClientTest%20test_import_csv%27", "body": null, "headers": { "User-Agent": [ @@ -429,12 +395,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -446,55 +406,51 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:46 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:23:25 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "185" + "593" ] }, "body": { - "string": "{\n \"id\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"name\": \"TestImportSpreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:40.779Z\",\n \"modifiedTime\": \"2023-07-20T08:51:44.722Z\"\n}\n" + "string": "{\n \"range\": \"'Test ClientTest test_import_csv'!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_import_csv 1\",\n \"test_import_csv 2\",\n \"test_import_csv 3\",\n \"test_import_csv 4\"\n ],\n [\n \"test_import_csv 5\",\n \"test_import_csv 6\",\n \"test_import_csv 7\",\n \"test_import_csv 8\"\n ],\n [\n \"test_import_csv 9\",\n \"test_import_csv 10\",\n \"test_import_csv 11\",\n \"test_import_csv 12\"\n ],\n [\n \"test_import_csv 13\",\n \"test_import_csv 14\",\n \"test_import_csv 15\",\n \"test_import_csv 16\"\n ]\n ]\n}\n" } } }, { "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?includeGridData=false", + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/18WZ2cYZvyvYwDqLHX79ZZwPsruLdufKcMkfZmUe1Uzo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -509,10 +465,7 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ + "Content-Length": [ "0" ], "authorization": [ @@ -522,922 +475,45 @@ }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 204, + "message": "No Content" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], - "Date": [ - "Thu, 20 Jul 2023 08:51:46 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3354" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 571790447,\n \"title\": \"TestImportSpreadsheet\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/values/%27TestImportSpreadsheet%27", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" + "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ - "Thu, 20 Jul 2023 08:51:47 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:23:25 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "content-length": [ - "593" - ] - }, - "body": { - "string": "{\n \"range\": \"'Test ClientTest test_import_csv'!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_import_csv 1\",\n \"test_import_csv 2\",\n \"test_import_csv 3\",\n \"test_import_csv 4\"\n ],\n [\n \"test_import_csv 5\",\n \"test_import_csv 6\",\n \"test_import_csv 7\",\n \"test_import_csv 8\"\n ],\n [\n \"test_import_csv 9\",\n \"test_import_csv 10\",\n \"test_import_csv 11\",\n \"test_import_csv 12\"\n ],\n [\n \"test_import_csv 13\",\n \"test_import_csv 14\",\n \"test_import_csv 15\",\n \"test_import_csv 16\"\n ]\n ]\n}\n" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?supportsAllDrives=True", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 204, - "message": "No Content" - }, - "headers": { - "Content-Length": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:51:47 GMT" - ], "Content-Type": [ "text/html" ], - "Server": [ - "ESF" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"TestImportSpreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "88" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], "Pragma": [ "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:01 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "175" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"name\": \"TestImportSpreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:02 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3319" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:02 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "185" - ] - }, - "body": { - "string": "{\n \"id\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"name\": \"TestImportSpreadsheet\",\n \"createdTime\": \"2023-07-20T08:55:00.046Z\",\n \"modifiedTime\": \"2023-07-20T08:55:00.731Z\"\n}\n" - } - } - }, - { - "request": { - "method": "PUT", - "uri": "https://www.googleapis.com/upload/drive/v2/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?uploadType=media&convert=True&supportsAllDrives=True", - "body": "test_import_csv 1,test_import_csv 2,test_import_csv 3,test_import_csv 4\ntest_import_csv 5,test_import_csv 6,test_import_csv 7,test_import_csv 8\ntest_import_csv 9,test_import_csv 10,test_import_csv 11,test_import_csv 12\ntest_import_csv 13,test_import_csv 14,test_import_csv 15,test_import_csv 16", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "Content-Type": [ - "text/csv" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "294" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "Access-Control-Allow-Credentials": [ - "true" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "Content-Length": [ - "4304" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:03 GMT" - ], - "ETag": [ - "\"MTY4OTg0MzMwMjg2Mg\"" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-GUploader-UploadID": [ - "ADPycdt7L1BrL5iOGTIEpl8FRGHaIX1hXh5HCtLVXcXZdD0LL4UGVazD2eo_1EnfrEw8TmyLpQU6sY_YPg0QjzLkkveIVQ" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"userPermission\": {\n \"id\": \"me\",\n \"type\": \"user\",\n \"role\": \"owner\",\n \"kind\": \"drive#permission\",\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/permissions/me\",\n \"etag\": \"\\\"iBnpV0duZ3qaI-j1rR9gHYI_nNs\\\"\",\n \"pendingOwner\": false\n },\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"ownerNames\": [\n \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\"\n ],\n \"lastModifyingUserName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"editable\": true,\n \"writersCanShare\": true,\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\",\n \"exportLinks\": {\n \"application/x-vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=ods\",\n \"text/tab-separated-values\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=tsv\",\n \"application/pdf\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=pdf\",\n \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=xlsx\",\n \"text/csv\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=csv\",\n \"application/zip\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=zip\",\n \"application/vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=ods\"\n },\n \"parents\": [\n {\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/parents/0AGIJ7XFn4BojUk9PVA\",\n \"id\": \"0AGIJ7XFn4BojUk9PVA\",\n \"isRoot\": true,\n \"kind\": \"drive#parentReference\",\n \"parentLink\": \"https://www.googleapis.com/drive/v2/files/0AGIJ7XFn4BojUk9PVA\"\n }\n ],\n \"thumbnailLink\": \"https://docs.google.com/feeds/vt?gd=true&id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&v=1&s=AMedNnoAAAAAZLkSh3TtHsAyUUIws5Q99uIoP41W9Tjk&sz=s220\",\n \"appDataContents\": false,\n \"iconLink\": \"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.spreadsheet\",\n \"shared\": false,\n \"lastModifyingUser\": {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n },\n \"owners\": [\n {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n }\n ],\n \"copyable\": true,\n \"etag\": \"\\\"MTY4OTg0MzMwMjg2Mg\\\"\",\n \"alternateLink\": \"https://docs.google.com/spreadsheets/d/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/edit?usp=drivesdk\",\n \"embedLink\": \"https://docs.google.com/spreadsheets/d/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/htmlembed?ouid=101377741449911561961\",\n \"fileSize\": \"1024\",\n \"copyRequiresWriterPermission\": false,\n \"spaces\": [\n \"drive\"\n ],\n \"id\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"title\": \"TestImportSpreadsheet\",\n \"labels\": {\n \"viewed\": true,\n \"restricted\": false,\n \"starred\": false,\n \"hidden\": false,\n \"trashed\": false\n },\n \"explicitlyTrashed\": false,\n \"createdDate\": \"2023-07-20T08:55:00.046Z\",\n \"modifiedDate\": \"2023-07-20T08:55:02.862Z\",\n \"modifiedByMeDate\": \"2023-07-20T08:55:02.862Z\",\n \"lastViewedByMeDate\": \"2023-07-20T08:55:02.862Z\",\n \"markedViewedByMeDate\": \"1970-01-01T00:00:00.000Z\",\n \"quotaBytesUsed\": \"1024\",\n \"version\": \"5\",\n \"capabilities\": {\n \"canEdit\": true,\n \"canCopy\": true\n }\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:04 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3354" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 836858112,\n \"title\": \"TestImportSpreadsheet\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:04 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "185" - ] - }, - "body": { - "string": "{\n \"id\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"name\": \"TestImportSpreadsheet\",\n \"createdTime\": \"2023-07-20T08:55:00.046Z\",\n \"modifiedTime\": \"2023-07-20T08:55:02.862Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:04 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3354" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 836858112,\n \"title\": \"TestImportSpreadsheet\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/values/%27TestImportSpreadsheet%27", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:04 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "581" - ] - }, - "body": { - "string": "{\n \"range\": \"TestImportSpreadsheet!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_import_csv 1\",\n \"test_import_csv 2\",\n \"test_import_csv 3\",\n \"test_import_csv 4\"\n ],\n [\n \"test_import_csv 5\",\n \"test_import_csv 6\",\n \"test_import_csv 7\",\n \"test_import_csv 8\"\n ],\n [\n \"test_import_csv 9\",\n \"test_import_csv 10\",\n \"test_import_csv 11\",\n \"test_import_csv 12\"\n ],\n [\n \"test_import_csv 13\",\n \"test_import_csv 14\",\n \"test_import_csv 15\",\n \"test_import_csv 16\"\n ]\n ]\n}\n" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?supportsAllDrives=True", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 204, - "message": "No Content" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "text/html" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Content-Length": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:05 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/ClientTest.test_no_found_exeption.json b/tests/cassettes/ClientTest.test_no_found_exeption.json index e35467319..f514cc461 100644 --- a/tests/cassettes/ClientTest.test_no_found_exeption.json +++ b/tests/cassettes/ClientTest.test_no_found_exeption.json @@ -169,12 +169,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -186,11 +180,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -198,97 +189,26 @@ "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:48 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:23:29 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "content-length": [ - "46" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": []\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Please+don%27t+use+this+phrase+as+a+name+of+a+sheet.%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Transfer-Encoding": [ "chunked" @@ -296,12 +216,6 @@ "Pragma": [ "no-cache" ], - "Date": [ - "Thu, 20 Jul 2023 08:55:06 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "content-length": [ "46" ] diff --git a/tests/cassettes/ClientTest.test_openall.json b/tests/cassettes/ClientTest.test_openall.json index de6f982e6..89d8704e3 100644 --- a/tests/cassettes/ClientTest.test_openall.json +++ b/tests/cassettes/ClientTest.test_openall.json @@ -243,9 +243,6 @@ "Connection": [ "keep-alive" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -257,52 +254,51 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:49 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:29 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "4964" + "3326" ] }, "body": { - "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n },\n {\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n },\n {\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n },\n {\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n },\n {\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n },\n {\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n },\n {\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n },\n {\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n },\n {\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n },\n {\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n },\n {\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n },\n {\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n },\n {\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1raZ8H8-0QiicQvGw15v-U_KhKx7ET690mPddXbJ5Jbw\",\n \"properties\": {\n \"title\": \"Test ClientTest test_openall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1raZ8H8-0QiicQvGw15v-U_KhKx7ET690mPddXbJ5Jbw/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -317,12 +313,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -334,8 +324,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -343,42 +333,42 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:49 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:29 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ "3314" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -393,12 +383,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -410,55 +394,51 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:49 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:29 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "180" + "3331" ] }, "body": { - "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -473,12 +453,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -490,8 +464,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -499,42 +473,42 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:49 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:30 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "3314" + "3345" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -549,12 +523,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -566,55 +534,51 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:50 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:30 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "180" + "3314" ] }, "body": { - "string": "{\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -629,12 +593,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -646,8 +604,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -655,42 +613,42 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:50 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:30 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "3306" + "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -705,12 +663,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -722,55 +674,51 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:50 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:30 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "172" + "3314" ] }, "body": { - "string": "{\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -785,12 +733,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -802,8 +744,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -811,42 +753,42 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:51 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:31 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "3340" + "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_updated_time\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -861,12 +803,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -878,55 +814,51 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:52 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:31 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "206" + "3332" ] }, "body": { - "string": "{\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -941,12 +873,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -958,8 +884,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -967,42 +893,42 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:52 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:31 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ "3314" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1017,12 +943,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1034,55 +954,51 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:53 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:31 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "180" + "3332" ] }, "body": { - "string": "{\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1097,12 +1013,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1114,8 +1024,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -1123,42 +1033,42 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:54 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:32 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "3331" + "3324" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1173,12 +1083,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1190,55 +1094,51 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:54 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:32 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "197" + "3324" ] }, "body": { - "string": "{\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1253,12 +1153,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1270,8 +1164,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -1279,42 +1173,42 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:55 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:32 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "3345" + "3324" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1329,12 +1223,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1346,55 +1234,51 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:55 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:32 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "211" + "3324" ] }, "body": { - "string": "{\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1409,12 +1293,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1426,8 +1304,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -1435,42 +1313,42 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:56 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:32 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "3314" + "3324" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1485,12 +1363,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1502,55 +1374,51 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:56 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:33 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "180" + "3314" ] }, "body": { - "string": "{\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1565,12 +1433,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1582,8 +1444,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -1591,42 +1453,42 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:57 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:33 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "3332" + "3314" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1641,12 +1503,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1658,55 +1514,51 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" + "private" ], "Date": [ - "Thu, 20 Jul 2023 08:51:57 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:33 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "198" + "3306" ] }, "body": { - "string": "{\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1721,12 +1573,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1738,8 +1584,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -1747,42 +1593,42 @@ "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:58 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:33 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Transfer-Encoding": [ + "chunked" ], "content-length": [ - "3314" + "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Test+ClientTest+test_openall%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", "body": null, "headers": { "User-Agent": [ @@ -1797,12 +1643,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1814,11 +1654,8 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" @@ -1826,8131 +1663,26 @@ "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "X-XSS-Protection": [ - "0" - ], "Date": [ - "Thu, 20 Jul 2023 08:51:58 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Wed, 28 Jun 2023 15:25:34 GMT" ], "Server": [ "ESF" ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Vary": [ "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:51:59 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3332" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:51:59 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:00 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3332" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:00 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:01 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:01 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:01 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3332" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:02 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:03 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3324" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:03 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "190" - ] - }, - "body": { - "string": "{\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:04 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3324" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:05 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "190" - ] - }, - "body": { - "string": "{\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:05 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3324" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:06 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "190" - ] - }, - "body": { - "string": "{\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:06 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3324" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:07 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "190" - ] - }, - "body": { - "string": "{\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:07 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3324" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:08 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "190" - ] - }, - "body": { - "string": "{\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:08 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:09 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:09 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:10 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:11 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3306" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:11 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "172" - ] - }, - "body": { - "string": "{\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:12 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3335" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:12 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "201" - ] - }, - "body": { - "string": "{\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Test+Spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:12 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "1278" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n }\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:13 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:13 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:13 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:13 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:13 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:14 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:14 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:14 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:14 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:15 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1raZ8H8-0QiicQvGw15v-U_KhKx7ET690mPddXbJ5Jbw?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "private" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:15 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "3326" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1raZ8H8-0QiicQvGw15v-U_KhKx7ET690mPddXbJ5Jbw\",\n \"properties\": {\n \"title\": \"Test ClientTest test_openall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1raZ8H8-0QiicQvGw15v-U_KhKx7ET690mPddXbJ5Jbw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1raZ8H8-0QiicQvGw15v-U_KhKx7ET690mPddXbJ5Jbw?supportsAllDrives=True", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "Content-Length": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 204, - "message": "No Content" - }, - "headers": { - "X-XSS-Protection": [ - "0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Date": [ - "Wed, 28 Jun 2023 15:25:34 GMT" - ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Vary": [ - "Origin, X-Origin" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Content-Type": [ - "text/html" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Pragma": [ - "no-cache" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Thu, 20 Jul 2023 08:52:15 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:06 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "5571" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n },\n {\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n },\n {\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n },\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n },\n {\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n },\n {\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n },\n {\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n },\n {\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n },\n {\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n },\n {\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n },\n {\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n },\n {\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n },\n {\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n },\n {\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n },\n {\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n },\n {\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n }\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:07 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:07 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:07 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:07 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:08 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3306" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:08 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "172" - ] - }, - "body": { - "string": "{\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:08 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:08 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:08 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:09 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:09 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3306" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:09 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "172" - ] - }, - "body": { - "string": "{\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:09 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3340" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_updated_time\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:10 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "206" - ] - }, - "body": { - "string": "{\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:10 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:10 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:10 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3331" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:11 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "197" - ] - }, - "body": { - "string": "{\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:11 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3345" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:11 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "211" - ] - }, - "body": { - "string": "{\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:11 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:11 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:12 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3332" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:12 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:12 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:12 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:13 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3332" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:13 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:13 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3332" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:13 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:14 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:14 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:14 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3332" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:14 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:15 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3324" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:15 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "190" - ] - }, - "body": { - "string": "{\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:15 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3324" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:15 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "190" - ] - }, - "body": { - "string": "{\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:15 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3324" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:16 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "190" - ] - }, - "body": { - "string": "{\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:16 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3324" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:16 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "190" - ] - }, - "body": { - "string": "{\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:16 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3324" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:17 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "190" - ] - }, - "body": { - "string": "{\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:17 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:17 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:17 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:18 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:18 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3306" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:18 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "172" - ] - }, - "body": { - "string": "{\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:18 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3335" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:19 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "201" - ] - }, - "body": { - "string": "{\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Test+Spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:19 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "1483" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n },\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n }\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:19 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:19 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:20 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:20 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:20 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:20 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:20 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:21 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "content-length": [ - "180" - ] - }, - "body": { - "string": "{\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:21 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Transfer-Encoding": [ "chunked" @@ -9958,25 +1690,19 @@ "Pragma": [ "no-cache" ], - "Date": [ - "Thu, 20 Jul 2023 08:55:21 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "content-length": [ - "180" + "265" ] }, "body": { - "string": "{\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n}\n" + "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1raZ8H8-0QiicQvGw15v-U_KhKx7ET690mPddXbJ5Jbw\",\n \"name\": \"Test ClientTest test_openall\",\n \"createdTime\": \"2023-06-28T15:25:25.501Z\",\n \"modifiedTime\": \"2023-06-28T15:25:25.519Z\"\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1raZ8H8-0QiicQvGw15v-U_KhKx7ET690mPddXbJ5Jbw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -9991,12 +1717,6 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -10008,131 +1728,51 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:21 GMT" - ], "X-Content-Type-Options": [ "nosniff" ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" + "Cache-Control": [ + "private" ], - "x-identity-trust-boundary": [ - "0" + "Date": [ + "Wed, 28 Jun 2023 15:25:34 GMT" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Server": [ "ESF" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin, X-Origin" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Transfer-Encoding": [ "chunked" ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:22 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "content-length": [ - "180" + "3326" ] }, "body": { - "string": "{\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1raZ8H8-0QiicQvGw15v-U_KhKx7ET690mPddXbJ5Jbw\",\n \"properties\": {\n \"title\": \"Test ClientTest test_openall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1raZ8H8-0QiicQvGw15v-U_KhKx7ET690mPddXbJ5Jbw/edit\"\n}\n" } } }, { "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1raZ8H8-0QiicQvGw15v-U_KhKx7ET690mPddXbJ5Jbw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -10147,10 +1787,7 @@ "Connection": [ "keep-alive" ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ + "Content-Length": [ "0" ], "authorization": [ @@ -10160,128 +1797,49 @@ }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 204, + "message": "No Content" }, "headers": { - "Server": [ - "ESF" - ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:22 GMT" - ], "X-Content-Type-Options": [ "nosniff" ], - "content-length": [ - "3314" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ + "Content-Length": [ "0" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Server": [ - "ESF" - ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Date": [ + "Wed, 28 Jun 2023 15:25:34 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Pragma": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Jul 2023 08:55:22 GMT" + "Content-Type": [ + "text/html" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "content-length": [ - "180" + "Pragma": [ + "no-cache" ] }, "body": { - "string": "{\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n}\n" + "string": "" } } } diff --git a/tests/cassettes/SpreadsheetTest.test_add_del_worksheet.json b/tests/cassettes/SpreadsheetTest.test_add_del_worksheet.json index 16287c244..bded70b19 100644 --- a/tests/cassettes/SpreadsheetTest.test_add_del_worksheet.json +++ b/tests/cassettes/SpreadsheetTest.test_add_del_worksheet.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "110" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-XSS-Protection": [ - "0" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Wed, 09 Aug 2023 19:33:56 GMT" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-XSS-Protection": [ + "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Thu, 08 Jun 2023 22:15:03 GMT" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Server": [ - "ESF" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "197" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"name\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"name\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,14 +116,31 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Wed, 09 Aug 2023 19:33:57 GMT" + "Thu, 08 Jun 2023 22:15:03 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -137,36 +148,19 @@ "Cache-Control": [ "private" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "ESF" - ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,56 +189,52 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Wed, 09 Aug 2023 19:33:57 GMT" - ], "Vary": [ - "Origin, X-Origin" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Origin", + "X-Origin", + "Referer" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Thu, 08 Jun 2023 22:15:03 GMT" ], - "Transfer-Encoding": [ - "chunked" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "content-length": [ - "207" + "3341" ] }, "body": { - "string": "{\n \"id\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"name\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"createdTime\": \"2023-08-09T19:33:54.965Z\",\n \"modifiedTime\": \"2023-08-09T19:33:54.983Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA/edit\"\n}\n" } } }, { "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", - "body": null, + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA:batchUpdate", + "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -264,8 +251,11 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" + "Content-Length": [ + "157" + ], + "Content-Type": [ + "application/json" ], "authorization": [ "" @@ -278,14 +268,31 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Wed, 09 Aug 2023 19:33:57 GMT" + "Thu, 08 Jun 2023 22:15:04 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -293,37 +300,20 @@ "Cache-Control": [ "private" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "ESF" - ], "content-length": [ - "3341" + "393" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 69994548,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", - "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA:batchUpdate", + "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -340,9 +330,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "157" ], @@ -360,14 +347,31 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Wed, 09 Aug 2023 19:33:58 GMT" + "Thu, 08 Jun 2023 22:15:04 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -375,37 +379,20 @@ "Cache-Control": [ "private" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "ESF" - ], "content-length": [ - "395" + "393" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1877059582,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 16730616,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", - "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA?includeGridData=false", + "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -422,15 +409,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "157" - ], - "Content-Type": [ - "application/json" - ], "authorization": [ "" ] @@ -442,14 +420,31 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Wed, 09 Aug 2023 19:33:58 GMT" + "Thu, 08 Jun 2023 22:15:04 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -457,37 +452,20 @@ "Cache-Control": [ "private" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "ESF" - ], "content-length": [ - "394" + "3853" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 580173816,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 69994548,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 16730616,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", - "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 3\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA:batchUpdate", + "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 69994548}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -504,11 +482,8 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ - "157" + "54" ], "Content-Type": [ "application/json" @@ -524,90 +499,31 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Wed, 09 Aug 2023 19:33:58 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "ESF" ], - "content-length": [ - "395" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1396229743,\n \"title\": \"test_add_del_worksheet 3\",\n \"index\": 3,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ + "X-XSS-Protection": [ "0" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Wed, 09 Aug 2023 19:33:59 GMT" + "Thu, 08 Jun 2023 22:15:04 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -615,37 +531,20 @@ "Cache-Control": [ "private" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "ESF" - ], "content-length": [ - "4114" + "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1877059582,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 580173816,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1396229743,\n \"title\": \"test_add_del_worksheet 3\",\n \"index\": 3,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", - "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 1877059582}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA:batchUpdate", + "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 16730616}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -662,11 +561,8 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ - "56" + "54" ], "Content-Type": [ "application/json" @@ -682,96 +578,31 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Wed, 09 Aug 2023 19:33:59 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "ESF" ], - "content-length": [ - "97" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {}\n ]\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", - "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 580173816}}]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ + "X-XSS-Protection": [ "0" ], - "Content-Length": [ - "55" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Wed, 09 Aug 2023 19:33:59 GMT" + "Thu, 08 Jun 2023 22:15:05 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -779,37 +610,20 @@ "Cache-Control": [ "private" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "ESF" - ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", - "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 1396229743}}]}", + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA?includeGridData=false", + "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -826,15 +640,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "56" - ], - "Content-Type": [ - "application/json" - ], "authorization": [ "" ] @@ -846,90 +651,31 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" - ], - "Date": [ - "Wed, 09 Aug 2023 19:33:59 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "ESF" ], - "content-length": [ - "97" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {}\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ + "X-XSS-Protection": [ "0" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "X-Frame-Options": [ + "SAMEORIGIN" ], "Date": [ - "Wed, 09 Aug 2023 19:34:00 GMT" + "Thu, 08 Jun 2023 22:15:05 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -937,36 +683,19 @@ "Cache-Control": [ "private" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "ESF" - ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -984,9 +713,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1001,41 +727,41 @@ "message": "No Content" }, "headers": { - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], - "Date": [ - "Wed, 09 Aug 2023 19:34:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Length": [ - "0" - ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Thu, 08 Jun 2023 22:15:06 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_get_lastUpdateTime.json b/tests/cassettes/SpreadsheetTest.test_get_lastUpdateTime.json deleted file mode 100644 index 06d344862..000000000 --- a/tests/cassettes/SpreadsheetTest.test_get_lastUpdateTime.json +++ /dev/null @@ -1,569 +0,0 @@ -{ - "version": 1, - "interactions": [ - { - "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test SpreadsheetTest test_get_lastUpdateTime\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:38:46 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"name\": \"Test SpreadsheetTest test_get_lastUpdateTime\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:38:46 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "content-length": [ - "3342" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_lastUpdateTime\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:38:47 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "content-length": [ - "208" - ] - }, - "body": { - "string": "{\n \"id\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"name\": \"Test SpreadsheetTest test_get_lastUpdateTime\",\n \"createdTime\": \"2023-07-25T15:38:42.709Z\",\n \"modifiedTime\": \"2023-07-25T15:38:42.729Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:38:47 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "content-length": [ - "208" - ] - }, - "body": { - "string": "{\n \"id\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"name\": \"Test SpreadsheetTest test_get_lastUpdateTime\",\n \"createdTime\": \"2023-07-25T15:38:42.709Z\",\n \"modifiedTime\": \"2023-07-25T15:38:42.729Z\"\n}\n" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4:batchUpdate", - "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"title\": \"\\ud83c\\udf8a Updated Title #123 \\ud83c\\udf89\"}, \"fields\": \"title\"}}]}", - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:38:48 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "content-length": [ - "97" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"replies\": [\n {}\n ]\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:38:48 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "content-length": [ - "192" - ] - }, - "body": { - "string": "{\n \"id\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"name\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"createdTime\": \"2023-07-25T15:38:42.709Z\",\n \"modifiedTime\": \"2023-07-25T15:38:47.647Z\"\n}\n" - } - } - }, - { - "request": { - "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4?supportsAllDrives=True", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "Content-Length": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 204, - "message": "No Content" - }, - "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:38:49 GMT" - ], - "Content-Type": [ - "text/html" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" - ], - "Content-Length": [ - "0" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Pragma": [ - "no-cache" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "" - } - } - } - ] -} diff --git a/tests/cassettes/SpreadsheetTest.test_creationTime_prop.json b/tests/cassettes/SpreadsheetTest.test_get_updated_time.json similarity index 65% rename from tests/cassettes/SpreadsheetTest.test_creationTime_prop.json rename to tests/cassettes/SpreadsheetTest.test_get_updated_time.json index 815f9db24..3c2e449a6 100644 --- a/tests/cassettes/SpreadsheetTest.test_creationTime_prop.json +++ b/tests/cassettes/SpreadsheetTest.test_get_updated_time.json @@ -5,7 +5,7 @@ "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test SpreadsheetTest test_creationTime_prop\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "body": "{\"name\": \"Test SpreadsheetTest test_get_updated_time\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -22,11 +22,8 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ - "110" + "109" ], "Content-Type": [ "application/json" @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-XSS-Protection": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Date": [ - "Tue, 08 Aug 2023 12:38:58 GMT" - ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:15:08 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ - "197" + "196" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,25 +116,31 @@ "message": "OK" }, "headers": { - "X-XSS-Protection": [ - "0" + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Date": [ - "Tue, 08 Aug 2023 12:38:59 GMT" + "Server": [ + "ESF" ], - "Transfer-Encoding": [ - "chunked" + "X-XSS-Protection": [ + "0" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], - "Server": [ - "ESF" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:09 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -148,25 +148,19 @@ "Cache-Control": [ "private" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "content-length": [ - "3341" + "3340" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_updated_time\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://www.googleapis.com/drive/v3/files/1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,55 +189,55 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-XSS-Protection": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Date": [ - "Tue, 08 Aug 2023 12:39:00 GMT" - ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:15:09 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ - "207" + "206" ] }, "body": { - "string": "{\n \"id\": \"1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"createdTime\": \"2023-08-08T12:38:56.973Z\",\n \"modifiedTime\": \"2023-08-08T12:38:57.752Z\"\n}\n" + "string": "{\n \"id\": \"1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-06-08T22:15:06.270Z\",\n \"modifiedTime\": \"2023-06-08T22:15:07.602Z\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -264,9 +255,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -281,41 +269,41 @@ "message": "No Content" }, "headers": { - "Pragma": [ - "no-cache" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-XSS-Protection": [ + "Content-Type": [ + "text/html" + ], + "Content-Length": [ "0" ], "Vary": [ "Origin, X-Origin" ], - "Date": [ - "Tue, 08 Aug 2023 12:39:00 GMT" - ], - "Content-Type": [ - "text/html" - ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Thu, 08 Jun 2023 22:15:10 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_get_worksheet.json b/tests/cassettes/SpreadsheetTest.test_get_worksheet.json index 334af32fa..0e6201768 100644 --- a/tests/cassettes/SpreadsheetTest.test_get_worksheet.json +++ b/tests/cassettes/SpreadsheetTest.test_get_worksheet.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "106" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:38:52 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 22:15:12 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "193" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:38:52 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:13 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,97 +189,31 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:38:53 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "content-length": [ - "203" - ] - }, - "body": { - "string": "{\n \"id\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet\",\n \"createdTime\": \"2023-07-25T15:38:50.176Z\",\n \"modifiedTime\": \"2023-07-25T15:38:51.006Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Date": [ - "Tue, 25 Jul 2023 15:38:53 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:15:13 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -296,33 +221,19 @@ "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,41 +265,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:38:54 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:14 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_get_worksheet_by_id.json b/tests/cassettes/SpreadsheetTest.test_get_worksheet_by_id.json index d1f5cfa36..272225ab0 100644 --- a/tests/cassettes/SpreadsheetTest.test_get_worksheet_by_id.json +++ b/tests/cassettes/SpreadsheetTest.test_get_worksheet_by_id.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "112" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Wed, 09 Aug 2023 19:17:57 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin, X-Origin" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "Pragma": [ + "no-cache" + ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:17 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "199" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,31 +116,19 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Wed, 09 Aug 2023 19:17:58 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" @@ -154,99 +136,31 @@ "X-Content-Type-Options": [ "nosniff" ], - "content-length": [ - "3343" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Wed, 09 Aug 2023 19:17:58 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Thu, 08 Jun 2023 22:15:18 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin, X-Origin" - ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-XSS-Protection": [ - "0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" + "private" ], "content-length": [ - "209" + "3343" ] }, "body": { - "string": "{\n \"id\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"createdTime\": \"2023-08-09T19:17:55.684Z\",\n \"modifiedTime\": \"2023-08-09T19:17:55.702Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -264,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -278,31 +189,19 @@ "message": "OK" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Wed, 09 Aug 2023 19:17:59 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" @@ -310,95 +209,31 @@ "X-Content-Type-Options": [ "nosniff" ], - "content-length": [ - "3343" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Wed, 09 Aug 2023 19:17:59 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:15:18 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Cache-Control": [ "private" ], - "X-XSS-Protection": [ - "0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -416,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -433,11 +265,8 @@ "message": "No Content" }, "headers": { - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Wed, 09 Aug 2023 19:18:00 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" @@ -445,20 +274,11 @@ "Content-Length": [ "0" ], - "Server": [ - "ESF" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Vary": [ "Origin, X-Origin" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" @@ -468,6 +288,18 @@ ], "Pragma": [ "no-cache" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:19 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_properties.json b/tests/cassettes/SpreadsheetTest.test_properties.json index 4efda6cec..b0bb7b2fe 100644 --- a/tests/cassettes/SpreadsheetTest.test_properties.json +++ b/tests/cassettes/SpreadsheetTest.test_properties.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "103" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:08 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 22:15:21 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw\",\n \"name\": \"Test SpreadsheetTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1oDrzuEu491Ydfe3wzKQ2mlmUah5l5stEy2IhWIE7B7E\",\n \"name\": \"Test SpreadsheetTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oDrzuEu491Ydfe3wzKQ2mlmUah5l5stEy2IhWIE7B7E?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,131 +116,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:09 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "content-length": [ - "3334" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Date": [ - "Tue, 25 Jul 2023 15:39:09 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:15:22 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "private" ], "content-length": [ - "200" + "3334" ] }, "body": { - "string": "{\n \"id\": \"1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw\",\n \"name\": \"Test SpreadsheetTest test_properties\",\n \"createdTime\": \"2023-07-25T15:39:05.858Z\",\n \"modifiedTime\": \"2023-07-25T15:39:06.869Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1oDrzuEu491Ydfe3wzKQ2mlmUah5l5stEy2IhWIE7B7E\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oDrzuEu491Ydfe3wzKQ2mlmUah5l5stEy2IhWIE7B7E/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1oDrzuEu491Ydfe3wzKQ2mlmUah5l5stEy2IhWIE7B7E?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -264,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -281,41 +192,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:10 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:22 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_lastUpdateTime_prop.json b/tests/cassettes/SpreadsheetTest.test_refresh_lastUpdateTime.json similarity index 70% rename from tests/cassettes/SpreadsheetTest.test_lastUpdateTime_prop.json rename to tests/cassettes/SpreadsheetTest.test_refresh_lastUpdateTime.json index bacdfc78b..d74e68508 100644 --- a/tests/cassettes/SpreadsheetTest.test_lastUpdateTime_prop.json +++ b/tests/cassettes/SpreadsheetTest.test_refresh_lastUpdateTime.json @@ -5,7 +5,7 @@ "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test SpreadsheetTest test_lastUpdateTime_prop\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "body": "{\"name\": \"Test SpreadsheetTest test_refresh_lastUpdateTime\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -22,11 +22,8 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ - "112" + "115" ], "Content-Type": [ "application/json" @@ -42,20 +39,8 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:02 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" @@ -63,34 +48,46 @@ "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Vary": [ - "Origin, X-Origin" + "Date": [ + "Wed, 21 Jun 2023 12:22:10 GMT" ], "Transfer-Encoding": [ "chunked" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "X-XSS-Protection": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "ESF" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "content-length": [ - "199" + "202" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"name\": \"Test SpreadsheetTest test_lastUpdateTime_prop\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM\",\n \"name\": \"Test SpreadsheetTest test_refresh_lastUpdateTime\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Cache-Control": [ + "private" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Date": [ - "Tue, 25 Jul 2023 15:39:02 GMT" + "Wed, 21 Jun 2023 12:22:11 GMT" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Transfer-Encoding": [ + "chunked" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ - "3343" + "3346" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_lastUpdateTime_prop\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_refresh_lastUpdateTime\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://www.googleapis.com/drive/v3/files/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,20 +189,8 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:03 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" @@ -219,34 +198,46 @@ "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Vary": [ - "Origin, X-Origin" + "Date": [ + "Wed, 21 Jun 2023 12:22:11 GMT" ], "Transfer-Encoding": [ "chunked" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "X-XSS-Protection": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "ESF" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "content-length": [ - "209" + "212" ] }, "body": { - "string": "{\n \"id\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"name\": \"Test SpreadsheetTest test_lastUpdateTime_prop\",\n \"createdTime\": \"2023-07-25T15:38:59.768Z\",\n \"modifiedTime\": \"2023-07-25T15:39:00.952Z\"\n}\n" + "string": "{\n \"id\": \"1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM\",\n \"name\": \"Test SpreadsheetTest test_refresh_lastUpdateTime\",\n \"createdTime\": \"2023-06-21T12:22:08.913Z\",\n \"modifiedTime\": \"2023-06-21T12:22:08.925Z\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"title\": \"\\ud83c\\udf8a Updated Title #123 \\ud83c\\udf89\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ @@ -264,9 +255,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "141" ], @@ -284,51 +272,51 @@ "message": "OK" }, "headers": { + "Cache-Control": [ + "private" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Date": [ - "Tue, 25 Jul 2023 15:39:04 GMT" + "Wed, 21 Jun 2023 12:22:12 GMT" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Transfer-Encoding": [ + "chunked" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://www.googleapis.com/drive/v3/files/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -346,9 +334,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -360,20 +345,8 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:04 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" @@ -381,34 +354,46 @@ "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Vary": [ - "Origin, X-Origin" + "Date": [ + "Wed, 21 Jun 2023 12:22:12 GMT" ], "Transfer-Encoding": [ "chunked" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "X-XSS-Protection": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "ESF" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"id\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"name\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"createdTime\": \"2023-07-25T15:38:59.768Z\",\n \"modifiedTime\": \"2023-07-25T15:39:03.767Z\"\n}\n" + "string": "{\n \"id\": \"1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM\",\n \"name\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"createdTime\": \"2023-06-21T12:22:08.913Z\",\n \"modifiedTime\": \"2023-06-21T12:22:11.818Z\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -426,9 +411,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -443,41 +425,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:05 GMT" - ], - "Content-Type": [ - "text/html" - ], - "X-XSS-Protection": [ - "0" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Server": [ - "ESF" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Content-Length": [ - "0" + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Date": [ + "Wed, 21 Jun 2023 12:22:12 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "Pragma": [ "no-cache" ], + "Server": [ + "ESF" + ], + "Content-Length": [ + "0" + ], "Vary": [ "Origin, X-Origin" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Content-Type": [ + "text/html" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_sheet1.json b/tests/cassettes/SpreadsheetTest.test_sheet1.json index ec836122f..119725a80 100644 --- a/tests/cassettes/SpreadsheetTest.test_sheet1.json +++ b/tests/cassettes/SpreadsheetTest.test_sheet1.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "99" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:12 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 22:15:25 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "186" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"name\": \"Test SpreadsheetTest test_sheet1\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c\",\n \"name\": \"Test SpreadsheetTest test_sheet1\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:13 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:25 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "3330" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,97 +189,31 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:13 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "content-length": [ - "196" - ] - }, - "body": { - "string": "{\n \"id\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"name\": \"Test SpreadsheetTest test_sheet1\",\n \"createdTime\": \"2023-07-25T15:39:10.728Z\",\n \"modifiedTime\": \"2023-07-25T15:39:11.628Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Date": [ - "Tue, 25 Jul 2023 15:39:13 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:15:26 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -296,33 +221,19 @@ "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "content-length": [ "3330" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,41 +265,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:14 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:27 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_timezone_and_locale.json b/tests/cassettes/SpreadsheetTest.test_timezone_and_locale.json index 89bb4a7ba..3aced3d29 100644 --- a/tests/cassettes/SpreadsheetTest.test_timezone_and_locale.json +++ b/tests/cassettes/SpreadsheetTest.test_timezone_and_locale.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "112" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:18 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 22:15:30 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "199" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"name\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg\",\n \"name\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,131 +116,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:19 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "content-length": [ - "3343" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Date": [ - "Tue, 25 Jul 2023 15:39:19 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:15:30 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "private" ], "content-length": [ - "209" + "3343" ] }, "body": { - "string": "{\n \"id\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"name\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"createdTime\": \"2023-07-25T15:39:15.028Z\",\n \"modifiedTime\": \"2023-07-25T15:39:15.047Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"timeZone\": \"Europe/Paris\"}, \"fields\": \"timeZone\"}}]}", "headers": { "User-Agent": [ @@ -264,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "115" ], @@ -284,51 +195,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:19 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:31 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"locale\": \"fr_FR\"}, \"fields\": \"locale\"}}]}", "headers": { "User-Agent": [ @@ -346,9 +257,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "104" ], @@ -366,51 +274,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:20 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:31 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -428,9 +336,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -442,51 +347,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:20 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:31 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "3348" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"fr_FR\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Europe/Paris\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"fr_FR\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Europe/Paris\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -504,9 +409,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -521,41 +423,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:21 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:32 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_update_title.json b/tests/cassettes/SpreadsheetTest.test_update_title.json index bc409dd0c..5addf452a 100644 --- a/tests/cassettes/SpreadsheetTest.test_update_title.json +++ b/tests/cassettes/SpreadsheetTest.test_update_title.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "105" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:24 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 22:15:35 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"name\": \"Test SpreadsheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ\",\n \"name\": \"Test SpreadsheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,131 +116,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:26 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "content-length": [ - "3336" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Date": [ - "Tue, 25 Jul 2023 15:39:27 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:15:35 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "private" ], "content-length": [ - "202" + "3336" ] }, "body": { - "string": "{\n \"id\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"name\": \"Test SpreadsheetTest test_update_title\",\n \"createdTime\": \"2023-07-25T15:39:21.917Z\",\n \"modifiedTime\": \"2023-07-25T15:39:23.094Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"title\": \"\\ud83c\\udf8a Updated Title #123 \\ud83c\\udf89\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ @@ -264,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "141" ], @@ -284,51 +195,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:28 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:36 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -346,9 +257,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -360,51 +268,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:28 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:36 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"properties\": {\n \"title\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ\",\n \"properties\": {\n \"title\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -422,9 +330,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -439,41 +344,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:29 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:37 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_values_batch_get.json b/tests/cassettes/SpreadsheetTest.test_values_batch_get.json index a726a4e63..cfb7727fe 100644 --- a/tests/cassettes/SpreadsheetTest.test_values_batch_get.json +++ b/tests/cassettes/SpreadsheetTest.test_values_batch_get.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "109" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:31 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 22:15:39 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "196" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"name\": \"Test SpreadsheetTest test_values_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"name\": \"Test SpreadsheetTest test_values_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,131 +116,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:32 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "content-length": [ - "3340" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Date": [ - "Tue, 25 Jul 2023 15:39:32 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:15:40 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "private" ], "content-length": [ - "206" + "3340" ] }, "body": { - "string": "{\n \"id\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"name\": \"Test SpreadsheetTest test_values_batch_get\",\n \"createdTime\": \"2023-07-25T15:39:29.463Z\",\n \"modifiedTime\": \"2023-07-25T15:39:30.504Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"\\ud83c\\udf35 test_values_batch_get 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 10, \"columnCount\": 10}}}}]}", "headers": { "User-Agent": [ @@ -264,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "171" ], @@ -284,51 +195,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:33 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:40 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "400" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 901015854,\n \"title\": \"\ud83c\udf35 test_values_batch_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 569607092,\n \"title\": \"\ud83c\udf35 test_values_batch_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g/values/%F0%9F%8C%B5%20test_values_batch_get%201%21A1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk/values/%F0%9F%8C%B5%20test_values_batch_get%201%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"\\ud83c\\udf47\", \"\\ud83c\\udf49\", \"\\ud83c\\udf4b\"], [\"\\ud83c\\udf50\", \"\\ud83c\\udf4e\", \"\\ud83c\\udf53\"]]}", "headers": { "User-Agent": [ @@ -346,9 +257,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "112" ], @@ -366,51 +274,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:33 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:40 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" + "string": "{\n \"spreadsheetId\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g/values:batchGet?ranges=%F0%9F%8C%B5+test_values_batch_get+1%21A%3AA&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21B%3AB&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21C%3AC", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk/values:batchGet?ranges=%F0%9F%8C%B5+test_values_batch_get+1%21A%3AA&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21B%3AB&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21C%3AC", "body": null, "headers": { "User-Agent": [ @@ -428,9 +336,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -442,52 +347,52 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:33 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:41 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "699" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"valueRanges\": [\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:A10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf47\"\n ],\n [\n \"\ud83c\udf50\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!B1:B10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf49\"\n ],\n [\n \"\ud83c\udf4e\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!C1:C10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf4b\"\n ],\n [\n \"\ud83c\udf53\"\n ]\n ]\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"valueRanges\": [\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:A10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf47\"\n ],\n [\n \"\ud83c\udf50\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!B1:B10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf49\"\n ],\n [\n \"\ud83c\udf4e\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!C1:C10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf4b\"\n ],\n [\n \"\ud83c\udf53\"\n ]\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g:batchUpdate", - "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 901015854}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk:batchUpdate", + "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 569607092}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -504,9 +409,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "55" ], @@ -524,51 +426,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:34 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:41 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -586,9 +488,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -603,41 +502,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:34 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:41 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_values_get.json b/tests/cassettes/SpreadsheetTest.test_values_get.json index 20b38fd21..83439deef 100644 --- a/tests/cassettes/SpreadsheetTest.test_values_get.json +++ b/tests/cassettes/SpreadsheetTest.test_values_get.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "103" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:37 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 22:15:45 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"name\": \"Test SpreadsheetTest test_values_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg\",\n \"name\": \"Test SpreadsheetTest test_values_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,131 +116,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:38 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "content-length": [ - "3334" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Date": [ - "Tue, 25 Jul 2023 15:39:38 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:15:45 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "private" ], "content-length": [ - "200" + "3334" ] }, "body": { - "string": "{\n \"id\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"name\": \"Test SpreadsheetTest test_values_get\",\n \"createdTime\": \"2023-07-25T15:39:35.653Z\",\n \"modifiedTime\": \"2023-07-25T15:39:36.723Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"\\ud83c\\udf35 test_values_get 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 10, \"columnCount\": 10}}}}]}", "headers": { "User-Agent": [ @@ -264,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "165" ], @@ -284,51 +195,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:39 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:45 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "394" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 463885193,\n \"title\": \"\ud83c\udf35 test_values_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 129529548,\n \"title\": \"\ud83c\udf35 test_values_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY/values/%F0%9F%8C%B5%20test_values_get%201%21A1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg/values/%F0%9F%8C%B5%20test_values_get%201%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"\\ud83c\\udf47\", \"\\ud83c\\udf49\", \"\\ud83c\\udf4b\"], [\"\\ud83c\\udf50\", \"\\ud83c\\udf4e\", \"\\ud83c\\udf53\"]]}", "headers": { "User-Agent": [ @@ -346,9 +257,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "112" ], @@ -366,51 +274,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:39 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:46 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "186" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" + "string": "{\n \"spreadsheetId\": \"13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY/values/%F0%9F%8C%B5%20test_values_get%201", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg/values/%F0%9F%8C%B5%20test_values_get%201", "body": null, "headers": { "User-Agent": [ @@ -428,9 +336,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -442,38 +347,38 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:40 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:46 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "203" ] @@ -486,8 +391,8 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY:batchUpdate", - "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 463885193}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg:batchUpdate", + "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 129529548}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -504,9 +409,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "55" ], @@ -524,51 +426,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:40 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:46 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -586,9 +488,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -603,41 +502,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:41 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:47 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_worksheet.json b/tests/cassettes/SpreadsheetTest.test_worksheet.json index 3bd5441c6..21b26648d 100644 --- a/tests/cassettes/SpreadsheetTest.test_worksheet.json +++ b/tests/cassettes/SpreadsheetTest.test_worksheet.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "102" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:43 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 22:15:50 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "189" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"name\": \"Test SpreadsheetTest test_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M\",\n \"name\": \"Test SpreadsheetTest test_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:44 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:51 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,97 +189,31 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:44 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "content-length": [ - "199" - ] - }, - "body": { - "string": "{\n \"id\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"name\": \"Test SpreadsheetTest test_worksheet\",\n \"createdTime\": \"2023-07-25T15:39:41.672Z\",\n \"modifiedTime\": \"2023-07-25T15:39:42.568Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Date": [ - "Tue, 25 Jul 2023 15:39:44 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:15:51 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -296,33 +221,19 @@ "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,41 +265,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:45 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:52 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_worksheet_iteration.json b/tests/cassettes/SpreadsheetTest.test_worksheet_iteration.json index 4ee18cd8d..145b166a7 100644 --- a/tests/cassettes/SpreadsheetTest.test_worksheet_iteration.json +++ b/tests/cassettes/SpreadsheetTest.test_worksheet_iteration.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "112" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:48 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 22:15:54 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "199" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"name\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0\",\n \"name\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:49 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:54 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,97 +189,31 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:49 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "content-length": [ - "209" - ] - }, - "body": { - "string": "{\n \"id\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"name\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"createdTime\": \"2023-07-25T15:39:46.079Z\",\n \"modifiedTime\": \"2023-07-25T15:39:47.295Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Date": [ - "Tue, 25 Jul 2023 15:39:49 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:15:54 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -296,33 +221,19 @@ "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -354,51 +262,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:49 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:55 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -416,9 +324,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -433,41 +338,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:50 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:15:55 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_worksheets.json b/tests/cassettes/SpreadsheetTest.test_worksheets.json index 79410558f..e5c82a7b7 100644 --- a/tests/cassettes/SpreadsheetTest.test_worksheets.json +++ b/tests/cassettes/SpreadsheetTest.test_worksheets.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "103" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:54 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 22:15:57 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"name\": \"Test SpreadsheetTest test_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4\",\n \"name\": \"Test SpreadsheetTest test_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:55 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:58 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,97 +189,31 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:55 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "content-length": [ - "200" - ] - }, - "body": { - "string": "{\n \"id\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"name\": \"Test SpreadsheetTest test_worksheets\",\n \"createdTime\": \"2023-07-25T15:39:51.226Z\",\n \"modifiedTime\": \"2023-07-25T15:39:51.245Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Date": [ - "Tue, 25 Jul 2023 15:39:55 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:15:58 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -296,33 +221,19 @@ "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"finances\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "145" ], @@ -360,51 +268,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:56 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:58 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "383" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1507121383,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1992618142,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -422,9 +330,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -436,51 +341,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:56 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:15:59 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "3580" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1507121383,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1992618142,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -498,9 +403,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -515,41 +417,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:39:57 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:16:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_worksheets_exclude_hidden.json b/tests/cassettes/SpreadsheetTest.test_worksheets_exclude_hidden.json index b5d079c0e..5e1bac665 100644 --- a/tests/cassettes/SpreadsheetTest.test_worksheets_exclude_hidden.json +++ b/tests/cassettes/SpreadsheetTest.test_worksheets_exclude_hidden.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "118" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:40:01 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin, X-Origin" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-XSS-Protection": [ + "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 22:16:02 GMT" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "205" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"name\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"name\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,131 +116,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:40:01 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "content-length": [ - "3349" - ] - }, - "body": { - "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw/edit\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Date": [ - "Tue, 25 Jul 2023 15:40:01 GMT" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], - "Server": [ - "ESF" + "Thu, 08 Jun 2023 22:16:02 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "private" ], "content-length": [ - "215" + "3349" ] }, "body": { - "string": "{\n \"id\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"name\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"createdTime\": \"2023-07-25T15:39:57.622Z\",\n \"modifiedTime\": \"2023-07-25T15:39:57.639Z\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"finances\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ @@ -264,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "145" ], @@ -284,51 +195,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:40:02 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:16:03 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "383" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1613166149,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1759274710,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"gacha\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ @@ -346,9 +257,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "142" ], @@ -366,52 +274,52 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:40:02 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:16:03 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "379" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 755875121,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 644428873,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate", - "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 755875121, \"hidden\": true}, \"fields\": \"hidden\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0:batchUpdate", + "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 644428873, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -428,9 +336,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "117" ], @@ -448,51 +353,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:40:03 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:16:03 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -510,9 +415,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -524,51 +426,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:40:03 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:16:03 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "3861" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1613166149,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 755875121,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1759274710,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 644428873,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -586,9 +488,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -600,51 +499,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:40:03 GMT" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Thu, 08 Jun 2023 22:16:03 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], "content-length": [ "3861" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1613166149,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 755875121,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1759274710,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 644428873,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -662,9 +561,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -679,41 +575,41 @@ "message": "No Content" }, "headers": { - "Date": [ - "Tue, 25 Jul 2023 15:40:04 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Origin, X-Origin" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" + ], + "Date": [ + "Thu, 08 Jun 2023 22:16:04 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_acell.json b/tests/cassettes/WorksheetTest.test_acell.json index 7dd03f88d..96d6a1914 100644 --- a/tests/cassettes/WorksheetTest.test_acell.json +++ b/tests/cassettes/WorksheetTest.test_acell.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "96" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:46 GMT" + "Thu, 08 Jun 2023 22:16:07 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "183" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"name\": \"Test WorksheetTest test_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q\",\n \"name\": \"Test WorksheetTest test_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:46 GMT" + "Thu, 08 Jun 2023 22:16:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:40:46 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "193" - ] - }, - "body": { - "string": "{\n \"id\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"name\": \"Test WorksheetTest test_acell\",\n \"createdTime\": \"2023-07-25T15:40:42.854Z\",\n \"modifiedTime\": \"2023-07-25T15:40:42.873Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:47 GMT" + "Thu, 08 Jun 2023 22:16:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:47 GMT" + "Thu, 08 Jun 2023 22:16:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:47 GMT" + "Thu, 08 Jun 2023 22:16:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "55" @@ -477,7 +382,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -512,41 +414,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:48 GMT" + "Thu, 08 Jun 2023 22:16:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_append_row.json b/tests/cassettes/WorksheetTest.test_append_row.json index 3d9d1b269..d93af8bf1 100644 --- a/tests/cassettes/WorksheetTest.test_append_row.json +++ b/tests/cassettes/WorksheetTest.test_append_row.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "101" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:52 GMT" + "Thu, 08 Jun 2023 22:16:12 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "188" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"name\": \"Test WorksheetTest test_append_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"name\": \"Test WorksheetTest test_append_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:52 GMT" + "Thu, 08 Jun 2023 22:16:12 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:40:53 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"id\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"name\": \"Test WorksheetTest test_append_row\",\n \"createdTime\": \"2023-07-25T15:40:49.067Z\",\n \"modifiedTime\": \"2023-07-25T15:40:49.085Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:53 GMT" + "Thu, 08 Jun 2023 22:16:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:53 GMT" + "Thu, 08 Jun 2023 22:16:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row 1\", \"test_append_row 2\", \"test_append_row 3\", \"test_append_row 4\", \"test_append_row 5\", \"test_append_row 6\", \"test_append_row 7\", \"test_append_row 8\", \"test_append_row 9\", \"test_append_row 10\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "225" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:54 GMT" + "Thu, 08 Jun 2023 22:16:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "266" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"updates\": {\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"updates\": {\n \"spreadsheetId\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27%21A1%3A1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:54 GMT" + "Thu, 08 Jun 2023 22:16:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "359" @@ -559,7 +461,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -594,41 +493,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:55 GMT" + "Thu, 08 Jun 2023 22:16:14 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_append_row_with_empty_value.json b/tests/cassettes/WorksheetTest.test_append_row_with_empty_value.json index 4b1ec2995..c7b153a77 100644 --- a/tests/cassettes/WorksheetTest.test_append_row_with_empty_value.json +++ b/tests/cassettes/WorksheetTest.test_append_row_with_empty_value.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "118" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:59 GMT" + "Thu, 08 Jun 2023 22:16:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "205" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:40:59 GMT" + "Thu, 08 Jun 2023 22:16:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3349" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:41:00 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "215" - ] - }, - "body": { - "string": "{\n \"id\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"createdTime\": \"2023-07-25T15:40:55.805Z\",\n \"modifiedTime\": \"2023-07-25T15:40:55.828Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:00 GMT" + "Thu, 08 Jun 2023 22:16:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3349" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:00 GMT" + "Thu, 08 Jun 2023 22:16:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value 1\", \"\", \"test_append_row_with_empty_value 3\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "94" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:00 GMT" + "Thu, 08 Jun 2023 22:16:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "264" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"updates\": {\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"updates\": {\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value 1\", \"\", \"test_append_row_with_empty_value 3\"]]}", "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "94" ], @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:01 GMT" + "Thu, 08 Jun 2023 22:16:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "293" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"tableRange\": \"Sheet1!C1\",\n \"updates\": {\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"tableRange\": \"Sheet1!C1\",\n \"updates\": {\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27%21A2%3A2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -597,37 +496,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:01 GMT" + "Thu, 08 Jun 2023 22:16:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "206" @@ -641,7 +540,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -676,41 +572,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:02 GMT" + "Thu, 08 Jun 2023 22:16:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_append_row_with_empty_value_and_table_range.json b/tests/cassettes/WorksheetTest.test_append_row_with_empty_value_and_table_range.json index 0c071303d..55e40c4ea 100644 --- a/tests/cassettes/WorksheetTest.test_append_row_with_empty_value_and_table_range.json +++ b/tests/cassettes/WorksheetTest.test_append_row_with_empty_value_and_table_range.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "134" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:05 GMT" + "Thu, 08 Jun 2023 22:16:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "221" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:06 GMT" + "Thu, 08 Jun 2023 22:16:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3365" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:41:06 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "231" - ] - }, - "body": { - "string": "{\n \"id\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"createdTime\": \"2023-07-25T15:41:02.705Z\",\n \"modifiedTime\": \"2023-07-25T15:41:02.727Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:06 GMT" + "Thu, 08 Jun 2023 22:16:23 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3365" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:07 GMT" + "Thu, 08 Jun 2023 22:16:23 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value_and_table_range 1\", \"\", \"test_append_row_with_empty_value_and_table_range 3\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "126" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:07 GMT" + "Thu, 08 Jun 2023 22:16:23 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "264" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"updates\": {\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"updates\": {\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27%21A1:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/values/%27Sheet1%27%21A1:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value_and_table_range 1\", \"\", \"test_append_row_with_empty_value_and_table_range 3\"]]}", "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "126" ], @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:07 GMT" + "Thu, 08 Jun 2023 22:16:23 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "293" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"tableRange\": \"Sheet1!A1\",\n \"updates\": {\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"updatedRange\": \"Sheet1!A2:C2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"tableRange\": \"Sheet1!A1\",\n \"updates\": {\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"updatedRange\": \"Sheet1!A2:C2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27%21A2%3A2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -597,37 +496,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:07 GMT" + "Thu, 08 Jun 2023 22:16:23 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "218" @@ -641,7 +540,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -676,41 +572,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:08 GMT" + "Thu, 08 Jun 2023 22:16:24 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_auto_resize_columns.json b/tests/cassettes/WorksheetTest.test_auto_resize_columns.json index bd0a6f31e..f74daba27 100644 --- a/tests/cassettes/WorksheetTest.test_auto_resize_columns.json +++ b/tests/cassettes/WorksheetTest.test_auto_resize_columns.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "110" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:11 GMT" + "Thu, 08 Jun 2023 22:16:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "197" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"name\": \"Test WorksheetTest test_auto_resize_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"name\": \"Test WorksheetTest test_auto_resize_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:11 GMT" + "Thu, 08 Jun 2023 22:16:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:41:12 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "207" - ] - }, - "body": { - "string": "{\n \"id\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"name\": \"Test WorksheetTest test_auto_resize_columns\",\n \"createdTime\": \"2023-07-25T15:41:09.036Z\",\n \"modifiedTime\": \"2023-07-25T15:41:09.826Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:12 GMT" + "Thu, 08 Jun 2023 22:16:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:12 GMT" + "Thu, 08 Jun 2023 22:16:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "1042" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:12 GMT" + "Thu, 08 Jun 2023 22:16:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?fields=sheets.data.columnMetadata", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ?fields=sheets.data.columnMetadata", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:13 GMT" + "Thu, 08 Jun 2023 22:16:28 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "1679" @@ -559,7 +461,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ:batchUpdate", "body": "{\"requests\": [{\"autoResizeDimensions\": {\"dimensions\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 1}}}]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "128" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:13 GMT" + "Thu, 08 Jun 2023 22:16:28 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?fields=sheets.data.columnMetadata", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ?fields=sheets.data.columnMetadata", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:13 GMT" + "Thu, 08 Jun 2023 22:16:28 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "1680" @@ -717,7 +613,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -752,41 +645,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:14 GMT" + "Thu, 08 Jun 2023 22:16:29 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_basic_filters.json b/tests/cassettes/WorksheetTest.test_basic_filters.json index a570ac95c..3ba854cdb 100644 --- a/tests/cassettes/WorksheetTest.test_basic_filters.json +++ b/tests/cassettes/WorksheetTest.test_basic_filters.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "104" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:17 GMT" + "Thu, 08 Jun 2023 22:16:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "191" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"name\": \"Test WorksheetTest test_basic_filters\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"name\": \"Test WorksheetTest test_basic_filters\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:18 GMT" + "Thu, 08 Jun 2023 22:16:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:41:18 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "201" - ] - }, - "body": { - "string": "{\n \"id\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"name\": \"Test WorksheetTest test_basic_filters\",\n \"createdTime\": \"2023-07-25T15:41:15.414Z\",\n \"modifiedTime\": \"2023-07-25T15:41:16.533Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:18 GMT" + "Thu, 08 Jun 2023 22:16:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:19 GMT" + "Thu, 08 Jun 2023 22:16:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 20, \"columnCount\": 20}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "192" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:19 GMT" + "Thu, 08 Jun 2023 22:16:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "73" ], @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:19 GMT" + "Thu, 08 Jun 2023 22:16:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:19 GMT" + "Thu, 08 Jun 2023 22:16:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3517" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 20,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 20,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 3, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "155" ], @@ -679,51 +575,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:20 GMT" + "Thu, 08 Jun 2023 22:16:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -741,9 +637,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -755,51 +648,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:20 GMT" + "Thu, 08 Jun 2023 22:16:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3515" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 3, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ @@ -817,9 +710,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "155" ], @@ -837,51 +727,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:20 GMT" + "Thu, 08 Jun 2023 22:16:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -899,9 +789,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -913,51 +800,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:20 GMT" + "Thu, 08 Jun 2023 22:16:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3515" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE:batchUpdate", "body": "{\"requests\": [{\"clearBasicFilter\": {\"sheetId\": 0}}]}", "headers": { "User-Agent": [ @@ -975,9 +862,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "52" ], @@ -995,51 +879,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:21 GMT" + "Thu, 08 Jun 2023 22:16:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -1057,9 +941,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1071,51 +952,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:21 GMT" + "Thu, 08 Jun 2023 22:16:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1133,9 +1014,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1150,41 +1028,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:22 GMT" + "Thu, 08 Jun 2023 22:16:35 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_batch_clear.json b/tests/cassettes/WorksheetTest.test_batch_clear.json index aca7e7ee4..ebc836549 100644 --- a/tests/cassettes/WorksheetTest.test_batch_clear.json +++ b/tests/cassettes/WorksheetTest.test_batch_clear.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "102" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:26 GMT" + "Thu, 08 Jun 2023 22:16:38 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "189" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"name\": \"Test WorksheetTest test_batch_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"name\": \"Test WorksheetTest test_batch_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:26 GMT" + "Thu, 08 Jun 2023 22:16:38 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:41:27 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "199" - ] - }, - "body": { - "string": "{\n \"id\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"name\": \"Test WorksheetTest test_batch_clear\",\n \"createdTime\": \"2023-07-25T15:41:22.745Z\",\n \"modifiedTime\": \"2023-07-25T15:41:22.763Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:27 GMT" + "Thu, 08 Jun 2023 22:16:38 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:27 GMT" + "Thu, 08 Jun 2023 22:16:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,51 +338,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:28 GMT" + "Thu, 08 Jun 2023 22:16:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -509,37 +411,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:28 GMT" + "Thu, 08 Jun 2023 22:16:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -553,7 +455,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ @@ -571,9 +473,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -585,37 +484,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:28 GMT" + "Thu, 08 Jun 2023 22:16:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -629,7 +528,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21A1%3AB1?valueInputOption=RAW", "body": "{\"values\": [[\"12345\", \"ThisIsText\"]]}", "headers": { "User-Agent": [ @@ -647,9 +546,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "37" ], @@ -667,51 +563,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:28 GMT" + "Thu, 08 Jun 2023 22:16:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"updatedRange\": \"Sheet1!A1:B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" + "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"updatedRange\": \"Sheet1!A1:B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21C2%3AE2?valueInputOption=RAW", "body": "{\"values\": [[\"5678\", \"Second\", \"Text\"]]}", "headers": { "User-Agent": [ @@ -729,9 +625,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "40" ], @@ -749,51 +642,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:29 GMT" + "Thu, 08 Jun 2023 22:16:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n}\n" + "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ @@ -811,9 +704,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -825,37 +715,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:29 GMT" + "Thu, 08 Jun 2023 22:16:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "123" @@ -869,7 +759,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ @@ -887,9 +777,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -901,37 +788,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:29 GMT" + "Thu, 08 Jun 2023 22:16:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "132" @@ -945,7 +832,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values:batchClear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values:batchClear", "body": "{\"ranges\": [\"'Sheet1'!A1:B1\", \"'Sheet1'!C2:E2\"]}", "headers": { "User-Agent": [ @@ -963,9 +850,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "48" ], @@ -983,51 +867,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:29 GMT" + "Thu, 08 Jun 2023 22:16:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "135" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"clearedRanges\": [\n \"Sheet1!A1:B1\",\n \"Sheet1!C2:E2\"\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"clearedRanges\": [\n \"Sheet1!A1:B1\",\n \"Sheet1!C2:E2\"\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ @@ -1045,9 +929,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1059,37 +940,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:30 GMT" + "Thu, 08 Jun 2023 22:16:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -1103,7 +984,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ @@ -1121,9 +1002,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1135,37 +1013,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:30 GMT" + "Thu, 08 Jun 2023 22:16:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -1179,7 +1057,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1197,9 +1075,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1214,41 +1089,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:31 GMT" + "Thu, 08 Jun 2023 22:16:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_batch_get.json b/tests/cassettes/WorksheetTest.test_batch_get.json index 8fc420618..274241ad7 100644 --- a/tests/cassettes/WorksheetTest.test_batch_get.json +++ b/tests/cassettes/WorksheetTest.test_batch_get.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "100" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:33 GMT" + "Thu, 08 Jun 2023 22:16:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "187" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"name\": \"Test WorksheetTest test_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"name\": \"Test WorksheetTest test_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:34 GMT" + "Thu, 08 Jun 2023 22:16:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3331" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:41:34 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "197" - ] - }, - "body": { - "string": "{\n \"id\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"name\": \"Test WorksheetTest test_batch_get\",\n \"createdTime\": \"2023-07-25T15:41:31.465Z\",\n \"modifiedTime\": \"2023-07-25T15:41:32.518Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:34 GMT" + "Thu, 08 Jun 2023 22:16:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3331" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:35 GMT" + "Thu, 08 Jun 2023 22:16:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values/%27Sheet1%27%21A1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA/values/%27Sheet1%27%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "98" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:35 GMT" + "Thu, 08 Jun 2023 22:16:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values:batchGet?ranges=%27Sheet1%27%21A1%3AB1&ranges=%27Sheet1%27%21B4%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA/values:batchGet?ranges=%27Sheet1%27%21A1%3AB1&ranges=%27Sheet1%27%21B4%3AD4", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:35 GMT" + "Thu, 08 Jun 2023 22:16:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "413" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"valueRanges\": [\n {\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\"\n ]\n ]\n },\n {\n \"range\": \"Sheet1!B4:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"valueRanges\": [\n {\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\"\n ]\n ]\n },\n {\n \"range\": \"Sheet1!B4:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -594,41 +493,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:36 GMT" + "Thu, 08 Jun 2023 22:16:47 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_batch_update.json b/tests/cassettes/WorksheetTest.test_batch_update.json index e49602666..2a4661c24 100644 --- a/tests/cassettes/WorksheetTest.test_batch_update.json +++ b/tests/cassettes/WorksheetTest.test_batch_update.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "103" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:40 GMT" + "Thu, 08 Jun 2023 22:16:49 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"name\": \"Test WorksheetTest test_batch_update\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"name\": \"Test WorksheetTest test_batch_update\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:41 GMT" + "Thu, 08 Jun 2023 22:16:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:41:41 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "200" - ] - }, - "body": { - "string": "{\n \"id\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"name\": \"Test WorksheetTest test_batch_update\",\n \"createdTime\": \"2023-07-25T15:41:37.158Z\",\n \"modifiedTime\": \"2023-07-25T15:41:37.181Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:41 GMT" + "Thu, 08 Jun 2023 22:16:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:42 GMT" + "Thu, 08 Jun 2023 22:16:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k/values:batchUpdate", "body": "{\"valueInputOption\": \"RAW\", \"data\": [{\"range\": \"'Sheet1'!A1:D1\", \"values\": [[\"A1\", \"B1\", \"\", \"D1\"]]}, {\"range\": \"'Sheet1'!A4:D4\", \"values\": [[\"A4\", \"B4\", \"\", \"D4\"]]}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "167" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:42 GMT" + "Thu, 08 Jun 2023 22:16:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "591" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"totalUpdatedRows\": 2,\n \"totalUpdatedColumns\": 4,\n \"totalUpdatedCells\": 8,\n \"totalUpdatedSheets\": 1,\n \"responses\": [\n {\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"updatedRange\": \"Sheet1!A1:D1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n },\n {\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"updatedRange\": \"Sheet1!A4:D4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"totalUpdatedRows\": 2,\n \"totalUpdatedColumns\": 4,\n \"totalUpdatedCells\": 8,\n \"totalUpdatedSheets\": 1,\n \"responses\": [\n {\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"updatedRange\": \"Sheet1!A1:D1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n },\n {\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"updatedRange\": \"Sheet1!A4:D4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:42 GMT" + "Thu, 08 Jun 2023 22:16:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "208" @@ -559,7 +461,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -594,41 +493,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:43 GMT" + "Thu, 08 Jun 2023 22:16:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_cell.json b/tests/cassettes/WorksheetTest.test_cell.json index 8716ea69e..20dcd722d 100644 --- a/tests/cassettes/WorksheetTest.test_cell.json +++ b/tests/cassettes/WorksheetTest.test_cell.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "95" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:46 GMT" + "Thu, 08 Jun 2023 22:16:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "182" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"name\": \"Test WorksheetTest test_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww\",\n \"name\": \"Test WorksheetTest test_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:46 GMT" + "Thu, 08 Jun 2023 22:16:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:41:47 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "192" - ] - }, - "body": { - "string": "{\n \"id\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"name\": \"Test WorksheetTest test_cell\",\n \"createdTime\": \"2023-07-25T15:41:43.827Z\",\n \"modifiedTime\": \"2023-07-25T15:41:45.109Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:47 GMT" + "Thu, 08 Jun 2023 22:16:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:47 GMT" + "Thu, 08 Jun 2023 22:16:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:48 GMT" + "Thu, 08 Jun 2023 22:16:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "55" @@ -477,7 +382,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -512,41 +414,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:48 GMT" + "Thu, 08 Jun 2023 22:16:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_clear.json b/tests/cassettes/WorksheetTest.test_clear.json index 3ae418cfd..10d91ad22 100644 --- a/tests/cassettes/WorksheetTest.test_clear.json +++ b/tests/cassettes/WorksheetTest.test_clear.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "96" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:51 GMT" + "Thu, 08 Jun 2023 22:16:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "183" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"name\": \"Test WorksheetTest test_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"name\": \"Test WorksheetTest test_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:52 GMT" + "Thu, 08 Jun 2023 22:16:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:41:52 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "193" - ] - }, - "body": { - "string": "{\n \"id\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"name\": \"Test WorksheetTest test_clear\",\n \"createdTime\": \"2023-07-25T15:41:49.215Z\",\n \"modifiedTime\": \"2023-07-25T15:41:50.205Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:52 GMT" + "Thu, 08 Jun 2023 22:16:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:52 GMT" + "Thu, 08 Jun 2023 22:16:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:53 GMT" + "Thu, 08 Jun 2023 22:17:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -477,7 +382,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A1\", \"B1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "131" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:53 GMT" + "Thu, 08 Jun 2023 22:17:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -594,51 +493,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:53 GMT" + "Thu, 08 Jun 2023 22:17:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -656,9 +555,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -670,37 +566,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:53 GMT" + "Thu, 08 Jun 2023 22:17:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "61" @@ -714,7 +610,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -732,9 +628,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -749,41 +642,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:54 GMT" + "Thu, 08 Jun 2023 22:17:01 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_clear_tab_color.json b/tests/cassettes/WorksheetTest.test_clear_tab_color.json index 24c2e4420..5197e78f2 100644 --- a/tests/cassettes/WorksheetTest.test_clear_tab_color.json +++ b/tests/cassettes/WorksheetTest.test_clear_tab_color.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "106" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:57 GMT" + "Thu, 08 Jun 2023 22:17:04 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "193" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"name\": \"Test WorksheetTest test_clear_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"name\": \"Test WorksheetTest test_clear_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:58 GMT" + "Thu, 08 Jun 2023 22:17:04 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:41:58 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "203" - ] - }, - "body": { - "string": "{\n \"id\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"name\": \"Test WorksheetTest test_clear_tab_color\",\n \"createdTime\": \"2023-07-25T15:41:55.358Z\",\n \"modifiedTime\": \"2023-07-25T15:41:56.179Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:58 GMT" + "Thu, 08 Jun 2023 22:17:04 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:59 GMT" + "Thu, 08 Jun 2023 22:17:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?fields=sheets.properties.tabColorStyle", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:59 GMT" + "Thu, 08 Jun 2023 22:17:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "57" @@ -477,7 +382,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": {\"red\": 1, \"green\": 0, \"blue\": 0.5}}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "168" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:59 GMT" + "Thu, 08 Jun 2023 22:17:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": null}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "137" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:41:59 GMT" + "Thu, 08 Jun 2023 22:17:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?fields=sheets.properties.tabColorStyle", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:00 GMT" + "Thu, 08 Jun 2023 22:17:06 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "57" @@ -717,7 +613,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -752,41 +645,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:00 GMT" + "Thu, 08 Jun 2023 22:17:06 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_copy_cut_range.json b/tests/cassettes/WorksheetTest.test_copy_cut_range.json index 17af8d4e9..745b4d54d 100644 --- a/tests/cassettes/WorksheetTest.test_copy_cut_range.json +++ b/tests/cassettes/WorksheetTest.test_copy_cut_range.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "105" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:03 GMT" + "Thu, 08 Jun 2023 22:17:10 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"name\": \"Test WorksheetTest test_copy_cut_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"name\": \"Test WorksheetTest test_copy_cut_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:04 GMT" + "Thu, 08 Jun 2023 22:17:10 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:42:04 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "202" - ] - }, - "body": { - "string": "{\n \"id\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"name\": \"Test WorksheetTest test_copy_cut_range\",\n \"createdTime\": \"2023-07-25T15:42:01.377Z\",\n \"modifiedTime\": \"2023-07-25T15:42:02.547Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:05 GMT" + "Thu, 08 Jun 2023 22:17:11 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:05 GMT" + "Thu, 08 Jun 2023 22:17:11 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21A1%3AA2?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/values/%27Sheet1%27%21A1%3AA2?valueInputOption=RAW", "body": "{\"values\": [[\"A1\"], [\"A2\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "28" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:05 GMT" + "Thu, 08 Jun 2023 22:17:11 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"updatedRange\": \"Sheet1!A1:A2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 1,\n \"updatedCells\": 2\n}\n" + "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"updatedRange\": \"Sheet1!A1:A2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 1,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8:batchUpdate", "body": "{\"requests\": [{\"copyPaste\": {\"source\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"destination\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"pasteType\": \"PASTE_NORMAL\", \"pasteOrientation\": \"NORMAL\"}}]}", "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "311" ], @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:06 GMT" + "Thu, 08 Jun 2023 22:17:12 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21B1%3AB2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/values/%27Sheet1%27%21B1%3AB2", "body": null, "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -597,37 +496,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:06 GMT" + "Thu, 08 Jun 2023 22:17:12 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "124" @@ -641,7 +540,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8:batchUpdate", "body": "{\"requests\": [{\"cutPaste\": {\"source\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"destination\": {\"sheetId\": 0, \"rowIndex\": 0, \"columnIndex\": 2}, \"pasteType\": \"PASTE_NORMAL\"}}]}", "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "231" ], @@ -679,51 +575,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:06 GMT" + "Thu, 08 Jun 2023 22:17:12 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21A1%3AA2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/values/%27Sheet1%27%21A1%3AA2", "body": null, "headers": { "User-Agent": [ @@ -741,9 +637,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -755,37 +648,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:06 GMT" + "Thu, 08 Jun 2023 22:17:12 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -799,7 +692,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21C1%3AC2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/values/%27Sheet1%27%21C1%3AC2", "body": null, "headers": { "User-Agent": [ @@ -817,9 +710,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -831,37 +721,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:07 GMT" + "Thu, 08 Jun 2023 22:17:12 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "124" @@ -875,7 +765,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -893,9 +783,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -910,41 +797,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:07 GMT" + "Thu, 08 Jun 2023 22:17:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_delete_cols.json b/tests/cassettes/WorksheetTest.test_delete_cols.json index 8d403461c..f8fa020b0 100644 --- a/tests/cassettes/WorksheetTest.test_delete_cols.json +++ b/tests/cassettes/WorksheetTest.test_delete_cols.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "102" ], @@ -42,26 +39,23 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -69,28 +63,31 @@ "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Date": [ - "Tue, 25 Jul 2023 15:42:11 GMT" + "Fri, 16 Jun 2023 00:04:25 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "189" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"name\": \"Test WorksheetTest test_delete_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"name\": \"Test WorksheetTest test_delete_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Tue, 25 Jul 2023 15:42:11 GMT" + "Fri, 16 Jun 2023 00:04:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:42:12 GMT" - ], "X-Content-Type-Options": [ "nosniff" ], - "content-length": [ - "199" - ] - }, - "body": { - "string": "{\n \"id\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"name\": \"Test WorksheetTest test_delete_cols\",\n \"createdTime\": \"2023-07-25T15:42:08.250Z\",\n \"modifiedTime\": \"2023-07-25T15:42:08.268Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Cache-Control": [ - "private" - ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Tue, 25 Jul 2023 15:42:12 GMT" + "Fri, 16 Jun 2023 00:04:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Tue, 25 Jul 2023 15:42:12 GMT" + "Fri, 16 Jun 2023 00:04:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Tue, 25 Jul 2023 15:42:12 GMT" + "Fri, 16 Jun 2023 00:04:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -477,7 +382,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_delete_cols 1\", \"test_delete_cols 2\", \"test_delete_cols 3\", \"test_delete_cols 4\"], [\"test_delete_cols 5\", \"test_delete_cols 6\", \"test_delete_cols 7\", \"test_delete_cols 8\"], [\"test_delete_cols 9\", \"test_delete_cols 10\", \"test_delete_cols 11\", \"test_delete_cols 12\"], [\"test_delete_cols 13\", \"test_delete_cols 14\", \"test_delete_cols 15\", \"test_delete_cols 16\"], [\"test_delete_cols 17\", \"test_delete_cols 18\", \"test_delete_cols 19\", \"test_delete_cols 20\"], [\"test_delete_cols 21\", \"test_delete_cols 22\", \"test_delete_cols 23\", \"test_delete_cols 24\"]]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "567" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Tue, 25 Jul 2023 15:42:13 GMT" + "Fri, 16 Jun 2023 00:04:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -591,37 +490,37 @@ "message": "OK" }, "headers": { + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Tue, 25 Jul 2023 15:42:13 GMT" + "Fri, 16 Jun 2023 00:04:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "content-length": [ "265" @@ -635,7 +534,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21D1%3AD?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21D1%3AD?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -667,37 +563,37 @@ "message": "OK" }, "headers": { + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Tue, 25 Jul 2023 15:42:13 GMT" + "Fri, 16 Jun 2023 00:04:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "content-length": [ "266" @@ -711,7 +607,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo:batchUpdate", "body": "{\"requests\": [{\"deleteDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 1, \"endIndex\": 3}}}]}", "headers": { "User-Agent": [ @@ -729,9 +625,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "118" ], @@ -749,51 +642,51 @@ "message": "OK" }, "headers": { + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Tue, 25 Jul 2023 15:42:13 GMT" + "Fri, 16 Jun 2023 00:04:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -811,9 +704,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -825,37 +715,37 @@ "message": "OK" }, "headers": { + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Tue, 25 Jul 2023 15:42:14 GMT" + "Fri, 16 Jun 2023 00:04:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "content-length": [ "265" @@ -869,7 +759,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -887,9 +777,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -901,37 +788,37 @@ "message": "OK" }, "headers": { + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Tue, 25 Jul 2023 15:42:14 GMT" + "Fri, 16 Jun 2023 00:04:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "content-length": [ "266" @@ -945,7 +832,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -963,9 +850,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -980,41 +864,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" ], "Vary": [ "Origin, X-Origin" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Content-Type": [ "text/html" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Pragma": [ "no-cache" ], - "X-XSS-Protection": [ - "0" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Fri, 16 Jun 2023 00:04:28 GMT" ], "Content-Length": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:42:15 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_delete_row.json b/tests/cassettes/WorksheetTest.test_delete_row.json index 9339744db..baa98f211 100644 --- a/tests/cassettes/WorksheetTest.test_delete_row.json +++ b/tests/cassettes/WorksheetTest.test_delete_row.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "101" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:18 GMT" + "Thu, 08 Jun 2023 22:17:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "188" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"name\": \"Test WorksheetTest test_delete_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"name\": \"Test WorksheetTest test_delete_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:18 GMT" + "Thu, 08 Jun 2023 22:17:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:42:19 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"id\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"name\": \"Test WorksheetTest test_delete_row\",\n \"createdTime\": \"2023-07-25T15:42:15.538Z\",\n \"modifiedTime\": \"2023-07-25T15:42:16.861Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:19 GMT" + "Thu, 08 Jun 2023 22:17:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:19 GMT" + "Thu, 08 Jun 2023 22:17:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 1\", \"test_delete_row 2\", \"test_delete_row 3\", \"test_delete_row 4\", \"test_delete_row 5\", \"test_delete_row 6\", \"test_delete_row 7\", \"test_delete_row 8\", \"test_delete_row 9\", \"test_delete_row 10\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "225" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:20 GMT" + "Thu, 08 Jun 2023 22:17:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "266" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updates\": {\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 11\", \"test_delete_row 12\", \"test_delete_row 13\", \"test_delete_row 14\", \"test_delete_row 15\", \"test_delete_row 16\", \"test_delete_row 17\", \"test_delete_row 18\", \"test_delete_row 19\", \"test_delete_row 20\"]]}", "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "234" ], @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:20 GMT" + "Thu, 08 Jun 2023 22:17:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "298" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J1\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A2:J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"tableRange\": \"Sheet1!A1:J1\",\n \"updates\": {\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updatedRange\": \"Sheet1!A2:J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 21\", \"test_delete_row 22\", \"test_delete_row 23\", \"test_delete_row 24\", \"test_delete_row 25\", \"test_delete_row 26\", \"test_delete_row 27\", \"test_delete_row 28\", \"test_delete_row 29\", \"test_delete_row 30\"]]}", "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "234" ], @@ -603,51 +502,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:20 GMT" + "Thu, 08 Jun 2023 22:17:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "298" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J2\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A3:J3\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"tableRange\": \"Sheet1!A1:J2\",\n \"updates\": {\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updatedRange\": \"Sheet1!A3:J3\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 31\", \"test_delete_row 32\", \"test_delete_row 33\", \"test_delete_row 34\", \"test_delete_row 35\", \"test_delete_row 36\", \"test_delete_row 37\", \"test_delete_row 38\", \"test_delete_row 39\", \"test_delete_row 40\"]]}", "headers": { "User-Agent": [ @@ -665,9 +564,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "234" ], @@ -685,51 +581,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:21 GMT" + "Thu, 08 Jun 2023 22:17:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "298" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J3\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A4:J4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"tableRange\": \"Sheet1!A1:J3\",\n \"updates\": {\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updatedRange\": \"Sheet1!A4:J4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 41\", \"test_delete_row 42\", \"test_delete_row 43\", \"test_delete_row 44\", \"test_delete_row 45\", \"test_delete_row 46\", \"test_delete_row 47\", \"test_delete_row 48\", \"test_delete_row 49\", \"test_delete_row 50\"]]}", "headers": { "User-Agent": [ @@ -747,9 +643,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "234" ], @@ -767,51 +660,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:21 GMT" + "Thu, 08 Jun 2023 22:17:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "298" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J4\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A5:J5\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"tableRange\": \"Sheet1!A1:J4\",\n \"updates\": {\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updatedRange\": \"Sheet1!A5:J5\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A1%3A1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ @@ -829,9 +722,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -843,37 +733,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:21 GMT" + "Thu, 08 Jun 2023 22:17:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "359" @@ -887,7 +777,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A3%3A3", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27%21A3%3A3", "body": null, "headers": { "User-Agent": [ @@ -905,9 +795,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -919,37 +806,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:22 GMT" + "Thu, 08 Jun 2023 22:17:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "368" @@ -963,7 +850,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4:batchUpdate", "body": "{\"requests\": [{\"deleteDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 1, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ @@ -981,9 +868,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "115" ], @@ -1001,51 +885,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:22 GMT" + "Thu, 08 Jun 2023 22:17:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A1%3A1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ @@ -1063,9 +947,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1077,37 +958,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:22 GMT" + "Thu, 08 Jun 2023 22:17:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "359" @@ -1121,7 +1002,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A2%3A2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ @@ -1139,9 +1020,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1153,37 +1031,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:22 GMT" + "Thu, 08 Jun 2023 22:17:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "368" @@ -1197,7 +1075,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1215,9 +1093,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1232,41 +1107,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:23 GMT" + "Thu, 08 Jun 2023 22:17:20 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_find.json b/tests/cassettes/WorksheetTest.test_find.json index f7eca46b3..833a257f8 100644 --- a/tests/cassettes/WorksheetTest.test_find.json +++ b/tests/cassettes/WorksheetTest.test_find.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "95" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:26 GMT" + "Thu, 08 Jun 2023 22:17:24 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "182" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"name\": \"Test WorksheetTest test_find\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"name\": \"Test WorksheetTest test_find\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:27 GMT" + "Thu, 08 Jun 2023 22:17:24 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:42:27 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "192" - ] - }, - "body": { - "string": "{\n \"id\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"name\": \"Test WorksheetTest test_find\",\n \"createdTime\": \"2023-07-25T15:42:24.315Z\",\n \"modifiedTime\": \"2023-07-25T15:42:25.389Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:27 GMT" + "Thu, 08 Jun 2023 22:17:24 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:28 GMT" + "Thu, 08 Jun 2023 22:17:25 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "29" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:28 GMT" + "Thu, 08 Jun 2023 22:17:25 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1\"]]}", "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "29" ], @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:28 GMT" + "Thu, 08 Jun 2023 22:17:25 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -597,37 +496,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:29 GMT" + "Thu, 08 Jun 2023 22:17:25 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "231" @@ -641,7 +540,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1o_Otest_find 2\"]]}", "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "43" ], @@ -679,51 +575,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:29 GMT" + "Thu, 08 Jun 2023 22:17:25 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -741,9 +637,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -755,37 +648,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:29 GMT" + "Thu, 08 Jun 2023 22:17:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "245" @@ -799,7 +692,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -817,9 +710,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -831,37 +721,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:29 GMT" + "Thu, 08 Jun 2023 22:17:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "245" @@ -875,7 +765,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"camelcase\"]]}", "headers": { "User-Agent": [ @@ -893,9 +783,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "27" ], @@ -913,51 +800,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:30 GMT" + "Thu, 08 Jun 2023 22:17:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"CamelCase\"]]}", "headers": { "User-Agent": [ @@ -975,9 +862,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "27" ], @@ -995,51 +879,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:30 GMT" + "Thu, 08 Jun 2023 22:17:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -1057,9 +941,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1071,37 +952,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:30 GMT" + "Thu, 08 Jun 2023 22:17:26 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "227" @@ -1115,7 +996,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1133,9 +1014,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1150,41 +1028,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:31 GMT" + "Thu, 08 Jun 2023 22:17:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_findall.json b/tests/cassettes/WorksheetTest.test_findall.json index 5491a1f71..8f64281e8 100644 --- a/tests/cassettes/WorksheetTest.test_findall.json +++ b/tests/cassettes/WorksheetTest.test_findall.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "98" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:34 GMT" + "Thu, 08 Jun 2023 22:17:30 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "185" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"name\": \"Test WorksheetTest test_findall\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"name\": \"Test WorksheetTest test_findall\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:34 GMT" + "Thu, 08 Jun 2023 22:17:31 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3329" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:42:35 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "195" - ] - }, - "body": { - "string": "{\n \"id\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"name\": \"Test WorksheetTest test_findall\",\n \"createdTime\": \"2023-07-25T15:42:32.272Z\",\n \"modifiedTime\": \"2023-07-25T15:42:33.028Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:35 GMT" + "Thu, 08 Jun 2023 22:17:31 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3329" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:35 GMT" + "Thu, 08 Jun 2023 22:17:31 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:35 GMT" + "Thu, 08 Jun 2023 22:17:31 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "59" @@ -477,7 +382,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", "body": "{\"values\": [[\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"]]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "212" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:36 GMT" + "Thu, 08 Jun 2023 22:17:31 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "171" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" + "string": "{\n \"spreadsheetId\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -591,37 +490,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:36 GMT" + "Thu, 08 Jun 2023 22:17:31 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "439" @@ -635,7 +534,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -667,37 +563,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:36 GMT" + "Thu, 08 Jun 2023 22:17:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "437" @@ -711,8 +607,8 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", - "body": "{\"values\": [[\"test_findall 1c_Ctest_findall 2\"], [\"test_findall 1t_Ttest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1i_Itest_findall 2\"], [\"test_findall 1r_Rtest_findall 2\"], [\"test_findall 1u_Utest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1j_Jtest_findall 2\"], [\"test_findall 1p_Ptest_findall 2\"], [\"test_findall 1w_Wtest_findall 2\"]]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", + "body": "{\"values\": [[\"test_findall 1p_Ptest_findall 2\"], [\"test_findall 1p_Ptest_findall 2\"], [\"test_findall 1s_Stest_findall 2\"], [\"test_findall 1c_Ctest_findall 2\"], [\"test_findall 1u_Utest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1m_Mtest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1g_Gtest_findall 2\"], [\"test_findall 1v_Vtest_findall 2\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -729,9 +625,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "382" ], @@ -749,51 +642,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:36 GMT" + "Thu, 08 Jun 2023 22:17:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "171" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" + "string": "{\n \"spreadsheetId\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -811,9 +704,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -825,51 +715,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:37 GMT" + "Thu, 08 Jun 2023 22:17:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "609" ] }, "body": { - "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_findall 1c_Ctest_findall 2\"\n ],\n [\n \"test_findall 1t_Ttest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1i_Itest_findall 2\"\n ],\n [\n \"test_findall 1r_Rtest_findall 2\"\n ],\n [\n \"test_findall 1u_Utest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1j_Jtest_findall 2\"\n ],\n [\n \"test_findall 1p_Ptest_findall 2\"\n ],\n [\n \"test_findall 1w_Wtest_findall 2\"\n ]\n ]\n}\n" + "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_findall 1p_Ptest_findall 2\"\n ],\n [\n \"test_findall 1p_Ptest_findall 2\"\n ],\n [\n \"test_findall 1s_Stest_findall 2\"\n ],\n [\n \"test_findall 1c_Ctest_findall 2\"\n ],\n [\n \"test_findall 1u_Utest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1m_Mtest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1g_Gtest_findall 2\"\n ],\n [\n \"test_findall 1v_Vtest_findall 2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -887,9 +777,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -904,41 +791,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:37 GMT" + "Thu, 08 Jun 2023 22:17:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_format.json b/tests/cassettes/WorksheetTest.test_format.json index 3aa299d77..e3b5120dd 100644 --- a/tests/cassettes/WorksheetTest.test_format.json +++ b/tests/cassettes/WorksheetTest.test_format.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "97" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:40 GMT" + "Thu, 08 Jun 2023 22:17:35 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "184" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"name\": \"Test WorksheetTest test_format\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ\",\n \"name\": \"Test WorksheetTest test_format\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:41 GMT" + "Thu, 08 Jun 2023 22:17:36 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:42:41 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "194" - ] - }, - "body": { - "string": "{\n \"id\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"name\": \"Test WorksheetTest test_format\",\n \"createdTime\": \"2023-07-25T15:42:38.239Z\",\n \"modifiedTime\": \"2023-07-25T15:42:39.345Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:41 GMT" + "Thu, 08 Jun 2023 22:17:36 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:42 GMT" + "Thu, 08 Jun 2023 22:17:36 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ:batchUpdate", "body": "{\"requests\": [{\"repeatCell\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}, \"cell\": {\"userEnteredFormat\": {\"backgroundColor\": {\"green\": 1, \"blue\": 1}, \"horizontalAlignment\": \"CENTER\", \"textFormat\": {\"foregroundColor\": {\"red\": 1, \"green\": 1}, \"fontSize\": 12, \"bold\": true}}}, \"fields\": \"userEnteredFormat(backgroundColor,horizontalAlignment,textFormat)\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "417" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:42 GMT" + "Thu, 08 Jun 2023 22:17:36 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=False&ranges=Sheet1%21A2&fields=sheets.data.rowData.values.userEnteredFormat", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ?includeGridData=False&ranges=Sheet1%21A2&fields=sheets.data.rowData.values.userEnteredFormat", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:42 GMT" + "Thu, 08 Jun 2023 22:17:37 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "1140" @@ -559,7 +461,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -594,41 +493,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:43 GMT" + "Thu, 08 Jun 2023 22:17:37 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_freeze.json b/tests/cassettes/WorksheetTest.test_freeze.json index 1719b3fb7..3d06a8302 100644 --- a/tests/cassettes/WorksheetTest.test_freeze.json +++ b/tests/cassettes/WorksheetTest.test_freeze.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "97" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:47 GMT" + "Thu, 08 Jun 2023 22:17:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "184" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"name\": \"Test WorksheetTest test_freeze\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"name\": \"Test WorksheetTest test_freeze\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:48 GMT" + "Thu, 08 Jun 2023 22:17:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:42:48 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "194" - ] - }, - "body": { - "string": "{\n \"id\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"name\": \"Test WorksheetTest test_freeze\",\n \"createdTime\": \"2023-07-25T15:42:44.454Z\",\n \"modifiedTime\": \"2023-07-25T15:42:44.470Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:48 GMT" + "Thu, 08 Jun 2023 22:17:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:49 GMT" + "Thu, 08 Jun 2023 22:17:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenRowCount\": 2}}, \"fields\": \"gridProperties/frozenRowCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "157" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:49 GMT" + "Thu, 08 Jun 2023 22:17:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:49 GMT" + "Thu, 08 Jun 2023 22:17:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3359" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenColumnCount\": 1}}, \"fields\": \"gridProperties/frozenColumnCount\"}}]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "163" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:49 GMT" + "Thu, 08 Jun 2023 22:17:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,51 +569,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:50 GMT" + "Thu, 08 Jun 2023 22:17:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3393" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2,\n \"frozenColumnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2,\n \"frozenColumnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenRowCount\": 0, \"frozenColumnCount\": 0}}, \"fields\": \"gridProperties/frozenRowCount,gridProperties/frozenColumnCount\"}}]}", "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "214" ], @@ -755,51 +648,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:50 GMT" + "Thu, 08 Jun 2023 22:17:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -817,9 +710,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -831,51 +721,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:50 GMT" + "Thu, 08 Jun 2023 22:17:42 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -893,9 +783,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -910,41 +797,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:51 GMT" + "Thu, 08 Jun 2023 22:17:42 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records.json b/tests/cassettes/WorksheetTest.test_get_all_records.json index edd6aade4..a5b46264d 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "106" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:54 GMT" + "Thu, 08 Jun 2023 22:17:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "193" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"name\": \"Test WorksheetTest test_get_all_records\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"name\": \"Test WorksheetTest test_get_all_records\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:55 GMT" + "Thu, 08 Jun 2023 22:17:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:42:55 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "203" - ] - }, - "body": { - "string": "{\n \"id\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"name\": \"Test WorksheetTest test_get_all_records\",\n \"createdTime\": \"2023-07-25T15:42:52.119Z\",\n \"modifiedTime\": \"2023-07-25T15:42:53.341Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:55 GMT" + "Thu, 08 Jun 2023 22:17:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:56 GMT" + "Thu, 08 Jun 2023 22:17:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:56 GMT" + "Thu, 08 Jun 2023 22:17:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:57 GMT" + "Thu, 08 Jun 2023 22:17:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -559,7 +461,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "95" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:57 GMT" + "Thu, 08 Jun 2023 22:17:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:57 GMT" + "Thu, 08 Jun 2023 22:17:47 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "249" @@ -717,7 +613,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -749,37 +642,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:57 GMT" + "Thu, 08 Jun 2023 22:17:47 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "249" @@ -793,7 +686,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -811,9 +704,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -825,37 +715,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:58 GMT" + "Thu, 08 Jun 2023 22:17:47 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "249" @@ -869,7 +759,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -887,9 +777,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -901,37 +788,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:58 GMT" + "Thu, 08 Jun 2023 22:17:47 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "249" @@ -945,7 +832,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -963,9 +850,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -980,41 +864,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:42:59 GMT" + "Thu, 08 Jun 2023 22:17:48 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records_different_header.json b/tests/cassettes/WorksheetTest.test_get_all_records_different_header.json index 0b8ed7ab7..fbf2affd9 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records_different_header.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records_different_header.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "123" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:01 GMT" + "Thu, 08 Jun 2023 22:17:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "210" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"name\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"name\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:02 GMT" + "Thu, 08 Jun 2023 22:17:52 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3354" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:43:02 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "220" - ] - }, - "body": { - "string": "{\n \"id\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"name\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"createdTime\": \"2023-07-25T15:42:59.782Z\",\n \"modifiedTime\": \"2023-07-25T15:43:00.698Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:03 GMT" + "Thu, 08 Jun 2023 22:17:52 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3354" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:03 GMT" + "Thu, 08 Jun 2023 22:17:52 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 6, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:03 GMT" + "Thu, 08 Jun 2023 22:17:52 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:03 GMT" + "Thu, 08 Jun 2023 22:17:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -559,7 +461,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A1\", \"B1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "131" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:04 GMT" + "Thu, 08 Jun 2023 22:17:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:04 GMT" + "Thu, 08 Jun 2023 22:17:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "265" @@ -717,7 +613,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -749,37 +642,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:04 GMT" + "Thu, 08 Jun 2023 22:17:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "265" @@ -793,7 +686,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -811,9 +704,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -825,37 +715,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:05 GMT" + "Thu, 08 Jun 2023 22:17:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "265" @@ -869,7 +759,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -887,9 +777,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -901,37 +788,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:05 GMT" + "Thu, 08 Jun 2023 22:17:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "265" @@ -945,7 +832,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -963,9 +850,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -980,41 +864,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:06 GMT" + "Thu, 08 Jun 2023 22:17:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records_duplicate_keys.json b/tests/cassettes/WorksheetTest.test_get_all_records_duplicate_keys.json index 7b5b45c8a..80207066b 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records_duplicate_keys.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records_duplicate_keys.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "121" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:09 GMT" + "Thu, 08 Jun 2023 22:17:57 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "208" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"name\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"name\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:09 GMT" + "Thu, 08 Jun 2023 22:17:57 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3352" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:43:10 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "218" - ] - }, - "body": { - "string": "{\n \"id\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"name\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"createdTime\": \"2023-07-25T15:43:06.666Z\",\n \"modifiedTime\": \"2023-07-25T15:43:07.856Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:10 GMT" + "Thu, 08 Jun 2023 22:17:58 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3352" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:10 GMT" + "Thu, 08 Jun 2023 22:17:58 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:10 GMT" + "Thu, 08 Jun 2023 22:17:58 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:11 GMT" + "Thu, 08 Jun 2023 22:17:58 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -559,7 +461,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"A1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "95" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:11 GMT" + "Thu, 08 Jun 2023 22:17:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:11 GMT" + "Thu, 08 Jun 2023 22:17:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "249" @@ -717,7 +613,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -752,41 +645,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:12 GMT" + "Thu, 08 Jun 2023 22:17:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records_expected_headers.json b/tests/cassettes/WorksheetTest.test_get_all_records_expected_headers.json index 095413302..0d521162f 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records_expected_headers.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records_expected_headers.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "123" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:15 GMT" + "Thu, 08 Jun 2023 22:18:03 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "210" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"name\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"name\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:16 GMT" + "Thu, 08 Jun 2023 22:18:03 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3354" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:43:16 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "220" - ] - }, - "body": { - "string": "{\n \"id\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"name\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"createdTime\": \"2023-07-25T15:43:12.898Z\",\n \"modifiedTime\": \"2023-07-25T15:43:14.409Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:17 GMT" + "Thu, 08 Jun 2023 22:18:03 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3354" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:17 GMT" + "Thu, 08 Jun 2023 22:18:04 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:17 GMT" + "Thu, 08 Jun 2023 22:18:04 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:18 GMT" + "Thu, 08 Jun 2023 22:18:04 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -559,7 +461,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B2\", \"C3\", \"D4\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "97" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:18 GMT" + "Thu, 08 Jun 2023 22:18:04 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:18 GMT" + "Thu, 08 Jun 2023 22:18:04 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "251" @@ -717,7 +613,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -749,37 +642,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:18 GMT" + "Thu, 08 Jun 2023 22:18:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "251" @@ -793,7 +686,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -811,9 +704,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -825,37 +715,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:19 GMT" + "Thu, 08 Jun 2023 22:18:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "251" @@ -869,7 +759,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -887,9 +777,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -904,41 +791,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:19 GMT" + "Thu, 08 Jun 2023 22:18:05 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records_numericise_unformatted.json b/tests/cassettes/WorksheetTest.test_get_all_records_numericise_unformatted.json index a14050688..bfbe42800 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records_numericise_unformatted.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records_numericise_unformatted.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "129" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:23 GMT" + "Thu, 08 Jun 2023 22:18:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "216" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"name\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"name\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:24 GMT" + "Thu, 08 Jun 2023 22:18:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3360" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:43:24 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "226" - ] - }, - "body": { - "string": "{\n \"id\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"name\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"createdTime\": \"2023-07-25T15:43:20.144Z\",\n \"modifiedTime\": \"2023-07-25T15:43:20.165Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:24 GMT" + "Thu, 08 Jun 2023 22:18:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3360" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:25 GMT" + "Thu, 08 Jun 2023 22:18:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:25 GMT" + "Thu, 08 Jun 2023 22:18:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/values/%27Sheet1%27%21A1%3AD2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/values/%27Sheet1%27%21A1%3AD2", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:25 GMT" + "Thu, 08 Jun 2023 22:18:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -559,7 +461,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"A\", \"\", \"C\", \"3_1_0\"], [\"=3/2\", 0.12, \"\", \"3_2_1\"]]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "66" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:26 GMT" + "Thu, 08 Jun 2023 22:18:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" + "string": "{\n \"spreadsheetId\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:26 GMT" + "Thu, 08 Jun 2023 22:18:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "195" @@ -717,7 +613,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -752,41 +645,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:27 GMT" + "Thu, 08 Jun 2023 22:18:10 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records_value_render_options.json b/tests/cassettes/WorksheetTest.test_get_all_records_value_render_options.json index fa67cf8d8..5b9c494aa 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records_value_render_options.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records_value_render_options.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "127" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:31 GMT" + "Thu, 08 Jun 2023 22:18:14 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "214" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"name\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"name\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:31 GMT" + "Thu, 08 Jun 2023 22:18:14 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3358" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:43:31 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "224" - ] - }, - "body": { - "string": "{\n \"id\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"name\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"createdTime\": \"2023-07-25T15:43:27.482Z\",\n \"modifiedTime\": \"2023-07-25T15:43:27.497Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:32 GMT" + "Thu, 08 Jun 2023 22:18:14 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3358" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:32 GMT" + "Thu, 08 Jun 2023 22:18:14 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:32 GMT" + "Thu, 08 Jun 2023 22:18:15 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27%21A1%3AD2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27%21A1%3AD2", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:33 GMT" + "Thu, 08 Jun 2023 22:18:15 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -559,7 +461,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"=4/2\", \"2020-01-01\", \"string\", 53], [\"=3/2\", 0.12, \"1999-01-02\", \"\"]]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "84" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:33 GMT" + "Thu, 08 Jun 2023 22:18:15 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" + "string": "{\n \"spreadsheetId\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:33 GMT" + "Thu, 08 Jun 2023 22:18:15 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "206" @@ -717,7 +613,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -749,37 +642,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:33 GMT" + "Thu, 08 Jun 2023 22:18:15 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "184" @@ -793,7 +686,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27?valueRenderOption=FORMULA", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27?valueRenderOption=FORMULA", "body": null, "headers": { "User-Agent": [ @@ -811,9 +704,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -825,37 +715,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:34 GMT" + "Thu, 08 Jun 2023 22:18:16 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "192" @@ -869,7 +759,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -887,9 +777,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -904,41 +791,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:34 GMT" + "Thu, 08 Jun 2023 22:18:16 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_values.json b/tests/cassettes/WorksheetTest.test_get_all_values.json index 65ed99364..7d5352860 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_values.json +++ b/tests/cassettes/WorksheetTest.test_get_all_values.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "105" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:38 GMT" + "Thu, 08 Jun 2023 22:18:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"name\": \"Test WorksheetTest test_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"name\": \"Test WorksheetTest test_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:39 GMT" + "Thu, 08 Jun 2023 22:18:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:43:39 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "202" - ] - }, - "body": { - "string": "{\n \"id\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"name\": \"Test WorksheetTest test_get_all_values\",\n \"createdTime\": \"2023-07-25T15:43:35.200Z\",\n \"modifiedTime\": \"2023-07-25T15:43:35.216Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:40 GMT" + "Thu, 08 Jun 2023 22:18:20 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:40 GMT" + "Thu, 08 Jun 2023 22:18:20 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:40 GMT" + "Thu, 08 Jun 2023 22:18:20 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A1%3AD1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27%21A1%3AD1", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:40 GMT" + "Thu, 08 Jun 2023 22:18:20 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -559,7 +461,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A2%3AD2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27%21A2%3AD2", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -591,37 +490,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:41 GMT" + "Thu, 08 Jun 2023 22:18:20 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -635,7 +534,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A3%3AD3", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27%21A3%3AD3", "body": null, "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -667,37 +563,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:41 GMT" + "Thu, 08 Jun 2023 22:18:21 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -711,7 +607,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A4%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27%21A4%3AD4", "body": null, "headers": { "User-Agent": [ @@ -729,9 +625,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -743,37 +636,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:41 GMT" + "Thu, 08 Jun 2023 22:18:21 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -787,7 +680,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ @@ -805,9 +698,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "98" ], @@ -825,51 +715,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:41 GMT" + "Thu, 08 Jun 2023 22:18:21 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -887,9 +777,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -901,37 +788,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:41 GMT" + "Thu, 08 Jun 2023 22:18:21 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "234" @@ -945,7 +832,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -963,9 +850,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -980,41 +864,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:42 GMT" + "Thu, 08 Jun 2023 22:18:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_values_date_time_render_options.json b/tests/cassettes/WorksheetTest.test_get_all_values_date_time_render_options.json index 104092d56..2798bb5c6 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_values_date_time_render_options.json +++ b/tests/cassettes/WorksheetTest.test_get_all_values_date_time_render_options.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "130" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Date": [ + "Thu, 08 Jun 2023 22:43:28 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Server": [ "ESF" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin, X-Origin" + ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:45 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "content-length": [ "217" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"name\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"name\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Date": [ + "Thu, 08 Jun 2023 22:43:29 GMT" ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "X-XSS-Protection": [ + "0" + ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:46 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "ESF" ], "content-length": [ "3361" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Tue, 25 Jul 2023 15:43:46 GMT" + "Thu, 08 Jun 2023 22:43:29 GMT" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "content-length": [ - "227" - ] - }, - "body": { - "string": "{\n \"id\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"name\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"createdTime\": \"2023-07-25T15:43:43.300Z\",\n \"modifiedTime\": \"2023-07-25T15:43:44.232Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:46 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "ESF" ], "content-length": [ "3361" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Date": [ + "Thu, 08 Jun 2023 22:43:29 GMT" ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "X-XSS-Protection": [ + "0" + ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:47 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "ESF" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Date": [ + "Thu, 08 Jun 2023 22:43:29 GMT" ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "X-XSS-Protection": [ + "0" + ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:47 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "ESF" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27%21A1%3AD2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27%21A1%3AD2", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Date": [ + "Thu, 08 Jun 2023 22:43:29 GMT" ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "X-XSS-Protection": [ + "0" + ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:47 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "ESF" ], "content-length": [ "58" @@ -559,7 +461,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"=4/2\", \"2020-01-01\", \"string\", 53], [\"=3/2\", 0.12, \"1999-01-02\", \"\"]]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "84" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Date": [ + "Thu, 08 Jun 2023 22:43:30 GMT" ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "X-XSS-Protection": [ + "0" + ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:48 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "ESF" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" + "string": "{\n \"spreadsheetId\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Date": [ + "Thu, 08 Jun 2023 22:43:30 GMT" ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "X-XSS-Protection": [ + "0" + ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:48 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "ESF" ], "content-length": [ "184" @@ -717,7 +613,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -749,37 +642,37 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Date": [ + "Thu, 08 Jun 2023 22:43:30 GMT" ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "X-XSS-Protection": [ + "0" + ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:48 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "ESF" ], "content-length": [ "198" @@ -793,7 +686,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", "body": null, "headers": { "User-Agent": [ @@ -811,9 +704,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -825,37 +715,37 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Date": [ + "Thu, 08 Jun 2023 22:43:30 GMT" ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "X-XSS-Protection": [ + "0" + ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:48 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "ESF" ], "content-length": [ "206" @@ -869,7 +759,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", "body": null, "headers": { "User-Agent": [ @@ -887,9 +777,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -901,37 +788,37 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Date": [ + "Thu, 08 Jun 2023 22:43:30 GMT" ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" + "X-Content-Type-Options": [ + "nosniff" ], - "X-XSS-Protection": [ - "0" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "X-XSS-Protection": [ + "0" + ], "Transfer-Encoding": [ "chunked" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:48 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "ESF" ], "content-length": [ "206" @@ -945,7 +832,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -963,9 +850,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -980,17 +864,23 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Date": [ + "Thu, 08 Jun 2023 22:43:31 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "Content-Type": [ - "text/html" + "X-Content-Type-Options": [ + "nosniff" ], - "Server": [ - "ESF" + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" ], "Pragma": [ "no-cache" @@ -998,23 +888,17 @@ "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Content-Length": [ - "0" + "Content-Type": [ + "text/html" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:43:49 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "ESF" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_values_title_is_a1_notation.json b/tests/cassettes/WorksheetTest.test_get_all_values_title_is_a1_notation.json index dbb593eb6..2f42e5772 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_values_title_is_a1_notation.json +++ b/tests/cassettes/WorksheetTest.test_get_all_values_title_is_a1_notation.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "126" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:52 GMT" + "Thu, 08 Jun 2023 22:18:31 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "213" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"name\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"name\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:53 GMT" + "Thu, 08 Jun 2023 22:18:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3357" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:43:53 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "223" - ] - }, - "body": { - "string": "{\n \"id\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"name\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"createdTime\": \"2023-07-25T15:43:50.075Z\",\n \"modifiedTime\": \"2023-07-25T15:43:51.247Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:53 GMT" + "Thu, 08 Jun 2023 22:18:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3357" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:54 GMT" + "Thu, 08 Jun 2023 22:18:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:54 GMT" + "Thu, 08 Jun 2023 22:18:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"title\": \"D3\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "107" ], @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:54 GMT" + "Thu, 08 Jun 2023 22:18:32 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A1%3AD1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27%21A1%3AD1", "body": null, "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -597,37 +496,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:55 GMT" + "Thu, 08 Jun 2023 22:18:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "56" @@ -641,7 +540,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A2%3AD2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27%21A2%3AD2", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:55 GMT" + "Thu, 08 Jun 2023 22:18:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "56" @@ -717,7 +613,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A3%3AD3", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27%21A3%3AD3", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -749,37 +642,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:55 GMT" + "Thu, 08 Jun 2023 22:18:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "56" @@ -793,7 +686,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A4%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27%21A4%3AD4", "body": null, "headers": { "User-Agent": [ @@ -811,9 +704,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -825,37 +715,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:55 GMT" + "Thu, 08 Jun 2023 22:18:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "56" @@ -869,7 +759,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"d4\"]]}", "headers": { "User-Agent": [ @@ -887,9 +777,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "98" ], @@ -907,51 +794,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:56 GMT" + "Thu, 08 Jun 2023 22:18:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "167" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"updatedRange\": \"'D3'!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"updatedRange\": \"'D3'!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27", "body": null, "headers": { "User-Agent": [ @@ -969,9 +856,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -983,37 +867,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:56 GMT" + "Thu, 08 Jun 2023 22:18:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "232" @@ -1027,7 +911,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1045,9 +929,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1062,41 +943,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:43:57 GMT" + "Thu, 08 Jun 2023 22:18:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_values_and_combine_merged_cells.json b/tests/cassettes/WorksheetTest.test_get_values_and_combine_merged_cells.json index 21efe1828..e203e7888 100644 --- a/tests/cassettes/WorksheetTest.test_get_values_and_combine_merged_cells.json +++ b/tests/cassettes/WorksheetTest.test_get_values_and_combine_merged_cells.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "126" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Origin, X-Origin" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" + "Date": [ + "Thu, 08 Jun 2023 18:55:14 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:44:00 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "213" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"name\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"name\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" ], "Date": [ - "Tue, 25 Jul 2023 15:44:01 GMT" + "Thu, 08 Jun 2023 18:55:15 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "3357" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:44:01 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "223" - ] - }, - "body": { - "string": "{\n \"id\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"name\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"createdTime\": \"2023-07-25T15:43:57.614Z\",\n \"modifiedTime\": \"2023-07-25T15:43:57.634Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" - ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Thu, 08 Jun 2023 18:55:15 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:44:02 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "3357" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" ], "Date": [ - "Tue, 25 Jul 2023 15:44:02 GMT" + "Thu, 08 Jun 2023 18:55:15 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,52 +344,52 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" ], "Date": [ - "Tue, 25 Jul 2023 15:44:02 GMT" + "Thu, 08 Jun 2023 18:55:15 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", - "body": "{\"values\": [[\"1\", \"\", \"\", \"\"], [\"\", \"\", \"title\", \"\"], [\"\", \"\", \"2\", \"\"], [\"num\", \"val\", \"\", \"0\"]]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "body": "{\"values\": [[1, \"\", \"\", \"\"], [\"\", \"\", \"title\", \"\"], [\"\", \"\", 2, \"\"], [\"num\", \"val\", \"\", 0]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -501,11 +406,8 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ - "98" + "92" ], "Content-Type": [ "application/json" @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" ], "Date": [ - "Tue, 25 Jul 2023 15:44:02 GMT" + "Thu, 08 Jun 2023 18:55:15 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "165" ], @@ -603,51 +502,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" ], "Date": [ - "Tue, 25 Jul 2023 15:44:03 GMT" + "Thu, 08 Jun 2023 18:55:16 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 2, \"endColumnIndex\": 4, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -665,9 +564,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "165" ], @@ -685,51 +581,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" ], "Date": [ - "Tue, 25 Jul 2023 15:44:03 GMT" + "Thu, 08 Jun 2023 18:55:16 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 2, \"endRowIndex\": 4, \"startColumnIndex\": 2, \"endColumnIndex\": 3, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -747,9 +643,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "165" ], @@ -767,51 +660,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" ], "Date": [ - "Tue, 25 Jul 2023 15:44:03 GMT" + "Thu, 08 Jun 2023 18:55:16 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -829,9 +722,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -843,37 +733,37 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" ], "Date": [ - "Tue, 25 Jul 2023 15:44:04 GMT" + "Thu, 08 Jun 2023 18:55:16 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "248" @@ -887,7 +777,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -905,9 +795,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -919,37 +806,37 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" ], "Date": [ - "Tue, 25 Jul 2023 15:44:04 GMT" + "Thu, 08 Jun 2023 18:55:16 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "248" @@ -963,7 +850,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -981,9 +868,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -995,51 +879,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Server": [ + "ESF" ], "Date": [ - "Tue, 25 Jul 2023 15:44:04 GMT" + "Thu, 08 Jun 2023 18:55:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "content-length": [ "3805" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n },\n {\n \"startRowIndex\": 2,\n \"endRowIndex\": 4,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 3\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n },\n {\n \"startRowIndex\": 2,\n \"endRowIndex\": 4,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 3\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1057,9 +941,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1074,41 +955,41 @@ "message": "No Content" }, "headers": { + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "text/html" + ], + "X-XSS-Protection": [ + "0" + ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], - "Content-Type": [ - "text/html" - ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" + "Date": [ + "Thu, 08 Jun 2023 18:55:17 GMT" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Tue, 25 Jul 2023 15:44:05 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_group_columns.json b/tests/cassettes/WorksheetTest.test_group_columns.json index 2e7da86dc..49d7f8f2e 100644 --- a/tests/cassettes/WorksheetTest.test_group_columns.json +++ b/tests/cassettes/WorksheetTest.test_group_columns.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "104" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:08 GMT" + "Thu, 08 Jun 2023 22:18:38 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "191" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"name\": \"Test WorksheetTest test_group_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"name\": \"Test WorksheetTest test_group_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:09 GMT" + "Thu, 08 Jun 2023 22:18:38 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:44:09 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "201" - ] - }, - "body": { - "string": "{\n \"id\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"name\": \"Test WorksheetTest test_group_columns\",\n \"createdTime\": \"2023-07-25T15:44:05.696Z\",\n \"modifiedTime\": \"2023-07-25T15:44:05.724Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:09 GMT" + "Thu, 08 Jun 2023 22:18:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:10 GMT" + "Thu, 08 Jun 2023 22:18:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs:batchUpdate", "body": "{\"requests\": [{\"addDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "120" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:10 GMT" + "Thu, 08 Jun 2023 22:18:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "360" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:10 GMT" + "Thu, 08 Jun 2023 22:18:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3577" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n },\n \"columnGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n },\n \"columnGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs:batchUpdate", "body": "{\"requests\": [{\"deleteDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "123" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:11 GMT" + "Thu, 08 Jun 2023 22:18:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "135" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,51 +569,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:11 GMT" + "Thu, 08 Jun 2023 22:18:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3378" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -752,41 +645,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:12 GMT" + "Thu, 08 Jun 2023 22:18:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_group_rows.json b/tests/cassettes/WorksheetTest.test_group_rows.json index a67ab25ae..6bd7d5b30 100644 --- a/tests/cassettes/WorksheetTest.test_group_rows.json +++ b/tests/cassettes/WorksheetTest.test_group_rows.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "101" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:14 GMT" + "Thu, 08 Jun 2023 22:18:43 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "188" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"name\": \"Test WorksheetTest test_group_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"name\": \"Test WorksheetTest test_group_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:15 GMT" + "Thu, 08 Jun 2023 22:18:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:44:16 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"id\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"name\": \"Test WorksheetTest test_group_rows\",\n \"createdTime\": \"2023-07-25T15:44:12.380Z\",\n \"modifiedTime\": \"2023-07-25T15:44:13.589Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:16 GMT" + "Thu, 08 Jun 2023 22:18:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:16 GMT" + "Thu, 08 Jun 2023 22:18:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo:batchUpdate", "body": "{\"requests\": [{\"addDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "117" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:17 GMT" + "Thu, 08 Jun 2023 22:18:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "357" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:17 GMT" + "Thu, 08 Jun 2023 22:18:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3565" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n },\n \"rowGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n },\n \"rowGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo:batchUpdate", "body": "{\"requests\": [{\"deleteDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "120" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:17 GMT" + "Thu, 08 Jun 2023 22:18:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "135" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,51 +569,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:17 GMT" + "Thu, 08 Jun 2023 22:18:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3372" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -752,41 +645,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:18 GMT" + "Thu, 08 Jun 2023 22:18:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_hide_columns_rows.json b/tests/cassettes/WorksheetTest.test_hide_columns_rows.json index 962fc58f8..3a9151957 100644 --- a/tests/cassettes/WorksheetTest.test_hide_columns_rows.json +++ b/tests/cassettes/WorksheetTest.test_hide_columns_rows.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "108" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:21 GMT" + "Thu, 08 Jun 2023 22:18:49 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "195" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"name\": \"Test WorksheetTest test_hide_columns_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"name\": \"Test WorksheetTest test_hide_columns_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:21 GMT" + "Thu, 08 Jun 2023 22:18:49 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3339" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:44:22 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "205" - ] - }, - "body": { - "string": "{\n \"id\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"name\": \"Test WorksheetTest test_hide_columns_rows\",\n \"createdTime\": \"2023-07-25T15:44:19.082Z\",\n \"modifiedTime\": \"2023-07-25T15:44:19.814Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:22 GMT" + "Thu, 08 Jun 2023 22:18:49 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3339" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:22 GMT" + "Thu, 08 Jun 2023 22:18:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": true}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "192" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:22 GMT" + "Thu, 08 Jun 2023 22:18:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": false}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "193" ], @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:23 GMT" + "Thu, 08 Jun 2023 22:18:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": true}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "189" ], @@ -603,51 +502,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:23 GMT" + "Thu, 08 Jun 2023 22:18:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": false}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ @@ -665,9 +564,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -685,51 +581,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:23 GMT" + "Thu, 08 Jun 2023 22:18:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -747,9 +643,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -764,41 +657,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:24 GMT" + "Thu, 08 Jun 2023 22:18:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_hide_gridlines.json b/tests/cassettes/WorksheetTest.test_hide_gridlines.json index 33b5ff4fb..756021adc 100644 --- a/tests/cassettes/WorksheetTest.test_hide_gridlines.json +++ b/tests/cassettes/WorksheetTest.test_hide_gridlines.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "105" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:27 GMT" + "Thu, 08 Jun 2023 22:18:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"name\": \"Test WorksheetTest test_hide_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"name\": \"Test WorksheetTest test_hide_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:27 GMT" + "Thu, 08 Jun 2023 22:18:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:44:28 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "202" - ] - }, - "body": { - "string": "{\n \"id\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"name\": \"Test WorksheetTest test_hide_gridlines\",\n \"createdTime\": \"2023-07-25T15:44:24.967Z\",\n \"modifiedTime\": \"2023-07-25T15:44:26.032Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:28 GMT" + "Thu, 08 Jun 2023 22:18:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:28 GMT" + "Thu, 08 Jun 2023 22:18:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,51 +338,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:28 GMT" + "Thu, 08 Jun 2023 22:18:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": true}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "158" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:29 GMT" + "Thu, 08 Jun 2023 22:18:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -591,51 +490,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:29 GMT" + "Thu, 08 Jun 2023 22:18:56 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3369" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"hideGridlines\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"hideGridlines\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -670,41 +566,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:30 GMT" + "Thu, 08 Jun 2023 22:18:56 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_hide_show_worksheet.json b/tests/cassettes/WorksheetTest.test_hide_show_worksheet.json index 74c40ad07..4617ad3cc 100644 --- a/tests/cassettes/WorksheetTest.test_hide_show_worksheet.json +++ b/tests/cassettes/WorksheetTest.test_hide_show_worksheet.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "110" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:34 GMT" + "Thu, 08 Jun 2023 22:18:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "197" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"name\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"name\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:34 GMT" + "Thu, 08 Jun 2023 22:18:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:44:34 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "207" - ] - }, - "body": { - "string": "{\n \"id\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"name\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"createdTime\": \"2023-07-25T15:44:30.988Z\",\n \"modifiedTime\": \"2023-07-25T15:44:31.010Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:35 GMT" + "Thu, 08 Jun 2023 22:19:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:35 GMT" + "Thu, 08 Jun 2023 22:19:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "109" ], @@ -439,37 +344,37 @@ "message": "Bad Request" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:35 GMT" + "Thu, 08 Jun 2023 22:19:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "177" @@ -483,7 +388,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"you cannot see me\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 2}}}}]}", "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "150" ], @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:36 GMT" + "Thu, 08 Jun 2023 22:19:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ - "388" + "387" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 993117170,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -597,52 +496,52 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:36 GMT" + "Thu, 08 Jun 2023 22:19:01 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ - "3592" + "3591" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 993117170,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", - "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 1513170215, \"hidden\": true}, \"fields\": \"hidden\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w:batchUpdate", + "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 993117170, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -659,11 +558,8 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ - "118" + "117" ], "Content-Type": [ "application/json" @@ -679,51 +575,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:36 GMT" + "Thu, 08 Jun 2023 22:19:01 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -741,9 +637,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -755,52 +648,52 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:36 GMT" + "Thu, 08 Jun 2023 22:19:01 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ - "3616" + "3615" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 993117170,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", - "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 1513170215, \"hidden\": false}, \"fields\": \"hidden\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w:batchUpdate", + "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 993117170, \"hidden\": false}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -817,11 +710,8 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ - "119" + "118" ], "Content-Type": [ "application/json" @@ -837,51 +727,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:37 GMT" + "Thu, 08 Jun 2023 22:19:01 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -899,9 +789,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -913,51 +800,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:37 GMT" + "Thu, 08 Jun 2023 22:19:01 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ - "3592" + "3591" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 993117170,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -975,9 +862,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -992,41 +876,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:38 GMT" + "Thu, 08 Jun 2023 22:19:02 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_insert_cols.json b/tests/cassettes/WorksheetTest.test_insert_cols.json index a0f63fbf3..d9af8a03e 100644 --- a/tests/cassettes/WorksheetTest.test_insert_cols.json +++ b/tests/cassettes/WorksheetTest.test_insert_cols.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "102" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Thu, 15 Jun 2023 23:48:40 GMT" ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Vary": [ + "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:44:41 GMT" + "Pragma": [ + "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ "189" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"name\": \"Test WorksheetTest test_insert_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"name\": \"Test WorksheetTest test_insert_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:42 GMT" + "Thu, 15 Jun 2023 23:48:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -199,130 +190,50 @@ }, "headers": { "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:42 GMT" + "Thu, 15 Jun 2023 23:48:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "199" - ] - }, - "body": { - "string": "{\n \"id\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"name\": \"Test WorksheetTest test_insert_cols\",\n \"createdTime\": \"2023-07-25T15:44:38.933Z\",\n \"modifiedTime\": \"2023-07-25T15:44:38.946Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ + "X-XSS-Protection": [ "0" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:44:42 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:42 GMT" + "Thu, 15 Jun 2023 23:48:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:43 GMT" + "Thu, 15 Jun 2023 23:48:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ "58" @@ -477,7 +382,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_insert_cols 1\", \"test_insert_cols 2\", \"test_insert_cols 3\", \"test_insert_cols 4\"], [\"test_insert_cols 5\", \"test_insert_cols 6\", \"test_insert_cols 7\", \"test_insert_cols 8\"], [\"test_insert_cols 9\", \"test_insert_cols 10\", \"test_insert_cols 11\", \"test_insert_cols 12\"], [\"test_insert_cols 13\", \"test_insert_cols 14\", \"test_insert_cols 15\", \"test_insert_cols 16\"], [\"test_insert_cols 17\", \"test_insert_cols 18\", \"test_insert_cols 19\", \"test_insert_cols 20\"], [\"test_insert_cols 21\", \"test_insert_cols 22\", \"test_insert_cols 23\", \"test_insert_cols 24\"]]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "567" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:43 GMT" + "Thu, 15 Jun 2023 23:48:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 1, \"endIndex\": 3}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "146" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:44 GMT" + "Thu, 15 Jun 2023 23:48:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21B1:append?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27%21B1:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"COLUMNS\", \"values\": [[\"test_insert_cols 25\", \"test_insert_cols 26\", \"test_insert_cols 27\", \"test_insert_cols 28\"], [\"test_insert_cols 29\", \"test_insert_cols 30\", \"test_insert_cols 31\", \"test_insert_cols 32\"]]}", "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "229" ], @@ -679,51 +575,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:44 GMT" + "Thu, 15 Jun 2023 23:48:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ "264" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"updates\": {\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"updatedRange\": \"Sheet1!B1:C4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 2,\n \"updatedCells\": 8\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"updates\": {\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"updatedRange\": \"Sheet1!B1:C4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 2,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -741,9 +637,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -755,37 +648,37 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:44 GMT" + "Thu, 15 Jun 2023 23:48:42 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ "210" @@ -799,7 +692,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21C1%3AC?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27%21C1%3AC?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -817,9 +710,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -831,37 +721,37 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], "Cache-Control": [ "private" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Transfer-Encoding": [ - "chunked" - ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:45 GMT" + "Thu, 15 Jun 2023 23:48:42 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "content-length": [ "210" @@ -875,7 +765,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -893,9 +783,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -910,41 +797,41 @@ "message": "No Content" }, "headers": { + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "Vary": [ - "Origin, X-Origin" + "Content-Length": [ + "0" ], - "Content-Type": [ - "text/html" + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Content-Length": [ - "0" - ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:45 GMT" + "Thu, 15 Jun 2023 23:48:42 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Pragma": [ + "no-cache" + ], + "Content-Type": [ + "text/html" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_insert_row.json b/tests/cassettes/WorksheetTest.test_insert_row.json index 494cce37e..bb7020b06 100644 --- a/tests/cassettes/WorksheetTest.test_insert_row.json +++ b/tests/cassettes/WorksheetTest.test_insert_row.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "101" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:47 GMT" + "Thu, 08 Jun 2023 22:19:06 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "188" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"name\": \"Test WorksheetTest test_insert_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"name\": \"Test WorksheetTest test_insert_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:48 GMT" + "Thu, 08 Jun 2023 22:19:06 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:44:48 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "198" - ] - }, - "body": { - "string": "{\n \"id\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"name\": \"Test WorksheetTest test_insert_row\",\n \"createdTime\": \"2023-07-25T15:44:46.181Z\",\n \"modifiedTime\": \"2023-07-25T15:44:46.850Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:49 GMT" + "Thu, 08 Jun 2023 22:19:06 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:49 GMT" + "Thu, 08 Jun 2023 22:19:07 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:49 GMT" + "Thu, 08 Jun 2023 22:19:07 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -477,7 +382,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_insert_row 1\", \"test_insert_row 2\", \"test_insert_row 3\", \"test_insert_row 4\"], [\"test_insert_row 5\", \"test_insert_row 6\", \"test_insert_row 7\", \"test_insert_row 8\"], [\"test_insert_row 9\", \"test_insert_row 10\", \"test_insert_row 11\", \"test_insert_row 12\"], [\"test_insert_row 13\", \"test_insert_row 14\", \"test_insert_row 15\", \"test_insert_row 16\"], [\"test_insert_row 17\", \"test_insert_row 18\", \"test_insert_row 19\", \"test_insert_row 20\"], [\"test_insert_row 21\", \"test_insert_row 22\", \"test_insert_row 23\", \"test_insert_row 24\"]]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "543" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:50 GMT" + "Thu, 08 Jun 2023 22:19:07 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 1, \"endIndex\": 2}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "143" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:50 GMT" + "Thu, 08 Jun 2023 22:19:07 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A2:append?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21A2:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"ROWS\", \"values\": [[\"test_insert_row 25\", \"test_insert_row 26\", \"test_insert_row 27\", \"test_insert_row 28\", \"test_insert_row 29\", \"test_insert_row 30\", \"test_insert_row 31\", \"test_insert_row 32\"]]}", "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "216" ], @@ -679,51 +575,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:50 GMT" + "Thu, 08 Jun 2023 22:19:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "264" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updates\": {\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!A2:H2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updates\": {\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updatedRange\": \"Sheet1!A2:H2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A2%3A2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ @@ -741,9 +637,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -755,37 +648,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:50 GMT" + "Thu, 08 Jun 2023 22:19:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "312" @@ -799,7 +692,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21B2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21B2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"=1+1\"]]}", "headers": { "User-Agent": [ @@ -817,9 +710,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "22" ], @@ -837,51 +727,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:51 GMT" + "Thu, 08 Jun 2023 22:19:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!B2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updatedRange\": \"Sheet1!B2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 1}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ @@ -899,9 +789,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "143" ], @@ -919,51 +806,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:51 GMT" + "Thu, 08 Jun 2023 22:19:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1:append?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21A1:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"ROWS\", \"values\": [[\"test_insert_row 33\", \"test_insert_row 34\", \"test_insert_row 35\", \"test_insert_row 36\", \"test_insert_row 37\", \"test_insert_row 38\", \"test_insert_row 39\", \"test_insert_row 40\"]]}", "headers": { "User-Agent": [ @@ -981,9 +868,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "216" ], @@ -1001,51 +885,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:51 GMT" + "Thu, 08 Jun 2023 22:19:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "264" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updates\": {\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!A1:H1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updates\": {\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updatedRange\": \"Sheet1!A1:H1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21B3?valueRenderOption=FORMULA", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21B3?valueRenderOption=FORMULA", "body": null, "headers": { "User-Agent": [ @@ -1063,9 +947,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1077,37 +958,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:52 GMT" + "Thu, 08 Jun 2023 22:19:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "99" @@ -1121,7 +1002,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1139,9 +1020,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1156,41 +1034,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:52 GMT" + "Thu, 08 Jun 2023 22:19:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_range.json b/tests/cassettes/WorksheetTest.test_range.json index 4cc393c0b..2a04049e4 100644 --- a/tests/cassettes/WorksheetTest.test_range.json +++ b/tests/cassettes/WorksheetTest.test_range.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "96" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:55 GMT" + "Thu, 08 Jun 2023 22:19:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "183" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"name\": \"Test WorksheetTest test_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8\",\n \"name\": \"Test WorksheetTest test_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:56 GMT" + "Thu, 08 Jun 2023 22:19:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:44:56 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "193" - ] - }, - "body": { - "string": "{\n \"id\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"name\": \"Test WorksheetTest test_range\",\n \"createdTime\": \"2023-07-25T15:44:52.938Z\",\n \"modifiedTime\": \"2023-07-25T15:44:52.954Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:56 GMT" + "Thu, 08 Jun 2023 22:19:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:56 GMT" + "Thu, 08 Jun 2023 22:19:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27%21A1%3AA5", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8/values/%27Sheet1%27%21A1%3AA5", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:57 GMT" + "Thu, 08 Jun 2023 22:19:14 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -477,7 +382,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27%21A1%3AA5", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8/values/%27Sheet1%27%21A1%3AA5", "body": null, "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -509,37 +411,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:57 GMT" + "Thu, 08 Jun 2023 22:19:14 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -553,7 +455,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -571,9 +473,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -588,41 +487,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:44:58 GMT" + "Thu, 08 Jun 2023 22:19:15 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_range_get_all_values.json b/tests/cassettes/WorksheetTest.test_range_get_all_values.json index b1caf0c0d..5da58d551 100644 --- a/tests/cassettes/WorksheetTest.test_range_get_all_values.json +++ b/tests/cassettes/WorksheetTest.test_range_get_all_values.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "111" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:01 GMT" + "Thu, 08 Jun 2023 22:19:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "198" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"name\": \"Test WorksheetTest test_range_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"name\": \"Test WorksheetTest test_range_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:02 GMT" + "Thu, 08 Jun 2023 22:19:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3342" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:45:02 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "208" - ] - }, - "body": { - "string": "{\n \"id\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"name\": \"Test WorksheetTest test_range_get_all_values\",\n \"createdTime\": \"2023-07-25T15:44:58.736Z\",\n \"modifiedTime\": \"2023-07-25T15:44:58.754Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:03 GMT" + "Thu, 08 Jun 2023 22:19:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3342" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:03 GMT" + "Thu, 08 Jun 2023 22:19:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:04 GMT" + "Thu, 08 Jun 2023 22:19:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"Hi\", \"Mom\", \"\"], [\"My\", \"Name\", \"is\", \"bon\"], [\"\", \"\", \"\", \"\"], [\"1\", \"2\", \"3\", \"4\"]]}", "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "104" ], @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:04 GMT" + "Thu, 08 Jun 2023 22:19:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -597,37 +496,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:05 GMT" + "Thu, 08 Jun 2023 22:19:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "250" @@ -641,7 +540,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:05 GMT" + "Thu, 08 Jun 2023 22:19:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "250" @@ -717,7 +613,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -752,41 +645,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:06 GMT" + "Thu, 08 Jun 2023 22:19:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_range_reversed.json b/tests/cassettes/WorksheetTest.test_range_reversed.json index 40b836deb..3e864991a 100644 --- a/tests/cassettes/WorksheetTest.test_range_reversed.json +++ b/tests/cassettes/WorksheetTest.test_range_reversed.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "105" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:09 GMT" + "Thu, 08 Jun 2023 22:19:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"name\": \"Test WorksheetTest test_range_reversed\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM\",\n \"name\": \"Test WorksheetTest test_range_reversed\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:10 GMT" + "Thu, 08 Jun 2023 22:19:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:45:10 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "202" - ] - }, - "body": { - "string": "{\n \"id\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"name\": \"Test WorksheetTest test_range_reversed\",\n \"createdTime\": \"2023-07-25T15:45:07.019Z\",\n \"modifiedTime\": \"2023-07-25T15:45:07.042Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:11 GMT" + "Thu, 08 Jun 2023 22:19:22 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:11 GMT" + "Thu, 08 Jun 2023 22:19:23 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:11 GMT" + "Thu, 08 Jun 2023 22:19:23 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -477,7 +382,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27%21D4%3AA1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM/values/%27Sheet1%27%21D4%3AA1", "body": null, "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -509,37 +411,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:12 GMT" + "Thu, 08 Jun 2023 22:19:23 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -553,7 +455,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -571,9 +473,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -588,41 +487,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:12 GMT" + "Thu, 08 Jun 2023 22:19:24 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_range_unbounded.json b/tests/cassettes/WorksheetTest.test_range_unbounded.json index 75dcc8b97..755bffc57 100644 --- a/tests/cassettes/WorksheetTest.test_range_unbounded.json +++ b/tests/cassettes/WorksheetTest.test_range_unbounded.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "106" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:15 GMT" + "Thu, 08 Jun 2023 22:19:27 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "193" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"name\": \"Test WorksheetTest test_range_unbounded\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog\",\n \"name\": \"Test WorksheetTest test_range_unbounded\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:15 GMT" + "Thu, 08 Jun 2023 22:19:28 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:45:15 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "203" - ] - }, - "body": { - "string": "{\n \"id\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"name\": \"Test WorksheetTest test_range_unbounded\",\n \"createdTime\": \"2023-07-25T15:45:12.881Z\",\n \"modifiedTime\": \"2023-07-25T15:45:12.896Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:16 GMT" + "Thu, 08 Jun 2023 22:19:28 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:16 GMT" + "Thu, 08 Jun 2023 22:19:28 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27%21A1%3AC", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog/values/%27Sheet1%27%21A1%3AC", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:17 GMT" + "Thu, 08 Jun 2023 22:19:28 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "61" @@ -477,7 +382,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27%21A1%3AC1000", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog/values/%27Sheet1%27%21A1%3AC1000", "body": null, "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -509,37 +411,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:17 GMT" + "Thu, 08 Jun 2023 22:19:29 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "61" @@ -553,7 +455,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -571,9 +473,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -588,41 +487,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:18 GMT" + "Thu, 08 Jun 2023 22:19:29 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_reorder_worksheets.json b/tests/cassettes/WorksheetTest.test_reorder_worksheets.json index 3bd842be8..366f20a4c 100644 --- a/tests/cassettes/WorksheetTest.test_reorder_worksheets.json +++ b/tests/cassettes/WorksheetTest.test_reorder_worksheets.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "109" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:20 GMT" + "Thu, 08 Jun 2023 22:19:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "196" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"name\": \"Test WorksheetTest test_reorder_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"name\": \"Test WorksheetTest test_reorder_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:21 GMT" + "Thu, 08 Jun 2023 22:19:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3340" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:45:21 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "206" - ] - }, - "body": { - "string": "{\n \"id\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"name\": \"Test WorksheetTest test_reorder_worksheets\",\n \"createdTime\": \"2023-07-25T15:45:18.649Z\",\n \"modifiedTime\": \"2023-07-25T15:45:19.476Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:21 GMT" + "Thu, 08 Jun 2023 22:19:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3340" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:22 GMT" + "Thu, 08 Jun 2023 22:19:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,51 +338,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:22 GMT" + "Thu, 08 Jun 2023 22:19:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3340" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -509,51 +411,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:22 GMT" + "Thu, 08 Jun 2023 22:19:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3340" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"index\": 0}, \"fields\": \"index\"}}]}", "headers": { "User-Agent": [ @@ -571,9 +473,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "104" ], @@ -591,51 +490,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:22 GMT" + "Thu, 08 Jun 2023 22:19:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -667,51 +563,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:23 GMT" + "Thu, 08 Jun 2023 22:19:35 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3340" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -729,9 +625,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -746,41 +639,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:23 GMT" + "Thu, 08 Jun 2023 22:19:35 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_resize.json b/tests/cassettes/WorksheetTest.test_resize.json index ce79f3d2f..7c2dac550 100644 --- a/tests/cassettes/WorksheetTest.test_resize.json +++ b/tests/cassettes/WorksheetTest.test_resize.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "97" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:26 GMT" + "Thu, 08 Jun 2023 22:19:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "184" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"name\": \"Test WorksheetTest test_resize\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"name\": \"Test WorksheetTest test_resize\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:26 GMT" + "Thu, 08 Jun 2023 22:19:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:45:27 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "194" - ] - }, - "body": { - "string": "{\n \"id\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"name\": \"Test WorksheetTest test_resize\",\n \"createdTime\": \"2023-07-25T15:45:23.965Z\",\n \"modifiedTime\": \"2023-07-25T15:45:23.985Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:27 GMT" + "Thu, 08 Jun 2023 22:19:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:28 GMT" + "Thu, 08 Jun 2023 22:19:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 1010}}, \"fields\": \"gridProperties/rowCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "148" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:29 GMT" + "Thu, 08 Jun 2023 22:19:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:29 GMT" + "Thu, 08 Jun 2023 22:19:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"columnCount\": 36}}, \"fields\": \"gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "152" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:30 GMT" + "Thu, 08 Jun 2023 22:19:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,51 +569,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:30 GMT" + "Thu, 08 Jun 2023 22:19:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 36\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 36\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 1000, \"columnCount\": 26}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "194" ], @@ -755,51 +648,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:30 GMT" + "Thu, 08 Jun 2023 22:19:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -817,9 +710,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -831,51 +721,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:30 GMT" + "Thu, 08 Jun 2023 22:19:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -893,9 +783,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -910,41 +797,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:31 GMT" + "Thu, 08 Jun 2023 22:19:42 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_show_gridlines.json b/tests/cassettes/WorksheetTest.test_show_gridlines.json index e4627d936..f32f94b8d 100644 --- a/tests/cassettes/WorksheetTest.test_show_gridlines.json +++ b/tests/cassettes/WorksheetTest.test_show_gridlines.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "105" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:33 GMT" + "Thu, 08 Jun 2023 22:19:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"name\": \"Test WorksheetTest test_show_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"name\": \"Test WorksheetTest test_show_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:34 GMT" + "Thu, 08 Jun 2023 22:19:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:45:34 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "202" - ] - }, - "body": { - "string": "{\n \"id\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"name\": \"Test WorksheetTest test_show_gridlines\",\n \"createdTime\": \"2023-07-25T15:45:32.039Z\",\n \"modifiedTime\": \"2023-07-25T15:45:32.749Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:34 GMT" + "Thu, 08 Jun 2023 22:19:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:35 GMT" + "Thu, 08 Jun 2023 22:19:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,51 +338,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:35 GMT" + "Thu, 08 Jun 2023 22:19:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": true}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "158" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:36 GMT" + "Thu, 08 Jun 2023 22:19:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": false}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "159" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:36 GMT" + "Thu, 08 Jun 2023 22:19:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,51 +569,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:36 GMT" + "Thu, 08 Jun 2023 22:19:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -752,41 +645,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:37 GMT" + "Thu, 08 Jun 2023 22:19:47 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_sort.json b/tests/cassettes/WorksheetTest.test_sort.json index b022c6ae4..f46a7e3b6 100644 --- a/tests/cassettes/WorksheetTest.test_sort.json +++ b/tests/cassettes/WorksheetTest.test_sort.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "95" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:39 GMT" + "Thu, 08 Jun 2023 22:19:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "182" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"name\": \"Test WorksheetTest test_sort\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"name\": \"Test WorksheetTest test_sort\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:39 GMT" + "Thu, 08 Jun 2023 22:19:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:45:40 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "192" - ] - }, - "body": { - "string": "{\n \"id\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"name\": \"Test WorksheetTest test_sort\",\n \"createdTime\": \"2023-07-25T15:45:37.677Z\",\n \"modifiedTime\": \"2023-07-25T15:45:38.519Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:40 GMT" + "Thu, 08 Jun 2023 22:19:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:40 GMT" + "Thu, 08 Jun 2023 22:19:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 6, \"columnCount\": 3}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "190" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:41 GMT" + "Thu, 08 Jun 2023 22:19:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27%21A1%3AC6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27%21A1%3AC6", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:41 GMT" + "Thu, 08 Jun 2023 22:19:52 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -559,7 +461,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27%21A1%3AC6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27%21A1%3AC6?valueInputOption=RAW", "body": "{\"values\": [[\"Apple\", \"2012\", \"4\"], [\"Banana\", \"2013\", \"3\"], [\"Canada\", \"2007\", \"1\"], [\"Dinosaur\", \"2013\", \"6\"], [\"Elephant\", \"2019\", \"2\"], [\"Fox\", \"2077\", \"5\"]]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "162" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:41 GMT" + "Thu, 08 Jun 2023 22:19:52 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"updatedRange\": \"Sheet1!A1:C6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 3,\n \"updatedCells\": 18\n}\n" + "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"updatedRange\": \"Sheet1!A1:C6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 3,\n \"updatedCells\": 18\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "202" ], @@ -679,51 +575,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:42 GMT" + "Thu, 08 Jun 2023 22:19:52 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -741,9 +637,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -755,37 +648,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:42 GMT" + "Thu, 08 Jun 2023 22:19:52 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "394" @@ -799,7 +692,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 0, \"sortOrder\": \"DESCENDING\"}]}}]}", "headers": { "User-Agent": [ @@ -817,9 +710,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "203" ], @@ -837,51 +727,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:42 GMT" + "Thu, 08 Jun 2023 22:19:52 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -899,9 +789,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -913,37 +800,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:43 GMT" + "Thu, 08 Jun 2023 22:19:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "394" @@ -957,7 +844,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 1, \"sortOrder\": \"ASCENDING\"}, {\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ @@ -975,9 +862,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "251" ], @@ -995,51 +879,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:43 GMT" + "Thu, 08 Jun 2023 22:19:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -1057,9 +941,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1071,37 +952,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:43 GMT" + "Thu, 08 Jun 2023 22:19:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "394" @@ -1115,7 +996,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ @@ -1133,9 +1014,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "202" ], @@ -1153,51 +1031,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:44 GMT" + "Thu, 08 Jun 2023 22:19:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -1215,9 +1093,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1229,37 +1104,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:44 GMT" + "Thu, 08 Jun 2023 22:19:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "394" @@ -1273,7 +1148,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 1, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"DESCENDING\"}]}}]}", "headers": { "User-Agent": [ @@ -1291,9 +1166,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "203" ], @@ -1311,51 +1183,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:44 GMT" + "Thu, 08 Jun 2023 22:19:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -1373,9 +1245,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1387,37 +1256,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:44 GMT" + "Thu, 08 Jun 2023 22:19:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "394" @@ -1431,7 +1300,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1449,9 +1318,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1466,41 +1332,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:45 GMT" + "Thu, 08 Jun 2023 22:19:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_acell.json b/tests/cassettes/WorksheetTest.test_update_acell.json index 0855cf938..af7650a99 100644 --- a/tests/cassettes/WorksheetTest.test_update_acell.json +++ b/tests/cassettes/WorksheetTest.test_update_acell.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "103" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:48 GMT" + "Thu, 08 Jun 2023 22:19:58 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"name\": \"Test WorksheetTest test_update_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c\",\n \"name\": \"Test WorksheetTest test_update_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:48 GMT" + "Thu, 08 Jun 2023 22:19:58 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:45:49 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "200" - ] - }, - "body": { - "string": "{\n \"id\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"name\": \"Test WorksheetTest test_update_acell\",\n \"createdTime\": \"2023-07-25T15:45:45.745Z\",\n \"modifiedTime\": \"2023-07-25T15:45:45.759Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:49 GMT" + "Thu, 08 Jun 2023 22:19:58 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:49 GMT" + "Thu, 08 Jun 2023 22:19:58 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_acell 1\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "37" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:50 GMT" + "Thu, 08 Jun 2023 22:19:58 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:50 GMT" + "Thu, 08 Jun 2023 22:19:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "114" @@ -559,7 +461,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -594,41 +493,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:51 GMT" + "Thu, 08 Jun 2023 22:19:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_and_get.json b/tests/cassettes/WorksheetTest.test_update_and_get.json index 9c2cae0e3..55db21bbe 100644 --- a/tests/cassettes/WorksheetTest.test_update_and_get.json +++ b/tests/cassettes/WorksheetTest.test_update_and_get.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "105" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:53 GMT" + "Thu, 08 Jun 2023 22:20:02 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"name\": \"Test WorksheetTest test_update_and_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU\",\n \"name\": \"Test WorksheetTest test_update_and_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:53 GMT" + "Thu, 08 Jun 2023 22:20:03 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:45:53 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "202" - ] - }, - "body": { - "string": "{\n \"id\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"name\": \"Test WorksheetTest test_update_and_get\",\n \"createdTime\": \"2023-07-25T15:45:51.494Z\",\n \"modifiedTime\": \"2023-07-25T15:45:52.276Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:54 GMT" + "Thu, 08 Jun 2023 22:20:03 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:54 GMT" + "Thu, 08 Jun 2023 22:20:03 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27%21A1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU/values/%27Sheet1%27%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "98" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:55 GMT" + "Thu, 08 Jun 2023 22:20:03 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:55 GMT" + "Thu, 08 Jun 2023 22:20:04 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "234" @@ -559,7 +461,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -594,41 +493,41 @@ "message": "No Content" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:55 GMT" + "Thu, 08 Jun 2023 22:20:04 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cell.json b/tests/cassettes/WorksheetTest.test_update_cell.json index 9483d8d0e..abe36a003 100644 --- a/tests/cassettes/WorksheetTest.test_update_cell.json +++ b/tests/cassettes/WorksheetTest.test_update_cell.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "102" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:58 GMT" + "Thu, 08 Jun 2023 22:20:07 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "189" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"name\": \"Test WorksheetTest test_update_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"name\": \"Test WorksheetTest test_update_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:58 GMT" + "Thu, 08 Jun 2023 22:20:07 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:45:59 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "199" - ] - }, - "body": { - "string": "{\n \"id\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"name\": \"Test WorksheetTest test_update_cell\",\n \"createdTime\": \"2023-07-25T15:45:56.128Z\",\n \"modifiedTime\": \"2023-07-25T15:45:56.169Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:59 GMT" + "Thu, 08 Jun 2023 22:20:07 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:45:59 GMT" + "Thu, 08 Jun 2023 22:20:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_cell 1\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "36" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:00 GMT" + "Thu, 08 Jun 2023 22:20:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:00 GMT" + "Thu, 08 Jun 2023 22:20:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "113" @@ -559,7 +461,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[42]]}", "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "18" ], @@ -597,51 +496,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:00 GMT" + "Thu, 08 Jun 2023 22:20:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -673,37 +569,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:00 GMT" + "Thu, 08 Jun 2023 22:20:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" @@ -717,7 +613,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"0042\"]]}", "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "22" ], @@ -755,51 +648,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:01 GMT" + "Thu, 08 Jun 2023 22:20:08 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -817,9 +710,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -831,37 +721,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:01 GMT" + "Thu, 08 Jun 2023 22:20:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" @@ -875,7 +765,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[42.01]]}", "headers": { "User-Agent": [ @@ -893,9 +783,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "21" ], @@ -913,51 +800,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:01 GMT" + "Thu, 08 Jun 2023 22:20:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -975,9 +862,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -989,37 +873,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:01 GMT" + "Thu, 08 Jun 2023 22:20:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "100" @@ -1033,7 +917,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"\\u0410\\u0440\\u0442\\u0443\\u0440\"]]}", "headers": { "User-Agent": [ @@ -1051,9 +935,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "48" ], @@ -1071,51 +952,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:02 GMT" + "Thu, 08 Jun 2023 22:20:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -1133,9 +1014,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1147,37 +1025,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:02 GMT" + "Thu, 08 Jun 2023 22:20:09 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "105" @@ -1191,7 +1069,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1209,9 +1087,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1226,41 +1101,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:02 GMT" + "Thu, 08 Jun 2023 22:20:10 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cell_multiline.json b/tests/cassettes/WorksheetTest.test_update_cell_multiline.json index 46967bc57..d52868685 100644 --- a/tests/cassettes/WorksheetTest.test_update_cell_multiline.json +++ b/tests/cassettes/WorksheetTest.test_update_cell_multiline.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "112" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:05 GMT" + "Thu, 08 Jun 2023 22:20:12 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "199" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"name\": \"Test WorksheetTest test_update_cell_multiline\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY\",\n \"name\": \"Test WorksheetTest test_update_cell_multiline\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:05 GMT" + "Thu, 08 Jun 2023 22:20:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:46:05 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "209" - ] - }, - "body": { - "string": "{\n \"id\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"name\": \"Test WorksheetTest test_update_cell_multiline\",\n \"createdTime\": \"2023-07-25T15:46:03.548Z\",\n \"modifiedTime\": \"2023-07-25T15:46:04.169Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:06 GMT" + "Thu, 08 Jun 2023 22:20:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:06 GMT" + "Thu, 08 Jun 2023 22:20:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_cell_multiline 1\\ntest_update_cell_multiline 1\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "76" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:06 GMT" + "Thu, 08 Jun 2023 22:20:14 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:06 GMT" + "Thu, 08 Jun 2023 22:20:14 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "153" @@ -559,7 +461,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -594,41 +493,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:07 GMT" + "Thu, 08 Jun 2023 22:20:14 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cell_objects.json b/tests/cassettes/WorksheetTest.test_update_cell_objects.json index 1fc63aeb8..3820aacd0 100644 --- a/tests/cassettes/WorksheetTest.test_update_cell_objects.json +++ b/tests/cassettes/WorksheetTest.test_update_cell_objects.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "110" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:10 GMT" + "Thu, 08 Jun 2023 22:20:17 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "197" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"name\": \"Test WorksheetTest test_update_cell_objects\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY\",\n \"name\": \"Test WorksheetTest test_update_cell_objects\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:11 GMT" + "Thu, 08 Jun 2023 22:20:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:46:11 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "207" - ] - }, - "body": { - "string": "{\n \"id\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"name\": \"Test WorksheetTest test_update_cell_objects\",\n \"createdTime\": \"2023-07-25T15:46:07.703Z\",\n \"modifiedTime\": \"2023-07-25T15:46:07.720Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:11 GMT" + "Thu, 08 Jun 2023 22:20:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:12 GMT" + "Thu, 08 Jun 2023 22:20:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", "body": "{\"values\": [[null, \"cell row 1, col 2\"], [\"cell row 2 col 1\", null]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "69" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:12 GMT" + "Thu, 08 Jun 2023 22:20:18 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" + "string": "{\n \"spreadsheetId\": \"1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:12 GMT" + "Thu, 08 Jun 2023 22:20:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "112" @@ -559,7 +461,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -591,37 +490,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:12 GMT" + "Thu, 08 Jun 2023 22:20:19 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "111" @@ -635,7 +534,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -670,41 +566,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:13 GMT" + "Thu, 08 Jun 2023 22:20:20 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cell_unicode.json b/tests/cassettes/WorksheetTest.test_update_cell_unicode.json index 1577c8e90..df9704e79 100644 --- a/tests/cassettes/WorksheetTest.test_update_cell_unicode.json +++ b/tests/cassettes/WorksheetTest.test_update_cell_unicode.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "110" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:16 GMT" + "Thu, 08 Jun 2023 22:20:23 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "197" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"name\": \"Test WorksheetTest test_update_cell_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM\",\n \"name\": \"Test WorksheetTest test_update_cell_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:17 GMT" + "Thu, 08 Jun 2023 22:20:23 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:46:17 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "207" - ] - }, - "body": { - "string": "{\n \"id\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"name\": \"Test WorksheetTest test_update_cell_unicode\",\n \"createdTime\": \"2023-07-25T15:46:14.114Z\",\n \"modifiedTime\": \"2023-07-25T15:46:14.129Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:17 GMT" + "Thu, 08 Jun 2023 22:20:24 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:18 GMT" + "Thu, 08 Jun 2023 22:20:24 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\"]]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "73" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:19 GMT" + "Thu, 08 Jun 2023 22:20:24 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -515,37 +417,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:19 GMT" + "Thu, 08 Jun 2023 22:20:24 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "122" @@ -559,7 +461,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -594,41 +493,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:19 GMT" + "Thu, 08 Jun 2023 22:20:25 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cells.json b/tests/cassettes/WorksheetTest.test_update_cells.json index 945d72d5c..caab8e7d9 100644 --- a/tests/cassettes/WorksheetTest.test_update_cells.json +++ b/tests/cassettes/WorksheetTest.test_update_cells.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "103" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:22 GMT" + "Thu, 08 Jun 2023 22:20:28 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"name\": \"Test WorksheetTest test_update_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk\",\n \"name\": \"Test WorksheetTest test_update_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:22 GMT" + "Thu, 08 Jun 2023 22:20:29 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:46:22 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "200" - ] - }, - "body": { - "string": "{\n \"id\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"name\": \"Test WorksheetTest test_update_cells\",\n \"createdTime\": \"2023-07-25T15:46:20.182Z\",\n \"modifiedTime\": \"2023-07-25T15:46:21.154Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:23 GMT" + "Thu, 08 Jun 2023 22:20:29 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:23 GMT" + "Thu, 08 Jun 2023 22:20:29 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:23 GMT" + "Thu, 08 Jun 2023 22:20:29 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "59" @@ -477,7 +382,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells 1\\ntest_update_cells 1\"], [\"test_update_cells 2\"], [\"test_update_cells 3\"], [\"test_update_cells 4\"], [\"test_update_cells 5\"], [\"test_update_cells 6\"], [\"test_update_cells 7\"], [\"test_update_cells 8\"], [\"test_update_cells 9\"], [\"test_update_cells 10\"]]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "284" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:24 GMT" + "Thu, 08 Jun 2023 22:20:30 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "171" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" + "string": "{\n \"spreadsheetId\": \"1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -591,37 +490,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:24 GMT" + "Thu, 08 Jun 2023 22:20:30 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "509" @@ -635,7 +534,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -670,41 +566,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:25 GMT" + "Thu, 08 Jun 2023 22:20:30 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cells_noncontiguous.json b/tests/cassettes/WorksheetTest.test_update_cells_noncontiguous.json index 609134a52..93b3d14c0 100644 --- a/tests/cassettes/WorksheetTest.test_update_cells_noncontiguous.json +++ b/tests/cassettes/WorksheetTest.test_update_cells_noncontiguous.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "117" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:27 GMT" + "Thu, 08 Jun 2023 22:20:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "204" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"name\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"name\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:28 GMT" + "Thu, 08 Jun 2023 22:20:33 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3348" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:46:28 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "214" - ] - }, - "body": { - "string": "{\n \"id\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"name\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"createdTime\": \"2023-07-25T15:46:25.720Z\",\n \"modifiedTime\": \"2023-07-25T15:46:26.691Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:28 GMT" + "Thu, 08 Jun 2023 22:20:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3348" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:29 GMT" + "Thu, 08 Jun 2023 22:20:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:29 GMT" + "Thu, 08 Jun 2023 22:20:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "58" @@ -477,7 +382,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells_noncontiguous 1\", \"test_update_cells_noncontiguous 2\", \"test_update_cells_noncontiguous 3\", \"test_update_cells_noncontiguous 4\"], [\"test_update_cells_noncontiguous 5\", \"test_update_cells_noncontiguous 6\", \"test_update_cells_noncontiguous 7\", \"test_update_cells_noncontiguous 8\"], [\"test_update_cells_noncontiguous 9\", \"test_update_cells_noncontiguous 10\", \"test_update_cells_noncontiguous 11\", \"test_update_cells_noncontiguous 12\"], [\"test_update_cells_noncontiguous 13\", \"test_update_cells_noncontiguous 14\", \"test_update_cells_noncontiguous 15\", \"test_update_cells_noncontiguous 16\"], [\"test_update_cells_noncontiguous 17\", \"test_update_cells_noncontiguous 18\", \"test_update_cells_noncontiguous 19\", \"test_update_cells_noncontiguous 20\"], [\"test_update_cells_noncontiguous 21\", \"test_update_cells_noncontiguous 22\", \"test_update_cells_noncontiguous 23\", \"test_update_cells_noncontiguous 24\"]]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "927" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:29 GMT" + "Thu, 08 Jun 2023 22:20:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -591,37 +490,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:29 GMT" + "Thu, 08 Jun 2023 22:20:34 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "1195" @@ -635,7 +534,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells_noncontiguous 25 top_left\", null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, \"test_update_cells_noncontiguous 26 bottom_right\"]]}", "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "254" ], @@ -673,51 +569,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:30 GMT" + "Thu, 08 Jun 2023 22:20:35 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" + "string": "{\n \"spreadsheetId\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -735,9 +631,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -749,37 +642,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:30 GMT" + "Thu, 08 Jun 2023 22:20:35 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "1218" @@ -793,7 +686,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -811,9 +704,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -828,41 +718,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:31 GMT" + "Thu, 08 Jun 2023 22:20:36 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cells_unicode.json b/tests/cassettes/WorksheetTest.test_update_cells_unicode.json index e6eee01e5..886f8ebde 100644 --- a/tests/cassettes/WorksheetTest.test_update_cells_unicode.json +++ b/tests/cassettes/WorksheetTest.test_update_cells_unicode.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "111" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:33 GMT" + "Thu, 08 Jun 2023 22:20:38 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "198" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"name\": \"Test WorksheetTest test_update_cells_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4\",\n \"name\": \"Test WorksheetTest test_update_cells_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:34 GMT" + "Thu, 08 Jun 2023 22:20:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3342" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:46:34 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "208" - ] - }, - "body": { - "string": "{\n \"id\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"name\": \"Test WorksheetTest test_update_cells_unicode\",\n \"createdTime\": \"2023-07-25T15:46:31.432Z\",\n \"modifiedTime\": \"2023-07-25T15:46:32.462Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:34 GMT" + "Thu, 08 Jun 2023 22:20:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3342" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:34 GMT" + "Thu, 08 Jun 2023 22:20:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:35 GMT" + "Thu, 08 Jun 2023 22:20:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "55" @@ -477,7 +382,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1%3AA1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/values/%27Sheet1%27%21A1%3AA1?valueInputOption=RAW", "body": "{\"values\": [[\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\"]]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "73" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:35 GMT" + "Thu, 08 Jun 2023 22:20:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -591,37 +490,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:35 GMT" + "Thu, 08 Jun 2023 22:20:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "122" @@ -635,7 +534,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -670,41 +566,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:36 GMT" + "Thu, 08 Jun 2023 22:20:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_tab_color.json b/tests/cassettes/WorksheetTest.test_update_tab_color.json index 1ea2adec5..2adc99957 100644 --- a/tests/cassettes/WorksheetTest.test_update_tab_color.json +++ b/tests/cassettes/WorksheetTest.test_update_tab_color.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "107" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:38 GMT" + "Thu, 08 Jun 2023 22:20:43 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "194" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"name\": \"Test WorksheetTest test_update_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y\",\n \"name\": \"Test WorksheetTest test_update_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:39 GMT" + "Thu, 08 Jun 2023 22:20:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3338" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:46:39 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "204" - ] - }, - "body": { - "string": "{\n \"id\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"name\": \"Test WorksheetTest test_update_tab_color\",\n \"createdTime\": \"2023-07-25T15:46:36.621Z\",\n \"modifiedTime\": \"2023-07-25T15:46:37.474Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:39 GMT" + "Thu, 08 Jun 2023 22:20:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3338" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:39 GMT" + "Thu, 08 Jun 2023 22:20:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?fields=sheets.properties.tabColorStyle", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,37 +338,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:40 GMT" + "Thu, 08 Jun 2023 22:20:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "57" @@ -477,7 +382,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": {\"red\": 1, \"green\": 0, \"blue\": 0.5}}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "168" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:40 GMT" + "Thu, 08 Jun 2023 22:20:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?fields=sheets.properties.tabColorStyle", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -591,37 +490,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:40 GMT" + "Thu, 08 Jun 2023 22:20:45 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "190" @@ -635,7 +534,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -670,41 +566,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:41 GMT" + "Thu, 08 Jun 2023 22:20:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_title.json b/tests/cassettes/WorksheetTest.test_update_title.json index 3da30c243..1406b6a90 100644 --- a/tests/cassettes/WorksheetTest.test_update_title.json +++ b/tests/cassettes/WorksheetTest.test_update_title.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "103" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:43 GMT" + "Thu, 08 Jun 2023 22:20:48 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"name\": \"Test WorksheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"name\": \"Test WorksheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:44 GMT" + "Thu, 08 Jun 2023 22:20:49 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:46:44 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "200" - ] - }, - "body": { - "string": "{\n \"id\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"name\": \"Test WorksheetTest test_update_title\",\n \"createdTime\": \"2023-07-25T15:46:41.794Z\",\n \"modifiedTime\": \"2023-07-25T15:46:42.740Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:44 GMT" + "Thu, 08 Jun 2023 22:20:49 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:45 GMT" + "Thu, 08 Jun 2023 22:20:49 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,51 +338,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:45 GMT" + "Thu, 08 Jun 2023 22:20:49 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"title\": \"I'm a new title\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "120" ], @@ -515,51 +417,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:45 GMT" + "Thu, 08 Jun 2023 22:20:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -577,9 +479,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -591,51 +490,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:45 GMT" + "Thu, 08 Jun 2023 22:20:50 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"I'm a new title\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"I'm a new title\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -670,41 +566,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:46 GMT" + "Thu, 08 Jun 2023 22:20:51 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_worksheet_notes.json b/tests/cassettes/WorksheetTest.test_worksheet_notes.json index fc804cd93..8819022db 100644 --- a/tests/cassettes/WorksheetTest.test_worksheet_notes.json +++ b/tests/cassettes/WorksheetTest.test_worksheet_notes.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "106" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:49 GMT" + "Thu, 08 Jun 2023 22:20:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "193" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"name\": \"Test WorksheetTest test_worksheet_notes\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"name\": \"Test WorksheetTest test_worksheet_notes\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:49 GMT" + "Thu, 08 Jun 2023 22:20:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:46:50 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "203" - ] - }, - "body": { - "string": "{\n \"id\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"name\": \"Test WorksheetTest test_worksheet_notes\",\n \"createdTime\": \"2023-07-25T15:46:47.267Z\",\n \"modifiedTime\": \"2023-07-25T15:46:48.488Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:50 GMT" + "Thu, 08 Jun 2023 22:20:53 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:50 GMT" + "Thu, 08 Jun 2023 22:20:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -433,51 +338,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:50 GMT" + "Thu, 08 Jun 2023 22:20:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -495,9 +400,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -509,37 +411,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:50 GMT" + "Thu, 08 Jun 2023 22:20:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "69" @@ -553,7 +455,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"slim shaddy\"}]}]}}]}", "headers": { "User-Agent": [ @@ -571,9 +473,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "207" ], @@ -591,51 +490,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:51 GMT" + "Thu, 08 Jun 2023 22:20:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -653,9 +552,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -667,37 +563,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:51 GMT" + "Thu, 08 Jun 2023 22:20:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "259" @@ -711,7 +607,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"the real slim shaddy\"}]}]}}]}", "headers": { "User-Agent": [ @@ -729,9 +625,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "216" ], @@ -749,51 +642,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:51 GMT" + "Thu, 08 Jun 2023 22:20:54 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -811,9 +704,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -825,37 +715,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:51 GMT" + "Thu, 08 Jun 2023 22:20:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "268" @@ -869,7 +759,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"\"}]}]}}]}", "headers": { "User-Agent": [ @@ -887,9 +777,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "196" ], @@ -907,51 +794,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:52 GMT" + "Thu, 08 Jun 2023 22:20:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -969,9 +856,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -983,37 +867,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:52 GMT" + "Thu, 08 Jun 2023 22:20:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "69" @@ -1027,7 +911,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"read my note\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"Or don't\"}]}]}}]}", "headers": { "User-Agent": [ @@ -1045,9 +929,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "398" ], @@ -1065,51 +946,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:52 GMT" + "Thu, 08 Jun 2023 22:20:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "105" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {},\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -1127,9 +1008,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1141,37 +1019,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:52 GMT" + "Thu, 08 Jun 2023 22:20:55 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "260" @@ -1185,7 +1063,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -1203,9 +1081,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1217,37 +1092,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:52 GMT" + "Thu, 08 Jun 2023 22:20:56 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "256" @@ -1261,7 +1136,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"remember to clean bedroom\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"do homeworks\"}]}]}}]}", "headers": { "User-Agent": [ @@ -1279,9 +1154,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "415" ], @@ -1299,51 +1171,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:53 GMT" + "Thu, 08 Jun 2023 22:20:56 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "105" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {},\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -1361,9 +1233,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1375,37 +1244,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:53 GMT" + "Thu, 08 Jun 2023 22:20:56 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "273" @@ -1419,7 +1288,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -1437,9 +1306,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -1451,37 +1317,37 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:53 GMT" + "Thu, 08 Jun 2023 22:20:56 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "260" @@ -1495,7 +1361,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"\"}]}]}}]}", "headers": { "User-Agent": [ @@ -1513,9 +1379,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "378" ], @@ -1533,51 +1396,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:53 GMT" + "Thu, 08 Jun 2023 22:20:56 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "105" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {},\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1595,9 +1458,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -1612,41 +1472,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:54 GMT" + "Thu, 08 Jun 2023 22:20:57 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_worksheet_update_index.json b/tests/cassettes/WorksheetTest.test_worksheet_update_index.json index 94811212c..9d3c94299 100644 --- a/tests/cassettes/WorksheetTest.test_worksheet_update_index.json +++ b/tests/cassettes/WorksheetTest.test_worksheet_update_index.json @@ -22,9 +22,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "113" ], @@ -42,55 +39,55 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Vary": [ - "Origin, X-Origin" + "Transfer-Encoding": [ + "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:57 GMT" + "Thu, 08 Jun 2023 22:20:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "content-length": [ "200" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"name\": \"Test WorksheetTest test_worksheet_update_index\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"name\": \"Test WorksheetTest test_worksheet_update_index\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -108,9 +105,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -122,51 +116,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:57 GMT" + "Thu, 08 Jun 2023 22:21:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3344" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -184,9 +178,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -198,131 +189,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "Server": [ - "ESF" - ], - "Pragma": [ - "no-cache" - ], - "X-XSS-Protection": [ - "0" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Transfer-Encoding": [ "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Tue, 25 Jul 2023 15:46:57 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "content-length": [ - "210" - ] - }, - "body": { - "string": "{\n \"id\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"name\": \"Test WorksheetTest test_worksheet_update_index\",\n \"createdTime\": \"2023-07-25T15:46:54.885Z\",\n \"modifiedTime\": \"2023-07-25T15:46:54.905Z\"\n}\n" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", - "body": null, - "headers": { - "User-Agent": [ - "python-requests/2.31.0" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "x-goog-api-client": [ - "cred-type/sa" - ], - "x-identity-trust-boundary": [ - "0" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "authorization": [ - "" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:58 GMT" + "Thu, 08 Jun 2023 22:21:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "3344" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -340,9 +251,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -357,51 +265,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:58 GMT" + "Thu, 08 Jun 2023 22:21:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_sheet\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ @@ -419,9 +327,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "147" ], @@ -439,51 +344,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:58 GMT" + "Thu, 08 Jun 2023 22:21:01 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ - "384" + "385" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 155988897,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1563411409,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_sheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ @@ -501,9 +406,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "149" ], @@ -521,51 +423,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:58 GMT" + "Thu, 08 Jun 2023 22:21:01 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "386" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 905329856,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 168293780,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -583,9 +485,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -597,52 +496,52 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:59 GMT" + "Thu, 08 Jun 2023 22:21:01 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ - "3840" + "3841" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 155988897,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 905329856,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1563411409,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 168293780,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate", - "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 905329856, \"index\": 0}, \"fields\": \"index\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw:batchUpdate", + "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 168293780, \"index\": 0}, \"fields\": \"index\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -659,9 +558,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "112" ], @@ -679,51 +575,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:59 GMT" + "Thu, 08 Jun 2023 22:21:01 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -741,9 +637,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "authorization": [ "" ] @@ -755,51 +648,51 @@ "message": "OK" }, "headers": { + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Cache-Control": [ - "private" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "X-Content-Type-Options": [ + "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:46:59 GMT" + "Thu, 08 Jun 2023 22:21:01 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "content-length": [ - "3840" + "3841" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 905329856,\n \"title\": \"test_sheet 2\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 155988897,\n \"title\": \"test_sheet\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 168293780,\n \"title\": \"test_sheet 2\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1563411409,\n \"title\": \"test_sheet\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -817,9 +710,6 @@ "x-goog-api-client": [ "cred-type/sa" ], - "x-identity-trust-boundary": [ - "0" - ], "Content-Length": [ "0" ], @@ -834,41 +724,41 @@ "message": "No Content" }, "headers": { - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "text/html" ], + "Content-Length": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], "Server": [ "ESF" ], - "Pragma": [ - "no-cache" - ], "X-XSS-Protection": [ "0" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Length": [ - "0" + "Pragma": [ + "no-cache" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Tue, 25 Jul 2023 15:47:00 GMT" + "Thu, 08 Jun 2023 22:21:02 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/spreadsheet_test.py b/tests/spreadsheet_test.py index 0dadf3700..5bf98cf63 100644 --- a/tests/spreadsheet_test.py +++ b/tests/spreadsheet_test.py @@ -38,10 +38,8 @@ def test_get_worksheet(self): @pytest.mark.vcr() def test_get_worksheet_by_id(self): - sheet1_by_int = self.spreadsheet.get_worksheet_by_id(0) - sheet1_by_str = self.spreadsheet.get_worksheet_by_id("0") - self.assertTrue(isinstance(sheet1_by_int, gspread.Worksheet)) - self.assertTrue(isinstance(sheet1_by_str, gspread.Worksheet)) + sheet1 = self.spreadsheet.get_worksheet_by_id(0) + self.assertTrue(isinstance(sheet1, gspread.Worksheet)) @pytest.mark.vcr() def test_worksheet(self): @@ -105,7 +103,6 @@ def test_add_del_worksheet(self): sg = self._sequence_generator() worksheet1_name = next(sg) worksheet2_name = next(sg) - worksheet3_name = next(sg) worksheet_list = self.spreadsheet.worksheets() self.assertEqual(len(worksheet_list), 1) @@ -114,16 +111,14 @@ def test_add_del_worksheet(self): # Add worksheet1 = self.spreadsheet.add_worksheet(worksheet1_name, 1, 1) worksheet2 = self.spreadsheet.add_worksheet(worksheet2_name, 1, 1) - worksheet3 = self.spreadsheet.add_worksheet(worksheet3_name, 1, 1) # Re-read, check again worksheet_list = self.spreadsheet.worksheets() - self.assertEqual(len(worksheet_list), 4) + self.assertEqual(len(worksheet_list), 3) # Delete self.spreadsheet.del_worksheet(worksheet1) - self.spreadsheet.del_worksheet_by_id(int(worksheet2.id)) - self.spreadsheet.del_worksheet_by_id(str(worksheet3.id)) + self.spreadsheet.del_worksheet(worksheet2) worksheet_list = self.spreadsheet.worksheets() self.assertEqual(len(worksheet_list), 1) @@ -196,19 +191,26 @@ def test_update_title(self): self.assertEqual(new_title, properties["title"]) @pytest.mark.vcr() - def test_get_lastUpdateTime(self): - """Test get_lastUpdateTime method works""" - lastUpdateTime_before = self.spreadsheet.get_lastUpdateTime() + def test_get_updated_time(self): + metadata_before = self.spreadsheet._properties + self.assertNotIn("modifiedTime", metadata_before) + + lastUpdateTime = self.spreadsheet.lastUpdateTime + metadata_after = self.spreadsheet._properties + + self.assertIsNotNone(lastUpdateTime) + self.assertIn("modifiedTime", metadata_after) + self.assertEqual(lastUpdateTime, metadata_after["modifiedTime"]) + + @pytest.mark.vcr() + def test_refresh_lastUpdateTime(self): + lastUpdateTime_before = self.spreadsheet.lastUpdateTime time.sleep(0.01) self.spreadsheet.update_title("🎊 Updated Title #123 🎉") - lastUpdateTime_after = self.spreadsheet.get_lastUpdateTime() + self.spreadsheet.refresh_lastUpdateTime() - self.assertNotEqual(lastUpdateTime_before, lastUpdateTime_after) + lastUpdateTime_after = self.spreadsheet.lastUpdateTime - @pytest.mark.vcr() - def test_creationTime_prop(self): - """test lastUpdateTime property behaviour""" - creationTime = self.spreadsheet.creationTime - self.assertIsNotNone(creationTime) + self.assertNotEqual(lastUpdateTime_before, lastUpdateTime_after) diff --git a/tests/utils_test.py b/tests/utils_test.py index 727ed8f40..0d193185d 100644 --- a/tests/utils_test.py +++ b/tests/utils_test.py @@ -259,18 +259,3 @@ def test_combine_merge_values(self): actual_combine = utils.combined_merge_values(sheet_metadata, sheet_data) self.assertEqual(actual_combine, expected_combine) - - def test_fill_gaps(self): - """test fill_gaps function""" - matrix = [ - [1, 2, 3, 4], - [5, 6, 7, 8], - ] - expected = [ - [1, 2, 3, 4, "", ""], - [5, 6, 7, 8, "", ""], - ["", "", "", "", "", ""], - ] - actual = utils.fill_gaps(matrix, 3, 6) - - self.assertEqual(actual, expected)