Skip to content

Commit

Permalink
Remove EntityType usage
Browse files Browse the repository at this point in the history
  • Loading branch information
iblancof committed Oct 25, 2024
1 parent 7a98daa commit 5f5dba0
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

import type { AnalyticsServiceSetup, RootSchema } from '@kbn/core/public';
import { EntityManagerPublicPluginSetup } from '@kbn/entityManager-plugin/public';
import type { EntityType } from '../../../common/entities';

export interface TelemetryServiceSetupParams {
analytics: AnalyticsServiceSetup;
Expand All @@ -28,17 +27,17 @@ export interface EntityInventoryViewedParams {

export interface EntityInventorySearchQuerySubmittedParams {
kuery_fields: string[];
entity_types: EntityType[];
entity_types: string[];
action: 'submit' | 'refresh';
}

export interface EntityInventoryEntityTypeFilteredParams {
kuery_fields: string[];
entity_types: EntityType[];
entity_types: string[];
}

export interface EntityViewClickedParams {
entity_type: EntityType;
entity_type: string;
view_type: 'detail' | 'flyout';
}

Expand Down

0 comments on commit 5f5dba0

Please sign in to comment.