@yugabytedb/perf-advisor-ui 1.0.97 → 1.0.99

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -548,7 +548,7 @@ interface TransformedBackgroundTasksResponse {
548
548
  };
549
549
  }
550
550
  declare enum TransformedBackgroundTasksCategory {
551
- RUNNING_BACKGROUND_JOBS = "Running Background Jobs"
551
+ ALL_BACKGROUND_JOBS = "All Background Jobs"
552
552
  }
553
553
  declare enum InsightsTabs {
554
554
  CLUSTER_LOAD = "Cluster Load",
@@ -758,8 +758,9 @@ interface PerfAdvisorEntryProps {
758
758
  onSelectedIssue?: (troubleshootUuid: string, params?: PAUrlParams) => void;
759
759
  onSelectedQuery?: (queryId: string, params?: QueryPageParams) => void;
760
760
  onNavigateToUrl?: (url: string) => void;
761
+ backgroundTasksMappingFunc?: (value: string) => string;
761
762
  }
762
- declare const PerfAdvisorEntry: ({ timezone, universeUuid, appName, apiUrl, runtimeConfigs, showStandaloneAnomalies, onSelectedIssue, onSelectedQuery, onNavigateToUrl }: PerfAdvisorEntryProps) => JSX.Element;
763
+ declare const PerfAdvisorEntry: ({ timezone, universeUuid, appName, apiUrl, runtimeConfigs, showStandaloneAnomalies, onSelectedIssue, onSelectedQuery, onNavigateToUrl, backgroundTasksMappingFunc }: PerfAdvisorEntryProps) => JSX.Element;
763
764
 
764
765
  interface TroubleshootConfigurationProps {
765
766
  apiUrl: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yugabytedb/perf-advisor-ui",
3
- "version": "1.0.97",
3
+ "version": "1.0.99",
4
4
  "main": "dist/cjs/index.js",
5
5
  "types": "dist/types.d.ts",
6
6
  "author": "Rajagopalan Madhavan",
@@ -81,7 +81,7 @@
81
81
  "@material-ui/core": "4.12.3",
82
82
  "@material-ui/icons": "4.11.2",
83
83
  "@material-ui/lab": "4.0.0-alpha.58",
84
- "@yugabyte-ui-library/core": "^2.0.17",
84
+ "@yugabyte-ui-library/core": "2.0.19",
85
85
  "react": "17.0.2",
86
86
  "react-dom": "17.0.2",
87
87
  "react-query": "3.32.1",
@@ -118,4 +118,4 @@
118
118
  "publishConfig": {
119
119
  "access": "public"
120
120
  }
121
- }
121
+ }