meyi-insight-ui-dev 1.0.16 → 1.0.18

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,13 @@
1
1
  import { Connector } from './types.js';
2
+ export declare function AccessBadge({ status }: {
3
+ status: string;
4
+ }): import("react/jsx-runtime").JSX.Element;
5
+ export declare function STSBadge({ status }: {
6
+ status: string;
7
+ }): import("react/jsx-runtime").JSX.Element;
8
+ export declare function DiscoveryBadge({ status }: {
9
+ status?: string;
10
+ }): import("react/jsx-runtime").JSX.Element | null;
2
11
  interface ConnectorCardProps {
3
12
  connector: Connector;
4
13
  }
@@ -0,0 +1,11 @@
1
+ type FilterOption = "all" | "active" | "failed" | "pending";
2
+ interface Props {
3
+ search: string;
4
+ onSearchChange: (value: string) => void;
5
+ statusFilter: FilterOption;
6
+ onStatusFilterChange: (value: FilterOption) => void;
7
+ onRefresh?: () => void;
8
+ loading?: boolean;
9
+ }
10
+ export declare function ConnectorFilters({ search, onSearchChange, statusFilter, onStatusFilterChange, onRefresh, loading, }: Props): import("react/jsx-runtime").JSX.Element;
11
+ export {};
@@ -0,0 +1,3 @@
1
+ import { ColumnDef } from '@tanstack/react-table';
2
+ import { Connector } from '../types.js';
3
+ export declare function getConnectorsColumns(): ColumnDef<Connector>[];
@@ -0,0 +1,6 @@
1
+ import { Connector } from '../types.js';
2
+ interface ConnectorsTableProps {
3
+ data: Connector[];
4
+ }
5
+ export declare function ConnectorsTable({ data, }: ConnectorsTableProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -1,11 +1,12 @@
1
1
  import { InsightSourceType } from '../../../types.js';
2
2
  export interface CloudTrailDeploymentConfig {
3
3
  deploymentMode: "Organizations" | "Standalone";
4
- targetOUs: string;
4
+ /** Standalone: chosen connector accountId. Organizations: '' (all accounts via AutoDeployment) */
5
5
  targetAccounts: string;
6
- targetRegions: string;
7
6
  createTrail: boolean;
8
7
  }
8
+ declare const DEFAULT_DEPLOYMENT_CONFIG: CloudTrailDeploymentConfig;
9
+ export { DEFAULT_DEPLOYMENT_CONFIG };
9
10
  export declare function AddSourceConfigureStep({ type, name, description, onNameChange, onDescriptionChange, awsRegion, onAwsRegionChange, deploymentConfig, onDeploymentConfigChange, }: {
10
11
  type: InsightSourceType;
11
12
  name: string;