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.
@@ -1,4 +1,5 @@
1
- export declare function PipelineDedupPage({ embedded, basePath, }?: {
1
+ export declare function PipelineDedupPage({ embedded, basePath, sourceId, }?: {
2
2
  embedded?: boolean;
3
3
  basePath?: string;
4
+ sourceId?: string;
4
5
  }): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,5 @@
1
- export declare function PipelineDedupEditorPage({ ruleId, onBack, }: {
1
+ export declare function PipelineDedupEditorPage({ 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,5 @@
1
- export declare function PipelineGroupingEditorPage({ ruleId, onBack, }: {
1
+ export declare function PipelineGroupingEditorPage({ 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,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,5 @@
1
- export declare function PipelineGroupingPage({ embedded, basePath, }?: {
1
+ export declare function PipelineGroupingPage({ embedded, basePath, sourceId, }?: {
2
2
  embedded?: boolean;
3
3
  basePath?: string;
4
+ sourceId?: string;
4
5
  }): import("react/jsx-runtime").JSX.Element;
@@ -1 +1,3 @@
1
- export declare function PipelineNormalizationPage(): import("react/jsx-runtime").JSX.Element;
1
+ export declare function PipelineNormalizationPage({ sourceId }?: {
2
+ sourceId?: string;
3
+ }): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,4 @@
1
- type SettingsTab = "general" | "notifications" | "workflow" | "grouping" | "dedup" | "providers";
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;
@@ -1,4 +1,5 @@
1
- export declare function InsightWorkflowsPage({ embedded, basePath, }?: {
1
+ export declare function InsightWorkflowsPage({ embedded, basePath, sourceId, }?: {
2
2
  embedded?: boolean;
3
3
  basePath?: string;
4
+ sourceId?: string;
4
5
  }): import("react/jsx-runtime").JSX.Element;