@yugabytedb/perf-advisor-ui 1.0.85 → 1.0.87

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
@@ -319,6 +319,8 @@ interface MetadataFields {
319
319
  dataMountPoints: string[];
320
320
  otherMountPoints: string[];
321
321
  lastSyncError?: string | null;
322
+ status?: boolean;
323
+ actions?: string;
322
324
  }
323
325
  interface AuthDetails {
324
326
  authType: string;
@@ -736,11 +738,12 @@ interface PerfAdvisorEntryProps {
736
738
  universeUuid: string;
737
739
  appName: AppName;
738
740
  apiUrl: string;
741
+ showStandaloneAnomalies?: boolean;
739
742
  onSelectedIssue?: (troubleshootUuid: string, params?: PAUrlParams) => void;
740
743
  onSelectedQuery?: (queryId: string, params?: QueryPageParams) => void;
741
744
  onNavigateToUrl?: (url: string) => void;
742
745
  }
743
- declare const PerfAdvisorEntry: ({ timezone, universeUuid, appName, apiUrl, onSelectedIssue, onSelectedQuery, onNavigateToUrl }: PerfAdvisorEntryProps) => JSX.Element;
746
+ declare const PerfAdvisorEntry: ({ timezone, universeUuid, appName, apiUrl, showStandaloneAnomalies, onSelectedIssue, onSelectedQuery, onNavigateToUrl }: PerfAdvisorEntryProps) => JSX.Element;
744
747
 
745
748
  interface TroubleshootConfigurationProps {
746
749
  apiUrl: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yugabytedb/perf-advisor-ui",
3
- "version": "1.0.85",
3
+ "version": "1.0.87",
4
4
  "main": "dist/cjs/index.js",
5
5
  "types": "dist/types.d.ts",
6
6
  "author": "Rajagopalan Madhavan",