meyi-insight-ui-dev 1.0.8 → 1.0.9

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,4 @@
1
- type SettingsTab = "general" | "notifications" | "providers";
1
+ type SettingsTab = "notifications" | "providers";
2
2
  export declare function InsightSettingsPage({ initialTab }: {
3
3
  initialTab?: SettingsTab;
4
4
  }): import("react/jsx-runtime").JSX.Element;
@@ -1,8 +1,19 @@
1
1
  import { InsightSourceType } from '../../../types.js';
2
- export declare function AddSourceConfigureStep({ type, name, description, onNameChange, onDescriptionChange, }: {
2
+ export interface CloudTrailDeploymentConfig {
3
+ deploymentMode: "Organizations" | "Standalone";
4
+ targetOUs: string;
5
+ targetAccounts: string;
6
+ targetRegions: string;
7
+ createTrail: boolean;
8
+ }
9
+ export declare function AddSourceConfigureStep({ type, name, description, onNameChange, onDescriptionChange, awsRegion, onAwsRegionChange, deploymentConfig, onDeploymentConfigChange, }: {
3
10
  type: InsightSourceType;
4
11
  name: string;
5
12
  description: string;
6
13
  onNameChange: (value: string) => void;
7
14
  onDescriptionChange: (value: string) => void;
15
+ awsRegion: string;
16
+ onAwsRegionChange: (value: string) => void;
17
+ deploymentConfig?: CloudTrailDeploymentConfig;
18
+ onDeploymentConfigChange?: (config: CloudTrailDeploymentConfig) => void;
8
19
  }): import("react/jsx-runtime").JSX.Element;