Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/thoughtspot_rest_api/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.1'
__version__ = '2.0.2'
5 changes: 3 additions & 2 deletions src/thoughtspot_rest_api/tsrestapiv2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Loading