@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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +80704 -339
- package/dist/esm/index.js.map +1 -1
- package/dist/types.d.ts +4 -1
- package/package.json +1 -1
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;
|