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' 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)