-
Notifications
You must be signed in to change notification settings - Fork 6
[SCAL-271343] Give correct value to the Iterative Change analysis Action enum #304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -57,7 +57,7 @@ | |
| * @deprecated Use {@link SAMLRedirect} instead | ||
| * @hidden | ||
| */ | ||
| SAML = 'SSO_SAML', | ||
| /** | ||
| * SSO using SAML | ||
| * Makes the host application redirect to the SAML IdP. Use this | ||
|
|
@@ -102,7 +102,7 @@ | |
| * }); | ||
| * ``` | ||
| */ | ||
| SAMLRedirect = 'SSO_SAML', | ||
| /** | ||
| * SSO using OIDC | ||
| * @hidden | ||
|
|
@@ -114,7 +114,7 @@ | |
| * Will make the host application redirect to the OIDC IdP. | ||
| * See code samples in {@link SAMLRedirect}. | ||
| */ | ||
| OIDCRedirect = 'SSO_OIDC', | ||
| /** | ||
| * Trusted authentication server | ||
| * @hidden | ||
|
|
@@ -138,7 +138,7 @@ | |
| * }); | ||
| * ``` | ||
| */ | ||
| TrustedAuthToken = 'AuthServer', | ||
| /** | ||
| * Trusted authentication server Cookieless, Use your own authentication | ||
| * server which returns a bearer token, generated using the `secret_key` | ||
|
|
@@ -1094,7 +1094,7 @@ | |
| * Hide list page columns | ||
| * For example: hiddenListColumns = [ListPageColumns.Author] | ||
| * | ||
| * **Note**: This option is currently available only in full app embedding and requires importing the ListPageColumns enum. | ||
| * At present, it can be used with Liveboard and Answer list pages, and starting with version 10.14.0.cl, it will also be supported for the Home page. | ||
| * | ||
| * Supported embed types: `AppEmbed` | ||
|
|
@@ -1432,7 +1432,7 @@ | |
| /** | ||
| * This flag is used to enable/disable hide irrelevant filters in Liveboard tab | ||
| * | ||
| * **Note**: This feature is supported only if compact header is enabled on your Liveboard. To enable compact header, use the `isLiveboardCompactHeaderEnabled` attribute. | ||
| * | ||
| * Supported embed types: `AppEmbed`, `LiveboardEmbed` | ||
| * @version SDK: 1.36.0 | ThoughtSpot:10.6.0.cl | ||
|
|
@@ -5188,16 +5188,16 @@ | |
| */ | ||
| EnableContextualChangeAnalysis = 'enableContextualChangeAnalysis', | ||
| /** | ||
| * Action ID to hide or disable Iterative Change Analysis option | ||
| * Action ID to hide, disable or show Iterative Change Analysis option | ||
| * on contextual change analysis Inisght charts context menu | ||
| * | ||
| * @example | ||
| * ```js | ||
| * disabledActions: [Action.EnableIterativeChangeAnalysis] | ||
| * disabledActions: [Action.IterativeChangeAnalysis] | ||
| * ``` | ||
| * @version SDK: 1.41.0 | ThoughtSpot Cloud: 9.12.0.cl | ||
| */ | ||
| EnableIterativeChangeAnalysis = 'enableIterativeChangeAnalysis', | ||
| IterativeChangeAnalysis = 'context-menu-item-do-iterative-analysis', | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What about backward compatibility ? This will cause regression. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since the action was added to the SDK only recently, customers were likely not seeing or using the IterativeChangeAnalysis action. If they had been using it, we would have already received reports about the issue. So far, no customer has reported that the Embed action for Iterative CCA is missing. Can we assume this and proceed? Note that these changes were merged only three weeks ago (PR #275 |
||
| /** | ||
| * Action ID to hide or disable Natural Language Search query. | ||
| * | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed the enum member name was changed because the action is used to disable or hide as well so Enable prefix does not make sense here . The value was changed as part of the bug fix PR ,https://galaxy.corp.thoughtspot.com/dev/scaligent/pull/41595/files .
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
update the sdk minor version.