meyi-insight-ui-dev 1.0.7 → 1.0.8
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/features/pipeline/dedup.d.ts +2 -1
- package/dist/features/pipeline/editor-dedup.d.ts +2 -1
- package/dist/features/pipeline/editor-grouping.d.ts +2 -1
- package/dist/features/pipeline/editor-normalization.d.ts +2 -1
- package/dist/features/pipeline/grouping.d.ts +2 -1
- package/dist/features/pipeline/normalization.d.ts +3 -1
- package/dist/features/settings/index.d.ts +1 -1
- package/dist/features/sources/detail/SourceDetailTabs.d.ts +1 -1
- package/dist/features/workflows/editor.d.ts +2 -1
- package/dist/features/workflows/index.d.ts +2 -1
- package/dist/index.js +138 -138
- package/dist/index.mjs +18852 -18955
- package/dist/router.d.ts +1 -1
- package/dist/services/insight.d.ts +3 -3
- package/dist/services/workflow.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export declare function PipelineNormalizationEditorPage({ ruleId, onBack, }: {
|
|
1
|
+
export declare function PipelineNormalizationEditorPage({ ruleId, sourceId, onBack, }: {
|
|
2
2
|
ruleId?: string;
|
|
3
|
+
sourceId?: string;
|
|
3
4
|
onBack: () => void;
|
|
4
5
|
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
type SettingsTab = "general" | "notifications" | "
|
|
1
|
+
type SettingsTab = "general" | "notifications" | "providers";
|
|
2
2
|
export declare function InsightSettingsPage({ initialTab }: {
|
|
3
3
|
initialTab?: SettingsTab;
|
|
4
4
|
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type SourceDetailTab = "overview" | "alarms" | "configuration" | "setup" | "logs" | "test";
|
|
1
|
+
export type SourceDetailTab = "overview" | "alarms" | "configuration" | "normalization" | "dedup" | "grouping" | "workflows" | "setup" | "logs" | "test";
|
|
2
2
|
export declare function SourceDetailTabs({ activeTab, showSetup, onChange, }: {
|
|
3
3
|
activeTab: SourceDetailTab;
|
|
4
4
|
showSetup: boolean;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export declare function InsightWorkflowEditorPage({ workflowId, onBack, }: {
|
|
1
|
+
export declare function InsightWorkflowEditorPage({ workflowId, sourceId, onBack, }: {
|
|
2
2
|
workflowId?: string;
|
|
3
|
+
sourceId?: string;
|
|
3
4
|
onBack: () => void;
|
|
4
5
|
}): import("react/jsx-runtime").JSX.Element;
|