From 8bd39af817df3be856d543261ef232454ed45d17 Mon Sep 17 00:00:00 2001 From: "bryant.howell" Date: Mon, 8 Dec 2025 09:30:21 -0600 Subject: [PATCH 1/2] Updated to v.2.0.2, with corrected /template/variables/update-values endpoint that changed from TS 10.13 to 10.14 --- src/thoughtspot_rest_api/tsrestapiv2.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/thoughtspot_rest_api/tsrestapiv2.py b/src/thoughtspot_rest_api/tsrestapiv2.py index 856a1cf..1cafaa2 100644 --- a/src/thoughtspot_rest_api/tsrestapiv2.py +++ b/src/thoughtspot_rest_api/tsrestapiv2.py @@ -1053,7 +1053,8 @@ def template_variables_update(self, identifier: str, request: Dict): return self.post_request(endpoint=endpoint, request=request) # Allows updating multiple values at once - def template_variables_values_update(self, request: Dict): - endpoint = 'template/variables/update' + # Changed from 10.13 to 10.14, this is the new and correct endpoint + def template_variables_update_values(self, request: Dict): + endpoint = 'template/variables/update-values' return self.post_request(endpoint=endpoint, request=request) From 32dbe050190038a0368f89bda47f68e9a0e68d1c Mon Sep 17 00:00:00 2001 From: "bryant.howell" Date: Mon, 8 Dec 2025 09:32:22 -0600 Subject: [PATCH 2/2] Updated to v.2.0.2, with corrected /template/variables/update-values endpoint that changed from TS 10.13 to 10.14 --- setup.cfg | 2 +- src/thoughtspot_rest_api/_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 9db6ea2..9a8cabf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = thoughtspot_rest_api -version = 2.0.1 +version = 2.0.2 description = Library implementing ThoughtSpot REST API V2.0 and V1 long_description = file: README.md long_description_content_type = text/markdown diff --git a/src/thoughtspot_rest_api/_version.py b/src/thoughtspot_rest_api/_version.py index 3f39079..668c344 100644 --- a/src/thoughtspot_rest_api/_version.py +++ b/src/thoughtspot_rest_api/_version.py @@ -1 +1 @@ -__version__ = '2.0.1' +__version__ = '2.0.2'