Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
crespocarlos committed Nov 4, 2024
1 parent 8ba7131 commit 4afe580
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import { EuiFlexGroup, EuiFlexItem, EuiLink } from '@elastic/eui';
import React, { useCallback } from 'react';
import { useKibana } from '../../../hooks/use_kibana';
import { InventoryEntityLatest } from '../../../../common/entities';
import type { InventoryEntityLatest } from '../../../../common/entities';
import { EntityIcon } from '../../entity_icon';
import { useDetailViewRedirect } from '../../../hooks/use_detail_view_redirect';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
*/
import {
ASSET_DETAILS_LOCATOR_ID,
AssetDetailsLocatorParams,
ENTITY_TYPES,
SERVICE_OVERVIEW_LOCATOR_ID,
ServiceOverviewParams,
type AssetDetailsLocatorParams,
type ServiceOverviewParams,
} from '@kbn/observability-shared-plugin/common';
import { useCallback } from 'react';
import { DashboardLocatorParams } from '@kbn/dashboard-plugin/public';
import type { DashboardLocatorParams } from '@kbn/dashboard-plugin/public';
import { DASHBOARD_APP_LOCATOR } from '@kbn/deeplinks-analytics';
import { castArray } from 'lodash';
import { isEntityOfType } from '../../common/utils/entity_type_guards';
import { type InventoryEntityLatest } from '../../common/entities';
import type { InventoryEntityLatest } from '../../common/entities';
import { useKibana } from './use_kibana';

const KUBERNETES_DASHBOARDS_IDS: Record<string, string> = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* 2.0.
*/

import { InventoryEntityLatest } from '../../../common/entities';
import type { InventoryEntityLatest } from '../../../common/entities';
import { getIdentityFieldsPerEntityType } from './get_identity_fields_per_entity_type';

const commonEntityFields: InventoryEntityLatest = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

import { castArray } from 'lodash';
import { InventoryEntityLatest } from '../../../common/entities';
import type { InventoryEntityLatest } from '../../../common/entities';

export type IdentityFieldsPerEntityType = Map<string, string[]>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
* 2.0.
*/

import { type ObservabilityElasticsearchClient } from '@kbn/observability-utils/es/client/create_observability_es_client';
import type { ObservabilityElasticsearchClient } from '@kbn/observability-utils/es/client/create_observability_es_client';
import { kqlQuery } from '@kbn/observability-utils/es/queries/kql_query';
import { ENTITY_LAST_SEEN, ENTITY_TYPE } from '@kbn/observability-shared-plugin/common';
import { ScalarValue } from '@elastic/elasticsearch/lib/api/types';
import type { ScalarValue } from '@elastic/elasticsearch/lib/api/types';
import {
ENTITIES_LATEST_ALIAS,
MAX_NUMBER_OF_ENTITIES,
type EntityColumnIds,
InventoryEntityLatest,
type InventoryEntityLatest,
} from '../../../common/entities';
import { getBuiltinEntityDefinitionIdESQLWhereClause } from './query_helper';

Expand Down

0 comments on commit 4afe580

Please sign in to comment.