diff --git a/.buildkite/ftr_configs.yml b/.buildkite/ftr_configs.yml index cd0c62dd4c5e6..5dfb9eb1cb308 100644 --- a/.buildkite/ftr_configs.yml +++ b/.buildkite/ftr_configs.yml @@ -306,7 +306,7 @@ enabled: - x-pack/test/functional/apps/ml/short_tests/config.ts - x-pack/test/functional/apps/ml/stack_management_jobs/config.ts - x-pack/test/functional/apps/monitoring/config.ts - - x-pack/test/functional/apps/observability_log_explorer/config.ts + - x-pack/test/functional/apps/observability_logs_explorer/config.ts - x-pack/test/functional/apps/painless_lab/config.ts - x-pack/test/functional/apps/remote_clusters/config.ts - x-pack/test/functional/apps/reporting_management/config.ts diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 70ba75c0a9580..67fcde9021c59 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1044,7 +1044,7 @@ x-pack/plugins/infra/server/lib/alerting @elastic/obs-ux-management-team /x-pack/test/functional/apps/monitoring @elastic/obs-ux-infra_services-team /x-pack/test/api_integration/apis/monitoring @elastic/obs-ux-infra_services-team /x-pack/test/api_integration/apis/monitoring_collection @elastic/obs-ux-infra_services-team -/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer @elastic/obs-ux-logs-team +/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer @elastic/obs-ux-logs-team # Fleet /fleet_packages.json @elastic/fleet @@ -1075,7 +1075,7 @@ x-pack/plugins/infra/server/lib/alerting @elastic/obs-ux-management-team # Logs /x-pack/test/api_integration/apis/logs_ui @elastic/obs-ux-logs-team -/x-pack/test/functional/apps/observability_log_explorer @elastic/obs-ux-logs-team +/x-pack/test/functional/apps/observability_logs_explorer @elastic/obs-ux-logs-team # Observability onboarding tour /x-pack/plugins/observability_shared/public/components/tour @elastic/platform-onboarding diff --git a/config/serverless.es.yml b/config/serverless.es.yml index e724eb5207ede..c998ef8516679 100644 --- a/config/serverless.es.yml +++ b/config/serverless.es.yml @@ -5,7 +5,7 @@ xpack.apm.enabled: false xpack.cloudSecurityPosture.enabled: false xpack.infra.enabled: false -xpack.observabilityLogExplorer.enabled: false +xpack.observabilityLogsExplorer.enabled: false xpack.observability.enabled: false xpack.securitySolution.enabled: false xpack.serverless.observability.enabled: false diff --git a/config/serverless.security.yml b/config/serverless.security.yml index f47d3b02a1bf0..244dcd7580f0f 100644 --- a/config/serverless.security.yml +++ b/config/serverless.security.yml @@ -4,7 +4,7 @@ enterpriseSearch.enabled: false xpack.apm.enabled: false xpack.infra.enabled: false -xpack.observabilityLogExplorer.enabled: false +xpack.observabilityLogsExplorer.enabled: false xpack.observability.enabled: false ## Cloud settings diff --git a/docs/developer/plugin-list.asciidoc b/docs/developer/plugin-list.asciidoc index c6199bdb89ddf..8dda75aa0adb4 100644 --- a/docs/developer/plugin-list.asciidoc +++ b/docs/developer/plugin-list.asciidoc @@ -692,7 +692,7 @@ Elastic. |This document gives an overview of the features of the Observability AI Assistant at the time of writing, and how to use them. At a high level, the Observability AI Assistant offers contextual insights, and a chat functionality that we enrich with function calling, allowing the LLM to hook into the user's data. We also allow the LLM to store things it considers new information as embeddings into Elasticsearch, and query this knowledge base when it decides it needs more information, using ELSER. -|{kib-repo}blob/{branch}/x-pack/plugins/observability_logs_explorer/README.md[observabilityLogExplorer] +|{kib-repo}blob/{branch}/x-pack/plugins/observability_logs_explorer/README.md[observabilityLogsExplorer] |This plugin provides an app based on the LogExplorer component from the log_explorer plugin, but adds observability-specific affordances. diff --git a/packages/deeplinks/observability/constants.ts b/packages/deeplinks/observability/constants.ts index 9f2a28fcef971..a204b73bef068 100644 --- a/packages/deeplinks/observability/constants.ts +++ b/packages/deeplinks/observability/constants.ts @@ -8,7 +8,7 @@ export const LOGS_APP_ID = 'logs'; -export const OBSERVABILITY_LOG_EXPLORER_APP_ID = 'observability-log-explorer'; +export const OBSERVABILITY_LOG_EXPLORER_APP_ID = 'observability-logs-explorer'; export const OBSERVABILITY_OVERVIEW_APP_ID = 'observability-overview'; diff --git a/packages/deeplinks/observability/locators/index.ts b/packages/deeplinks/observability/locators/index.ts index 8761b00b7a159..1dedf5e2a4083 100644 --- a/packages/deeplinks/observability/locators/index.ts +++ b/packages/deeplinks/observability/locators/index.ts @@ -6,6 +6,6 @@ * Side Public License, v 1. */ -export * from './log_explorer'; -export * from './observability_log_explorer'; +export * from './logs_explorer'; +export * from './observability_logs_explorer'; export * from './observability_onboarding'; diff --git a/packages/deeplinks/observability/locators/log_explorer.ts b/packages/deeplinks/observability/locators/logs_explorer.ts similarity index 100% rename from packages/deeplinks/observability/locators/log_explorer.ts rename to packages/deeplinks/observability/locators/logs_explorer.ts diff --git a/packages/deeplinks/observability/locators/observability_log_explorer.ts b/packages/deeplinks/observability/locators/observability_logs_explorer.ts similarity index 94% rename from packages/deeplinks/observability/locators/observability_log_explorer.ts rename to packages/deeplinks/observability/locators/observability_logs_explorer.ts index 37bbf75f122f2..c26cfbfa8e613 100644 --- a/packages/deeplinks/observability/locators/observability_log_explorer.ts +++ b/packages/deeplinks/observability/locators/observability_logs_explorer.ts @@ -7,7 +7,7 @@ */ import { SerializableRecord } from '@kbn/utility-types'; -import { LogExplorerNavigationParams } from './log_explorer'; +import { LogExplorerNavigationParams } from './logs_explorer'; // Will become a union once we have more origins export interface ObservabilityLogExplorerLocationState extends SerializableRecord { diff --git a/packages/kbn-optimizer/limits.yml b/packages/kbn-optimizer/limits.yml index d38e1399ed3aa..78b377ed61ebd 100644 --- a/packages/kbn-optimizer/limits.yml +++ b/packages/kbn-optimizer/limits.yml @@ -91,7 +91,7 @@ pageLoadAssetSize: licensing: 29004 links: 44490 lists: 22900 - logExplorer: 54342 + logsExplorer: 54342 logsShared: 281060 logstash: 53548 management: 46112 @@ -105,7 +105,7 @@ pageLoadAssetSize: noDataPage: 5000 observability: 115443 observabilityAIAssistant: 25000 - observabilityLogExplorer: 46650 + observabilityLogsExplorer: 46650 observabilityOnboarding: 19573 observabilityShared: 52256 osquery: 107090 diff --git a/src/plugins/discover/public/application/main/components/top_nav/discover_topnav_serverless.tsx b/src/plugins/discover/public/application/main/components/top_nav/discover_topnav_serverless.tsx index 800ceeae76013..3d7d51ec2e753 100644 --- a/src/plugins/discover/public/application/main/components/top_nav/discover_topnav_serverless.tsx +++ b/src/plugins/discover/public/application/main/components/top_nav/discover_topnav_serverless.tsx @@ -9,7 +9,7 @@ import React from 'react'; import { EuiHeader, EuiHeaderSection, EuiHeaderSectionItem } from '@elastic/eui'; import { TopNavMenuBadges, TopNavMenuItems } from '@kbn/navigation-plugin/public'; -import { LogExplorerTabs } from '../../../../components/log_explorer_tabs'; +import { LogExplorerTabs } from '../../../../components/logs_explorer_tabs'; import { useDiscoverServices } from '../../../../hooks/use_discover_services'; import { useDiscoverTopNav } from './use_discover_topnav'; import type { DiscoverStateContainer } from '../../services/discover_state'; diff --git a/src/plugins/discover/public/components/log_explorer_tabs/index.ts b/src/plugins/discover/public/components/logs_explorer_tabs/index.ts similarity index 84% rename from src/plugins/discover/public/components/log_explorer_tabs/index.ts rename to src/plugins/discover/public/components/logs_explorer_tabs/index.ts index b144b8fec104f..40caffcb1155d 100644 --- a/src/plugins/discover/public/components/log_explorer_tabs/index.ts +++ b/src/plugins/discover/public/components/logs_explorer_tabs/index.ts @@ -9,6 +9,6 @@ import { withSuspense } from '@kbn/shared-ux-utility'; import { lazy } from 'react'; -export type { LogExplorerTabsProps } from './log_explorer_tabs'; +export type { LogExplorerTabsProps } from './logs_explorer_tabs'; -export const LogExplorerTabs = withSuspense(lazy(() => import('./log_explorer_tabs'))); +export const LogExplorerTabs = withSuspense(lazy(() => import('./logs_explorer_tabs'))); diff --git a/src/plugins/discover/public/components/log_explorer_tabs/log_explorer_tabs.test.tsx b/src/plugins/discover/public/components/logs_explorer_tabs/logs_explorer_tabs.test.tsx similarity index 97% rename from src/plugins/discover/public/components/log_explorer_tabs/log_explorer_tabs.test.tsx rename to src/plugins/discover/public/components/logs_explorer_tabs/logs_explorer_tabs.test.tsx index b7afa1765608c..271d167fd4384 100644 --- a/src/plugins/discover/public/components/log_explorer_tabs/log_explorer_tabs.test.tsx +++ b/src/plugins/discover/public/components/logs_explorer_tabs/logs_explorer_tabs.test.tsx @@ -10,7 +10,7 @@ import userEvent from '@testing-library/user-event'; import { render, screen } from '@testing-library/react'; import React from 'react'; import { discoverServiceMock } from '../../__mocks__/services'; -import { LogExplorerTabs, LogExplorerTabsProps } from './log_explorer_tabs'; +import { LogExplorerTabs, LogExplorerTabsProps } from './logs_explorer_tabs'; import { DISCOVER_APP_LOCATOR } from '../../../common'; import { ALL_DATASETS_LOCATOR_ID } from '@kbn/deeplinks-observability'; diff --git a/src/plugins/discover/public/components/log_explorer_tabs/log_explorer_tabs.tsx b/src/plugins/discover/public/components/logs_explorer_tabs/logs_explorer_tabs.tsx similarity index 100% rename from src/plugins/discover/public/components/log_explorer_tabs/log_explorer_tabs.tsx rename to src/plugins/discover/public/components/logs_explorer_tabs/logs_explorer_tabs.tsx diff --git a/src/plugins/discover/public/index.ts b/src/plugins/discover/public/index.ts index 2e9ed1bcabd4f..dd15b3bc8d1dc 100644 --- a/src/plugins/discover/public/index.ts +++ b/src/plugins/discover/public/index.ts @@ -33,4 +33,4 @@ export type { } from './customizations'; export { SEARCH_EMBEDDABLE_TYPE, SEARCH_EMBEDDABLE_CELL_ACTIONS_TRIGGER_ID } from './embeddable'; export { loadSharingDataHelpers } from './utils'; -export { LogExplorerTabs, type LogExplorerTabsProps } from './components/log_explorer_tabs'; +export { LogExplorerTabs, type LogExplorerTabsProps } from './components/logs_explorer_tabs'; diff --git a/test/plugin_functional/test_suites/core_plugins/rendering.ts b/test/plugin_functional/test_suites/core_plugins/rendering.ts index 8b248c5bccc68..f4b0e3fa385e4 100644 --- a/test/plugin_functional/test_suites/core_plugins/rendering.ts +++ b/test/plugin_functional/test_suites/core_plugins/rendering.ts @@ -330,7 +330,7 @@ export default function ({ getService }: PluginFunctionalProviderContext) { 'xpack.observability.unsafe.alertDetails.observability.enabled (boolean)', 'xpack.observability.unsafe.thresholdRule.enabled (any)', // conditional, is actually a boolean 'xpack.observability_onboarding.ui.enabled (boolean)', - 'xpack.observabilityLogExplorer.navigation.showAppLink (any)', // conditional, is actually a boolean + 'xpack.observabilityLogsExplorer.navigation.showAppLink (any)', // conditional, is actually a boolean ]; // We don't assert that actualExposedConfigKeys and expectedExposedConfigKeys are equal, because test failure messages with large // arrays are hard to grok. Instead, we take the difference between the two arrays and assert them separately, that way it's diff --git a/tsconfig.base.json b/tsconfig.base.json index d6a84dbf953d6..3870482d48f33 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -4,5172 +4,1728 @@ "rootDir": ".", "paths": { // START AUTOMATED PACKAGE LISTING - "@kbn/aad-fixtures-plugin": [ - "x-pack/test/alerting_api_integration/common/plugins/aad" - ], - "@kbn/aad-fixtures-plugin/*": [ - "x-pack/test/alerting_api_integration/common/plugins/aad/*" - ], - "@kbn/ace": [ - "packages/kbn-ace" - ], - "@kbn/ace/*": [ - "packages/kbn-ace/*" - ], - "@kbn/actions-plugin": [ - "x-pack/plugins/actions" - ], - "@kbn/actions-plugin/*": [ - "x-pack/plugins/actions/*" - ], - "@kbn/actions-simulators-plugin": [ - "x-pack/test/alerting_api_integration/common/plugins/actions_simulators" - ], - "@kbn/actions-simulators-plugin/*": [ - "x-pack/test/alerting_api_integration/common/plugins/actions_simulators/*" - ], - "@kbn/actions-types": [ - "packages/kbn-actions-types" - ], - "@kbn/actions-types/*": [ - "packages/kbn-actions-types/*" - ], - "@kbn/advanced-settings-plugin": [ - "src/plugins/advanced_settings" - ], - "@kbn/advanced-settings-plugin/*": [ - "src/plugins/advanced_settings/*" - ], - "@kbn/ai-assistant-management-observability-plugin": [ - "src/plugins/ai_assistant_management/observability" - ], - "@kbn/ai-assistant-management-observability-plugin/*": [ - "src/plugins/ai_assistant_management/observability/*" - ], - "@kbn/ai-assistant-management-plugin": [ - "src/plugins/ai_assistant_management/selection" - ], - "@kbn/ai-assistant-management-plugin/*": [ - "src/plugins/ai_assistant_management/selection/*" - ], - "@kbn/aiops-components": [ - "x-pack/packages/ml/aiops_components" - ], - "@kbn/aiops-components/*": [ - "x-pack/packages/ml/aiops_components/*" - ], - "@kbn/aiops-plugin": [ - "x-pack/plugins/aiops" - ], - "@kbn/aiops-plugin/*": [ - "x-pack/plugins/aiops/*" - ], - "@kbn/aiops-utils": [ - "x-pack/packages/ml/aiops_utils" - ], - "@kbn/aiops-utils/*": [ - "x-pack/packages/ml/aiops_utils/*" - ], - "@kbn/alerting-api-integration-helpers": [ - "x-pack/test/alerting_api_integration/packages/helpers" - ], - "@kbn/alerting-api-integration-helpers/*": [ - "x-pack/test/alerting_api_integration/packages/helpers/*" - ], - "@kbn/alerting-api-integration-test-plugin": [ - "x-pack/test/alerting_api_integration/common/plugins/alerts" - ], - "@kbn/alerting-api-integration-test-plugin/*": [ - "x-pack/test/alerting_api_integration/common/plugins/alerts/*" - ], - "@kbn/alerting-example-plugin": [ - "x-pack/examples/alerting_example" - ], - "@kbn/alerting-example-plugin/*": [ - "x-pack/examples/alerting_example/*" - ], - "@kbn/alerting-fixture-plugin": [ - "x-pack/test/functional_with_es_ssl/plugins/alerts" - ], - "@kbn/alerting-fixture-plugin/*": [ - "x-pack/test/functional_with_es_ssl/plugins/alerts/*" - ], - "@kbn/alerting-plugin": [ - "x-pack/plugins/alerting" - ], - "@kbn/alerting-plugin/*": [ - "x-pack/plugins/alerting/*" - ], - "@kbn/alerting-state-types": [ - "x-pack/packages/kbn-alerting-state-types" - ], - "@kbn/alerting-state-types/*": [ - "x-pack/packages/kbn-alerting-state-types/*" - ], - "@kbn/alerting-types": [ - "packages/kbn-alerting-types" - ], - "@kbn/alerting-types/*": [ - "packages/kbn-alerting-types/*" - ], - "@kbn/alerts-as-data-utils": [ - "packages/kbn-alerts-as-data-utils" - ], - "@kbn/alerts-as-data-utils/*": [ - "packages/kbn-alerts-as-data-utils/*" - ], - "@kbn/alerts-restricted-fixtures-plugin": [ - "x-pack/test/alerting_api_integration/common/plugins/alerts_restricted" - ], - "@kbn/alerts-restricted-fixtures-plugin/*": [ - "x-pack/test/alerting_api_integration/common/plugins/alerts_restricted/*" - ], - "@kbn/alerts-ui-shared": [ - "packages/kbn-alerts-ui-shared" - ], - "@kbn/alerts-ui-shared/*": [ - "packages/kbn-alerts-ui-shared/*" - ], - "@kbn/ambient-common-types": [ - "packages/kbn-ambient-common-types" - ], - "@kbn/ambient-common-types/*": [ - "packages/kbn-ambient-common-types/*" - ], - "@kbn/ambient-ftr-types": [ - "packages/kbn-ambient-ftr-types" - ], - "@kbn/ambient-ftr-types/*": [ - "packages/kbn-ambient-ftr-types/*" - ], - "@kbn/ambient-storybook-types": [ - "packages/kbn-ambient-storybook-types" - ], - "@kbn/ambient-storybook-types/*": [ - "packages/kbn-ambient-storybook-types/*" - ], - "@kbn/ambient-ui-types": [ - "packages/kbn-ambient-ui-types" - ], - "@kbn/ambient-ui-types/*": [ - "packages/kbn-ambient-ui-types/*" - ], - "@kbn/analytics": [ - "packages/kbn-analytics" - ], - "@kbn/analytics/*": [ - "packages/kbn-analytics/*" - ], - "@kbn/analytics-client": [ - "packages/analytics/client" - ], - "@kbn/analytics-client/*": [ - "packages/analytics/client/*" - ], - "@kbn/analytics-collection-utils": [ - "packages/analytics/utils/analytics_collection_utils" - ], - "@kbn/analytics-collection-utils/*": [ - "packages/analytics/utils/analytics_collection_utils/*" - ], - "@kbn/analytics-ftr-helpers-plugin": [ - "test/analytics/plugins/analytics_ftr_helpers" - ], - "@kbn/analytics-ftr-helpers-plugin/*": [ - "test/analytics/plugins/analytics_ftr_helpers/*" - ], - "@kbn/analytics-plugin-a-plugin": [ - "test/analytics/plugins/analytics_plugin_a" - ], - "@kbn/analytics-plugin-a-plugin/*": [ - "test/analytics/plugins/analytics_plugin_a/*" - ], - "@kbn/analytics-shippers-elastic-v3-browser": [ - "packages/analytics/shippers/elastic_v3/browser" - ], - "@kbn/analytics-shippers-elastic-v3-browser/*": [ - "packages/analytics/shippers/elastic_v3/browser/*" - ], - "@kbn/analytics-shippers-elastic-v3-common": [ - "packages/analytics/shippers/elastic_v3/common" - ], - "@kbn/analytics-shippers-elastic-v3-common/*": [ - "packages/analytics/shippers/elastic_v3/common/*" - ], - "@kbn/analytics-shippers-elastic-v3-server": [ - "packages/analytics/shippers/elastic_v3/server" - ], - "@kbn/analytics-shippers-elastic-v3-server/*": [ - "packages/analytics/shippers/elastic_v3/server/*" - ], - "@kbn/analytics-shippers-fullstory": [ - "packages/analytics/shippers/fullstory" - ], - "@kbn/analytics-shippers-fullstory/*": [ - "packages/analytics/shippers/fullstory/*" - ], - "@kbn/analytics-shippers-gainsight": [ - "packages/analytics/shippers/gainsight" - ], - "@kbn/analytics-shippers-gainsight/*": [ - "packages/analytics/shippers/gainsight/*" - ], - "@kbn/apm-config-loader": [ - "packages/kbn-apm-config-loader" - ], - "@kbn/apm-config-loader/*": [ - "packages/kbn-apm-config-loader/*" - ], - "@kbn/apm-data-access-plugin": [ - "x-pack/plugins/apm_data_access" - ], - "@kbn/apm-data-access-plugin/*": [ - "x-pack/plugins/apm_data_access/*" - ], - "@kbn/apm-plugin": [ - "x-pack/plugins/apm" - ], - "@kbn/apm-plugin/*": [ - "x-pack/plugins/apm/*" - ], - "@kbn/apm-synthtrace": [ - "packages/kbn-apm-synthtrace" - ], - "@kbn/apm-synthtrace/*": [ - "packages/kbn-apm-synthtrace/*" - ], - "@kbn/apm-synthtrace-client": [ - "packages/kbn-apm-synthtrace-client" - ], - "@kbn/apm-synthtrace-client/*": [ - "packages/kbn-apm-synthtrace-client/*" - ], - "@kbn/apm-utils": [ - "packages/kbn-apm-utils" - ], - "@kbn/apm-utils/*": [ - "packages/kbn-apm-utils/*" - ], - "@kbn/app-link-test-plugin": [ - "test/plugin_functional/plugins/app_link_test" - ], - "@kbn/app-link-test-plugin/*": [ - "test/plugin_functional/plugins/app_link_test/*" - ], - "@kbn/application-usage-test-plugin": [ - "x-pack/test/usage_collection/plugins/application_usage_test" - ], - "@kbn/application-usage-test-plugin/*": [ - "x-pack/test/usage_collection/plugins/application_usage_test/*" - ], - "@kbn/assetManager-plugin": [ - "x-pack/plugins/asset_manager" - ], - "@kbn/assetManager-plugin/*": [ - "x-pack/plugins/asset_manager/*" - ], - "@kbn/audit-log-plugin": [ - "x-pack/test/security_api_integration/plugins/audit_log" - ], - "@kbn/audit-log-plugin/*": [ - "x-pack/test/security_api_integration/plugins/audit_log/*" - ], - "@kbn/axe-config": [ - "packages/kbn-axe-config" - ], - "@kbn/axe-config/*": [ - "packages/kbn-axe-config/*" - ], - "@kbn/babel-preset": [ - "packages/kbn-babel-preset" - ], - "@kbn/babel-preset/*": [ - "packages/kbn-babel-preset/*" - ], - "@kbn/babel-register": [ - "packages/kbn-babel-register" - ], - "@kbn/babel-register/*": [ - "packages/kbn-babel-register/*" - ], - "@kbn/babel-transform": [ - "packages/kbn-babel-transform" - ], - "@kbn/babel-transform/*": [ - "packages/kbn-babel-transform/*" - ], - "@kbn/banners-plugin": [ - "x-pack/plugins/banners" - ], - "@kbn/banners-plugin/*": [ - "x-pack/plugins/banners/*" - ], - "@kbn/bazel-runner": [ - "packages/kbn-bazel-runner" - ], - "@kbn/bazel-runner/*": [ - "packages/kbn-bazel-runner/*" - ], - "@kbn/bfetch-error": [ - "packages/kbn-bfetch-error" - ], - "@kbn/bfetch-error/*": [ - "packages/kbn-bfetch-error/*" - ], - "@kbn/bfetch-explorer-plugin": [ - "examples/bfetch_explorer" - ], - "@kbn/bfetch-explorer-plugin/*": [ - "examples/bfetch_explorer/*" - ], - "@kbn/bfetch-plugin": [ - "src/plugins/bfetch" - ], - "@kbn/bfetch-plugin/*": [ - "src/plugins/bfetch/*" - ], - "@kbn/calculate-auto": [ - "packages/kbn-calculate-auto" - ], - "@kbn/calculate-auto/*": [ - "packages/kbn-calculate-auto/*" - ], - "@kbn/calculate-width-from-char-count": [ - "packages/kbn-calculate-width-from-char-count" - ], - "@kbn/calculate-width-from-char-count/*": [ - "packages/kbn-calculate-width-from-char-count/*" - ], - "@kbn/canvas-plugin": [ - "x-pack/plugins/canvas" - ], - "@kbn/canvas-plugin/*": [ - "x-pack/plugins/canvas/*" - ], - "@kbn/cases-api-integration-test-plugin": [ - "x-pack/test/cases_api_integration/common/plugins/cases" - ], - "@kbn/cases-api-integration-test-plugin/*": [ - "x-pack/test/cases_api_integration/common/plugins/cases/*" - ], - "@kbn/cases-components": [ - "packages/kbn-cases-components" - ], - "@kbn/cases-components/*": [ - "packages/kbn-cases-components/*" - ], - "@kbn/cases-plugin": [ - "x-pack/plugins/cases" - ], - "@kbn/cases-plugin/*": [ - "x-pack/plugins/cases/*" - ], - "@kbn/cell-actions": [ - "packages/kbn-cell-actions" - ], - "@kbn/cell-actions/*": [ - "packages/kbn-cell-actions/*" - ], - "@kbn/chart-expressions-common": [ - "src/plugins/chart_expressions/common" - ], - "@kbn/chart-expressions-common/*": [ - "src/plugins/chart_expressions/common/*" - ], - "@kbn/chart-icons": [ - "packages/kbn-chart-icons" - ], - "@kbn/chart-icons/*": [ - "packages/kbn-chart-icons/*" - ], - "@kbn/charts-plugin": [ - "src/plugins/charts" - ], - "@kbn/charts-plugin/*": [ - "src/plugins/charts/*" - ], - "@kbn/check-mappings-update-cli": [ - "packages/kbn-check-mappings-update-cli" - ], - "@kbn/check-mappings-update-cli/*": [ - "packages/kbn-check-mappings-update-cli/*" - ], - "@kbn/ci-stats-core": [ - "packages/kbn-ci-stats-core" - ], - "@kbn/ci-stats-core/*": [ - "packages/kbn-ci-stats-core/*" - ], - "@kbn/ci-stats-performance-metrics": [ - "packages/kbn-ci-stats-performance-metrics" - ], - "@kbn/ci-stats-performance-metrics/*": [ - "packages/kbn-ci-stats-performance-metrics/*" - ], - "@kbn/ci-stats-reporter": [ - "packages/kbn-ci-stats-reporter" - ], - "@kbn/ci-stats-reporter/*": [ - "packages/kbn-ci-stats-reporter/*" - ], - "@kbn/ci-stats-shipper-cli": [ - "packages/kbn-ci-stats-shipper-cli" - ], - "@kbn/ci-stats-shipper-cli/*": [ - "packages/kbn-ci-stats-shipper-cli/*" - ], - "@kbn/cli-dev-mode": [ - "packages/kbn-cli-dev-mode" - ], - "@kbn/cli-dev-mode/*": [ - "packages/kbn-cli-dev-mode/*" - ], - "@kbn/cloud": [ - "packages/cloud" - ], - "@kbn/cloud/*": [ - "packages/cloud/*" - ], - "@kbn/cloud-chat-plugin": [ - "x-pack/plugins/cloud_integrations/cloud_chat" - ], - "@kbn/cloud-chat-plugin/*": [ - "x-pack/plugins/cloud_integrations/cloud_chat/*" - ], - "@kbn/cloud-data-migration-plugin": [ - "x-pack/plugins/cloud_integrations/cloud_data_migration" - ], - "@kbn/cloud-data-migration-plugin/*": [ - "x-pack/plugins/cloud_integrations/cloud_data_migration/*" - ], - "@kbn/cloud-defend-plugin": [ - "x-pack/plugins/cloud_defend" - ], - "@kbn/cloud-defend-plugin/*": [ - "x-pack/plugins/cloud_defend/*" - ], - "@kbn/cloud-experiments-plugin": [ - "x-pack/plugins/cloud_integrations/cloud_experiments" - ], - "@kbn/cloud-experiments-plugin/*": [ - "x-pack/plugins/cloud_integrations/cloud_experiments/*" - ], - "@kbn/cloud-full-story-plugin": [ - "x-pack/plugins/cloud_integrations/cloud_full_story" - ], - "@kbn/cloud-full-story-plugin/*": [ - "x-pack/plugins/cloud_integrations/cloud_full_story/*" - ], - "@kbn/cloud-gainsight-plugin": [ - "x-pack/plugins/cloud_integrations/cloud_gain_sight" - ], - "@kbn/cloud-gainsight-plugin/*": [ - "x-pack/plugins/cloud_integrations/cloud_gain_sight/*" - ], - "@kbn/cloud-integration-saml-provider-plugin": [ - "x-pack/test/cloud_integration/plugins/saml_provider" - ], - "@kbn/cloud-integration-saml-provider-plugin/*": [ - "x-pack/test/cloud_integration/plugins/saml_provider/*" - ], - "@kbn/cloud-links-plugin": [ - "x-pack/plugins/cloud_integrations/cloud_links" - ], - "@kbn/cloud-links-plugin/*": [ - "x-pack/plugins/cloud_integrations/cloud_links/*" - ], - "@kbn/cloud-plugin": [ - "x-pack/plugins/cloud" - ], - "@kbn/cloud-plugin/*": [ - "x-pack/plugins/cloud/*" - ], - "@kbn/cloud-security-posture-plugin": [ - "x-pack/plugins/cloud_security_posture" - ], - "@kbn/cloud-security-posture-plugin/*": [ - "x-pack/plugins/cloud_security_posture/*" - ], - "@kbn/code-editor": [ - "packages/shared-ux/code_editor" - ], - "@kbn/code-editor/*": [ - "packages/shared-ux/code_editor/*" - ], - "@kbn/code-owners": [ - "packages/kbn-code-owners" - ], - "@kbn/code-owners/*": [ - "packages/kbn-code-owners/*" - ], - "@kbn/coloring": [ - "packages/kbn-coloring" - ], - "@kbn/coloring/*": [ - "packages/kbn-coloring/*" - ], - "@kbn/config": [ - "packages/kbn-config" - ], - "@kbn/config/*": [ - "packages/kbn-config/*" - ], - "@kbn/config-mocks": [ - "packages/kbn-config-mocks" - ], - "@kbn/config-mocks/*": [ - "packages/kbn-config-mocks/*" - ], - "@kbn/config-schema": [ - "packages/kbn-config-schema" - ], - "@kbn/config-schema/*": [ - "packages/kbn-config-schema/*" - ], - "@kbn/console-plugin": [ - "src/plugins/console" - ], - "@kbn/console-plugin/*": [ - "src/plugins/console/*" - ], - "@kbn/content-management-content-editor": [ - "packages/content-management/content_editor" - ], - "@kbn/content-management-content-editor/*": [ - "packages/content-management/content_editor/*" - ], - "@kbn/content-management-examples-plugin": [ - "examples/content_management_examples" - ], - "@kbn/content-management-examples-plugin/*": [ - "examples/content_management_examples/*" - ], - "@kbn/content-management-plugin": [ - "src/plugins/content_management" - ], - "@kbn/content-management-plugin/*": [ - "src/plugins/content_management/*" - ], - "@kbn/content-management-tabbed-table-list-view": [ - "packages/content-management/tabbed_table_list_view" - ], - "@kbn/content-management-tabbed-table-list-view/*": [ - "packages/content-management/tabbed_table_list_view/*" - ], - "@kbn/content-management-table-list-view": [ - "packages/content-management/table_list_view" - ], - "@kbn/content-management-table-list-view/*": [ - "packages/content-management/table_list_view/*" - ], - "@kbn/content-management-table-list-view-common": [ - "packages/content-management/table_list_view_common" - ], - "@kbn/content-management-table-list-view-common/*": [ - "packages/content-management/table_list_view_common/*" - ], - "@kbn/content-management-table-list-view-table": [ - "packages/content-management/table_list_view_table" - ], - "@kbn/content-management-table-list-view-table/*": [ - "packages/content-management/table_list_view_table/*" - ], - "@kbn/content-management-utils": [ - "packages/kbn-content-management-utils" - ], - "@kbn/content-management-utils/*": [ - "packages/kbn-content-management-utils/*" - ], - "@kbn/controls-example-plugin": [ - "examples/controls_example" - ], - "@kbn/controls-example-plugin/*": [ - "examples/controls_example/*" - ], - "@kbn/controls-plugin": [ - "src/plugins/controls" - ], - "@kbn/controls-plugin/*": [ - "src/plugins/controls/*" - ], - "@kbn/core": [ - "src/core" - ], - "@kbn/core/*": [ - "src/core/*" - ], - "@kbn/core-analytics-browser": [ - "packages/core/analytics/core-analytics-browser" - ], - "@kbn/core-analytics-browser/*": [ - "packages/core/analytics/core-analytics-browser/*" - ], - "@kbn/core-analytics-browser-internal": [ - "packages/core/analytics/core-analytics-browser-internal" - ], - "@kbn/core-analytics-browser-internal/*": [ - "packages/core/analytics/core-analytics-browser-internal/*" - ], - "@kbn/core-analytics-browser-mocks": [ - "packages/core/analytics/core-analytics-browser-mocks" - ], - "@kbn/core-analytics-browser-mocks/*": [ - "packages/core/analytics/core-analytics-browser-mocks/*" - ], - "@kbn/core-analytics-server": [ - "packages/core/analytics/core-analytics-server" - ], - "@kbn/core-analytics-server/*": [ - "packages/core/analytics/core-analytics-server/*" - ], - "@kbn/core-analytics-server-internal": [ - "packages/core/analytics/core-analytics-server-internal" - ], - "@kbn/core-analytics-server-internal/*": [ - "packages/core/analytics/core-analytics-server-internal/*" - ], - "@kbn/core-analytics-server-mocks": [ - "packages/core/analytics/core-analytics-server-mocks" - ], - "@kbn/core-analytics-server-mocks/*": [ - "packages/core/analytics/core-analytics-server-mocks/*" - ], - "@kbn/core-app-status-plugin": [ - "test/plugin_functional/plugins/core_app_status" - ], - "@kbn/core-app-status-plugin/*": [ - "test/plugin_functional/plugins/core_app_status/*" - ], - "@kbn/core-application-browser": [ - "packages/core/application/core-application-browser" - ], - "@kbn/core-application-browser/*": [ - "packages/core/application/core-application-browser/*" - ], - "@kbn/core-application-browser-internal": [ - "packages/core/application/core-application-browser-internal" - ], - "@kbn/core-application-browser-internal/*": [ - "packages/core/application/core-application-browser-internal/*" - ], - "@kbn/core-application-browser-mocks": [ - "packages/core/application/core-application-browser-mocks" - ], - "@kbn/core-application-browser-mocks/*": [ - "packages/core/application/core-application-browser-mocks/*" - ], - "@kbn/core-application-common": [ - "packages/core/application/core-application-common" - ], - "@kbn/core-application-common/*": [ - "packages/core/application/core-application-common/*" - ], - "@kbn/core-apps-browser-internal": [ - "packages/core/apps/core-apps-browser-internal" - ], - "@kbn/core-apps-browser-internal/*": [ - "packages/core/apps/core-apps-browser-internal/*" - ], - "@kbn/core-apps-browser-mocks": [ - "packages/core/apps/core-apps-browser-mocks" - ], - "@kbn/core-apps-browser-mocks/*": [ - "packages/core/apps/core-apps-browser-mocks/*" - ], - "@kbn/core-apps-server-internal": [ - "packages/core/apps/core-apps-server-internal" - ], - "@kbn/core-apps-server-internal/*": [ - "packages/core/apps/core-apps-server-internal/*" - ], - "@kbn/core-base-browser-internal": [ - "packages/core/base/core-base-browser-internal" - ], - "@kbn/core-base-browser-internal/*": [ - "packages/core/base/core-base-browser-internal/*" - ], - "@kbn/core-base-browser-mocks": [ - "packages/core/base/core-base-browser-mocks" - ], - "@kbn/core-base-browser-mocks/*": [ - "packages/core/base/core-base-browser-mocks/*" - ], - "@kbn/core-base-common": [ - "packages/core/base/core-base-common" - ], - "@kbn/core-base-common/*": [ - "packages/core/base/core-base-common/*" - ], - "@kbn/core-base-common-internal": [ - "packages/core/base/core-base-common-internal" - ], - "@kbn/core-base-common-internal/*": [ - "packages/core/base/core-base-common-internal/*" - ], - "@kbn/core-base-server-internal": [ - "packages/core/base/core-base-server-internal" - ], - "@kbn/core-base-server-internal/*": [ - "packages/core/base/core-base-server-internal/*" - ], - "@kbn/core-base-server-mocks": [ - "packages/core/base/core-base-server-mocks" - ], - "@kbn/core-base-server-mocks/*": [ - "packages/core/base/core-base-server-mocks/*" - ], - "@kbn/core-capabilities-browser-internal": [ - "packages/core/capabilities/core-capabilities-browser-internal" - ], - "@kbn/core-capabilities-browser-internal/*": [ - "packages/core/capabilities/core-capabilities-browser-internal/*" - ], - "@kbn/core-capabilities-browser-mocks": [ - "packages/core/capabilities/core-capabilities-browser-mocks" - ], - "@kbn/core-capabilities-browser-mocks/*": [ - "packages/core/capabilities/core-capabilities-browser-mocks/*" - ], - "@kbn/core-capabilities-common": [ - "packages/core/capabilities/core-capabilities-common" - ], - "@kbn/core-capabilities-common/*": [ - "packages/core/capabilities/core-capabilities-common/*" - ], - "@kbn/core-capabilities-server": [ - "packages/core/capabilities/core-capabilities-server" - ], - "@kbn/core-capabilities-server/*": [ - "packages/core/capabilities/core-capabilities-server/*" - ], - "@kbn/core-capabilities-server-internal": [ - "packages/core/capabilities/core-capabilities-server-internal" - ], - "@kbn/core-capabilities-server-internal/*": [ - "packages/core/capabilities/core-capabilities-server-internal/*" - ], - "@kbn/core-capabilities-server-mocks": [ - "packages/core/capabilities/core-capabilities-server-mocks" - ], - "@kbn/core-capabilities-server-mocks/*": [ - "packages/core/capabilities/core-capabilities-server-mocks/*" - ], - "@kbn/core-chrome-browser": [ - "packages/core/chrome/core-chrome-browser" - ], - "@kbn/core-chrome-browser/*": [ - "packages/core/chrome/core-chrome-browser/*" - ], - "@kbn/core-chrome-browser-internal": [ - "packages/core/chrome/core-chrome-browser-internal" - ], - "@kbn/core-chrome-browser-internal/*": [ - "packages/core/chrome/core-chrome-browser-internal/*" - ], - "@kbn/core-chrome-browser-mocks": [ - "packages/core/chrome/core-chrome-browser-mocks" - ], - "@kbn/core-chrome-browser-mocks/*": [ - "packages/core/chrome/core-chrome-browser-mocks/*" - ], - "@kbn/core-config-server-internal": [ - "packages/core/config/core-config-server-internal" - ], - "@kbn/core-config-server-internal/*": [ - "packages/core/config/core-config-server-internal/*" - ], - "@kbn/core-custom-branding-browser": [ - "packages/core/custom-branding/core-custom-branding-browser" - ], - "@kbn/core-custom-branding-browser/*": [ - "packages/core/custom-branding/core-custom-branding-browser/*" - ], - "@kbn/core-custom-branding-browser-internal": [ - "packages/core/custom-branding/core-custom-branding-browser-internal" - ], - "@kbn/core-custom-branding-browser-internal/*": [ - "packages/core/custom-branding/core-custom-branding-browser-internal/*" - ], - "@kbn/core-custom-branding-browser-mocks": [ - "packages/core/custom-branding/core-custom-branding-browser-mocks" - ], - "@kbn/core-custom-branding-browser-mocks/*": [ - "packages/core/custom-branding/core-custom-branding-browser-mocks/*" - ], - "@kbn/core-custom-branding-common": [ - "packages/core/custom-branding/core-custom-branding-common" - ], - "@kbn/core-custom-branding-common/*": [ - "packages/core/custom-branding/core-custom-branding-common/*" - ], - "@kbn/core-custom-branding-server": [ - "packages/core/custom-branding/core-custom-branding-server" - ], - "@kbn/core-custom-branding-server/*": [ - "packages/core/custom-branding/core-custom-branding-server/*" - ], - "@kbn/core-custom-branding-server-internal": [ - "packages/core/custom-branding/core-custom-branding-server-internal" - ], - "@kbn/core-custom-branding-server-internal/*": [ - "packages/core/custom-branding/core-custom-branding-server-internal/*" - ], - "@kbn/core-custom-branding-server-mocks": [ - "packages/core/custom-branding/core-custom-branding-server-mocks" - ], - "@kbn/core-custom-branding-server-mocks/*": [ - "packages/core/custom-branding/core-custom-branding-server-mocks/*" - ], - "@kbn/core-deprecations-browser": [ - "packages/core/deprecations/core-deprecations-browser" - ], - "@kbn/core-deprecations-browser/*": [ - "packages/core/deprecations/core-deprecations-browser/*" - ], - "@kbn/core-deprecations-browser-internal": [ - "packages/core/deprecations/core-deprecations-browser-internal" - ], - "@kbn/core-deprecations-browser-internal/*": [ - "packages/core/deprecations/core-deprecations-browser-internal/*" - ], - "@kbn/core-deprecations-browser-mocks": [ - "packages/core/deprecations/core-deprecations-browser-mocks" - ], - "@kbn/core-deprecations-browser-mocks/*": [ - "packages/core/deprecations/core-deprecations-browser-mocks/*" - ], - "@kbn/core-deprecations-common": [ - "packages/core/deprecations/core-deprecations-common" - ], - "@kbn/core-deprecations-common/*": [ - "packages/core/deprecations/core-deprecations-common/*" - ], - "@kbn/core-deprecations-server": [ - "packages/core/deprecations/core-deprecations-server" - ], - "@kbn/core-deprecations-server/*": [ - "packages/core/deprecations/core-deprecations-server/*" - ], - "@kbn/core-deprecations-server-internal": [ - "packages/core/deprecations/core-deprecations-server-internal" - ], - "@kbn/core-deprecations-server-internal/*": [ - "packages/core/deprecations/core-deprecations-server-internal/*" - ], - "@kbn/core-deprecations-server-mocks": [ - "packages/core/deprecations/core-deprecations-server-mocks" - ], - "@kbn/core-deprecations-server-mocks/*": [ - "packages/core/deprecations/core-deprecations-server-mocks/*" - ], - "@kbn/core-doc-links-browser": [ - "packages/core/doc-links/core-doc-links-browser" - ], - "@kbn/core-doc-links-browser/*": [ - "packages/core/doc-links/core-doc-links-browser/*" - ], - "@kbn/core-doc-links-browser-internal": [ - "packages/core/doc-links/core-doc-links-browser-internal" - ], - "@kbn/core-doc-links-browser-internal/*": [ - "packages/core/doc-links/core-doc-links-browser-internal/*" - ], - "@kbn/core-doc-links-browser-mocks": [ - "packages/core/doc-links/core-doc-links-browser-mocks" - ], - "@kbn/core-doc-links-browser-mocks/*": [ - "packages/core/doc-links/core-doc-links-browser-mocks/*" - ], - "@kbn/core-doc-links-server": [ - "packages/core/doc-links/core-doc-links-server" - ], - "@kbn/core-doc-links-server/*": [ - "packages/core/doc-links/core-doc-links-server/*" - ], - "@kbn/core-doc-links-server-internal": [ - "packages/core/doc-links/core-doc-links-server-internal" - ], - "@kbn/core-doc-links-server-internal/*": [ - "packages/core/doc-links/core-doc-links-server-internal/*" - ], - "@kbn/core-doc-links-server-mocks": [ - "packages/core/doc-links/core-doc-links-server-mocks" - ], - "@kbn/core-doc-links-server-mocks/*": [ - "packages/core/doc-links/core-doc-links-server-mocks/*" - ], - "@kbn/core-elasticsearch-client-server-internal": [ - "packages/core/elasticsearch/core-elasticsearch-client-server-internal" - ], - "@kbn/core-elasticsearch-client-server-internal/*": [ - "packages/core/elasticsearch/core-elasticsearch-client-server-internal/*" - ], - "@kbn/core-elasticsearch-client-server-mocks": [ - "packages/core/elasticsearch/core-elasticsearch-client-server-mocks" - ], - "@kbn/core-elasticsearch-client-server-mocks/*": [ - "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/*" - ], - "@kbn/core-elasticsearch-server": [ - "packages/core/elasticsearch/core-elasticsearch-server" - ], - "@kbn/core-elasticsearch-server/*": [ - "packages/core/elasticsearch/core-elasticsearch-server/*" - ], - "@kbn/core-elasticsearch-server-internal": [ - "packages/core/elasticsearch/core-elasticsearch-server-internal" - ], - "@kbn/core-elasticsearch-server-internal/*": [ - "packages/core/elasticsearch/core-elasticsearch-server-internal/*" - ], - "@kbn/core-elasticsearch-server-mocks": [ - "packages/core/elasticsearch/core-elasticsearch-server-mocks" - ], - "@kbn/core-elasticsearch-server-mocks/*": [ - "packages/core/elasticsearch/core-elasticsearch-server-mocks/*" - ], - "@kbn/core-environment-server-internal": [ - "packages/core/environment/core-environment-server-internal" - ], - "@kbn/core-environment-server-internal/*": [ - "packages/core/environment/core-environment-server-internal/*" - ], - "@kbn/core-environment-server-mocks": [ - "packages/core/environment/core-environment-server-mocks" - ], - "@kbn/core-environment-server-mocks/*": [ - "packages/core/environment/core-environment-server-mocks/*" - ], - "@kbn/core-execution-context-browser": [ - "packages/core/execution-context/core-execution-context-browser" - ], - "@kbn/core-execution-context-browser/*": [ - "packages/core/execution-context/core-execution-context-browser/*" - ], - "@kbn/core-execution-context-browser-internal": [ - "packages/core/execution-context/core-execution-context-browser-internal" - ], - "@kbn/core-execution-context-browser-internal/*": [ - "packages/core/execution-context/core-execution-context-browser-internal/*" - ], - "@kbn/core-execution-context-browser-mocks": [ - "packages/core/execution-context/core-execution-context-browser-mocks" - ], - "@kbn/core-execution-context-browser-mocks/*": [ - "packages/core/execution-context/core-execution-context-browser-mocks/*" - ], - "@kbn/core-execution-context-common": [ - "packages/core/execution-context/core-execution-context-common" - ], - "@kbn/core-execution-context-common/*": [ - "packages/core/execution-context/core-execution-context-common/*" - ], - "@kbn/core-execution-context-server": [ - "packages/core/execution-context/core-execution-context-server" - ], - "@kbn/core-execution-context-server/*": [ - "packages/core/execution-context/core-execution-context-server/*" - ], - "@kbn/core-execution-context-server-internal": [ - "packages/core/execution-context/core-execution-context-server-internal" - ], - "@kbn/core-execution-context-server-internal/*": [ - "packages/core/execution-context/core-execution-context-server-internal/*" - ], - "@kbn/core-execution-context-server-mocks": [ - "packages/core/execution-context/core-execution-context-server-mocks" - ], - "@kbn/core-execution-context-server-mocks/*": [ - "packages/core/execution-context/core-execution-context-server-mocks/*" - ], - "@kbn/core-fatal-errors-browser": [ - "packages/core/fatal-errors/core-fatal-errors-browser" - ], - "@kbn/core-fatal-errors-browser/*": [ - "packages/core/fatal-errors/core-fatal-errors-browser/*" - ], - "@kbn/core-fatal-errors-browser-internal": [ - "packages/core/fatal-errors/core-fatal-errors-browser-internal" - ], - "@kbn/core-fatal-errors-browser-internal/*": [ - "packages/core/fatal-errors/core-fatal-errors-browser-internal/*" - ], - "@kbn/core-fatal-errors-browser-mocks": [ - "packages/core/fatal-errors/core-fatal-errors-browser-mocks" - ], - "@kbn/core-fatal-errors-browser-mocks/*": [ - "packages/core/fatal-errors/core-fatal-errors-browser-mocks/*" - ], - "@kbn/core-history-block-plugin": [ - "test/plugin_functional/plugins/core_history_block" - ], - "@kbn/core-history-block-plugin/*": [ - "test/plugin_functional/plugins/core_history_block/*" - ], - "@kbn/core-http-browser": [ - "packages/core/http/core-http-browser" - ], - "@kbn/core-http-browser/*": [ - "packages/core/http/core-http-browser/*" - ], - "@kbn/core-http-browser-internal": [ - "packages/core/http/core-http-browser-internal" - ], - "@kbn/core-http-browser-internal/*": [ - "packages/core/http/core-http-browser-internal/*" - ], - "@kbn/core-http-browser-mocks": [ - "packages/core/http/core-http-browser-mocks" - ], - "@kbn/core-http-browser-mocks/*": [ - "packages/core/http/core-http-browser-mocks/*" - ], - "@kbn/core-http-common": [ - "packages/core/http/core-http-common" - ], - "@kbn/core-http-common/*": [ - "packages/core/http/core-http-common/*" - ], - "@kbn/core-http-context-server-internal": [ - "packages/core/http/core-http-context-server-internal" - ], - "@kbn/core-http-context-server-internal/*": [ - "packages/core/http/core-http-context-server-internal/*" - ], - "@kbn/core-http-context-server-mocks": [ - "packages/core/http/core-http-context-server-mocks" - ], - "@kbn/core-http-context-server-mocks/*": [ - "packages/core/http/core-http-context-server-mocks/*" - ], - "@kbn/core-http-plugin": [ - "test/plugin_functional/plugins/core_http" - ], - "@kbn/core-http-plugin/*": [ - "test/plugin_functional/plugins/core_http/*" - ], - "@kbn/core-http-request-handler-context-server": [ - "packages/core/http/core-http-request-handler-context-server" - ], - "@kbn/core-http-request-handler-context-server/*": [ - "packages/core/http/core-http-request-handler-context-server/*" - ], - "@kbn/core-http-request-handler-context-server-internal": [ - "packages/core/http/core-http-request-handler-context-server-internal" - ], - "@kbn/core-http-request-handler-context-server-internal/*": [ - "packages/core/http/core-http-request-handler-context-server-internal/*" - ], - "@kbn/core-http-resources-server": [ - "packages/core/http/core-http-resources-server" - ], - "@kbn/core-http-resources-server/*": [ - "packages/core/http/core-http-resources-server/*" - ], - "@kbn/core-http-resources-server-internal": [ - "packages/core/http/core-http-resources-server-internal" - ], - "@kbn/core-http-resources-server-internal/*": [ - "packages/core/http/core-http-resources-server-internal/*" - ], - "@kbn/core-http-resources-server-mocks": [ - "packages/core/http/core-http-resources-server-mocks" - ], - "@kbn/core-http-resources-server-mocks/*": [ - "packages/core/http/core-http-resources-server-mocks/*" - ], - "@kbn/core-http-router-server-internal": [ - "packages/core/http/core-http-router-server-internal" - ], - "@kbn/core-http-router-server-internal/*": [ - "packages/core/http/core-http-router-server-internal/*" - ], - "@kbn/core-http-router-server-mocks": [ - "packages/core/http/core-http-router-server-mocks" - ], - "@kbn/core-http-router-server-mocks/*": [ - "packages/core/http/core-http-router-server-mocks/*" - ], - "@kbn/core-http-server": [ - "packages/core/http/core-http-server" - ], - "@kbn/core-http-server/*": [ - "packages/core/http/core-http-server/*" - ], - "@kbn/core-http-server-internal": [ - "packages/core/http/core-http-server-internal" - ], - "@kbn/core-http-server-internal/*": [ - "packages/core/http/core-http-server-internal/*" - ], - "@kbn/core-http-server-mocks": [ - "packages/core/http/core-http-server-mocks" - ], - "@kbn/core-http-server-mocks/*": [ - "packages/core/http/core-http-server-mocks/*" - ], - "@kbn/core-i18n-browser": [ - "packages/core/i18n/core-i18n-browser" - ], - "@kbn/core-i18n-browser/*": [ - "packages/core/i18n/core-i18n-browser/*" - ], - "@kbn/core-i18n-browser-internal": [ - "packages/core/i18n/core-i18n-browser-internal" - ], - "@kbn/core-i18n-browser-internal/*": [ - "packages/core/i18n/core-i18n-browser-internal/*" - ], - "@kbn/core-i18n-browser-mocks": [ - "packages/core/i18n/core-i18n-browser-mocks" - ], - "@kbn/core-i18n-browser-mocks/*": [ - "packages/core/i18n/core-i18n-browser-mocks/*" - ], - "@kbn/core-i18n-server": [ - "packages/core/i18n/core-i18n-server" - ], - "@kbn/core-i18n-server/*": [ - "packages/core/i18n/core-i18n-server/*" - ], - "@kbn/core-i18n-server-internal": [ - "packages/core/i18n/core-i18n-server-internal" - ], - "@kbn/core-i18n-server-internal/*": [ - "packages/core/i18n/core-i18n-server-internal/*" - ], - "@kbn/core-i18n-server-mocks": [ - "packages/core/i18n/core-i18n-server-mocks" - ], - "@kbn/core-i18n-server-mocks/*": [ - "packages/core/i18n/core-i18n-server-mocks/*" - ], - "@kbn/core-injected-metadata-browser-internal": [ - "packages/core/injected-metadata/core-injected-metadata-browser-internal" - ], - "@kbn/core-injected-metadata-browser-internal/*": [ - "packages/core/injected-metadata/core-injected-metadata-browser-internal/*" - ], - "@kbn/core-injected-metadata-browser-mocks": [ - "packages/core/injected-metadata/core-injected-metadata-browser-mocks" - ], - "@kbn/core-injected-metadata-browser-mocks/*": [ - "packages/core/injected-metadata/core-injected-metadata-browser-mocks/*" - ], - "@kbn/core-injected-metadata-common-internal": [ - "packages/core/injected-metadata/core-injected-metadata-common-internal" - ], - "@kbn/core-injected-metadata-common-internal/*": [ - "packages/core/injected-metadata/core-injected-metadata-common-internal/*" - ], - "@kbn/core-integrations-browser-internal": [ - "packages/core/integrations/core-integrations-browser-internal" - ], - "@kbn/core-integrations-browser-internal/*": [ - "packages/core/integrations/core-integrations-browser-internal/*" - ], - "@kbn/core-integrations-browser-mocks": [ - "packages/core/integrations/core-integrations-browser-mocks" - ], - "@kbn/core-integrations-browser-mocks/*": [ - "packages/core/integrations/core-integrations-browser-mocks/*" - ], - "@kbn/core-lifecycle-browser": [ - "packages/core/lifecycle/core-lifecycle-browser" - ], - "@kbn/core-lifecycle-browser/*": [ - "packages/core/lifecycle/core-lifecycle-browser/*" - ], - "@kbn/core-lifecycle-browser-internal": [ - "packages/core/lifecycle/core-lifecycle-browser-internal" - ], - "@kbn/core-lifecycle-browser-internal/*": [ - "packages/core/lifecycle/core-lifecycle-browser-internal/*" - ], - "@kbn/core-lifecycle-browser-mocks": [ - "packages/core/lifecycle/core-lifecycle-browser-mocks" - ], - "@kbn/core-lifecycle-browser-mocks/*": [ - "packages/core/lifecycle/core-lifecycle-browser-mocks/*" - ], - "@kbn/core-lifecycle-server": [ - "packages/core/lifecycle/core-lifecycle-server" - ], - "@kbn/core-lifecycle-server/*": [ - "packages/core/lifecycle/core-lifecycle-server/*" - ], - "@kbn/core-lifecycle-server-internal": [ - "packages/core/lifecycle/core-lifecycle-server-internal" - ], - "@kbn/core-lifecycle-server-internal/*": [ - "packages/core/lifecycle/core-lifecycle-server-internal/*" - ], - "@kbn/core-lifecycle-server-mocks": [ - "packages/core/lifecycle/core-lifecycle-server-mocks" - ], - "@kbn/core-lifecycle-server-mocks/*": [ - "packages/core/lifecycle/core-lifecycle-server-mocks/*" - ], - "@kbn/core-logging-browser-internal": [ - "packages/core/logging/core-logging-browser-internal" - ], - "@kbn/core-logging-browser-internal/*": [ - "packages/core/logging/core-logging-browser-internal/*" - ], - "@kbn/core-logging-browser-mocks": [ - "packages/core/logging/core-logging-browser-mocks" - ], - "@kbn/core-logging-browser-mocks/*": [ - "packages/core/logging/core-logging-browser-mocks/*" - ], - "@kbn/core-logging-common-internal": [ - "packages/core/logging/core-logging-common-internal" - ], - "@kbn/core-logging-common-internal/*": [ - "packages/core/logging/core-logging-common-internal/*" - ], - "@kbn/core-logging-server": [ - "packages/core/logging/core-logging-server" - ], - "@kbn/core-logging-server/*": [ - "packages/core/logging/core-logging-server/*" - ], - "@kbn/core-logging-server-internal": [ - "packages/core/logging/core-logging-server-internal" - ], - "@kbn/core-logging-server-internal/*": [ - "packages/core/logging/core-logging-server-internal/*" - ], - "@kbn/core-logging-server-mocks": [ - "packages/core/logging/core-logging-server-mocks" - ], - "@kbn/core-logging-server-mocks/*": [ - "packages/core/logging/core-logging-server-mocks/*" - ], - "@kbn/core-metrics-collectors-server-internal": [ - "packages/core/metrics/core-metrics-collectors-server-internal" - ], - "@kbn/core-metrics-collectors-server-internal/*": [ - "packages/core/metrics/core-metrics-collectors-server-internal/*" - ], - "@kbn/core-metrics-collectors-server-mocks": [ - "packages/core/metrics/core-metrics-collectors-server-mocks" - ], - "@kbn/core-metrics-collectors-server-mocks/*": [ - "packages/core/metrics/core-metrics-collectors-server-mocks/*" - ], - "@kbn/core-metrics-server": [ - "packages/core/metrics/core-metrics-server" - ], - "@kbn/core-metrics-server/*": [ - "packages/core/metrics/core-metrics-server/*" - ], - "@kbn/core-metrics-server-internal": [ - "packages/core/metrics/core-metrics-server-internal" - ], - "@kbn/core-metrics-server-internal/*": [ - "packages/core/metrics/core-metrics-server-internal/*" - ], - "@kbn/core-metrics-server-mocks": [ - "packages/core/metrics/core-metrics-server-mocks" - ], - "@kbn/core-metrics-server-mocks/*": [ - "packages/core/metrics/core-metrics-server-mocks/*" - ], - "@kbn/core-mount-utils-browser": [ - "packages/core/mount-utils/core-mount-utils-browser" - ], - "@kbn/core-mount-utils-browser/*": [ - "packages/core/mount-utils/core-mount-utils-browser/*" - ], - "@kbn/core-mount-utils-browser-internal": [ - "packages/core/mount-utils/core-mount-utils-browser-internal" - ], - "@kbn/core-mount-utils-browser-internal/*": [ - "packages/core/mount-utils/core-mount-utils-browser-internal/*" - ], - "@kbn/core-node-server": [ - "packages/core/node/core-node-server" - ], - "@kbn/core-node-server/*": [ - "packages/core/node/core-node-server/*" - ], - "@kbn/core-node-server-internal": [ - "packages/core/node/core-node-server-internal" - ], - "@kbn/core-node-server-internal/*": [ - "packages/core/node/core-node-server-internal/*" - ], - "@kbn/core-node-server-mocks": [ - "packages/core/node/core-node-server-mocks" - ], - "@kbn/core-node-server-mocks/*": [ - "packages/core/node/core-node-server-mocks/*" - ], - "@kbn/core-notifications-browser": [ - "packages/core/notifications/core-notifications-browser" - ], - "@kbn/core-notifications-browser/*": [ - "packages/core/notifications/core-notifications-browser/*" - ], - "@kbn/core-notifications-browser-internal": [ - "packages/core/notifications/core-notifications-browser-internal" - ], - "@kbn/core-notifications-browser-internal/*": [ - "packages/core/notifications/core-notifications-browser-internal/*" - ], - "@kbn/core-notifications-browser-mocks": [ - "packages/core/notifications/core-notifications-browser-mocks" - ], - "@kbn/core-notifications-browser-mocks/*": [ - "packages/core/notifications/core-notifications-browser-mocks/*" - ], - "@kbn/core-overlays-browser": [ - "packages/core/overlays/core-overlays-browser" - ], - "@kbn/core-overlays-browser/*": [ - "packages/core/overlays/core-overlays-browser/*" - ], - "@kbn/core-overlays-browser-internal": [ - "packages/core/overlays/core-overlays-browser-internal" - ], - "@kbn/core-overlays-browser-internal/*": [ - "packages/core/overlays/core-overlays-browser-internal/*" - ], - "@kbn/core-overlays-browser-mocks": [ - "packages/core/overlays/core-overlays-browser-mocks" - ], - "@kbn/core-overlays-browser-mocks/*": [ - "packages/core/overlays/core-overlays-browser-mocks/*" - ], - "@kbn/core-plugin-a-plugin": [ - "test/plugin_functional/plugins/core_plugin_a" - ], - "@kbn/core-plugin-a-plugin/*": [ - "test/plugin_functional/plugins/core_plugin_a/*" - ], - "@kbn/core-plugin-appleave-plugin": [ - "test/plugin_functional/plugins/core_plugin_appleave" - ], - "@kbn/core-plugin-appleave-plugin/*": [ - "test/plugin_functional/plugins/core_plugin_appleave/*" - ], - "@kbn/core-plugin-b-plugin": [ - "test/plugin_functional/plugins/core_plugin_b" - ], - "@kbn/core-plugin-b-plugin/*": [ - "test/plugin_functional/plugins/core_plugin_b/*" - ], - "@kbn/core-plugin-chromeless-plugin": [ - "test/plugin_functional/plugins/core_plugin_chromeless" - ], - "@kbn/core-plugin-chromeless-plugin/*": [ - "test/plugin_functional/plugins/core_plugin_chromeless/*" - ], - "@kbn/core-plugin-deep-links-plugin": [ - "test/plugin_functional/plugins/core_plugin_deep_links" - ], - "@kbn/core-plugin-deep-links-plugin/*": [ - "test/plugin_functional/plugins/core_plugin_deep_links/*" - ], - "@kbn/core-plugin-deprecations-plugin": [ - "test/plugin_functional/plugins/core_plugin_deprecations" - ], - "@kbn/core-plugin-deprecations-plugin/*": [ - "test/plugin_functional/plugins/core_plugin_deprecations/*" - ], - "@kbn/core-plugin-dynamic-resolving-a": [ - "test/plugin_functional/plugins/core_dynamic_resolving_a" - ], - "@kbn/core-plugin-dynamic-resolving-a/*": [ - "test/plugin_functional/plugins/core_dynamic_resolving_a/*" - ], - "@kbn/core-plugin-dynamic-resolving-b": [ - "test/plugin_functional/plugins/core_dynamic_resolving_b" - ], - "@kbn/core-plugin-dynamic-resolving-b/*": [ - "test/plugin_functional/plugins/core_dynamic_resolving_b/*" - ], - "@kbn/core-plugin-execution-context-plugin": [ - "test/plugin_functional/plugins/core_plugin_execution_context" - ], - "@kbn/core-plugin-execution-context-plugin/*": [ - "test/plugin_functional/plugins/core_plugin_execution_context/*" - ], - "@kbn/core-plugin-helpmenu-plugin": [ - "test/plugin_functional/plugins/core_plugin_helpmenu" - ], - "@kbn/core-plugin-helpmenu-plugin/*": [ - "test/plugin_functional/plugins/core_plugin_helpmenu/*" - ], - "@kbn/core-plugin-initializer-context-plugin": [ - "test/node_roles_functional/plugins/core_plugin_initializer_context" - ], - "@kbn/core-plugin-initializer-context-plugin/*": [ - "test/node_roles_functional/plugins/core_plugin_initializer_context/*" - ], - "@kbn/core-plugin-route-timeouts-plugin": [ - "test/plugin_functional/plugins/core_plugin_route_timeouts" - ], - "@kbn/core-plugin-route-timeouts-plugin/*": [ - "test/plugin_functional/plugins/core_plugin_route_timeouts/*" - ], - "@kbn/core-plugin-static-assets-plugin": [ - "test/plugin_functional/plugins/core_plugin_static_assets" - ], - "@kbn/core-plugin-static-assets-plugin/*": [ - "test/plugin_functional/plugins/core_plugin_static_assets/*" - ], - "@kbn/core-plugins-base-server-internal": [ - "packages/core/plugins/core-plugins-base-server-internal" - ], - "@kbn/core-plugins-base-server-internal/*": [ - "packages/core/plugins/core-plugins-base-server-internal/*" - ], - "@kbn/core-plugins-browser": [ - "packages/core/plugins/core-plugins-browser" - ], - "@kbn/core-plugins-browser/*": [ - "packages/core/plugins/core-plugins-browser/*" - ], - "@kbn/core-plugins-browser-internal": [ - "packages/core/plugins/core-plugins-browser-internal" - ], - "@kbn/core-plugins-browser-internal/*": [ - "packages/core/plugins/core-plugins-browser-internal/*" - ], - "@kbn/core-plugins-browser-mocks": [ - "packages/core/plugins/core-plugins-browser-mocks" - ], - "@kbn/core-plugins-browser-mocks/*": [ - "packages/core/plugins/core-plugins-browser-mocks/*" - ], - "@kbn/core-plugins-contracts-browser": [ - "packages/core/plugins/core-plugins-contracts-browser" - ], - "@kbn/core-plugins-contracts-browser/*": [ - "packages/core/plugins/core-plugins-contracts-browser/*" - ], - "@kbn/core-plugins-contracts-server": [ - "packages/core/plugins/core-plugins-contracts-server" - ], - "@kbn/core-plugins-contracts-server/*": [ - "packages/core/plugins/core-plugins-contracts-server/*" - ], - "@kbn/core-plugins-server": [ - "packages/core/plugins/core-plugins-server" - ], - "@kbn/core-plugins-server/*": [ - "packages/core/plugins/core-plugins-server/*" - ], - "@kbn/core-plugins-server-internal": [ - "packages/core/plugins/core-plugins-server-internal" - ], - "@kbn/core-plugins-server-internal/*": [ - "packages/core/plugins/core-plugins-server-internal/*" - ], - "@kbn/core-plugins-server-mocks": [ - "packages/core/plugins/core-plugins-server-mocks" - ], - "@kbn/core-plugins-server-mocks/*": [ - "packages/core/plugins/core-plugins-server-mocks/*" - ], - "@kbn/core-preboot-server": [ - "packages/core/preboot/core-preboot-server" - ], - "@kbn/core-preboot-server/*": [ - "packages/core/preboot/core-preboot-server/*" - ], - "@kbn/core-preboot-server-internal": [ - "packages/core/preboot/core-preboot-server-internal" - ], - "@kbn/core-preboot-server-internal/*": [ - "packages/core/preboot/core-preboot-server-internal/*" - ], - "@kbn/core-preboot-server-mocks": [ - "packages/core/preboot/core-preboot-server-mocks" - ], - "@kbn/core-preboot-server-mocks/*": [ - "packages/core/preboot/core-preboot-server-mocks/*" - ], - "@kbn/core-provider-plugin": [ - "test/plugin_functional/plugins/core_provider_plugin" - ], - "@kbn/core-provider-plugin/*": [ - "test/plugin_functional/plugins/core_provider_plugin/*" - ], - "@kbn/core-rendering-browser-internal": [ - "packages/core/rendering/core-rendering-browser-internal" - ], - "@kbn/core-rendering-browser-internal/*": [ - "packages/core/rendering/core-rendering-browser-internal/*" - ], - "@kbn/core-rendering-browser-mocks": [ - "packages/core/rendering/core-rendering-browser-mocks" - ], - "@kbn/core-rendering-browser-mocks/*": [ - "packages/core/rendering/core-rendering-browser-mocks/*" - ], - "@kbn/core-rendering-server-internal": [ - "packages/core/rendering/core-rendering-server-internal" - ], - "@kbn/core-rendering-server-internal/*": [ - "packages/core/rendering/core-rendering-server-internal/*" - ], - "@kbn/core-rendering-server-mocks": [ - "packages/core/rendering/core-rendering-server-mocks" - ], - "@kbn/core-rendering-server-mocks/*": [ - "packages/core/rendering/core-rendering-server-mocks/*" - ], - "@kbn/core-root-browser-internal": [ - "packages/core/root/core-root-browser-internal" - ], - "@kbn/core-root-browser-internal/*": [ - "packages/core/root/core-root-browser-internal/*" - ], - "@kbn/core-root-server-internal": [ - "packages/core/root/core-root-server-internal" - ], - "@kbn/core-root-server-internal/*": [ - "packages/core/root/core-root-server-internal/*" - ], - "@kbn/core-saved-objects-api-browser": [ - "packages/core/saved-objects/core-saved-objects-api-browser" - ], - "@kbn/core-saved-objects-api-browser/*": [ - "packages/core/saved-objects/core-saved-objects-api-browser/*" - ], - "@kbn/core-saved-objects-api-server": [ - "packages/core/saved-objects/core-saved-objects-api-server" - ], - "@kbn/core-saved-objects-api-server/*": [ - "packages/core/saved-objects/core-saved-objects-api-server/*" - ], - "@kbn/core-saved-objects-api-server-internal": [ - "packages/core/saved-objects/core-saved-objects-api-server-internal" - ], - "@kbn/core-saved-objects-api-server-internal/*": [ - "packages/core/saved-objects/core-saved-objects-api-server-internal/*" - ], - "@kbn/core-saved-objects-api-server-mocks": [ - "packages/core/saved-objects/core-saved-objects-api-server-mocks" - ], - "@kbn/core-saved-objects-api-server-mocks/*": [ - "packages/core/saved-objects/core-saved-objects-api-server-mocks/*" - ], - "@kbn/core-saved-objects-base-server-internal": [ - "packages/core/saved-objects/core-saved-objects-base-server-internal" - ], - "@kbn/core-saved-objects-base-server-internal/*": [ - "packages/core/saved-objects/core-saved-objects-base-server-internal/*" - ], - "@kbn/core-saved-objects-base-server-mocks": [ - "packages/core/saved-objects/core-saved-objects-base-server-mocks" - ], - "@kbn/core-saved-objects-base-server-mocks/*": [ - "packages/core/saved-objects/core-saved-objects-base-server-mocks/*" - ], - "@kbn/core-saved-objects-browser": [ - "packages/core/saved-objects/core-saved-objects-browser" - ], - "@kbn/core-saved-objects-browser/*": [ - "packages/core/saved-objects/core-saved-objects-browser/*" - ], - "@kbn/core-saved-objects-browser-internal": [ - "packages/core/saved-objects/core-saved-objects-browser-internal" - ], - "@kbn/core-saved-objects-browser-internal/*": [ - "packages/core/saved-objects/core-saved-objects-browser-internal/*" - ], - "@kbn/core-saved-objects-browser-mocks": [ - "packages/core/saved-objects/core-saved-objects-browser-mocks" - ], - "@kbn/core-saved-objects-browser-mocks/*": [ - "packages/core/saved-objects/core-saved-objects-browser-mocks/*" - ], - "@kbn/core-saved-objects-common": [ - "packages/core/saved-objects/core-saved-objects-common" - ], - "@kbn/core-saved-objects-common/*": [ - "packages/core/saved-objects/core-saved-objects-common/*" - ], - "@kbn/core-saved-objects-import-export-server-internal": [ - "packages/core/saved-objects/core-saved-objects-import-export-server-internal" - ], - "@kbn/core-saved-objects-import-export-server-internal/*": [ - "packages/core/saved-objects/core-saved-objects-import-export-server-internal/*" - ], - "@kbn/core-saved-objects-import-export-server-mocks": [ - "packages/core/saved-objects/core-saved-objects-import-export-server-mocks" - ], - "@kbn/core-saved-objects-import-export-server-mocks/*": [ - "packages/core/saved-objects/core-saved-objects-import-export-server-mocks/*" - ], - "@kbn/core-saved-objects-migration-server-internal": [ - "packages/core/saved-objects/core-saved-objects-migration-server-internal" - ], - "@kbn/core-saved-objects-migration-server-internal/*": [ - "packages/core/saved-objects/core-saved-objects-migration-server-internal/*" - ], - "@kbn/core-saved-objects-migration-server-mocks": [ - "packages/core/saved-objects/core-saved-objects-migration-server-mocks" - ], - "@kbn/core-saved-objects-migration-server-mocks/*": [ - "packages/core/saved-objects/core-saved-objects-migration-server-mocks/*" - ], - "@kbn/core-saved-objects-server": [ - "packages/core/saved-objects/core-saved-objects-server" - ], - "@kbn/core-saved-objects-server/*": [ - "packages/core/saved-objects/core-saved-objects-server/*" - ], - "@kbn/core-saved-objects-server-internal": [ - "packages/core/saved-objects/core-saved-objects-server-internal" - ], - "@kbn/core-saved-objects-server-internal/*": [ - "packages/core/saved-objects/core-saved-objects-server-internal/*" - ], - "@kbn/core-saved-objects-server-mocks": [ - "packages/core/saved-objects/core-saved-objects-server-mocks" - ], - "@kbn/core-saved-objects-server-mocks/*": [ - "packages/core/saved-objects/core-saved-objects-server-mocks/*" - ], - "@kbn/core-saved-objects-utils-server": [ - "packages/core/saved-objects/core-saved-objects-utils-server" - ], - "@kbn/core-saved-objects-utils-server/*": [ - "packages/core/saved-objects/core-saved-objects-utils-server/*" - ], - "@kbn/core-status-common": [ - "packages/core/status/core-status-common" - ], - "@kbn/core-status-common/*": [ - "packages/core/status/core-status-common/*" - ], - "@kbn/core-status-common-internal": [ - "packages/core/status/core-status-common-internal" - ], - "@kbn/core-status-common-internal/*": [ - "packages/core/status/core-status-common-internal/*" - ], - "@kbn/core-status-server": [ - "packages/core/status/core-status-server" - ], - "@kbn/core-status-server/*": [ - "packages/core/status/core-status-server/*" - ], - "@kbn/core-status-server-internal": [ - "packages/core/status/core-status-server-internal" - ], - "@kbn/core-status-server-internal/*": [ - "packages/core/status/core-status-server-internal/*" - ], - "@kbn/core-status-server-mocks": [ - "packages/core/status/core-status-server-mocks" - ], - "@kbn/core-status-server-mocks/*": [ - "packages/core/status/core-status-server-mocks/*" - ], - "@kbn/core-test-helpers-deprecations-getters": [ - "packages/core/test-helpers/core-test-helpers-deprecations-getters" - ], - "@kbn/core-test-helpers-deprecations-getters/*": [ - "packages/core/test-helpers/core-test-helpers-deprecations-getters/*" - ], - "@kbn/core-test-helpers-http-setup-browser": [ - "packages/core/test-helpers/core-test-helpers-http-setup-browser" - ], - "@kbn/core-test-helpers-http-setup-browser/*": [ - "packages/core/test-helpers/core-test-helpers-http-setup-browser/*" - ], - "@kbn/core-test-helpers-kbn-server": [ - "packages/core/test-helpers/core-test-helpers-kbn-server" - ], - "@kbn/core-test-helpers-kbn-server/*": [ - "packages/core/test-helpers/core-test-helpers-kbn-server/*" - ], - "@kbn/core-test-helpers-model-versions": [ - "packages/core/test-helpers/core-test-helpers-model-versions" - ], - "@kbn/core-test-helpers-model-versions/*": [ - "packages/core/test-helpers/core-test-helpers-model-versions/*" - ], - "@kbn/core-test-helpers-so-type-serializer": [ - "packages/core/test-helpers/core-test-helpers-so-type-serializer" - ], - "@kbn/core-test-helpers-so-type-serializer/*": [ - "packages/core/test-helpers/core-test-helpers-so-type-serializer/*" - ], - "@kbn/core-test-helpers-test-utils": [ - "packages/core/test-helpers/core-test-helpers-test-utils" - ], - "@kbn/core-test-helpers-test-utils/*": [ - "packages/core/test-helpers/core-test-helpers-test-utils/*" - ], - "@kbn/core-theme-browser": [ - "packages/core/theme/core-theme-browser" - ], - "@kbn/core-theme-browser/*": [ - "packages/core/theme/core-theme-browser/*" - ], - "@kbn/core-theme-browser-internal": [ - "packages/core/theme/core-theme-browser-internal" - ], - "@kbn/core-theme-browser-internal/*": [ - "packages/core/theme/core-theme-browser-internal/*" - ], - "@kbn/core-theme-browser-mocks": [ - "packages/core/theme/core-theme-browser-mocks" - ], - "@kbn/core-theme-browser-mocks/*": [ - "packages/core/theme/core-theme-browser-mocks/*" - ], - "@kbn/core-ui-settings-browser": [ - "packages/core/ui-settings/core-ui-settings-browser" - ], - "@kbn/core-ui-settings-browser/*": [ - "packages/core/ui-settings/core-ui-settings-browser/*" - ], - "@kbn/core-ui-settings-browser-internal": [ - "packages/core/ui-settings/core-ui-settings-browser-internal" - ], - "@kbn/core-ui-settings-browser-internal/*": [ - "packages/core/ui-settings/core-ui-settings-browser-internal/*" - ], - "@kbn/core-ui-settings-browser-mocks": [ - "packages/core/ui-settings/core-ui-settings-browser-mocks" - ], - "@kbn/core-ui-settings-browser-mocks/*": [ - "packages/core/ui-settings/core-ui-settings-browser-mocks/*" - ], - "@kbn/core-ui-settings-common": [ - "packages/core/ui-settings/core-ui-settings-common" - ], - "@kbn/core-ui-settings-common/*": [ - "packages/core/ui-settings/core-ui-settings-common/*" - ], - "@kbn/core-ui-settings-server": [ - "packages/core/ui-settings/core-ui-settings-server" - ], - "@kbn/core-ui-settings-server/*": [ - "packages/core/ui-settings/core-ui-settings-server/*" - ], - "@kbn/core-ui-settings-server-internal": [ - "packages/core/ui-settings/core-ui-settings-server-internal" - ], - "@kbn/core-ui-settings-server-internal/*": [ - "packages/core/ui-settings/core-ui-settings-server-internal/*" - ], - "@kbn/core-ui-settings-server-mocks": [ - "packages/core/ui-settings/core-ui-settings-server-mocks" - ], - "@kbn/core-ui-settings-server-mocks/*": [ - "packages/core/ui-settings/core-ui-settings-server-mocks/*" - ], - "@kbn/core-usage-data-base-server-internal": [ - "packages/core/usage-data/core-usage-data-base-server-internal" - ], - "@kbn/core-usage-data-base-server-internal/*": [ - "packages/core/usage-data/core-usage-data-base-server-internal/*" - ], - "@kbn/core-usage-data-server": [ - "packages/core/usage-data/core-usage-data-server" - ], - "@kbn/core-usage-data-server/*": [ - "packages/core/usage-data/core-usage-data-server/*" - ], - "@kbn/core-usage-data-server-internal": [ - "packages/core/usage-data/core-usage-data-server-internal" - ], - "@kbn/core-usage-data-server-internal/*": [ - "packages/core/usage-data/core-usage-data-server-internal/*" - ], - "@kbn/core-usage-data-server-mocks": [ - "packages/core/usage-data/core-usage-data-server-mocks" - ], - "@kbn/core-usage-data-server-mocks/*": [ - "packages/core/usage-data/core-usage-data-server-mocks/*" - ], - "@kbn/core-user-settings-server": [ - "packages/core/user-settings/core-user-settings-server" - ], - "@kbn/core-user-settings-server/*": [ - "packages/core/user-settings/core-user-settings-server/*" - ], - "@kbn/core-user-settings-server-internal": [ - "packages/core/user-settings/core-user-settings-server-internal" - ], - "@kbn/core-user-settings-server-internal/*": [ - "packages/core/user-settings/core-user-settings-server-internal/*" - ], - "@kbn/core-user-settings-server-mocks": [ - "packages/core/user-settings/core-user-settings-server-mocks" - ], - "@kbn/core-user-settings-server-mocks/*": [ - "packages/core/user-settings/core-user-settings-server-mocks/*" - ], - "@kbn/cross-cluster-replication-plugin": [ - "x-pack/plugins/cross_cluster_replication" - ], - "@kbn/cross-cluster-replication-plugin/*": [ - "x-pack/plugins/cross_cluster_replication/*" - ], - "@kbn/crypto": [ - "packages/kbn-crypto" - ], - "@kbn/crypto/*": [ - "packages/kbn-crypto/*" - ], - "@kbn/crypto-browser": [ - "packages/kbn-crypto-browser" - ], - "@kbn/crypto-browser/*": [ - "packages/kbn-crypto-browser/*" - ], - "@kbn/custom-branding-plugin": [ - "x-pack/plugins/custom_branding" - ], - "@kbn/custom-branding-plugin/*": [ - "x-pack/plugins/custom_branding/*" - ], - "@kbn/custom-icons": [ - "packages/kbn-custom-icons" - ], - "@kbn/custom-icons/*": [ - "packages/kbn-custom-icons/*" - ], - "@kbn/custom-integrations": [ - "packages/kbn-custom-integrations" - ], - "@kbn/custom-integrations/*": [ - "packages/kbn-custom-integrations/*" - ], - "@kbn/custom-integrations-plugin": [ - "src/plugins/custom_integrations" - ], - "@kbn/custom-integrations-plugin/*": [ - "src/plugins/custom_integrations/*" - ], - "@kbn/cypress-config": [ - "packages/kbn-cypress-config" - ], - "@kbn/cypress-config/*": [ - "packages/kbn-cypress-config/*" - ], - "@kbn/dashboard-enhanced-plugin": [ - "x-pack/plugins/dashboard_enhanced" - ], - "@kbn/dashboard-enhanced-plugin/*": [ - "x-pack/plugins/dashboard_enhanced/*" - ], - "@kbn/dashboard-plugin": [ - "src/plugins/dashboard" - ], - "@kbn/dashboard-plugin/*": [ - "src/plugins/dashboard/*" - ], - "@kbn/data-plugin": [ - "src/plugins/data" - ], - "@kbn/data-plugin/*": [ - "src/plugins/data/*" - ], - "@kbn/data-search-plugin": [ - "test/plugin_functional/plugins/data_search" - ], - "@kbn/data-search-plugin/*": [ - "test/plugin_functional/plugins/data_search/*" - ], - "@kbn/data-service": [ - "packages/kbn-data-service" - ], - "@kbn/data-service/*": [ - "packages/kbn-data-service/*" - ], - "@kbn/data-view-editor-plugin": [ - "src/plugins/data_view_editor" - ], - "@kbn/data-view-editor-plugin/*": [ - "src/plugins/data_view_editor/*" - ], - "@kbn/data-view-field-editor-example-plugin": [ - "examples/data_view_field_editor_example" - ], - "@kbn/data-view-field-editor-example-plugin/*": [ - "examples/data_view_field_editor_example/*" - ], - "@kbn/data-view-field-editor-plugin": [ - "src/plugins/data_view_field_editor" - ], - "@kbn/data-view-field-editor-plugin/*": [ - "src/plugins/data_view_field_editor/*" - ], - "@kbn/data-view-management-plugin": [ - "src/plugins/data_view_management" - ], - "@kbn/data-view-management-plugin/*": [ - "src/plugins/data_view_management/*" - ], - "@kbn/data-views-plugin": [ - "src/plugins/data_views" - ], - "@kbn/data-views-plugin/*": [ - "src/plugins/data_views/*" - ], - "@kbn/data-visualizer-plugin": [ - "x-pack/plugins/data_visualizer" - ], - "@kbn/data-visualizer-plugin/*": [ - "x-pack/plugins/data_visualizer/*" - ], - "@kbn/dataset-quality-plugin": [ - "x-pack/plugins/dataset_quality" - ], - "@kbn/dataset-quality-plugin/*": [ - "x-pack/plugins/dataset_quality/*" - ], - "@kbn/datemath": [ - "packages/kbn-datemath" - ], - "@kbn/datemath/*": [ - "packages/kbn-datemath/*" - ], - "@kbn/deeplinks-analytics": [ - "packages/deeplinks/analytics" - ], - "@kbn/deeplinks-analytics/*": [ - "packages/deeplinks/analytics/*" - ], - "@kbn/deeplinks-devtools": [ - "packages/deeplinks/devtools" - ], - "@kbn/deeplinks-devtools/*": [ - "packages/deeplinks/devtools/*" - ], - "@kbn/deeplinks-management": [ - "packages/deeplinks/management" - ], - "@kbn/deeplinks-management/*": [ - "packages/deeplinks/management/*" - ], - "@kbn/deeplinks-ml": [ - "packages/deeplinks/ml" - ], - "@kbn/deeplinks-ml/*": [ - "packages/deeplinks/ml/*" - ], - "@kbn/deeplinks-observability": [ - "packages/deeplinks/observability" - ], - "@kbn/deeplinks-observability/*": [ - "packages/deeplinks/observability/*" - ], - "@kbn/deeplinks-search": [ - "packages/deeplinks/search" - ], - "@kbn/deeplinks-search/*": [ - "packages/deeplinks/search/*" - ], - "@kbn/default-nav-analytics": [ - "packages/default-nav/analytics" - ], - "@kbn/default-nav-analytics/*": [ - "packages/default-nav/analytics/*" - ], - "@kbn/default-nav-devtools": [ - "packages/default-nav/devtools" - ], - "@kbn/default-nav-devtools/*": [ - "packages/default-nav/devtools/*" - ], - "@kbn/default-nav-management": [ - "packages/default-nav/management" - ], - "@kbn/default-nav-management/*": [ - "packages/default-nav/management/*" - ], - "@kbn/default-nav-ml": [ - "packages/default-nav/ml" - ], - "@kbn/default-nav-ml/*": [ - "packages/default-nav/ml/*" - ], - "@kbn/dev-cli-errors": [ - "packages/kbn-dev-cli-errors" - ], - "@kbn/dev-cli-errors/*": [ - "packages/kbn-dev-cli-errors/*" - ], - "@kbn/dev-cli-runner": [ - "packages/kbn-dev-cli-runner" - ], - "@kbn/dev-cli-runner/*": [ - "packages/kbn-dev-cli-runner/*" - ], - "@kbn/dev-proc-runner": [ - "packages/kbn-dev-proc-runner" - ], - "@kbn/dev-proc-runner/*": [ - "packages/kbn-dev-proc-runner/*" - ], - "@kbn/dev-tools-plugin": [ - "src/plugins/dev_tools" - ], - "@kbn/dev-tools-plugin/*": [ - "src/plugins/dev_tools/*" - ], - "@kbn/dev-utils": [ - "packages/kbn-dev-utils" - ], - "@kbn/dev-utils/*": [ - "packages/kbn-dev-utils/*" - ], - "@kbn/developer-examples-plugin": [ - "examples/developer_examples" - ], - "@kbn/developer-examples-plugin/*": [ - "examples/developer_examples/*" - ], - "@kbn/discover-customization-examples-plugin": [ - "examples/discover_customization_examples" - ], - "@kbn/discover-customization-examples-plugin/*": [ - "examples/discover_customization_examples/*" - ], - "@kbn/discover-enhanced-plugin": [ - "x-pack/plugins/discover_enhanced" - ], - "@kbn/discover-enhanced-plugin/*": [ - "x-pack/plugins/discover_enhanced/*" - ], - "@kbn/discover-plugin": [ - "src/plugins/discover" - ], - "@kbn/discover-plugin/*": [ - "src/plugins/discover/*" - ], - "@kbn/discover-utils": [ - "packages/kbn-discover-utils" - ], - "@kbn/discover-utils/*": [ - "packages/kbn-discover-utils/*" - ], - "@kbn/doc-links": [ - "packages/kbn-doc-links" - ], - "@kbn/doc-links/*": [ - "packages/kbn-doc-links/*" - ], - "@kbn/docs-utils": [ - "packages/kbn-docs-utils" - ], - "@kbn/docs-utils/*": [ - "packages/kbn-docs-utils/*" - ], - "@kbn/dom-drag-drop": [ - "packages/kbn-dom-drag-drop" - ], - "@kbn/dom-drag-drop/*": [ - "packages/kbn-dom-drag-drop/*" - ], - "@kbn/ebt-tools": [ - "packages/kbn-ebt-tools" - ], - "@kbn/ebt-tools/*": [ - "packages/kbn-ebt-tools/*" - ], - "@kbn/ecs": [ - "packages/kbn-ecs" - ], - "@kbn/ecs/*": [ - "packages/kbn-ecs/*" - ], - "@kbn/ecs-data-quality-dashboard": [ - "x-pack/packages/security-solution/ecs_data_quality_dashboard" - ], - "@kbn/ecs-data-quality-dashboard/*": [ - "x-pack/packages/security-solution/ecs_data_quality_dashboard/*" - ], - "@kbn/ecs-data-quality-dashboard-plugin": [ - "x-pack/plugins/ecs_data_quality_dashboard" - ], - "@kbn/ecs-data-quality-dashboard-plugin/*": [ - "x-pack/plugins/ecs_data_quality_dashboard/*" - ], - "@kbn/elastic-agent-utils": [ - "packages/kbn-elastic-agent-utils" - ], - "@kbn/elastic-agent-utils/*": [ - "packages/kbn-elastic-agent-utils/*" - ], - "@kbn/elastic-assistant": [ - "x-pack/packages/kbn-elastic-assistant" - ], - "@kbn/elastic-assistant/*": [ - "x-pack/packages/kbn-elastic-assistant/*" - ], - "@kbn/elastic-assistant-common": [ - "x-pack/packages/kbn-elastic-assistant-common" - ], - "@kbn/elastic-assistant-common/*": [ - "x-pack/packages/kbn-elastic-assistant-common/*" - ], - "@kbn/elastic-assistant-plugin": [ - "x-pack/plugins/elastic_assistant" - ], - "@kbn/elastic-assistant-plugin/*": [ - "x-pack/plugins/elastic_assistant/*" - ], - "@kbn/elasticsearch-client-plugin": [ - "test/plugin_functional/plugins/elasticsearch_client_plugin" - ], - "@kbn/elasticsearch-client-plugin/*": [ - "test/plugin_functional/plugins/elasticsearch_client_plugin/*" - ], - "@kbn/elasticsearch-client-xpack-plugin": [ - "x-pack/test/plugin_api_integration/plugins/elasticsearch_client" - ], - "@kbn/elasticsearch-client-xpack-plugin/*": [ - "x-pack/test/plugin_api_integration/plugins/elasticsearch_client/*" - ], - "@kbn/embeddable-enhanced-plugin": [ - "x-pack/plugins/embeddable_enhanced" - ], - "@kbn/embeddable-enhanced-plugin/*": [ - "x-pack/plugins/embeddable_enhanced/*" - ], - "@kbn/embeddable-examples-plugin": [ - "examples/embeddable_examples" - ], - "@kbn/embeddable-examples-plugin/*": [ - "examples/embeddable_examples/*" - ], - "@kbn/embeddable-explorer-plugin": [ - "examples/embeddable_explorer" - ], - "@kbn/embeddable-explorer-plugin/*": [ - "examples/embeddable_explorer/*" - ], - "@kbn/embeddable-plugin": [ - "src/plugins/embeddable" - ], - "@kbn/embeddable-plugin/*": [ - "src/plugins/embeddable/*" - ], - "@kbn/embedded-lens-example-plugin": [ - "x-pack/examples/embedded_lens_example" - ], - "@kbn/embedded-lens-example-plugin/*": [ - "x-pack/examples/embedded_lens_example/*" - ], - "@kbn/encrypted-saved-objects-plugin": [ - "x-pack/plugins/encrypted_saved_objects" - ], - "@kbn/encrypted-saved-objects-plugin/*": [ - "x-pack/plugins/encrypted_saved_objects/*" - ], - "@kbn/enterprise-search-plugin": [ - "x-pack/plugins/enterprise_search" - ], - "@kbn/enterprise-search-plugin/*": [ - "x-pack/plugins/enterprise_search/*" - ], - "@kbn/error-boundary-example-plugin": [ - "examples/error_boundary" - ], - "@kbn/error-boundary-example-plugin/*": [ - "examples/error_boundary/*" - ], - "@kbn/es": [ - "packages/kbn-es" - ], - "@kbn/es/*": [ - "packages/kbn-es/*" - ], - "@kbn/es-archiver": [ - "packages/kbn-es-archiver" - ], - "@kbn/es-archiver/*": [ - "packages/kbn-es-archiver/*" - ], - "@kbn/es-errors": [ - "packages/kbn-es-errors" - ], - "@kbn/es-errors/*": [ - "packages/kbn-es-errors/*" - ], - "@kbn/es-query": [ - "packages/kbn-es-query" - ], - "@kbn/es-query/*": [ - "packages/kbn-es-query/*" - ], - "@kbn/es-types": [ - "packages/kbn-es-types" - ], - "@kbn/es-types/*": [ - "packages/kbn-es-types/*" - ], - "@kbn/es-ui-shared-plugin": [ - "src/plugins/es_ui_shared" - ], - "@kbn/es-ui-shared-plugin/*": [ - "src/plugins/es_ui_shared/*" - ], - "@kbn/eslint-config": [ - "packages/kbn-eslint-config" - ], - "@kbn/eslint-config/*": [ - "packages/kbn-eslint-config/*" - ], - "@kbn/eslint-plugin-disable": [ - "packages/kbn-eslint-plugin-disable" - ], - "@kbn/eslint-plugin-disable/*": [ - "packages/kbn-eslint-plugin-disable/*" - ], - "@kbn/eslint-plugin-eslint": [ - "packages/kbn-eslint-plugin-eslint" - ], - "@kbn/eslint-plugin-eslint/*": [ - "packages/kbn-eslint-plugin-eslint/*" - ], - "@kbn/eslint-plugin-i18n": [ - "packages/kbn-eslint-plugin-i18n" - ], - "@kbn/eslint-plugin-i18n/*": [ - "packages/kbn-eslint-plugin-i18n/*" - ], - "@kbn/eslint-plugin-imports": [ - "packages/kbn-eslint-plugin-imports" - ], - "@kbn/eslint-plugin-imports/*": [ - "packages/kbn-eslint-plugin-imports/*" - ], - "@kbn/eslint-plugin-telemetry": [ - "packages/kbn-eslint-plugin-telemetry" - ], - "@kbn/eslint-plugin-telemetry/*": [ - "packages/kbn-eslint-plugin-telemetry/*" - ], - "@kbn/eso-model-version-example": [ - "examples/eso_model_version_example" - ], - "@kbn/eso-model-version-example/*": [ - "examples/eso_model_version_example/*" - ], - "@kbn/eso-plugin": [ - "x-pack/test/encrypted_saved_objects_api_integration/plugins/api_consumer_plugin" - ], - "@kbn/eso-plugin/*": [ - "x-pack/test/encrypted_saved_objects_api_integration/plugins/api_consumer_plugin/*" - ], - "@kbn/event-annotation-common": [ - "packages/kbn-event-annotation-common" - ], - "@kbn/event-annotation-common/*": [ - "packages/kbn-event-annotation-common/*" - ], - "@kbn/event-annotation-components": [ - "packages/kbn-event-annotation-components" - ], - "@kbn/event-annotation-components/*": [ - "packages/kbn-event-annotation-components/*" - ], - "@kbn/event-annotation-listing-plugin": [ - "src/plugins/event_annotation_listing" - ], - "@kbn/event-annotation-listing-plugin/*": [ - "src/plugins/event_annotation_listing/*" - ], - "@kbn/event-annotation-plugin": [ - "src/plugins/event_annotation" - ], - "@kbn/event-annotation-plugin/*": [ - "src/plugins/event_annotation/*" - ], - "@kbn/event-log-fixture-plugin": [ - "x-pack/test/plugin_api_integration/plugins/event_log" - ], - "@kbn/event-log-fixture-plugin/*": [ - "x-pack/test/plugin_api_integration/plugins/event_log/*" - ], - "@kbn/event-log-plugin": [ - "x-pack/plugins/event_log" - ], - "@kbn/event-log-plugin/*": [ - "x-pack/plugins/event_log/*" - ], - "@kbn/expandable-flyout": [ - "packages/kbn-expandable-flyout" - ], - "@kbn/expandable-flyout/*": [ - "packages/kbn-expandable-flyout/*" - ], - "@kbn/expect": [ - "packages/kbn-expect" - ], - "@kbn/expect/*": [ - "packages/kbn-expect/*" - ], - "@kbn/exploratory-view-example-plugin": [ - "x-pack/examples/exploratory_view_example" - ], - "@kbn/exploratory-view-example-plugin/*": [ - "x-pack/examples/exploratory_view_example/*" - ], - "@kbn/exploratory-view-plugin": [ - "x-pack/plugins/exploratory_view" - ], - "@kbn/exploratory-view-plugin/*": [ - "x-pack/plugins/exploratory_view/*" - ], - "@kbn/expression-error-plugin": [ - "src/plugins/expression_error" - ], - "@kbn/expression-error-plugin/*": [ - "src/plugins/expression_error/*" - ], - "@kbn/expression-gauge-plugin": [ - "src/plugins/chart_expressions/expression_gauge" - ], - "@kbn/expression-gauge-plugin/*": [ - "src/plugins/chart_expressions/expression_gauge/*" - ], - "@kbn/expression-heatmap-plugin": [ - "src/plugins/chart_expressions/expression_heatmap" - ], - "@kbn/expression-heatmap-plugin/*": [ - "src/plugins/chart_expressions/expression_heatmap/*" - ], - "@kbn/expression-image-plugin": [ - "src/plugins/expression_image" - ], - "@kbn/expression-image-plugin/*": [ - "src/plugins/expression_image/*" - ], - "@kbn/expression-legacy-metric-vis-plugin": [ - "src/plugins/chart_expressions/expression_legacy_metric" - ], - "@kbn/expression-legacy-metric-vis-plugin/*": [ - "src/plugins/chart_expressions/expression_legacy_metric/*" - ], - "@kbn/expression-metric-plugin": [ - "src/plugins/expression_metric" - ], - "@kbn/expression-metric-plugin/*": [ - "src/plugins/expression_metric/*" - ], - "@kbn/expression-metric-vis-plugin": [ - "src/plugins/chart_expressions/expression_metric" - ], - "@kbn/expression-metric-vis-plugin/*": [ - "src/plugins/chart_expressions/expression_metric/*" - ], - "@kbn/expression-partition-vis-plugin": [ - "src/plugins/chart_expressions/expression_partition_vis" - ], - "@kbn/expression-partition-vis-plugin/*": [ - "src/plugins/chart_expressions/expression_partition_vis/*" - ], - "@kbn/expression-repeat-image-plugin": [ - "src/plugins/expression_repeat_image" - ], - "@kbn/expression-repeat-image-plugin/*": [ - "src/plugins/expression_repeat_image/*" - ], - "@kbn/expression-reveal-image-plugin": [ - "src/plugins/expression_reveal_image" - ], - "@kbn/expression-reveal-image-plugin/*": [ - "src/plugins/expression_reveal_image/*" - ], - "@kbn/expression-shape-plugin": [ - "src/plugins/expression_shape" - ], - "@kbn/expression-shape-plugin/*": [ - "src/plugins/expression_shape/*" - ], - "@kbn/expression-tagcloud-plugin": [ - "src/plugins/chart_expressions/expression_tagcloud" - ], - "@kbn/expression-tagcloud-plugin/*": [ - "src/plugins/chart_expressions/expression_tagcloud/*" - ], - "@kbn/expression-xy-plugin": [ - "src/plugins/chart_expressions/expression_xy" - ], - "@kbn/expression-xy-plugin/*": [ - "src/plugins/chart_expressions/expression_xy/*" - ], - "@kbn/expressions-explorer-plugin": [ - "examples/expressions_explorer" - ], - "@kbn/expressions-explorer-plugin/*": [ - "examples/expressions_explorer/*" - ], - "@kbn/expressions-plugin": [ - "src/plugins/expressions" - ], - "@kbn/expressions-plugin/*": [ - "src/plugins/expressions/*" - ], - "@kbn/failed-test-reporter-cli": [ - "packages/kbn-failed-test-reporter-cli" - ], - "@kbn/failed-test-reporter-cli/*": [ - "packages/kbn-failed-test-reporter-cli/*" - ], - "@kbn/feature-controls-examples-plugin": [ - "examples/feature_control_examples" - ], - "@kbn/feature-controls-examples-plugin/*": [ - "examples/feature_control_examples/*" - ], - "@kbn/feature-usage-test-plugin": [ - "x-pack/test/plugin_api_integration/plugins/feature_usage_test" - ], - "@kbn/feature-usage-test-plugin/*": [ - "x-pack/test/plugin_api_integration/plugins/feature_usage_test/*" - ], - "@kbn/features-plugin": [ - "x-pack/plugins/features" - ], - "@kbn/features-plugin/*": [ - "x-pack/plugins/features/*" - ], - "@kbn/fec-alerts-test-plugin": [ - "x-pack/test/functional_execution_context/plugins/alerts" - ], - "@kbn/fec-alerts-test-plugin/*": [ - "x-pack/test/functional_execution_context/plugins/alerts/*" - ], - "@kbn/field-formats-example-plugin": [ - "examples/field_formats_example" - ], - "@kbn/field-formats-example-plugin/*": [ - "examples/field_formats_example/*" - ], - "@kbn/field-formats-plugin": [ - "src/plugins/field_formats" - ], - "@kbn/field-formats-plugin/*": [ - "src/plugins/field_formats/*" - ], - "@kbn/field-types": [ - "packages/kbn-field-types" - ], - "@kbn/field-types/*": [ - "packages/kbn-field-types/*" - ], - "@kbn/field-utils": [ - "packages/kbn-field-utils" - ], - "@kbn/field-utils/*": [ - "packages/kbn-field-utils/*" - ], - "@kbn/file-upload-plugin": [ - "x-pack/plugins/file_upload" - ], - "@kbn/file-upload-plugin/*": [ - "x-pack/plugins/file_upload/*" - ], - "@kbn/files-example-plugin": [ - "examples/files_example" - ], - "@kbn/files-example-plugin/*": [ - "examples/files_example/*" - ], - "@kbn/files-management-plugin": [ - "src/plugins/files_management" - ], - "@kbn/files-management-plugin/*": [ - "src/plugins/files_management/*" - ], - "@kbn/files-plugin": [ - "src/plugins/files" - ], - "@kbn/files-plugin/*": [ - "src/plugins/files/*" - ], - "@kbn/find-used-node-modules": [ - "packages/kbn-find-used-node-modules" - ], - "@kbn/find-used-node-modules/*": [ - "packages/kbn-find-used-node-modules/*" - ], - "@kbn/fleet-plugin": [ - "x-pack/plugins/fleet" - ], - "@kbn/fleet-plugin/*": [ - "x-pack/plugins/fleet/*" - ], - "@kbn/flot-charts": [ - "packages/kbn-flot-charts" - ], - "@kbn/flot-charts/*": [ - "packages/kbn-flot-charts/*" - ], - "@kbn/foo-plugin": [ - "x-pack/test/ui_capabilities/common/plugins/foo_plugin" - ], - "@kbn/foo-plugin/*": [ - "x-pack/test/ui_capabilities/common/plugins/foo_plugin/*" - ], - "@kbn/ftr-apis-plugin": [ - "src/plugins/ftr_apis" - ], - "@kbn/ftr-apis-plugin/*": [ - "src/plugins/ftr_apis/*" - ], - "@kbn/ftr-common-functional-services": [ - "packages/kbn-ftr-common-functional-services" - ], - "@kbn/ftr-common-functional-services/*": [ - "packages/kbn-ftr-common-functional-services/*" - ], - "@kbn/ftr-common-functional-ui-services": [ - "packages/kbn-ftr-common-functional-ui-services" - ], - "@kbn/ftr-common-functional-ui-services/*": [ - "packages/kbn-ftr-common-functional-ui-services/*" - ], - "@kbn/ftr-screenshot-filename": [ - "packages/kbn-ftr-screenshot-filename" - ], - "@kbn/ftr-screenshot-filename/*": [ - "packages/kbn-ftr-screenshot-filename/*" - ], - "@kbn/functional-with-es-ssl-cases-test-plugin": [ - "x-pack/test/functional_with_es_ssl/plugins/cases" - ], - "@kbn/functional-with-es-ssl-cases-test-plugin/*": [ - "x-pack/test/functional_with_es_ssl/plugins/cases/*" - ], - "@kbn/gen-ai-streaming-response-example-plugin": [ - "x-pack/examples/gen_ai_streaming_response_example" - ], - "@kbn/gen-ai-streaming-response-example-plugin/*": [ - "x-pack/examples/gen_ai_streaming_response_example/*" - ], - "@kbn/generate": [ - "packages/kbn-generate" - ], - "@kbn/generate/*": [ - "packages/kbn-generate/*" - ], - "@kbn/generate-console-definitions": [ - "packages/kbn-generate-console-definitions" - ], - "@kbn/generate-console-definitions/*": [ - "packages/kbn-generate-console-definitions/*" - ], - "@kbn/generate-csv": [ - "packages/kbn-generate-csv" - ], - "@kbn/generate-csv/*": [ - "packages/kbn-generate-csv/*" - ], - "@kbn/get-repo-files": [ - "packages/kbn-get-repo-files" - ], - "@kbn/get-repo-files/*": [ - "packages/kbn-get-repo-files/*" - ], - "@kbn/global-search-bar-plugin": [ - "x-pack/plugins/global_search_bar" - ], - "@kbn/global-search-bar-plugin/*": [ - "x-pack/plugins/global_search_bar/*" - ], - "@kbn/global-search-plugin": [ - "x-pack/plugins/global_search" - ], - "@kbn/global-search-plugin/*": [ - "x-pack/plugins/global_search/*" - ], - "@kbn/global-search-providers-plugin": [ - "x-pack/plugins/global_search_providers" - ], - "@kbn/global-search-providers-plugin/*": [ - "x-pack/plugins/global_search_providers/*" - ], - "@kbn/global-search-test-plugin": [ - "x-pack/test/plugin_functional/plugins/global_search_test" - ], - "@kbn/global-search-test-plugin/*": [ - "x-pack/test/plugin_functional/plugins/global_search_test/*" - ], - "@kbn/graph-plugin": [ - "x-pack/plugins/graph" - ], - "@kbn/graph-plugin/*": [ - "x-pack/plugins/graph/*" - ], - "@kbn/grokdebugger-plugin": [ - "x-pack/plugins/grokdebugger" - ], - "@kbn/grokdebugger-plugin/*": [ - "x-pack/plugins/grokdebugger/*" - ], - "@kbn/guided-onboarding": [ - "packages/kbn-guided-onboarding" - ], - "@kbn/guided-onboarding/*": [ - "packages/kbn-guided-onboarding/*" - ], - "@kbn/guided-onboarding-example-plugin": [ - "examples/guided_onboarding_example" - ], - "@kbn/guided-onboarding-example-plugin/*": [ - "examples/guided_onboarding_example/*" - ], - "@kbn/guided-onboarding-plugin": [ - "src/plugins/guided_onboarding" - ], - "@kbn/guided-onboarding-plugin/*": [ - "src/plugins/guided_onboarding/*" - ], - "@kbn/handlebars": [ - "packages/kbn-handlebars" - ], - "@kbn/handlebars/*": [ - "packages/kbn-handlebars/*" - ], - "@kbn/hapi-mocks": [ - "packages/kbn-hapi-mocks" - ], - "@kbn/hapi-mocks/*": [ - "packages/kbn-hapi-mocks/*" - ], - "@kbn/health-gateway-server": [ - "packages/kbn-health-gateway-server" - ], - "@kbn/health-gateway-server/*": [ - "packages/kbn-health-gateway-server/*" - ], - "@kbn/hello-world-plugin": [ - "examples/hello_world" - ], - "@kbn/hello-world-plugin/*": [ - "examples/hello_world/*" - ], - "@kbn/home-plugin": [ - "src/plugins/home" - ], - "@kbn/home-plugin/*": [ - "src/plugins/home/*" - ], - "@kbn/home-sample-data-card": [ - "packages/home/sample_data_card" - ], - "@kbn/home-sample-data-card/*": [ - "packages/home/sample_data_card/*" - ], - "@kbn/home-sample-data-tab": [ - "packages/home/sample_data_tab" - ], - "@kbn/home-sample-data-tab/*": [ - "packages/home/sample_data_tab/*" - ], - "@kbn/home-sample-data-types": [ - "packages/home/sample_data_types" - ], - "@kbn/home-sample-data-types/*": [ - "packages/home/sample_data_types/*" - ], - "@kbn/i18n": [ - "packages/kbn-i18n" - ], - "@kbn/i18n/*": [ - "packages/kbn-i18n/*" - ], - "@kbn/i18n-react": [ - "packages/kbn-i18n-react" - ], - "@kbn/i18n-react/*": [ - "packages/kbn-i18n-react/*" - ], - "@kbn/iframe-embedded-plugin": [ - "x-pack/test/functional_embedded/plugins/iframe_embedded" - ], - "@kbn/iframe-embedded-plugin/*": [ - "x-pack/test/functional_embedded/plugins/iframe_embedded/*" - ], - "@kbn/image-embeddable-plugin": [ - "src/plugins/image_embeddable" - ], - "@kbn/image-embeddable-plugin/*": [ - "src/plugins/image_embeddable/*" - ], - "@kbn/import-locator": [ - "packages/kbn-import-locator" - ], - "@kbn/import-locator/*": [ - "packages/kbn-import-locator/*" - ], - "@kbn/import-resolver": [ - "packages/kbn-import-resolver" - ], - "@kbn/import-resolver/*": [ - "packages/kbn-import-resolver/*" - ], - "@kbn/index-lifecycle-management-plugin": [ - "x-pack/plugins/index_lifecycle_management" - ], - "@kbn/index-lifecycle-management-plugin/*": [ - "x-pack/plugins/index_lifecycle_management/*" - ], - "@kbn/index-management-plugin": [ - "x-pack/plugins/index_management" - ], - "@kbn/index-management-plugin/*": [ - "x-pack/plugins/index_management/*" - ], - "@kbn/index-patterns-test-plugin": [ - "test/plugin_functional/plugins/index_patterns" - ], - "@kbn/index-patterns-test-plugin/*": [ - "test/plugin_functional/plugins/index_patterns/*" - ], - "@kbn/infra-forge": [ - "x-pack/packages/kbn-infra-forge" - ], - "@kbn/infra-forge/*": [ - "x-pack/packages/kbn-infra-forge/*" - ], - "@kbn/infra-plugin": [ - "x-pack/plugins/infra" - ], - "@kbn/infra-plugin/*": [ - "x-pack/plugins/infra/*" - ], - "@kbn/ingest-pipelines-plugin": [ - "x-pack/plugins/ingest_pipelines" - ], - "@kbn/ingest-pipelines-plugin/*": [ - "x-pack/plugins/ingest_pipelines/*" - ], - "@kbn/input-control-vis-plugin": [ - "src/plugins/input_control_vis" - ], - "@kbn/input-control-vis-plugin/*": [ - "src/plugins/input_control_vis/*" - ], - "@kbn/inspector-plugin": [ - "src/plugins/inspector" - ], - "@kbn/inspector-plugin/*": [ - "src/plugins/inspector/*" - ], - "@kbn/interactive-setup-plugin": [ - "src/plugins/interactive_setup" - ], - "@kbn/interactive-setup-plugin/*": [ - "src/plugins/interactive_setup/*" - ], - "@kbn/interactive-setup-test-endpoints-plugin": [ - "test/interactive_setup_api_integration/plugins/test_endpoints" - ], - "@kbn/interactive-setup-test-endpoints-plugin/*": [ - "test/interactive_setup_api_integration/plugins/test_endpoints/*" - ], - "@kbn/interpreter": [ - "packages/kbn-interpreter" - ], - "@kbn/interpreter/*": [ - "packages/kbn-interpreter/*" - ], - "@kbn/io-ts-utils": [ - "packages/kbn-io-ts-utils" - ], - "@kbn/io-ts-utils/*": [ - "packages/kbn-io-ts-utils/*" - ], - "@kbn/jest-serializers": [ - "packages/kbn-jest-serializers" - ], - "@kbn/jest-serializers/*": [ - "packages/kbn-jest-serializers/*" - ], - "@kbn/journeys": [ - "packages/kbn-journeys" - ], - "@kbn/journeys/*": [ - "packages/kbn-journeys/*" - ], - "@kbn/json-ast": [ - "packages/kbn-json-ast" - ], - "@kbn/json-ast/*": [ - "packages/kbn-json-ast/*" - ], - "@kbn/kbn-health-gateway-status-plugin": [ - "test/health_gateway/plugins/status" - ], - "@kbn/kbn-health-gateway-status-plugin/*": [ - "test/health_gateway/plugins/status/*" - ], - "@kbn/kbn-sample-panel-action-plugin": [ - "test/plugin_functional/plugins/kbn_sample_panel_action" - ], - "@kbn/kbn-sample-panel-action-plugin/*": [ - "test/plugin_functional/plugins/kbn_sample_panel_action/*" - ], - "@kbn/kbn-top-nav-plugin": [ - "test/plugin_functional/plugins/kbn_top_nav" - ], - "@kbn/kbn-top-nav-plugin/*": [ - "test/plugin_functional/plugins/kbn_top_nav/*" - ], - "@kbn/kbn-tp-custom-visualizations-plugin": [ - "test/plugin_functional/plugins/kbn_tp_custom_visualizations" - ], - "@kbn/kbn-tp-custom-visualizations-plugin/*": [ - "test/plugin_functional/plugins/kbn_tp_custom_visualizations/*" - ], - "@kbn/kbn-tp-run-pipeline-plugin": [ - "test/interpreter_functional/plugins/kbn_tp_run_pipeline" - ], - "@kbn/kbn-tp-run-pipeline-plugin/*": [ - "test/interpreter_functional/plugins/kbn_tp_run_pipeline/*" - ], - "@kbn/kibana-cors-test-plugin": [ - "x-pack/test/functional_cors/plugins/kibana_cors_test" - ], - "@kbn/kibana-cors-test-plugin/*": [ - "x-pack/test/functional_cors/plugins/kibana_cors_test/*" - ], - "@kbn/kibana-manifest-schema": [ - "packages/kbn-kibana-manifest-schema" - ], - "@kbn/kibana-manifest-schema/*": [ - "packages/kbn-kibana-manifest-schema/*" - ], - "@kbn/kibana-overview-plugin": [ - "src/plugins/kibana_overview" - ], - "@kbn/kibana-overview-plugin/*": [ - "src/plugins/kibana_overview/*" - ], - "@kbn/kibana-react-plugin": [ - "src/plugins/kibana_react" - ], - "@kbn/kibana-react-plugin/*": [ - "src/plugins/kibana_react/*" - ], - "@kbn/kibana-usage-collection-plugin": [ - "src/plugins/kibana_usage_collection" - ], - "@kbn/kibana-usage-collection-plugin/*": [ - "src/plugins/kibana_usage_collection/*" - ], - "@kbn/kibana-utils-plugin": [ - "src/plugins/kibana_utils" - ], - "@kbn/kibana-utils-plugin/*": [ - "src/plugins/kibana_utils/*" - ], - "@kbn/kubernetes-security-plugin": [ - "x-pack/plugins/kubernetes_security" - ], - "@kbn/kubernetes-security-plugin/*": [ - "x-pack/plugins/kubernetes_security/*" - ], - "@kbn/language-documentation-popover": [ - "packages/kbn-language-documentation-popover" - ], - "@kbn/language-documentation-popover/*": [ - "packages/kbn-language-documentation-popover/*" - ], - "@kbn/lens-embeddable-utils": [ - "packages/kbn-lens-embeddable-utils" - ], - "@kbn/lens-embeddable-utils/*": [ - "packages/kbn-lens-embeddable-utils/*" - ], - "@kbn/lens-formula-docs": [ - "packages/kbn-lens-formula-docs" - ], - "@kbn/lens-formula-docs/*": [ - "packages/kbn-lens-formula-docs/*" - ], - "@kbn/lens-plugin": [ - "x-pack/plugins/lens" - ], - "@kbn/lens-plugin/*": [ - "x-pack/plugins/lens/*" - ], - "@kbn/license-api-guard-plugin": [ - "x-pack/plugins/license_api_guard" - ], - "@kbn/license-api-guard-plugin/*": [ - "x-pack/plugins/license_api_guard/*" - ], - "@kbn/license-management-plugin": [ - "x-pack/plugins/license_management" - ], - "@kbn/license-management-plugin/*": [ - "x-pack/plugins/license_management/*" - ], - "@kbn/licensing-plugin": [ - "x-pack/plugins/licensing" - ], - "@kbn/licensing-plugin/*": [ - "x-pack/plugins/licensing/*" - ], - "@kbn/links-plugin": [ - "src/plugins/links" - ], - "@kbn/links-plugin/*": [ - "src/plugins/links/*" - ], - "@kbn/lint-packages-cli": [ - "packages/kbn-lint-packages-cli" - ], - "@kbn/lint-packages-cli/*": [ - "packages/kbn-lint-packages-cli/*" - ], - "@kbn/lint-ts-projects-cli": [ - "packages/kbn-lint-ts-projects-cli" - ], - "@kbn/lint-ts-projects-cli/*": [ - "packages/kbn-lint-ts-projects-cli/*" - ], - "@kbn/lists-plugin": [ - "x-pack/plugins/lists" - ], - "@kbn/lists-plugin/*": [ - "x-pack/plugins/lists/*" - ], - "@kbn/locator-examples-plugin": [ - "examples/locator_examples" - ], - "@kbn/locator-examples-plugin/*": [ - "examples/locator_examples/*" - ], - "@kbn/locator-explorer-plugin": [ - "examples/locator_explorer" - ], - "@kbn/locator-explorer-plugin/*": [ - "examples/locator_explorer/*" - ], - "@kbn/logging": [ - "packages/kbn-logging" - ], - "@kbn/logging/*": [ - "packages/kbn-logging/*" - ], - "@kbn/logging-mocks": [ - "packages/kbn-logging-mocks" - ], - "@kbn/logging-mocks/*": [ - "packages/kbn-logging-mocks/*" - ], - "@kbn/logs-explorer-plugin": [ - "x-pack/plugins/logs_explorer" - ], - "@kbn/logs-explorer-plugin/*": [ - "x-pack/plugins/logs_explorer/*" - ], - "@kbn/logs-shared-plugin": [ - "x-pack/plugins/logs_shared" - ], - "@kbn/logs-shared-plugin/*": [ - "x-pack/plugins/logs_shared/*" - ], - "@kbn/logstash-plugin": [ - "x-pack/plugins/logstash" - ], - "@kbn/logstash-plugin/*": [ - "x-pack/plugins/logstash/*" - ], - "@kbn/managed-vscode-config": [ - "packages/kbn-managed-vscode-config" - ], - "@kbn/managed-vscode-config/*": [ - "packages/kbn-managed-vscode-config/*" - ], - "@kbn/managed-vscode-config-cli": [ - "packages/kbn-managed-vscode-config-cli" - ], - "@kbn/managed-vscode-config-cli/*": [ - "packages/kbn-managed-vscode-config-cli/*" - ], - "@kbn/management-cards-navigation": [ - "packages/kbn-management/cards_navigation" - ], - "@kbn/management-cards-navigation/*": [ - "packages/kbn-management/cards_navigation/*" - ], - "@kbn/management-plugin": [ - "src/plugins/management" - ], - "@kbn/management-plugin/*": [ - "src/plugins/management/*" - ], - "@kbn/management-settings-application": [ - "packages/kbn-management/settings/application" - ], - "@kbn/management-settings-application/*": [ - "packages/kbn-management/settings/application/*" - ], - "@kbn/management-settings-components-field-category": [ - "packages/kbn-management/settings/components/field_category" - ], - "@kbn/management-settings-components-field-category/*": [ - "packages/kbn-management/settings/components/field_category/*" - ], - "@kbn/management-settings-components-field-input": [ - "packages/kbn-management/settings/components/field_input" - ], - "@kbn/management-settings-components-field-input/*": [ - "packages/kbn-management/settings/components/field_input/*" - ], - "@kbn/management-settings-components-field-row": [ - "packages/kbn-management/settings/components/field_row" - ], - "@kbn/management-settings-components-field-row/*": [ - "packages/kbn-management/settings/components/field_row/*" - ], - "@kbn/management-settings-components-form": [ - "packages/kbn-management/settings/components/form" - ], - "@kbn/management-settings-components-form/*": [ - "packages/kbn-management/settings/components/form/*" - ], - "@kbn/management-settings-field-definition": [ - "packages/kbn-management/settings/field_definition" - ], - "@kbn/management-settings-field-definition/*": [ - "packages/kbn-management/settings/field_definition/*" - ], - "@kbn/management-settings-ids": [ - "packages/kbn-management/settings/setting_ids" - ], - "@kbn/management-settings-ids/*": [ - "packages/kbn-management/settings/setting_ids/*" - ], - "@kbn/management-settings-section-registry": [ - "packages/kbn-management/settings/section_registry" - ], - "@kbn/management-settings-section-registry/*": [ - "packages/kbn-management/settings/section_registry/*" - ], - "@kbn/management-settings-types": [ - "packages/kbn-management/settings/types" - ], - "@kbn/management-settings-types/*": [ - "packages/kbn-management/settings/types/*" - ], - "@kbn/management-settings-utilities": [ - "packages/kbn-management/settings/utilities" - ], - "@kbn/management-settings-utilities/*": [ - "packages/kbn-management/settings/utilities/*" - ], - "@kbn/management-storybook-config": [ - "packages/kbn-management/storybook/config" - ], - "@kbn/management-storybook-config/*": [ - "packages/kbn-management/storybook/config/*" - ], - "@kbn/management-test-plugin": [ - "test/plugin_functional/plugins/management_test_plugin" - ], - "@kbn/management-test-plugin/*": [ - "test/plugin_functional/plugins/management_test_plugin/*" - ], - "@kbn/mapbox-gl": [ - "packages/kbn-mapbox-gl" - ], - "@kbn/mapbox-gl/*": [ - "packages/kbn-mapbox-gl/*" - ], - "@kbn/maps-custom-raster-source-plugin": [ - "x-pack/examples/third_party_maps_source_example" - ], - "@kbn/maps-custom-raster-source-plugin/*": [ - "x-pack/examples/third_party_maps_source_example/*" - ], - "@kbn/maps-ems-plugin": [ - "src/plugins/maps_ems" - ], - "@kbn/maps-ems-plugin/*": [ - "src/plugins/maps_ems/*" - ], - "@kbn/maps-plugin": [ - "x-pack/plugins/maps" - ], - "@kbn/maps-plugin/*": [ - "x-pack/plugins/maps/*" - ], - "@kbn/maps-vector-tile-utils": [ - "x-pack/packages/maps/vector_tile_utils" - ], - "@kbn/maps-vector-tile-utils/*": [ - "x-pack/packages/maps/vector_tile_utils/*" - ], - "@kbn/metrics-data-access-plugin": [ - "x-pack/plugins/metrics_data_access" - ], - "@kbn/metrics-data-access-plugin/*": [ - "x-pack/plugins/metrics_data_access/*" - ], - "@kbn/ml-agg-utils": [ - "x-pack/packages/ml/agg_utils" - ], - "@kbn/ml-agg-utils/*": [ - "x-pack/packages/ml/agg_utils/*" - ], - "@kbn/ml-anomaly-utils": [ - "x-pack/packages/ml/anomaly_utils" - ], - "@kbn/ml-anomaly-utils/*": [ - "x-pack/packages/ml/anomaly_utils/*" - ], - "@kbn/ml-category-validator": [ - "x-pack/packages/ml/category_validator" - ], - "@kbn/ml-category-validator/*": [ - "x-pack/packages/ml/category_validator/*" - ], - "@kbn/ml-chi2test": [ - "x-pack/packages/ml/chi2test" - ], - "@kbn/ml-chi2test/*": [ - "x-pack/packages/ml/chi2test/*" - ], - "@kbn/ml-creation-wizard-utils": [ - "x-pack/packages/ml/creation_wizard_utils" - ], - "@kbn/ml-creation-wizard-utils/*": [ - "x-pack/packages/ml/creation_wizard_utils/*" - ], - "@kbn/ml-data-frame-analytics-utils": [ - "x-pack/packages/ml/data_frame_analytics_utils" - ], - "@kbn/ml-data-frame-analytics-utils/*": [ - "x-pack/packages/ml/data_frame_analytics_utils/*" - ], - "@kbn/ml-data-grid": [ - "x-pack/packages/ml/data_grid" - ], - "@kbn/ml-data-grid/*": [ - "x-pack/packages/ml/data_grid/*" - ], - "@kbn/ml-data-view-utils": [ - "x-pack/packages/ml/data_view_utils" - ], - "@kbn/ml-data-view-utils/*": [ - "x-pack/packages/ml/data_view_utils/*" - ], - "@kbn/ml-date-picker": [ - "x-pack/packages/ml/date_picker" - ], - "@kbn/ml-date-picker/*": [ - "x-pack/packages/ml/date_picker/*" - ], - "@kbn/ml-date-utils": [ - "x-pack/packages/ml/date_utils" - ], - "@kbn/ml-date-utils/*": [ - "x-pack/packages/ml/date_utils/*" - ], - "@kbn/ml-error-utils": [ - "x-pack/packages/ml/error_utils" - ], - "@kbn/ml-error-utils/*": [ - "x-pack/packages/ml/error_utils/*" - ], - "@kbn/ml-in-memory-table": [ - "x-pack/packages/ml/in_memory_table" - ], - "@kbn/ml-in-memory-table/*": [ - "x-pack/packages/ml/in_memory_table/*" - ], - "@kbn/ml-is-defined": [ - "x-pack/packages/ml/is_defined" - ], - "@kbn/ml-is-defined/*": [ - "x-pack/packages/ml/is_defined/*" - ], - "@kbn/ml-is-populated-object": [ - "x-pack/packages/ml/is_populated_object" - ], - "@kbn/ml-is-populated-object/*": [ - "x-pack/packages/ml/is_populated_object/*" - ], - "@kbn/ml-kibana-theme": [ - "x-pack/packages/ml/kibana_theme" - ], - "@kbn/ml-kibana-theme/*": [ - "x-pack/packages/ml/kibana_theme/*" - ], - "@kbn/ml-local-storage": [ - "x-pack/packages/ml/local_storage" - ], - "@kbn/ml-local-storage/*": [ - "x-pack/packages/ml/local_storage/*" - ], - "@kbn/ml-nested-property": [ - "x-pack/packages/ml/nested_property" - ], - "@kbn/ml-nested-property/*": [ - "x-pack/packages/ml/nested_property/*" - ], - "@kbn/ml-number-utils": [ - "x-pack/packages/ml/number_utils" - ], - "@kbn/ml-number-utils/*": [ - "x-pack/packages/ml/number_utils/*" - ], - "@kbn/ml-plugin": [ - "x-pack/plugins/ml" - ], - "@kbn/ml-plugin/*": [ - "x-pack/plugins/ml/*" - ], - "@kbn/ml-query-utils": [ - "x-pack/packages/ml/query_utils" - ], - "@kbn/ml-query-utils/*": [ - "x-pack/packages/ml/query_utils/*" - ], - "@kbn/ml-random-sampler-utils": [ - "x-pack/packages/ml/random_sampler_utils" - ], - "@kbn/ml-random-sampler-utils/*": [ - "x-pack/packages/ml/random_sampler_utils/*" - ], - "@kbn/ml-response-stream": [ - "x-pack/packages/ml/response_stream" - ], - "@kbn/ml-response-stream/*": [ - "x-pack/packages/ml/response_stream/*" - ], - "@kbn/ml-route-utils": [ - "x-pack/packages/ml/route_utils" - ], - "@kbn/ml-route-utils/*": [ - "x-pack/packages/ml/route_utils/*" - ], - "@kbn/ml-runtime-field-utils": [ - "x-pack/packages/ml/runtime_field_utils" - ], - "@kbn/ml-runtime-field-utils/*": [ - "x-pack/packages/ml/runtime_field_utils/*" - ], - "@kbn/ml-string-hash": [ - "x-pack/packages/ml/string_hash" - ], - "@kbn/ml-string-hash/*": [ - "x-pack/packages/ml/string_hash/*" - ], - "@kbn/ml-trained-models-utils": [ - "x-pack/packages/ml/trained_models_utils" - ], - "@kbn/ml-trained-models-utils/*": [ - "x-pack/packages/ml/trained_models_utils/*" - ], - "@kbn/ml-ui-actions": [ - "x-pack/packages/ml/ui_actions" - ], - "@kbn/ml-ui-actions/*": [ - "x-pack/packages/ml/ui_actions/*" - ], - "@kbn/ml-url-state": [ - "x-pack/packages/ml/url_state" - ], - "@kbn/ml-url-state/*": [ - "x-pack/packages/ml/url_state/*" - ], - "@kbn/mock-idp-plugin": [ - "packages/kbn-mock-idp-plugin" - ], - "@kbn/mock-idp-plugin/*": [ - "packages/kbn-mock-idp-plugin/*" - ], - "@kbn/monaco": [ - "packages/kbn-monaco" - ], - "@kbn/monaco/*": [ - "packages/kbn-monaco/*" - ], - "@kbn/monitoring-collection-plugin": [ - "x-pack/plugins/monitoring_collection" - ], - "@kbn/monitoring-collection-plugin/*": [ - "x-pack/plugins/monitoring_collection/*" - ], - "@kbn/monitoring-plugin": [ - "x-pack/plugins/monitoring" - ], - "@kbn/monitoring-plugin/*": [ - "x-pack/plugins/monitoring/*" - ], - "@kbn/navigation-plugin": [ - "src/plugins/navigation" - ], - "@kbn/navigation-plugin/*": [ - "src/plugins/navigation/*" - ], - "@kbn/newsfeed-plugin": [ - "src/plugins/newsfeed" - ], - "@kbn/newsfeed-plugin/*": [ - "src/plugins/newsfeed/*" - ], - "@kbn/newsfeed-test-plugin": [ - "test/common/plugins/newsfeed" - ], - "@kbn/newsfeed-test-plugin/*": [ - "test/common/plugins/newsfeed/*" - ], - "@kbn/no-data-page-plugin": [ - "src/plugins/no_data_page" - ], - "@kbn/no-data-page-plugin/*": [ - "src/plugins/no_data_page/*" - ], - "@kbn/notifications-plugin": [ - "x-pack/plugins/notifications" - ], - "@kbn/notifications-plugin/*": [ - "x-pack/plugins/notifications/*" - ], - "@kbn/object-versioning": [ - "packages/kbn-object-versioning" - ], - "@kbn/object-versioning/*": [ - "packages/kbn-object-versioning/*" - ], - "@kbn/observability-ai-assistant-plugin": [ - "x-pack/plugins/observability_ai_assistant" - ], - "@kbn/observability-ai-assistant-plugin/*": [ - "x-pack/plugins/observability_ai_assistant/*" - ], - "@kbn/observability-alert-details": [ - "x-pack/packages/observability/alert_details" - ], - "@kbn/observability-alert-details/*": [ - "x-pack/packages/observability/alert_details/*" - ], - "@kbn/observability-alerting-test-data": [ - "x-pack/packages/observability/alerting_test_data" - ], - "@kbn/observability-alerting-test-data/*": [ - "x-pack/packages/observability/alerting_test_data/*" - ], - "@kbn/observability-fixtures-plugin": [ - "x-pack/test/cases_api_integration/common/plugins/observability" - ], - "@kbn/observability-fixtures-plugin/*": [ - "x-pack/test/cases_api_integration/common/plugins/observability/*" - ], - "@kbn/observability-get-padded-alert-time-range-util": [ - "x-pack/packages/observability/get_padded_alert_time_range_util" - ], - "@kbn/observability-get-padded-alert-time-range-util/*": [ - "x-pack/packages/observability/get_padded_alert_time_range_util/*" - ], - "@kbn/observability-logs-explorer-plugin": [ - "x-pack/plugins/observability_logs_explorer" - ], - "@kbn/observability-logs-explorer-plugin/*": [ - "x-pack/plugins/observability_logs_explorer/*" - ], - "@kbn/observability-onboarding-plugin": [ - "x-pack/plugins/observability_onboarding" - ], - "@kbn/observability-onboarding-plugin/*": [ - "x-pack/plugins/observability_onboarding/*" - ], - "@kbn/observability-plugin": [ - "x-pack/plugins/observability" - ], - "@kbn/observability-plugin/*": [ - "x-pack/plugins/observability/*" - ], - "@kbn/observability-shared-plugin": [ - "x-pack/plugins/observability_shared" - ], - "@kbn/observability-shared-plugin/*": [ - "x-pack/plugins/observability_shared/*" - ], - "@kbn/oidc-provider-plugin": [ - "x-pack/test/security_api_integration/plugins/oidc_provider" - ], - "@kbn/oidc-provider-plugin/*": [ - "x-pack/test/security_api_integration/plugins/oidc_provider/*" - ], - "@kbn/open-telemetry-instrumented-plugin": [ - "test/common/plugins/otel_metrics" - ], - "@kbn/open-telemetry-instrumented-plugin/*": [ - "test/common/plugins/otel_metrics/*" - ], - "@kbn/openapi-bundler": [ - "packages/kbn-openapi-bundler" - ], - "@kbn/openapi-bundler/*": [ - "packages/kbn-openapi-bundler/*" - ], - "@kbn/openapi-generator": [ - "packages/kbn-openapi-generator" - ], - "@kbn/openapi-generator/*": [ - "packages/kbn-openapi-generator/*" - ], - "@kbn/optimizer": [ - "packages/kbn-optimizer" - ], - "@kbn/optimizer/*": [ - "packages/kbn-optimizer/*" - ], - "@kbn/optimizer-webpack-helpers": [ - "packages/kbn-optimizer-webpack-helpers" - ], - "@kbn/optimizer-webpack-helpers/*": [ - "packages/kbn-optimizer-webpack-helpers/*" - ], - "@kbn/osquery-io-ts-types": [ - "packages/kbn-osquery-io-ts-types" - ], - "@kbn/osquery-io-ts-types/*": [ - "packages/kbn-osquery-io-ts-types/*" - ], - "@kbn/osquery-plugin": [ - "x-pack/plugins/osquery" - ], - "@kbn/osquery-plugin/*": [ - "x-pack/plugins/osquery/*" - ], - "@kbn/paertial-results-example-plugin": [ - "examples/partial_results_example" - ], - "@kbn/paertial-results-example-plugin/*": [ - "examples/partial_results_example/*" - ], - "@kbn/painless-lab-plugin": [ - "x-pack/plugins/painless_lab" - ], - "@kbn/painless-lab-plugin/*": [ - "x-pack/plugins/painless_lab/*" - ], - "@kbn/panel-loader": [ - "packages/kbn-panel-loader" - ], - "@kbn/panel-loader/*": [ - "packages/kbn-panel-loader/*" - ], - "@kbn/peggy": [ - "packages/kbn-peggy" - ], - "@kbn/peggy/*": [ - "packages/kbn-peggy/*" - ], - "@kbn/peggy-loader": [ - "packages/kbn-peggy-loader" - ], - "@kbn/peggy-loader/*": [ - "packages/kbn-peggy-loader/*" - ], - "@kbn/performance-testing-dataset-extractor": [ - "packages/kbn-performance-testing-dataset-extractor" - ], - "@kbn/performance-testing-dataset-extractor/*": [ - "packages/kbn-performance-testing-dataset-extractor/*" - ], - "@kbn/picomatcher": [ - "packages/kbn-picomatcher" - ], - "@kbn/picomatcher/*": [ - "packages/kbn-picomatcher/*" - ], - "@kbn/plugin-generator": [ - "packages/kbn-plugin-generator" - ], - "@kbn/plugin-generator/*": [ - "packages/kbn-plugin-generator/*" - ], - "@kbn/plugin-helpers": [ - "packages/kbn-plugin-helpers" - ], - "@kbn/plugin-helpers/*": [ - "packages/kbn-plugin-helpers/*" - ], - "@kbn/portable-dashboards-example": [ - "examples/portable_dashboards_example" - ], - "@kbn/portable-dashboards-example/*": [ - "examples/portable_dashboards_example/*" - ], - "@kbn/preboot-example-plugin": [ - "examples/preboot_example" - ], - "@kbn/preboot-example-plugin/*": [ - "examples/preboot_example/*" - ], - "@kbn/presentation-util-plugin": [ - "src/plugins/presentation_util" - ], - "@kbn/presentation-util-plugin/*": [ - "src/plugins/presentation_util/*" - ], - "@kbn/profiling-data-access-plugin": [ - "x-pack/plugins/profiling_data_access" - ], - "@kbn/profiling-data-access-plugin/*": [ - "x-pack/plugins/profiling_data_access/*" - ], - "@kbn/profiling-plugin": [ - "x-pack/plugins/profiling" - ], - "@kbn/profiling-plugin/*": [ - "x-pack/plugins/profiling/*" - ], - "@kbn/profiling-utils": [ - "packages/kbn-profiling-utils" - ], - "@kbn/profiling-utils/*": [ - "packages/kbn-profiling-utils/*" - ], - "@kbn/random-sampling": [ - "x-pack/packages/kbn-random-sampling" - ], - "@kbn/random-sampling/*": [ - "x-pack/packages/kbn-random-sampling/*" - ], - "@kbn/react-field": [ - "packages/kbn-react-field" - ], - "@kbn/react-field/*": [ - "packages/kbn-react-field/*" - ], - "@kbn/react-kibana-context-common": [ - "packages/react/kibana_context/common" - ], - "@kbn/react-kibana-context-common/*": [ - "packages/react/kibana_context/common/*" - ], - "@kbn/react-kibana-context-render": [ - "packages/react/kibana_context/render" - ], - "@kbn/react-kibana-context-render/*": [ - "packages/react/kibana_context/render/*" - ], - "@kbn/react-kibana-context-root": [ - "packages/react/kibana_context/root" - ], - "@kbn/react-kibana-context-root/*": [ - "packages/react/kibana_context/root/*" - ], - "@kbn/react-kibana-context-styled": [ - "packages/react/kibana_context/styled" - ], - "@kbn/react-kibana-context-styled/*": [ - "packages/react/kibana_context/styled/*" - ], - "@kbn/react-kibana-context-theme": [ - "packages/react/kibana_context/theme" - ], - "@kbn/react-kibana-context-theme/*": [ - "packages/react/kibana_context/theme/*" - ], - "@kbn/react-kibana-mount": [ - "packages/react/kibana_mount" - ], - "@kbn/react-kibana-mount/*": [ - "packages/react/kibana_mount/*" - ], - "@kbn/remote-clusters-plugin": [ - "x-pack/plugins/remote_clusters" - ], - "@kbn/remote-clusters-plugin/*": [ - "x-pack/plugins/remote_clusters/*" - ], - "@kbn/rendering-plugin": [ - "test/plugin_functional/plugins/rendering_plugin" - ], - "@kbn/rendering-plugin/*": [ - "test/plugin_functional/plugins/rendering_plugin/*" - ], - "@kbn/repo-file-maps": [ - "packages/kbn-repo-file-maps" - ], - "@kbn/repo-file-maps/*": [ - "packages/kbn-repo-file-maps/*" - ], - "@kbn/repo-info": [ - "packages/kbn-repo-info" - ], - "@kbn/repo-info/*": [ - "packages/kbn-repo-info/*" - ], - "@kbn/repo-linter": [ - "packages/kbn-repo-linter" - ], - "@kbn/repo-linter/*": [ - "packages/kbn-repo-linter/*" - ], - "@kbn/repo-packages": [ - "packages/kbn-repo-packages" - ], - "@kbn/repo-packages/*": [ - "packages/kbn-repo-packages/*" - ], - "@kbn/repo-path": [ - "packages/kbn-repo-path" - ], - "@kbn/repo-path/*": [ - "packages/kbn-repo-path/*" - ], - "@kbn/repo-source-classifier": [ - "packages/kbn-repo-source-classifier" - ], - "@kbn/repo-source-classifier/*": [ - "packages/kbn-repo-source-classifier/*" - ], - "@kbn/repo-source-classifier-cli": [ - "packages/kbn-repo-source-classifier-cli" - ], - "@kbn/repo-source-classifier-cli/*": [ - "packages/kbn-repo-source-classifier-cli/*" - ], - "@kbn/reporting-common": [ - "packages/kbn-reporting/common" - ], - "@kbn/reporting-common/*": [ - "packages/kbn-reporting/common/*" - ], - "@kbn/reporting-example-plugin": [ - "x-pack/examples/reporting_example" - ], - "@kbn/reporting-example-plugin/*": [ - "x-pack/examples/reporting_example/*" - ], - "@kbn/reporting-export-types-csv": [ - "packages/kbn-reporting/export_types/csv" - ], - "@kbn/reporting-export-types-csv/*": [ - "packages/kbn-reporting/export_types/csv/*" - ], - "@kbn/reporting-export-types-csv-common": [ - "packages/kbn-reporting/export_types/csv_common" - ], - "@kbn/reporting-export-types-csv-common/*": [ - "packages/kbn-reporting/export_types/csv_common/*" - ], - "@kbn/reporting-export-types-pdf": [ - "packages/kbn-reporting/export_types/pdf" - ], - "@kbn/reporting-export-types-pdf/*": [ - "packages/kbn-reporting/export_types/pdf/*" - ], - "@kbn/reporting-export-types-pdf-common": [ - "packages/kbn-reporting/export_types/pdf_common" - ], - "@kbn/reporting-export-types-pdf-common/*": [ - "packages/kbn-reporting/export_types/pdf_common/*" - ], - "@kbn/reporting-export-types-png": [ - "packages/kbn-reporting/export_types/png" - ], - "@kbn/reporting-export-types-png/*": [ - "packages/kbn-reporting/export_types/png/*" - ], - "@kbn/reporting-export-types-png-common": [ - "packages/kbn-reporting/export_types/png_common" - ], - "@kbn/reporting-export-types-png-common/*": [ - "packages/kbn-reporting/export_types/png_common/*" - ], - "@kbn/reporting-mocks-server": [ - "packages/kbn-reporting/mocks_server" - ], - "@kbn/reporting-mocks-server/*": [ - "packages/kbn-reporting/mocks_server/*" - ], - "@kbn/reporting-plugin": [ - "x-pack/plugins/reporting" - ], - "@kbn/reporting-plugin/*": [ - "x-pack/plugins/reporting/*" - ], - "@kbn/reporting-public": [ - "packages/kbn-reporting/public" - ], - "@kbn/reporting-public/*": [ - "packages/kbn-reporting/public/*" - ], - "@kbn/reporting-server": [ - "packages/kbn-reporting/server" - ], - "@kbn/reporting-server/*": [ - "packages/kbn-reporting/server/*" - ], - "@kbn/resizable-layout": [ - "packages/kbn-resizable-layout" - ], - "@kbn/resizable-layout/*": [ - "packages/kbn-resizable-layout/*" - ], - "@kbn/resizable-layout-examples-plugin": [ - "examples/resizable_layout_examples" - ], - "@kbn/resizable-layout-examples-plugin/*": [ - "examples/resizable_layout_examples/*" - ], - "@kbn/resolver-test-plugin": [ - "x-pack/test/plugin_functional/plugins/resolver_test" - ], - "@kbn/resolver-test-plugin/*": [ - "x-pack/test/plugin_functional/plugins/resolver_test/*" - ], - "@kbn/response-stream-plugin": [ - "examples/response_stream" - ], - "@kbn/response-stream-plugin/*": [ - "examples/response_stream/*" - ], - "@kbn/rison": [ - "packages/kbn-rison" - ], - "@kbn/rison/*": [ - "packages/kbn-rison/*" - ], - "@kbn/rollup-plugin": [ - "x-pack/plugins/rollup" - ], - "@kbn/rollup-plugin/*": [ - "x-pack/plugins/rollup/*" - ], - "@kbn/router-utils": [ - "packages/kbn-router-utils" - ], - "@kbn/router-utils/*": [ - "packages/kbn-router-utils/*" - ], - "@kbn/routing-example-plugin": [ - "examples/routing_example" - ], - "@kbn/routing-example-plugin/*": [ - "examples/routing_example/*" - ], - "@kbn/rrule": [ - "packages/kbn-rrule" - ], - "@kbn/rrule/*": [ - "packages/kbn-rrule/*" - ], - "@kbn/rule-data-utils": [ - "packages/kbn-rule-data-utils" - ], - "@kbn/rule-data-utils/*": [ - "packages/kbn-rule-data-utils/*" - ], - "@kbn/rule-registry-plugin": [ - "x-pack/plugins/rule_registry" - ], - "@kbn/rule-registry-plugin/*": [ - "x-pack/plugins/rule_registry/*" - ], - "@kbn/runtime-fields-plugin": [ - "x-pack/plugins/runtime_fields" - ], - "@kbn/runtime-fields-plugin/*": [ - "x-pack/plugins/runtime_fields/*" - ], - "@kbn/safer-lodash-set": [ - "packages/kbn-safer-lodash-set" - ], - "@kbn/safer-lodash-set/*": [ - "packages/kbn-safer-lodash-set/*" - ], - "@kbn/saml-provider-plugin": [ - "x-pack/test/security_api_integration/plugins/saml_provider" - ], - "@kbn/saml-provider-plugin/*": [ - "x-pack/test/security_api_integration/plugins/saml_provider/*" - ], - "@kbn/sample-task-plugin": [ - "x-pack/test/plugin_api_integration/plugins/sample_task_plugin" - ], - "@kbn/sample-task-plugin/*": [ - "x-pack/test/plugin_api_integration/plugins/sample_task_plugin/*" - ], - "@kbn/saved-object-export-transforms-plugin": [ - "test/plugin_functional/plugins/saved_object_export_transforms" - ], - "@kbn/saved-object-export-transforms-plugin/*": [ - "test/plugin_functional/plugins/saved_object_export_transforms/*" - ], - "@kbn/saved-object-import-warnings-plugin": [ - "test/plugin_functional/plugins/saved_object_import_warnings" - ], - "@kbn/saved-object-import-warnings-plugin/*": [ - "test/plugin_functional/plugins/saved_object_import_warnings/*" - ], - "@kbn/saved-object-test-plugin": [ - "x-pack/test/saved_object_api_integration/common/plugins/saved_object_test_plugin" - ], - "@kbn/saved-object-test-plugin/*": [ - "x-pack/test/saved_object_api_integration/common/plugins/saved_object_test_plugin/*" - ], - "@kbn/saved-objects-finder-plugin": [ - "src/plugins/saved_objects_finder" - ], - "@kbn/saved-objects-finder-plugin/*": [ - "src/plugins/saved_objects_finder/*" - ], - "@kbn/saved-objects-hidden-from-http-apis-type-plugin": [ - "test/plugin_functional/plugins/saved_objects_hidden_from_http_apis_type" - ], - "@kbn/saved-objects-hidden-from-http-apis-type-plugin/*": [ - "test/plugin_functional/plugins/saved_objects_hidden_from_http_apis_type/*" - ], - "@kbn/saved-objects-hidden-type-plugin": [ - "test/plugin_functional/plugins/saved_objects_hidden_type" - ], - "@kbn/saved-objects-hidden-type-plugin/*": [ - "test/plugin_functional/plugins/saved_objects_hidden_type/*" - ], - "@kbn/saved-objects-management-plugin": [ - "src/plugins/saved_objects_management" - ], - "@kbn/saved-objects-management-plugin/*": [ - "src/plugins/saved_objects_management/*" - ], - "@kbn/saved-objects-plugin": [ - "src/plugins/saved_objects" - ], - "@kbn/saved-objects-plugin/*": [ - "src/plugins/saved_objects/*" - ], - "@kbn/saved-objects-settings": [ - "packages/kbn-saved-objects-settings" - ], - "@kbn/saved-objects-settings/*": [ - "packages/kbn-saved-objects-settings/*" - ], - "@kbn/saved-objects-tagging-oss-plugin": [ - "src/plugins/saved_objects_tagging_oss" - ], - "@kbn/saved-objects-tagging-oss-plugin/*": [ - "src/plugins/saved_objects_tagging_oss/*" - ], - "@kbn/saved-objects-tagging-plugin": [ - "x-pack/plugins/saved_objects_tagging" - ], - "@kbn/saved-objects-tagging-plugin/*": [ - "x-pack/plugins/saved_objects_tagging/*" - ], - "@kbn/saved-search-plugin": [ - "src/plugins/saved_search" - ], - "@kbn/saved-search-plugin/*": [ - "src/plugins/saved_search/*" - ], - "@kbn/screenshot-mode-example-plugin": [ - "examples/screenshot_mode_example" - ], - "@kbn/screenshot-mode-example-plugin/*": [ - "examples/screenshot_mode_example/*" - ], - "@kbn/screenshot-mode-plugin": [ - "src/plugins/screenshot_mode" - ], - "@kbn/screenshot-mode-plugin/*": [ - "src/plugins/screenshot_mode/*" - ], - "@kbn/screenshotting-example-plugin": [ - "x-pack/examples/screenshotting_example" - ], - "@kbn/screenshotting-example-plugin/*": [ - "x-pack/examples/screenshotting_example/*" - ], - "@kbn/screenshotting-plugin": [ - "x-pack/plugins/screenshotting" - ], - "@kbn/screenshotting-plugin/*": [ - "x-pack/plugins/screenshotting/*" - ], - "@kbn/search-api-panels": [ - "packages/kbn-search-api-panels" - ], - "@kbn/search-api-panels/*": [ - "packages/kbn-search-api-panels/*" - ], - "@kbn/search-connectors": [ - "packages/kbn-search-connectors" - ], - "@kbn/search-connectors/*": [ - "packages/kbn-search-connectors/*" - ], - "@kbn/search-errors": [ - "packages/kbn-search-errors" - ], - "@kbn/search-errors/*": [ - "packages/kbn-search-errors/*" - ], - "@kbn/search-examples-plugin": [ - "examples/search_examples" - ], - "@kbn/search-examples-plugin/*": [ - "examples/search_examples/*" - ], - "@kbn/search-index-documents": [ - "packages/kbn-search-index-documents" - ], - "@kbn/search-index-documents/*": [ - "packages/kbn-search-index-documents/*" - ], - "@kbn/search-response-warnings": [ - "packages/kbn-search-response-warnings" - ], - "@kbn/search-response-warnings/*": [ - "packages/kbn-search-response-warnings/*" - ], - "@kbn/searchprofiler-plugin": [ - "x-pack/plugins/searchprofiler" - ], - "@kbn/searchprofiler-plugin/*": [ - "x-pack/plugins/searchprofiler/*" - ], - "@kbn/security-api-integration-helpers": [ - "x-pack/test/security_api_integration/packages/helpers" - ], - "@kbn/security-api-integration-helpers/*": [ - "x-pack/test/security_api_integration/packages/helpers/*" - ], - "@kbn/security-plugin": [ - "x-pack/plugins/security" - ], - "@kbn/security-plugin/*": [ - "x-pack/plugins/security/*" - ], - "@kbn/security-plugin-types-common": [ - "x-pack/packages/security/plugin_types_common" - ], - "@kbn/security-plugin-types-common/*": [ - "x-pack/packages/security/plugin_types_common/*" - ], - "@kbn/security-plugin-types-public": [ - "x-pack/packages/security/plugin_types_public" - ], - "@kbn/security-plugin-types-public/*": [ - "x-pack/packages/security/plugin_types_public/*" - ], - "@kbn/security-plugin-types-server": [ - "x-pack/packages/security/plugin_types_server" - ], - "@kbn/security-plugin-types-server/*": [ - "x-pack/packages/security/plugin_types_server/*" - ], - "@kbn/security-solution-ess": [ - "x-pack/plugins/security_solution_ess" - ], - "@kbn/security-solution-ess/*": [ - "x-pack/plugins/security_solution_ess/*" - ], - "@kbn/security-solution-features": [ - "x-pack/packages/security-solution/features" - ], - "@kbn/security-solution-features/*": [ - "x-pack/packages/security-solution/features/*" - ], - "@kbn/security-solution-fixtures-plugin": [ - "x-pack/test/cases_api_integration/common/plugins/security_solution" - ], - "@kbn/security-solution-fixtures-plugin/*": [ - "x-pack/test/cases_api_integration/common/plugins/security_solution/*" - ], - "@kbn/security-solution-navigation": [ - "x-pack/packages/security-solution/navigation" - ], - "@kbn/security-solution-navigation/*": [ - "x-pack/packages/security-solution/navigation/*" - ], - "@kbn/security-solution-plugin": [ - "x-pack/plugins/security_solution" - ], - "@kbn/security-solution-plugin/*": [ - "x-pack/plugins/security_solution/*" - ], - "@kbn/security-solution-serverless": [ - "x-pack/plugins/security_solution_serverless" - ], - "@kbn/security-solution-serverless/*": [ - "x-pack/plugins/security_solution_serverless/*" - ], - "@kbn/security-solution-side-nav": [ - "x-pack/packages/security-solution/side_nav" - ], - "@kbn/security-solution-side-nav/*": [ - "x-pack/packages/security-solution/side_nav/*" - ], - "@kbn/security-solution-storybook-config": [ - "x-pack/packages/security-solution/storybook/config" - ], - "@kbn/security-solution-storybook-config/*": [ - "x-pack/packages/security-solution/storybook/config/*" - ], - "@kbn/security-solution-upselling": [ - "x-pack/packages/security-solution/upselling" - ], - "@kbn/security-solution-upselling/*": [ - "x-pack/packages/security-solution/upselling/*" - ], - "@kbn/security-test-endpoints-plugin": [ - "x-pack/test/security_functional/plugins/test_endpoints" - ], - "@kbn/security-test-endpoints-plugin/*": [ - "x-pack/test/security_functional/plugins/test_endpoints/*" - ], - "@kbn/securitysolution-autocomplete": [ - "packages/kbn-securitysolution-autocomplete" - ], - "@kbn/securitysolution-autocomplete/*": [ - "packages/kbn-securitysolution-autocomplete/*" - ], - "@kbn/securitysolution-data-table": [ - "x-pack/packages/security-solution/data_table" - ], - "@kbn/securitysolution-data-table/*": [ - "x-pack/packages/security-solution/data_table/*" - ], - "@kbn/securitysolution-ecs": [ - "packages/kbn-securitysolution-ecs" - ], - "@kbn/securitysolution-ecs/*": [ - "packages/kbn-securitysolution-ecs/*" - ], - "@kbn/securitysolution-es-utils": [ - "packages/kbn-securitysolution-es-utils" - ], - "@kbn/securitysolution-es-utils/*": [ - "packages/kbn-securitysolution-es-utils/*" - ], - "@kbn/securitysolution-exception-list-components": [ - "packages/kbn-securitysolution-exception-list-components" - ], - "@kbn/securitysolution-exception-list-components/*": [ - "packages/kbn-securitysolution-exception-list-components/*" - ], - "@kbn/securitysolution-grouping": [ - "packages/kbn-securitysolution-grouping" - ], - "@kbn/securitysolution-grouping/*": [ - "packages/kbn-securitysolution-grouping/*" - ], - "@kbn/securitysolution-hook-utils": [ - "packages/kbn-securitysolution-hook-utils" - ], - "@kbn/securitysolution-hook-utils/*": [ - "packages/kbn-securitysolution-hook-utils/*" - ], - "@kbn/securitysolution-io-ts-alerting-types": [ - "packages/kbn-securitysolution-io-ts-alerting-types" - ], - "@kbn/securitysolution-io-ts-alerting-types/*": [ - "packages/kbn-securitysolution-io-ts-alerting-types/*" - ], - "@kbn/securitysolution-io-ts-list-types": [ - "packages/kbn-securitysolution-io-ts-list-types" - ], - "@kbn/securitysolution-io-ts-list-types/*": [ - "packages/kbn-securitysolution-io-ts-list-types/*" - ], - "@kbn/securitysolution-io-ts-types": [ - "packages/kbn-securitysolution-io-ts-types" - ], - "@kbn/securitysolution-io-ts-types/*": [ - "packages/kbn-securitysolution-io-ts-types/*" - ], - "@kbn/securitysolution-io-ts-utils": [ - "packages/kbn-securitysolution-io-ts-utils" - ], - "@kbn/securitysolution-io-ts-utils/*": [ - "packages/kbn-securitysolution-io-ts-utils/*" - ], - "@kbn/securitysolution-list-api": [ - "packages/kbn-securitysolution-list-api" - ], - "@kbn/securitysolution-list-api/*": [ - "packages/kbn-securitysolution-list-api/*" - ], - "@kbn/securitysolution-list-constants": [ - "packages/kbn-securitysolution-list-constants" - ], - "@kbn/securitysolution-list-constants/*": [ - "packages/kbn-securitysolution-list-constants/*" - ], - "@kbn/securitysolution-list-hooks": [ - "packages/kbn-securitysolution-list-hooks" - ], - "@kbn/securitysolution-list-hooks/*": [ - "packages/kbn-securitysolution-list-hooks/*" - ], - "@kbn/securitysolution-list-utils": [ - "packages/kbn-securitysolution-list-utils" - ], - "@kbn/securitysolution-list-utils/*": [ - "packages/kbn-securitysolution-list-utils/*" - ], - "@kbn/securitysolution-rules": [ - "packages/kbn-securitysolution-rules" - ], - "@kbn/securitysolution-rules/*": [ - "packages/kbn-securitysolution-rules/*" - ], - "@kbn/securitysolution-t-grid": [ - "packages/kbn-securitysolution-t-grid" - ], - "@kbn/securitysolution-t-grid/*": [ - "packages/kbn-securitysolution-t-grid/*" - ], - "@kbn/securitysolution-utils": [ - "packages/kbn-securitysolution-utils" - ], - "@kbn/securitysolution-utils/*": [ - "packages/kbn-securitysolution-utils/*" - ], - "@kbn/server-http-tools": [ - "packages/kbn-server-http-tools" - ], - "@kbn/server-http-tools/*": [ - "packages/kbn-server-http-tools/*" - ], - "@kbn/server-route-repository": [ - "packages/kbn-server-route-repository" - ], - "@kbn/server-route-repository/*": [ - "packages/kbn-server-route-repository/*" - ], - "@kbn/serverless": [ - "x-pack/plugins/serverless" - ], - "@kbn/serverless/*": [ - "x-pack/plugins/serverless/*" - ], - "@kbn/serverless-common-settings": [ - "packages/serverless/settings/common" - ], - "@kbn/serverless-common-settings/*": [ - "packages/serverless/settings/common/*" - ], - "@kbn/serverless-observability": [ - "x-pack/plugins/serverless_observability" - ], - "@kbn/serverless-observability/*": [ - "x-pack/plugins/serverless_observability/*" - ], - "@kbn/serverless-observability-settings": [ - "packages/serverless/settings/observability_project" - ], - "@kbn/serverless-observability-settings/*": [ - "packages/serverless/settings/observability_project/*" - ], - "@kbn/serverless-project-switcher": [ - "packages/serverless/project_switcher" - ], - "@kbn/serverless-project-switcher/*": [ - "packages/serverless/project_switcher/*" - ], - "@kbn/serverless-search": [ - "x-pack/plugins/serverless_search" - ], - "@kbn/serverless-search/*": [ - "x-pack/plugins/serverless_search/*" - ], - "@kbn/serverless-search-settings": [ - "packages/serverless/settings/search_project" - ], - "@kbn/serverless-search-settings/*": [ - "packages/serverless/settings/search_project/*" - ], - "@kbn/serverless-security-settings": [ - "packages/serverless/settings/security_project" - ], - "@kbn/serverless-security-settings/*": [ - "packages/serverless/settings/security_project/*" - ], - "@kbn/serverless-storybook-config": [ - "packages/serverless/storybook/config" - ], - "@kbn/serverless-storybook-config/*": [ - "packages/serverless/storybook/config/*" - ], - "@kbn/serverless-types": [ - "packages/serverless/types" - ], - "@kbn/serverless-types/*": [ - "packages/serverless/types/*" - ], - "@kbn/session-notifications-plugin": [ - "test/plugin_functional/plugins/session_notifications" - ], - "@kbn/session-notifications-plugin/*": [ - "test/plugin_functional/plugins/session_notifications/*" - ], - "@kbn/session-view-plugin": [ - "x-pack/plugins/session_view" - ], - "@kbn/session-view-plugin/*": [ - "x-pack/plugins/session_view/*" - ], - "@kbn/set-map": [ - "packages/kbn-set-map" - ], - "@kbn/set-map/*": [ - "packages/kbn-set-map/*" - ], - "@kbn/share-examples-plugin": [ - "examples/share_examples" - ], - "@kbn/share-examples-plugin/*": [ - "examples/share_examples/*" - ], - "@kbn/share-plugin": [ - "src/plugins/share" - ], - "@kbn/share-plugin/*": [ - "src/plugins/share/*" - ], - "@kbn/shared-svg": [ - "packages/kbn-shared-svg" - ], - "@kbn/shared-svg/*": [ - "packages/kbn-shared-svg/*" - ], - "@kbn/shared-ux-avatar-solution": [ - "packages/shared-ux/avatar/solution" - ], - "@kbn/shared-ux-avatar-solution/*": [ - "packages/shared-ux/avatar/solution/*" - ], - "@kbn/shared-ux-button-exit-full-screen": [ - "packages/shared-ux/button/exit_full_screen" - ], - "@kbn/shared-ux-button-exit-full-screen/*": [ - "packages/shared-ux/button/exit_full_screen/*" - ], - "@kbn/shared-ux-button-toolbar": [ - "packages/shared-ux/button_toolbar" - ], - "@kbn/shared-ux-button-toolbar/*": [ - "packages/shared-ux/button_toolbar/*" - ], - "@kbn/shared-ux-card-no-data": [ - "packages/shared-ux/card/no_data/impl" - ], - "@kbn/shared-ux-card-no-data/*": [ - "packages/shared-ux/card/no_data/impl/*" - ], - "@kbn/shared-ux-card-no-data-mocks": [ - "packages/shared-ux/card/no_data/mocks" - ], - "@kbn/shared-ux-card-no-data-mocks/*": [ - "packages/shared-ux/card/no_data/mocks/*" - ], - "@kbn/shared-ux-card-no-data-types": [ - "packages/shared-ux/card/no_data/types" - ], - "@kbn/shared-ux-card-no-data-types/*": [ - "packages/shared-ux/card/no_data/types/*" - ], - "@kbn/shared-ux-chrome-navigation": [ - "packages/shared-ux/chrome/navigation" - ], - "@kbn/shared-ux-chrome-navigation/*": [ - "packages/shared-ux/chrome/navigation/*" - ], - "@kbn/shared-ux-error-boundary": [ - "packages/shared-ux/error_boundary" - ], - "@kbn/shared-ux-error-boundary/*": [ - "packages/shared-ux/error_boundary/*" - ], - "@kbn/shared-ux-file-context": [ - "packages/shared-ux/file/context" - ], - "@kbn/shared-ux-file-context/*": [ - "packages/shared-ux/file/context/*" - ], - "@kbn/shared-ux-file-image": [ - "packages/shared-ux/file/image/impl" - ], - "@kbn/shared-ux-file-image/*": [ - "packages/shared-ux/file/image/impl/*" - ], - "@kbn/shared-ux-file-image-mocks": [ - "packages/shared-ux/file/image/mocks" - ], - "@kbn/shared-ux-file-image-mocks/*": [ - "packages/shared-ux/file/image/mocks/*" - ], - "@kbn/shared-ux-file-mocks": [ - "packages/shared-ux/file/mocks" - ], - "@kbn/shared-ux-file-mocks/*": [ - "packages/shared-ux/file/mocks/*" - ], - "@kbn/shared-ux-file-picker": [ - "packages/shared-ux/file/file_picker/impl" - ], - "@kbn/shared-ux-file-picker/*": [ - "packages/shared-ux/file/file_picker/impl/*" - ], - "@kbn/shared-ux-file-types": [ - "packages/shared-ux/file/types" - ], - "@kbn/shared-ux-file-types/*": [ - "packages/shared-ux/file/types/*" - ], - "@kbn/shared-ux-file-upload": [ - "packages/shared-ux/file/file_upload/impl" - ], - "@kbn/shared-ux-file-upload/*": [ - "packages/shared-ux/file/file_upload/impl/*" - ], - "@kbn/shared-ux-file-util": [ - "packages/shared-ux/file/util" - ], - "@kbn/shared-ux-file-util/*": [ - "packages/shared-ux/file/util/*" - ], - "@kbn/shared-ux-link-redirect-app": [ - "packages/shared-ux/link/redirect_app/impl" - ], - "@kbn/shared-ux-link-redirect-app/*": [ - "packages/shared-ux/link/redirect_app/impl/*" - ], - "@kbn/shared-ux-link-redirect-app-mocks": [ - "packages/shared-ux/link/redirect_app/mocks" - ], - "@kbn/shared-ux-link-redirect-app-mocks/*": [ - "packages/shared-ux/link/redirect_app/mocks/*" - ], - "@kbn/shared-ux-link-redirect-app-types": [ - "packages/shared-ux/link/redirect_app/types" - ], - "@kbn/shared-ux-link-redirect-app-types/*": [ - "packages/shared-ux/link/redirect_app/types/*" - ], - "@kbn/shared-ux-markdown": [ - "packages/shared-ux/markdown/impl" - ], - "@kbn/shared-ux-markdown/*": [ - "packages/shared-ux/markdown/impl/*" - ], - "@kbn/shared-ux-markdown-mocks": [ - "packages/shared-ux/markdown/mocks" - ], - "@kbn/shared-ux-markdown-mocks/*": [ - "packages/shared-ux/markdown/mocks/*" - ], - "@kbn/shared-ux-markdown-types": [ - "packages/shared-ux/markdown/types" - ], - "@kbn/shared-ux-markdown-types/*": [ - "packages/shared-ux/markdown/types/*" - ], - "@kbn/shared-ux-page-analytics-no-data": [ - "packages/shared-ux/page/analytics_no_data/impl" - ], - "@kbn/shared-ux-page-analytics-no-data/*": [ - "packages/shared-ux/page/analytics_no_data/impl/*" - ], - "@kbn/shared-ux-page-analytics-no-data-mocks": [ - "packages/shared-ux/page/analytics_no_data/mocks" - ], - "@kbn/shared-ux-page-analytics-no-data-mocks/*": [ - "packages/shared-ux/page/analytics_no_data/mocks/*" - ], - "@kbn/shared-ux-page-analytics-no-data-types": [ - "packages/shared-ux/page/analytics_no_data/types" - ], - "@kbn/shared-ux-page-analytics-no-data-types/*": [ - "packages/shared-ux/page/analytics_no_data/types/*" - ], - "@kbn/shared-ux-page-kibana-no-data": [ - "packages/shared-ux/page/kibana_no_data/impl" - ], - "@kbn/shared-ux-page-kibana-no-data/*": [ - "packages/shared-ux/page/kibana_no_data/impl/*" - ], - "@kbn/shared-ux-page-kibana-no-data-mocks": [ - "packages/shared-ux/page/kibana_no_data/mocks" - ], - "@kbn/shared-ux-page-kibana-no-data-mocks/*": [ - "packages/shared-ux/page/kibana_no_data/mocks/*" - ], - "@kbn/shared-ux-page-kibana-no-data-types": [ - "packages/shared-ux/page/kibana_no_data/types" - ], - "@kbn/shared-ux-page-kibana-no-data-types/*": [ - "packages/shared-ux/page/kibana_no_data/types/*" - ], - "@kbn/shared-ux-page-kibana-template": [ - "packages/shared-ux/page/kibana_template/impl" - ], - "@kbn/shared-ux-page-kibana-template/*": [ - "packages/shared-ux/page/kibana_template/impl/*" - ], - "@kbn/shared-ux-page-kibana-template-mocks": [ - "packages/shared-ux/page/kibana_template/mocks" - ], - "@kbn/shared-ux-page-kibana-template-mocks/*": [ - "packages/shared-ux/page/kibana_template/mocks/*" - ], - "@kbn/shared-ux-page-kibana-template-types": [ - "packages/shared-ux/page/kibana_template/types" - ], - "@kbn/shared-ux-page-kibana-template-types/*": [ - "packages/shared-ux/page/kibana_template/types/*" - ], - "@kbn/shared-ux-page-no-data": [ - "packages/shared-ux/page/no_data/impl" - ], - "@kbn/shared-ux-page-no-data/*": [ - "packages/shared-ux/page/no_data/impl/*" - ], - "@kbn/shared-ux-page-no-data-config": [ - "packages/shared-ux/page/no_data_config/impl" - ], - "@kbn/shared-ux-page-no-data-config/*": [ - "packages/shared-ux/page/no_data_config/impl/*" - ], - "@kbn/shared-ux-page-no-data-config-mocks": [ - "packages/shared-ux/page/no_data_config/mocks" - ], - "@kbn/shared-ux-page-no-data-config-mocks/*": [ - "packages/shared-ux/page/no_data_config/mocks/*" - ], - "@kbn/shared-ux-page-no-data-config-types": [ - "packages/shared-ux/page/no_data_config/types" - ], - "@kbn/shared-ux-page-no-data-config-types/*": [ - "packages/shared-ux/page/no_data_config/types/*" - ], - "@kbn/shared-ux-page-no-data-mocks": [ - "packages/shared-ux/page/no_data/mocks" - ], - "@kbn/shared-ux-page-no-data-mocks/*": [ - "packages/shared-ux/page/no_data/mocks/*" - ], - "@kbn/shared-ux-page-no-data-types": [ - "packages/shared-ux/page/no_data/types" - ], - "@kbn/shared-ux-page-no-data-types/*": [ - "packages/shared-ux/page/no_data/types/*" - ], - "@kbn/shared-ux-page-solution-nav": [ - "packages/shared-ux/page/solution_nav" - ], - "@kbn/shared-ux-page-solution-nav/*": [ - "packages/shared-ux/page/solution_nav/*" - ], - "@kbn/shared-ux-prompt-no-data-views": [ - "packages/shared-ux/prompt/no_data_views/impl" - ], - "@kbn/shared-ux-prompt-no-data-views/*": [ - "packages/shared-ux/prompt/no_data_views/impl/*" - ], - "@kbn/shared-ux-prompt-no-data-views-mocks": [ - "packages/shared-ux/prompt/no_data_views/mocks" - ], - "@kbn/shared-ux-prompt-no-data-views-mocks/*": [ - "packages/shared-ux/prompt/no_data_views/mocks/*" - ], - "@kbn/shared-ux-prompt-no-data-views-types": [ - "packages/shared-ux/prompt/no_data_views/types" - ], - "@kbn/shared-ux-prompt-no-data-views-types/*": [ - "packages/shared-ux/prompt/no_data_views/types/*" - ], - "@kbn/shared-ux-prompt-not-found": [ - "packages/shared-ux/prompt/not_found" - ], - "@kbn/shared-ux-prompt-not-found/*": [ - "packages/shared-ux/prompt/not_found/*" - ], - "@kbn/shared-ux-router": [ - "packages/shared-ux/router/impl" - ], - "@kbn/shared-ux-router/*": [ - "packages/shared-ux/router/impl/*" - ], - "@kbn/shared-ux-router-mocks": [ - "packages/shared-ux/router/mocks" - ], - "@kbn/shared-ux-router-mocks/*": [ - "packages/shared-ux/router/mocks/*" - ], - "@kbn/shared-ux-router-types": [ - "packages/shared-ux/router/types" - ], - "@kbn/shared-ux-router-types/*": [ - "packages/shared-ux/router/types/*" - ], - "@kbn/shared-ux-storybook-config": [ - "packages/shared-ux/storybook/config" - ], - "@kbn/shared-ux-storybook-config/*": [ - "packages/shared-ux/storybook/config/*" - ], - "@kbn/shared-ux-storybook-mock": [ - "packages/shared-ux/storybook/mock" - ], - "@kbn/shared-ux-storybook-mock/*": [ - "packages/shared-ux/storybook/mock/*" - ], - "@kbn/shared-ux-utility": [ - "packages/kbn-shared-ux-utility" - ], - "@kbn/shared-ux-utility/*": [ - "packages/kbn-shared-ux-utility/*" - ], - "@kbn/slo-schema": [ - "x-pack/packages/kbn-slo-schema" - ], - "@kbn/slo-schema/*": [ - "x-pack/packages/kbn-slo-schema/*" - ], - "@kbn/snapshot-restore-plugin": [ - "x-pack/plugins/snapshot_restore" - ], - "@kbn/snapshot-restore-plugin/*": [ - "x-pack/plugins/snapshot_restore/*" - ], - "@kbn/some-dev-log": [ - "packages/kbn-some-dev-log" - ], - "@kbn/some-dev-log/*": [ - "packages/kbn-some-dev-log/*" - ], - "@kbn/sort-package-json": [ - "packages/kbn-sort-package-json" - ], - "@kbn/sort-package-json/*": [ - "packages/kbn-sort-package-json/*" - ], - "@kbn/spaces-plugin": [ - "x-pack/plugins/spaces" - ], - "@kbn/spaces-plugin/*": [ - "x-pack/plugins/spaces/*" - ], - "@kbn/spaces-test-plugin": [ - "x-pack/test/spaces_api_integration/common/plugins/spaces_test_plugin" - ], - "@kbn/spaces-test-plugin/*": [ - "x-pack/test/spaces_api_integration/common/plugins/spaces_test_plugin/*" - ], - "@kbn/spec-to-console": [ - "packages/kbn-spec-to-console" - ], - "@kbn/spec-to-console/*": [ - "packages/kbn-spec-to-console/*" - ], - "@kbn/stack-alerts-plugin": [ - "x-pack/plugins/stack_alerts" - ], - "@kbn/stack-alerts-plugin/*": [ - "x-pack/plugins/stack_alerts/*" - ], - "@kbn/stack-connectors-plugin": [ - "x-pack/plugins/stack_connectors" - ], - "@kbn/stack-connectors-plugin/*": [ - "x-pack/plugins/stack_connectors/*" - ], - "@kbn/stack-management-usage-test-plugin": [ - "x-pack/test/usage_collection/plugins/stack_management_usage_test" - ], - "@kbn/stack-management-usage-test-plugin/*": [ - "x-pack/test/usage_collection/plugins/stack_management_usage_test/*" - ], - "@kbn/state-containers-examples-plugin": [ - "examples/state_containers_examples" - ], - "@kbn/state-containers-examples-plugin/*": [ - "examples/state_containers_examples/*" - ], - "@kbn/status-plugin-a-plugin": [ - "test/server_integration/plugins/status_plugin_a" - ], - "@kbn/status-plugin-a-plugin/*": [ - "test/server_integration/plugins/status_plugin_a/*" - ], - "@kbn/status-plugin-b-plugin": [ - "test/server_integration/plugins/status_plugin_b" - ], - "@kbn/status-plugin-b-plugin/*": [ - "test/server_integration/plugins/status_plugin_b/*" - ], - "@kbn/std": [ - "packages/kbn-std" - ], - "@kbn/std/*": [ - "packages/kbn-std/*" - ], - "@kbn/stdio-dev-helpers": [ - "packages/kbn-stdio-dev-helpers" - ], - "@kbn/stdio-dev-helpers/*": [ - "packages/kbn-stdio-dev-helpers/*" - ], - "@kbn/storybook": [ - "packages/kbn-storybook" - ], - "@kbn/storybook/*": [ - "packages/kbn-storybook/*" - ], - "@kbn/synthetics-plugin": [ - "x-pack/plugins/synthetics" - ], - "@kbn/synthetics-plugin/*": [ - "x-pack/plugins/synthetics/*" - ], - "@kbn/task-manager-fixture-plugin": [ - "x-pack/test/alerting_api_integration/common/plugins/task_manager_fixture" - ], - "@kbn/task-manager-fixture-plugin/*": [ - "x-pack/test/alerting_api_integration/common/plugins/task_manager_fixture/*" - ], - "@kbn/task-manager-performance-plugin": [ - "x-pack/test/plugin_api_perf/plugins/task_manager_performance" - ], - "@kbn/task-manager-performance-plugin/*": [ - "x-pack/test/plugin_api_perf/plugins/task_manager_performance/*" - ], - "@kbn/task-manager-plugin": [ - "x-pack/plugins/task_manager" - ], - "@kbn/task-manager-plugin/*": [ - "x-pack/plugins/task_manager/*" - ], - "@kbn/telemetry-collection-manager-plugin": [ - "src/plugins/telemetry_collection_manager" - ], - "@kbn/telemetry-collection-manager-plugin/*": [ - "src/plugins/telemetry_collection_manager/*" - ], - "@kbn/telemetry-collection-xpack-plugin": [ - "x-pack/plugins/telemetry_collection_xpack" - ], - "@kbn/telemetry-collection-xpack-plugin/*": [ - "x-pack/plugins/telemetry_collection_xpack/*" - ], - "@kbn/telemetry-management-section-plugin": [ - "src/plugins/telemetry_management_section" - ], - "@kbn/telemetry-management-section-plugin/*": [ - "src/plugins/telemetry_management_section/*" - ], - "@kbn/telemetry-plugin": [ - "src/plugins/telemetry" - ], - "@kbn/telemetry-plugin/*": [ - "src/plugins/telemetry/*" - ], - "@kbn/telemetry-test-plugin": [ - "test/plugin_functional/plugins/telemetry" - ], - "@kbn/telemetry-test-plugin/*": [ - "test/plugin_functional/plugins/telemetry/*" - ], - "@kbn/telemetry-tools": [ - "packages/kbn-telemetry-tools" - ], - "@kbn/telemetry-tools/*": [ - "packages/kbn-telemetry-tools/*" - ], - "@kbn/test": [ - "packages/kbn-test" - ], - "@kbn/test/*": [ - "packages/kbn-test/*" - ], - "@kbn/test-feature-usage-plugin": [ - "x-pack/test/licensing_plugin/plugins/test_feature_usage" - ], - "@kbn/test-feature-usage-plugin/*": [ - "x-pack/test/licensing_plugin/plugins/test_feature_usage/*" - ], - "@kbn/test-jest-helpers": [ - "packages/kbn-test-jest-helpers" - ], - "@kbn/test-jest-helpers/*": [ - "packages/kbn-test-jest-helpers/*" - ], - "@kbn/test-subj-selector": [ - "packages/kbn-test-subj-selector" - ], - "@kbn/test-subj-selector/*": [ - "packages/kbn-test-subj-selector/*" - ], - "@kbn/testing-embedded-lens-plugin": [ - "x-pack/examples/testing_embedded_lens" - ], - "@kbn/testing-embedded-lens-plugin/*": [ - "x-pack/examples/testing_embedded_lens/*" - ], - "@kbn/text-based-editor": [ - "packages/kbn-text-based-editor" - ], - "@kbn/text-based-editor/*": [ - "packages/kbn-text-based-editor/*" - ], - "@kbn/text-based-languages": [ - "src/plugins/text_based_languages" - ], - "@kbn/text-based-languages/*": [ - "src/plugins/text_based_languages/*" - ], - "@kbn/third-party-lens-navigation-prompt-plugin": [ - "x-pack/examples/third_party_lens_navigation_prompt" - ], - "@kbn/third-party-lens-navigation-prompt-plugin/*": [ - "x-pack/examples/third_party_lens_navigation_prompt/*" - ], - "@kbn/third-party-vis-lens-example-plugin": [ - "x-pack/examples/third_party_vis_lens_example" - ], - "@kbn/third-party-vis-lens-example-plugin/*": [ - "x-pack/examples/third_party_vis_lens_example/*" - ], - "@kbn/threat-intelligence-plugin": [ - "x-pack/plugins/threat_intelligence" - ], - "@kbn/threat-intelligence-plugin/*": [ - "x-pack/plugins/threat_intelligence/*" - ], - "@kbn/timelines-plugin": [ - "x-pack/plugins/timelines" - ], - "@kbn/timelines-plugin/*": [ - "x-pack/plugins/timelines/*" - ], - "@kbn/timelion-grammar": [ - "packages/kbn-timelion-grammar" - ], - "@kbn/timelion-grammar/*": [ - "packages/kbn-timelion-grammar/*" - ], - "@kbn/tinymath": [ - "packages/kbn-tinymath" - ], - "@kbn/tinymath/*": [ - "packages/kbn-tinymath/*" - ], - "@kbn/tooling-log": [ - "packages/kbn-tooling-log" - ], - "@kbn/tooling-log/*": [ - "packages/kbn-tooling-log/*" - ], - "@kbn/transform-plugin": [ - "x-pack/plugins/transform" - ], - "@kbn/transform-plugin/*": [ - "x-pack/plugins/transform/*" - ], - "@kbn/translations-plugin": [ - "x-pack/plugins/translations" - ], - "@kbn/translations-plugin/*": [ - "x-pack/plugins/translations/*" - ], - "@kbn/triggers-actions-ui-example-plugin": [ - "x-pack/examples/triggers_actions_ui_example" - ], - "@kbn/triggers-actions-ui-example-plugin/*": [ - "x-pack/examples/triggers_actions_ui_example/*" - ], - "@kbn/triggers-actions-ui-plugin": [ - "x-pack/plugins/triggers_actions_ui" - ], - "@kbn/triggers-actions-ui-plugin/*": [ - "x-pack/plugins/triggers_actions_ui/*" - ], - "@kbn/triggers-actions-ui-types": [ - "packages/kbn-triggers-actions-ui-types" - ], - "@kbn/triggers-actions-ui-types/*": [ - "packages/kbn-triggers-actions-ui-types/*" - ], - "@kbn/ts-projects": [ - "packages/kbn-ts-projects" - ], - "@kbn/ts-projects/*": [ - "packages/kbn-ts-projects/*" - ], - "@kbn/ts-type-check-cli": [ - "packages/kbn-ts-type-check-cli" - ], - "@kbn/ts-type-check-cli/*": [ - "packages/kbn-ts-type-check-cli/*" - ], - "@kbn/typed-react-router-config": [ - "packages/kbn-typed-react-router-config" - ], - "@kbn/typed-react-router-config/*": [ - "packages/kbn-typed-react-router-config/*" - ], - "@kbn/ui-actions-browser": [ - "packages/kbn-ui-actions-browser" - ], - "@kbn/ui-actions-browser/*": [ - "packages/kbn-ui-actions-browser/*" - ], - "@kbn/ui-actions-enhanced-examples-plugin": [ - "x-pack/examples/ui_actions_enhanced_examples" - ], - "@kbn/ui-actions-enhanced-examples-plugin/*": [ - "x-pack/examples/ui_actions_enhanced_examples/*" - ], - "@kbn/ui-actions-enhanced-plugin": [ - "src/plugins/ui_actions_enhanced" - ], - "@kbn/ui-actions-enhanced-plugin/*": [ - "src/plugins/ui_actions_enhanced/*" - ], - "@kbn/ui-actions-examples-plugin": [ - "examples/ui_action_examples" - ], - "@kbn/ui-actions-examples-plugin/*": [ - "examples/ui_action_examples/*" - ], - "@kbn/ui-actions-explorer-plugin": [ - "examples/ui_actions_explorer" - ], - "@kbn/ui-actions-explorer-plugin/*": [ - "examples/ui_actions_explorer/*" - ], - "@kbn/ui-actions-plugin": [ - "src/plugins/ui_actions" - ], - "@kbn/ui-actions-plugin/*": [ - "src/plugins/ui_actions/*" - ], - "@kbn/ui-settings-plugin": [ - "test/plugin_functional/plugins/ui_settings_plugin" - ], - "@kbn/ui-settings-plugin/*": [ - "test/plugin_functional/plugins/ui_settings_plugin/*" - ], - "@kbn/ui-shared-deps-npm": [ - "packages/kbn-ui-shared-deps-npm" - ], - "@kbn/ui-shared-deps-npm/*": [ - "packages/kbn-ui-shared-deps-npm/*" - ], - "@kbn/ui-shared-deps-src": [ - "packages/kbn-ui-shared-deps-src" - ], - "@kbn/ui-shared-deps-src/*": [ - "packages/kbn-ui-shared-deps-src/*" - ], - "@kbn/ui-theme": [ - "packages/kbn-ui-theme" - ], - "@kbn/ui-theme/*": [ - "packages/kbn-ui-theme/*" - ], - "@kbn/unified-data-table": [ - "packages/kbn-unified-data-table" - ], - "@kbn/unified-data-table/*": [ - "packages/kbn-unified-data-table/*" - ], - "@kbn/unified-doc-viewer": [ - "packages/kbn-unified-doc-viewer" - ], - "@kbn/unified-doc-viewer/*": [ - "packages/kbn-unified-doc-viewer/*" - ], - "@kbn/unified-doc-viewer-examples": [ - "examples/unified_doc_viewer" - ], - "@kbn/unified-doc-viewer-examples/*": [ - "examples/unified_doc_viewer/*" - ], - "@kbn/unified-doc-viewer-plugin": [ - "src/plugins/unified_doc_viewer" - ], - "@kbn/unified-doc-viewer-plugin/*": [ - "src/plugins/unified_doc_viewer/*" - ], - "@kbn/unified-field-list": [ - "packages/kbn-unified-field-list" - ], - "@kbn/unified-field-list/*": [ - "packages/kbn-unified-field-list/*" - ], - "@kbn/unified-field-list-examples-plugin": [ - "examples/unified_field_list_examples" - ], - "@kbn/unified-field-list-examples-plugin/*": [ - "examples/unified_field_list_examples/*" - ], - "@kbn/unified-histogram-plugin": [ - "src/plugins/unified_histogram" - ], - "@kbn/unified-histogram-plugin/*": [ - "src/plugins/unified_histogram/*" - ], - "@kbn/unified-search-plugin": [ - "src/plugins/unified_search" - ], - "@kbn/unified-search-plugin/*": [ - "src/plugins/unified_search/*" - ], - "@kbn/unsaved-changes-badge": [ - "packages/kbn-unsaved-changes-badge" - ], - "@kbn/unsaved-changes-badge/*": [ - "packages/kbn-unsaved-changes-badge/*" - ], - "@kbn/upgrade-assistant-plugin": [ - "x-pack/plugins/upgrade_assistant" - ], - "@kbn/upgrade-assistant-plugin/*": [ - "x-pack/plugins/upgrade_assistant/*" - ], - "@kbn/uptime-plugin": [ - "x-pack/plugins/uptime" - ], - "@kbn/uptime-plugin/*": [ - "x-pack/plugins/uptime/*" - ], - "@kbn/url-drilldown-plugin": [ - "x-pack/plugins/drilldowns/url_drilldown" - ], - "@kbn/url-drilldown-plugin/*": [ - "x-pack/plugins/drilldowns/url_drilldown/*" - ], - "@kbn/url-forwarding-plugin": [ - "src/plugins/url_forwarding" - ], - "@kbn/url-forwarding-plugin/*": [ - "src/plugins/url_forwarding/*" - ], - "@kbn/url-state": [ - "packages/kbn-url-state" - ], - "@kbn/url-state/*": [ - "packages/kbn-url-state/*" - ], - "@kbn/usage-collection-plugin": [ - "src/plugins/usage_collection" - ], - "@kbn/usage-collection-plugin/*": [ - "src/plugins/usage_collection/*" - ], - "@kbn/usage-collection-test-plugin": [ - "test/plugin_functional/plugins/usage_collection" - ], - "@kbn/usage-collection-test-plugin/*": [ - "test/plugin_functional/plugins/usage_collection/*" - ], - "@kbn/use-tracked-promise": [ - "packages/kbn-use-tracked-promise" - ], - "@kbn/use-tracked-promise/*": [ - "packages/kbn-use-tracked-promise/*" - ], - "@kbn/user-profile-components": [ - "packages/kbn-user-profile-components" - ], - "@kbn/user-profile-components/*": [ - "packages/kbn-user-profile-components/*" - ], - "@kbn/user-profile-examples-plugin": [ - "examples/user_profile_examples" - ], - "@kbn/user-profile-examples-plugin/*": [ - "examples/user_profile_examples/*" - ], - "@kbn/user-profiles-consumer-plugin": [ - "x-pack/test/security_api_integration/plugins/user_profiles_consumer" - ], - "@kbn/user-profiles-consumer-plugin/*": [ - "x-pack/test/security_api_integration/plugins/user_profiles_consumer/*" - ], - "@kbn/utility-types": [ - "packages/kbn-utility-types" - ], - "@kbn/utility-types/*": [ - "packages/kbn-utility-types/*" - ], - "@kbn/utility-types-jest": [ - "packages/kbn-utility-types-jest" - ], - "@kbn/utility-types-jest/*": [ - "packages/kbn-utility-types-jest/*" - ], - "@kbn/utils": [ - "packages/kbn-utils" - ], - "@kbn/utils/*": [ - "packages/kbn-utils/*" - ], - "@kbn/ux-plugin": [ - "x-pack/plugins/ux" - ], - "@kbn/ux-plugin/*": [ - "x-pack/plugins/ux/*" - ], - "@kbn/v8-profiler-examples-plugin": [ - "examples/v8_profiler_examples" - ], - "@kbn/v8-profiler-examples-plugin/*": [ - "examples/v8_profiler_examples/*" - ], - "@kbn/validate-next-docs-cli": [ - "packages/kbn-validate-next-docs-cli" - ], - "@kbn/validate-next-docs-cli/*": [ - "packages/kbn-validate-next-docs-cli/*" - ], - "@kbn/vis-default-editor-plugin": [ - "src/plugins/vis_default_editor" - ], - "@kbn/vis-default-editor-plugin/*": [ - "src/plugins/vis_default_editor/*" - ], - "@kbn/vis-type-gauge-plugin": [ - "src/plugins/vis_types/gauge" - ], - "@kbn/vis-type-gauge-plugin/*": [ - "src/plugins/vis_types/gauge/*" - ], - "@kbn/vis-type-heatmap-plugin": [ - "src/plugins/vis_types/heatmap" - ], - "@kbn/vis-type-heatmap-plugin/*": [ - "src/plugins/vis_types/heatmap/*" - ], - "@kbn/vis-type-markdown-plugin": [ - "src/plugins/vis_type_markdown" - ], - "@kbn/vis-type-markdown-plugin/*": [ - "src/plugins/vis_type_markdown/*" - ], - "@kbn/vis-type-metric-plugin": [ - "src/plugins/vis_types/metric" - ], - "@kbn/vis-type-metric-plugin/*": [ - "src/plugins/vis_types/metric/*" - ], - "@kbn/vis-type-pie-plugin": [ - "src/plugins/vis_types/pie" - ], - "@kbn/vis-type-pie-plugin/*": [ - "src/plugins/vis_types/pie/*" - ], - "@kbn/vis-type-table-plugin": [ - "src/plugins/vis_types/table" - ], - "@kbn/vis-type-table-plugin/*": [ - "src/plugins/vis_types/table/*" - ], - "@kbn/vis-type-tagcloud-plugin": [ - "src/plugins/vis_types/tagcloud" - ], - "@kbn/vis-type-tagcloud-plugin/*": [ - "src/plugins/vis_types/tagcloud/*" - ], - "@kbn/vis-type-timelion-plugin": [ - "src/plugins/vis_types/timelion" - ], - "@kbn/vis-type-timelion-plugin/*": [ - "src/plugins/vis_types/timelion/*" - ], - "@kbn/vis-type-timeseries-plugin": [ - "src/plugins/vis_types/timeseries" - ], - "@kbn/vis-type-timeseries-plugin/*": [ - "src/plugins/vis_types/timeseries/*" - ], - "@kbn/vis-type-vega-plugin": [ - "src/plugins/vis_types/vega" - ], - "@kbn/vis-type-vega-plugin/*": [ - "src/plugins/vis_types/vega/*" - ], - "@kbn/vis-type-vislib-plugin": [ - "src/plugins/vis_types/vislib" - ], - "@kbn/vis-type-vislib-plugin/*": [ - "src/plugins/vis_types/vislib/*" - ], - "@kbn/vis-type-xy-plugin": [ - "src/plugins/vis_types/xy" - ], - "@kbn/vis-type-xy-plugin/*": [ - "src/plugins/vis_types/xy/*" - ], - "@kbn/visualization-ui-components": [ - "packages/kbn-visualization-ui-components" - ], - "@kbn/visualization-ui-components/*": [ - "packages/kbn-visualization-ui-components/*" - ], - "@kbn/visualization-utils": [ - "packages/kbn-visualization-utils" - ], - "@kbn/visualization-utils/*": [ - "packages/kbn-visualization-utils/*" - ], - "@kbn/visualizations-plugin": [ - "src/plugins/visualizations" - ], - "@kbn/visualizations-plugin/*": [ - "src/plugins/visualizations/*" - ], - "@kbn/watcher-plugin": [ - "x-pack/plugins/watcher" - ], - "@kbn/watcher-plugin/*": [ - "x-pack/plugins/watcher/*" - ], - "@kbn/web-worker-stub": [ - "packages/kbn-web-worker-stub" - ], - "@kbn/web-worker-stub/*": [ - "packages/kbn-web-worker-stub/*" - ], - "@kbn/whereis-pkg-cli": [ - "packages/kbn-whereis-pkg-cli" - ], - "@kbn/whereis-pkg-cli/*": [ - "packages/kbn-whereis-pkg-cli/*" - ], - "@kbn/xstate-utils": [ - "packages/kbn-xstate-utils" - ], - "@kbn/xstate-utils/*": [ - "packages/kbn-xstate-utils/*" - ], - "@kbn/yarn-lock-validator": [ - "packages/kbn-yarn-lock-validator" - ], - "@kbn/yarn-lock-validator/*": [ - "packages/kbn-yarn-lock-validator/*" - ], - "@kbn/zod-helpers": [ - "packages/kbn-zod-helpers" - ], - "@kbn/zod-helpers/*": [ - "packages/kbn-zod-helpers/*" - ], + "@kbn/aad-fixtures-plugin": ["x-pack/test/alerting_api_integration/common/plugins/aad"], + "@kbn/aad-fixtures-plugin/*": ["x-pack/test/alerting_api_integration/common/plugins/aad/*"], + "@kbn/ace": ["packages/kbn-ace"], + "@kbn/ace/*": ["packages/kbn-ace/*"], + "@kbn/actions-plugin": ["x-pack/plugins/actions"], + "@kbn/actions-plugin/*": ["x-pack/plugins/actions/*"], + "@kbn/actions-simulators-plugin": ["x-pack/test/alerting_api_integration/common/plugins/actions_simulators"], + "@kbn/actions-simulators-plugin/*": ["x-pack/test/alerting_api_integration/common/plugins/actions_simulators/*"], + "@kbn/actions-types": ["packages/kbn-actions-types"], + "@kbn/actions-types/*": ["packages/kbn-actions-types/*"], + "@kbn/advanced-settings-plugin": ["src/plugins/advanced_settings"], + "@kbn/advanced-settings-plugin/*": ["src/plugins/advanced_settings/*"], + "@kbn/ai-assistant-management-observability-plugin": ["src/plugins/ai_assistant_management/observability"], + "@kbn/ai-assistant-management-observability-plugin/*": ["src/plugins/ai_assistant_management/observability/*"], + "@kbn/ai-assistant-management-plugin": ["src/plugins/ai_assistant_management/selection"], + "@kbn/ai-assistant-management-plugin/*": ["src/plugins/ai_assistant_management/selection/*"], + "@kbn/aiops-components": ["x-pack/packages/ml/aiops_components"], + "@kbn/aiops-components/*": ["x-pack/packages/ml/aiops_components/*"], + "@kbn/aiops-plugin": ["x-pack/plugins/aiops"], + "@kbn/aiops-plugin/*": ["x-pack/plugins/aiops/*"], + "@kbn/aiops-utils": ["x-pack/packages/ml/aiops_utils"], + "@kbn/aiops-utils/*": ["x-pack/packages/ml/aiops_utils/*"], + "@kbn/alerting-api-integration-helpers": ["x-pack/test/alerting_api_integration/packages/helpers"], + "@kbn/alerting-api-integration-helpers/*": ["x-pack/test/alerting_api_integration/packages/helpers/*"], + "@kbn/alerting-api-integration-test-plugin": ["x-pack/test/alerting_api_integration/common/plugins/alerts"], + "@kbn/alerting-api-integration-test-plugin/*": ["x-pack/test/alerting_api_integration/common/plugins/alerts/*"], + "@kbn/alerting-example-plugin": ["x-pack/examples/alerting_example"], + "@kbn/alerting-example-plugin/*": ["x-pack/examples/alerting_example/*"], + "@kbn/alerting-fixture-plugin": ["x-pack/test/functional_with_es_ssl/plugins/alerts"], + "@kbn/alerting-fixture-plugin/*": ["x-pack/test/functional_with_es_ssl/plugins/alerts/*"], + "@kbn/alerting-plugin": ["x-pack/plugins/alerting"], + "@kbn/alerting-plugin/*": ["x-pack/plugins/alerting/*"], + "@kbn/alerting-state-types": ["x-pack/packages/kbn-alerting-state-types"], + "@kbn/alerting-state-types/*": ["x-pack/packages/kbn-alerting-state-types/*"], + "@kbn/alerting-types": ["packages/kbn-alerting-types"], + "@kbn/alerting-types/*": ["packages/kbn-alerting-types/*"], + "@kbn/alerts-as-data-utils": ["packages/kbn-alerts-as-data-utils"], + "@kbn/alerts-as-data-utils/*": ["packages/kbn-alerts-as-data-utils/*"], + "@kbn/alerts-restricted-fixtures-plugin": ["x-pack/test/alerting_api_integration/common/plugins/alerts_restricted"], + "@kbn/alerts-restricted-fixtures-plugin/*": ["x-pack/test/alerting_api_integration/common/plugins/alerts_restricted/*"], + "@kbn/alerts-ui-shared": ["packages/kbn-alerts-ui-shared"], + "@kbn/alerts-ui-shared/*": ["packages/kbn-alerts-ui-shared/*"], + "@kbn/ambient-common-types": ["packages/kbn-ambient-common-types"], + "@kbn/ambient-common-types/*": ["packages/kbn-ambient-common-types/*"], + "@kbn/ambient-ftr-types": ["packages/kbn-ambient-ftr-types"], + "@kbn/ambient-ftr-types/*": ["packages/kbn-ambient-ftr-types/*"], + "@kbn/ambient-storybook-types": ["packages/kbn-ambient-storybook-types"], + "@kbn/ambient-storybook-types/*": ["packages/kbn-ambient-storybook-types/*"], + "@kbn/ambient-ui-types": ["packages/kbn-ambient-ui-types"], + "@kbn/ambient-ui-types/*": ["packages/kbn-ambient-ui-types/*"], + "@kbn/analytics": ["packages/kbn-analytics"], + "@kbn/analytics/*": ["packages/kbn-analytics/*"], + "@kbn/analytics-client": ["packages/analytics/client"], + "@kbn/analytics-client/*": ["packages/analytics/client/*"], + "@kbn/analytics-collection-utils": ["packages/analytics/utils/analytics_collection_utils"], + "@kbn/analytics-collection-utils/*": ["packages/analytics/utils/analytics_collection_utils/*"], + "@kbn/analytics-ftr-helpers-plugin": ["test/analytics/plugins/analytics_ftr_helpers"], + "@kbn/analytics-ftr-helpers-plugin/*": ["test/analytics/plugins/analytics_ftr_helpers/*"], + "@kbn/analytics-plugin-a-plugin": ["test/analytics/plugins/analytics_plugin_a"], + "@kbn/analytics-plugin-a-plugin/*": ["test/analytics/plugins/analytics_plugin_a/*"], + "@kbn/analytics-shippers-elastic-v3-browser": ["packages/analytics/shippers/elastic_v3/browser"], + "@kbn/analytics-shippers-elastic-v3-browser/*": ["packages/analytics/shippers/elastic_v3/browser/*"], + "@kbn/analytics-shippers-elastic-v3-common": ["packages/analytics/shippers/elastic_v3/common"], + "@kbn/analytics-shippers-elastic-v3-common/*": ["packages/analytics/shippers/elastic_v3/common/*"], + "@kbn/analytics-shippers-elastic-v3-server": ["packages/analytics/shippers/elastic_v3/server"], + "@kbn/analytics-shippers-elastic-v3-server/*": ["packages/analytics/shippers/elastic_v3/server/*"], + "@kbn/analytics-shippers-fullstory": ["packages/analytics/shippers/fullstory"], + "@kbn/analytics-shippers-fullstory/*": ["packages/analytics/shippers/fullstory/*"], + "@kbn/analytics-shippers-gainsight": ["packages/analytics/shippers/gainsight"], + "@kbn/analytics-shippers-gainsight/*": ["packages/analytics/shippers/gainsight/*"], + "@kbn/apm-config-loader": ["packages/kbn-apm-config-loader"], + "@kbn/apm-config-loader/*": ["packages/kbn-apm-config-loader/*"], + "@kbn/apm-data-access-plugin": ["x-pack/plugins/apm_data_access"], + "@kbn/apm-data-access-plugin/*": ["x-pack/plugins/apm_data_access/*"], + "@kbn/apm-plugin": ["x-pack/plugins/apm"], + "@kbn/apm-plugin/*": ["x-pack/plugins/apm/*"], + "@kbn/apm-synthtrace": ["packages/kbn-apm-synthtrace"], + "@kbn/apm-synthtrace/*": ["packages/kbn-apm-synthtrace/*"], + "@kbn/apm-synthtrace-client": ["packages/kbn-apm-synthtrace-client"], + "@kbn/apm-synthtrace-client/*": ["packages/kbn-apm-synthtrace-client/*"], + "@kbn/apm-utils": ["packages/kbn-apm-utils"], + "@kbn/apm-utils/*": ["packages/kbn-apm-utils/*"], + "@kbn/app-link-test-plugin": ["test/plugin_functional/plugins/app_link_test"], + "@kbn/app-link-test-plugin/*": ["test/plugin_functional/plugins/app_link_test/*"], + "@kbn/application-usage-test-plugin": ["x-pack/test/usage_collection/plugins/application_usage_test"], + "@kbn/application-usage-test-plugin/*": ["x-pack/test/usage_collection/plugins/application_usage_test/*"], + "@kbn/assetManager-plugin": ["x-pack/plugins/asset_manager"], + "@kbn/assetManager-plugin/*": ["x-pack/plugins/asset_manager/*"], + "@kbn/audit-log-plugin": ["x-pack/test/security_api_integration/plugins/audit_log"], + "@kbn/audit-log-plugin/*": ["x-pack/test/security_api_integration/plugins/audit_log/*"], + "@kbn/axe-config": ["packages/kbn-axe-config"], + "@kbn/axe-config/*": ["packages/kbn-axe-config/*"], + "@kbn/babel-preset": ["packages/kbn-babel-preset"], + "@kbn/babel-preset/*": ["packages/kbn-babel-preset/*"], + "@kbn/babel-register": ["packages/kbn-babel-register"], + "@kbn/babel-register/*": ["packages/kbn-babel-register/*"], + "@kbn/babel-transform": ["packages/kbn-babel-transform"], + "@kbn/babel-transform/*": ["packages/kbn-babel-transform/*"], + "@kbn/banners-plugin": ["x-pack/plugins/banners"], + "@kbn/banners-plugin/*": ["x-pack/plugins/banners/*"], + "@kbn/bazel-runner": ["packages/kbn-bazel-runner"], + "@kbn/bazel-runner/*": ["packages/kbn-bazel-runner/*"], + "@kbn/bfetch-error": ["packages/kbn-bfetch-error"], + "@kbn/bfetch-error/*": ["packages/kbn-bfetch-error/*"], + "@kbn/bfetch-explorer-plugin": ["examples/bfetch_explorer"], + "@kbn/bfetch-explorer-plugin/*": ["examples/bfetch_explorer/*"], + "@kbn/bfetch-plugin": ["src/plugins/bfetch"], + "@kbn/bfetch-plugin/*": ["src/plugins/bfetch/*"], + "@kbn/calculate-auto": ["packages/kbn-calculate-auto"], + "@kbn/calculate-auto/*": ["packages/kbn-calculate-auto/*"], + "@kbn/calculate-width-from-char-count": ["packages/kbn-calculate-width-from-char-count"], + "@kbn/calculate-width-from-char-count/*": ["packages/kbn-calculate-width-from-char-count/*"], + "@kbn/canvas-plugin": ["x-pack/plugins/canvas"], + "@kbn/canvas-plugin/*": ["x-pack/plugins/canvas/*"], + "@kbn/cases-api-integration-test-plugin": ["x-pack/test/cases_api_integration/common/plugins/cases"], + "@kbn/cases-api-integration-test-plugin/*": ["x-pack/test/cases_api_integration/common/plugins/cases/*"], + "@kbn/cases-components": ["packages/kbn-cases-components"], + "@kbn/cases-components/*": ["packages/kbn-cases-components/*"], + "@kbn/cases-plugin": ["x-pack/plugins/cases"], + "@kbn/cases-plugin/*": ["x-pack/plugins/cases/*"], + "@kbn/cell-actions": ["packages/kbn-cell-actions"], + "@kbn/cell-actions/*": ["packages/kbn-cell-actions/*"], + "@kbn/chart-expressions-common": ["src/plugins/chart_expressions/common"], + "@kbn/chart-expressions-common/*": ["src/plugins/chart_expressions/common/*"], + "@kbn/chart-icons": ["packages/kbn-chart-icons"], + "@kbn/chart-icons/*": ["packages/kbn-chart-icons/*"], + "@kbn/charts-plugin": ["src/plugins/charts"], + "@kbn/charts-plugin/*": ["src/plugins/charts/*"], + "@kbn/check-mappings-update-cli": ["packages/kbn-check-mappings-update-cli"], + "@kbn/check-mappings-update-cli/*": ["packages/kbn-check-mappings-update-cli/*"], + "@kbn/ci-stats-core": ["packages/kbn-ci-stats-core"], + "@kbn/ci-stats-core/*": ["packages/kbn-ci-stats-core/*"], + "@kbn/ci-stats-performance-metrics": ["packages/kbn-ci-stats-performance-metrics"], + "@kbn/ci-stats-performance-metrics/*": ["packages/kbn-ci-stats-performance-metrics/*"], + "@kbn/ci-stats-reporter": ["packages/kbn-ci-stats-reporter"], + "@kbn/ci-stats-reporter/*": ["packages/kbn-ci-stats-reporter/*"], + "@kbn/ci-stats-shipper-cli": ["packages/kbn-ci-stats-shipper-cli"], + "@kbn/ci-stats-shipper-cli/*": ["packages/kbn-ci-stats-shipper-cli/*"], + "@kbn/cli-dev-mode": ["packages/kbn-cli-dev-mode"], + "@kbn/cli-dev-mode/*": ["packages/kbn-cli-dev-mode/*"], + "@kbn/cloud": ["packages/cloud"], + "@kbn/cloud/*": ["packages/cloud/*"], + "@kbn/cloud-chat-plugin": ["x-pack/plugins/cloud_integrations/cloud_chat"], + "@kbn/cloud-chat-plugin/*": ["x-pack/plugins/cloud_integrations/cloud_chat/*"], + "@kbn/cloud-data-migration-plugin": ["x-pack/plugins/cloud_integrations/cloud_data_migration"], + "@kbn/cloud-data-migration-plugin/*": ["x-pack/plugins/cloud_integrations/cloud_data_migration/*"], + "@kbn/cloud-defend-plugin": ["x-pack/plugins/cloud_defend"], + "@kbn/cloud-defend-plugin/*": ["x-pack/plugins/cloud_defend/*"], + "@kbn/cloud-experiments-plugin": ["x-pack/plugins/cloud_integrations/cloud_experiments"], + "@kbn/cloud-experiments-plugin/*": ["x-pack/plugins/cloud_integrations/cloud_experiments/*"], + "@kbn/cloud-full-story-plugin": ["x-pack/plugins/cloud_integrations/cloud_full_story"], + "@kbn/cloud-full-story-plugin/*": ["x-pack/plugins/cloud_integrations/cloud_full_story/*"], + "@kbn/cloud-gainsight-plugin": ["x-pack/plugins/cloud_integrations/cloud_gain_sight"], + "@kbn/cloud-gainsight-plugin/*": ["x-pack/plugins/cloud_integrations/cloud_gain_sight/*"], + "@kbn/cloud-integration-saml-provider-plugin": ["x-pack/test/cloud_integration/plugins/saml_provider"], + "@kbn/cloud-integration-saml-provider-plugin/*": ["x-pack/test/cloud_integration/plugins/saml_provider/*"], + "@kbn/cloud-links-plugin": ["x-pack/plugins/cloud_integrations/cloud_links"], + "@kbn/cloud-links-plugin/*": ["x-pack/plugins/cloud_integrations/cloud_links/*"], + "@kbn/cloud-plugin": ["x-pack/plugins/cloud"], + "@kbn/cloud-plugin/*": ["x-pack/plugins/cloud/*"], + "@kbn/cloud-security-posture-plugin": ["x-pack/plugins/cloud_security_posture"], + "@kbn/cloud-security-posture-plugin/*": ["x-pack/plugins/cloud_security_posture/*"], + "@kbn/code-editor": ["packages/shared-ux/code_editor"], + "@kbn/code-editor/*": ["packages/shared-ux/code_editor/*"], + "@kbn/code-owners": ["packages/kbn-code-owners"], + "@kbn/code-owners/*": ["packages/kbn-code-owners/*"], + "@kbn/coloring": ["packages/kbn-coloring"], + "@kbn/coloring/*": ["packages/kbn-coloring/*"], + "@kbn/config": ["packages/kbn-config"], + "@kbn/config/*": ["packages/kbn-config/*"], + "@kbn/config-mocks": ["packages/kbn-config-mocks"], + "@kbn/config-mocks/*": ["packages/kbn-config-mocks/*"], + "@kbn/config-schema": ["packages/kbn-config-schema"], + "@kbn/config-schema/*": ["packages/kbn-config-schema/*"], + "@kbn/console-plugin": ["src/plugins/console"], + "@kbn/console-plugin/*": ["src/plugins/console/*"], + "@kbn/content-management-content-editor": ["packages/content-management/content_editor"], + "@kbn/content-management-content-editor/*": ["packages/content-management/content_editor/*"], + "@kbn/content-management-examples-plugin": ["examples/content_management_examples"], + "@kbn/content-management-examples-plugin/*": ["examples/content_management_examples/*"], + "@kbn/content-management-plugin": ["src/plugins/content_management"], + "@kbn/content-management-plugin/*": ["src/plugins/content_management/*"], + "@kbn/content-management-tabbed-table-list-view": ["packages/content-management/tabbed_table_list_view"], + "@kbn/content-management-tabbed-table-list-view/*": ["packages/content-management/tabbed_table_list_view/*"], + "@kbn/content-management-table-list-view": ["packages/content-management/table_list_view"], + "@kbn/content-management-table-list-view/*": ["packages/content-management/table_list_view/*"], + "@kbn/content-management-table-list-view-common": ["packages/content-management/table_list_view_common"], + "@kbn/content-management-table-list-view-common/*": ["packages/content-management/table_list_view_common/*"], + "@kbn/content-management-table-list-view-table": ["packages/content-management/table_list_view_table"], + "@kbn/content-management-table-list-view-table/*": ["packages/content-management/table_list_view_table/*"], + "@kbn/content-management-utils": ["packages/kbn-content-management-utils"], + "@kbn/content-management-utils/*": ["packages/kbn-content-management-utils/*"], + "@kbn/controls-example-plugin": ["examples/controls_example"], + "@kbn/controls-example-plugin/*": ["examples/controls_example/*"], + "@kbn/controls-plugin": ["src/plugins/controls"], + "@kbn/controls-plugin/*": ["src/plugins/controls/*"], + "@kbn/core": ["src/core"], + "@kbn/core/*": ["src/core/*"], + "@kbn/core-analytics-browser": ["packages/core/analytics/core-analytics-browser"], + "@kbn/core-analytics-browser/*": ["packages/core/analytics/core-analytics-browser/*"], + "@kbn/core-analytics-browser-internal": ["packages/core/analytics/core-analytics-browser-internal"], + "@kbn/core-analytics-browser-internal/*": ["packages/core/analytics/core-analytics-browser-internal/*"], + "@kbn/core-analytics-browser-mocks": ["packages/core/analytics/core-analytics-browser-mocks"], + "@kbn/core-analytics-browser-mocks/*": ["packages/core/analytics/core-analytics-browser-mocks/*"], + "@kbn/core-analytics-server": ["packages/core/analytics/core-analytics-server"], + "@kbn/core-analytics-server/*": ["packages/core/analytics/core-analytics-server/*"], + "@kbn/core-analytics-server-internal": ["packages/core/analytics/core-analytics-server-internal"], + "@kbn/core-analytics-server-internal/*": ["packages/core/analytics/core-analytics-server-internal/*"], + "@kbn/core-analytics-server-mocks": ["packages/core/analytics/core-analytics-server-mocks"], + "@kbn/core-analytics-server-mocks/*": ["packages/core/analytics/core-analytics-server-mocks/*"], + "@kbn/core-app-status-plugin": ["test/plugin_functional/plugins/core_app_status"], + "@kbn/core-app-status-plugin/*": ["test/plugin_functional/plugins/core_app_status/*"], + "@kbn/core-application-browser": ["packages/core/application/core-application-browser"], + "@kbn/core-application-browser/*": ["packages/core/application/core-application-browser/*"], + "@kbn/core-application-browser-internal": ["packages/core/application/core-application-browser-internal"], + "@kbn/core-application-browser-internal/*": ["packages/core/application/core-application-browser-internal/*"], + "@kbn/core-application-browser-mocks": ["packages/core/application/core-application-browser-mocks"], + "@kbn/core-application-browser-mocks/*": ["packages/core/application/core-application-browser-mocks/*"], + "@kbn/core-application-common": ["packages/core/application/core-application-common"], + "@kbn/core-application-common/*": ["packages/core/application/core-application-common/*"], + "@kbn/core-apps-browser-internal": ["packages/core/apps/core-apps-browser-internal"], + "@kbn/core-apps-browser-internal/*": ["packages/core/apps/core-apps-browser-internal/*"], + "@kbn/core-apps-browser-mocks": ["packages/core/apps/core-apps-browser-mocks"], + "@kbn/core-apps-browser-mocks/*": ["packages/core/apps/core-apps-browser-mocks/*"], + "@kbn/core-apps-server-internal": ["packages/core/apps/core-apps-server-internal"], + "@kbn/core-apps-server-internal/*": ["packages/core/apps/core-apps-server-internal/*"], + "@kbn/core-base-browser-internal": ["packages/core/base/core-base-browser-internal"], + "@kbn/core-base-browser-internal/*": ["packages/core/base/core-base-browser-internal/*"], + "@kbn/core-base-browser-mocks": ["packages/core/base/core-base-browser-mocks"], + "@kbn/core-base-browser-mocks/*": ["packages/core/base/core-base-browser-mocks/*"], + "@kbn/core-base-common": ["packages/core/base/core-base-common"], + "@kbn/core-base-common/*": ["packages/core/base/core-base-common/*"], + "@kbn/core-base-common-internal": ["packages/core/base/core-base-common-internal"], + "@kbn/core-base-common-internal/*": ["packages/core/base/core-base-common-internal/*"], + "@kbn/core-base-server-internal": ["packages/core/base/core-base-server-internal"], + "@kbn/core-base-server-internal/*": ["packages/core/base/core-base-server-internal/*"], + "@kbn/core-base-server-mocks": ["packages/core/base/core-base-server-mocks"], + "@kbn/core-base-server-mocks/*": ["packages/core/base/core-base-server-mocks/*"], + "@kbn/core-capabilities-browser-internal": ["packages/core/capabilities/core-capabilities-browser-internal"], + "@kbn/core-capabilities-browser-internal/*": ["packages/core/capabilities/core-capabilities-browser-internal/*"], + "@kbn/core-capabilities-browser-mocks": ["packages/core/capabilities/core-capabilities-browser-mocks"], + "@kbn/core-capabilities-browser-mocks/*": ["packages/core/capabilities/core-capabilities-browser-mocks/*"], + "@kbn/core-capabilities-common": ["packages/core/capabilities/core-capabilities-common"], + "@kbn/core-capabilities-common/*": ["packages/core/capabilities/core-capabilities-common/*"], + "@kbn/core-capabilities-server": ["packages/core/capabilities/core-capabilities-server"], + "@kbn/core-capabilities-server/*": ["packages/core/capabilities/core-capabilities-server/*"], + "@kbn/core-capabilities-server-internal": ["packages/core/capabilities/core-capabilities-server-internal"], + "@kbn/core-capabilities-server-internal/*": ["packages/core/capabilities/core-capabilities-server-internal/*"], + "@kbn/core-capabilities-server-mocks": ["packages/core/capabilities/core-capabilities-server-mocks"], + "@kbn/core-capabilities-server-mocks/*": ["packages/core/capabilities/core-capabilities-server-mocks/*"], + "@kbn/core-chrome-browser": ["packages/core/chrome/core-chrome-browser"], + "@kbn/core-chrome-browser/*": ["packages/core/chrome/core-chrome-browser/*"], + "@kbn/core-chrome-browser-internal": ["packages/core/chrome/core-chrome-browser-internal"], + "@kbn/core-chrome-browser-internal/*": ["packages/core/chrome/core-chrome-browser-internal/*"], + "@kbn/core-chrome-browser-mocks": ["packages/core/chrome/core-chrome-browser-mocks"], + "@kbn/core-chrome-browser-mocks/*": ["packages/core/chrome/core-chrome-browser-mocks/*"], + "@kbn/core-config-server-internal": ["packages/core/config/core-config-server-internal"], + "@kbn/core-config-server-internal/*": ["packages/core/config/core-config-server-internal/*"], + "@kbn/core-custom-branding-browser": ["packages/core/custom-branding/core-custom-branding-browser"], + "@kbn/core-custom-branding-browser/*": ["packages/core/custom-branding/core-custom-branding-browser/*"], + "@kbn/core-custom-branding-browser-internal": ["packages/core/custom-branding/core-custom-branding-browser-internal"], + "@kbn/core-custom-branding-browser-internal/*": ["packages/core/custom-branding/core-custom-branding-browser-internal/*"], + "@kbn/core-custom-branding-browser-mocks": ["packages/core/custom-branding/core-custom-branding-browser-mocks"], + "@kbn/core-custom-branding-browser-mocks/*": ["packages/core/custom-branding/core-custom-branding-browser-mocks/*"], + "@kbn/core-custom-branding-common": ["packages/core/custom-branding/core-custom-branding-common"], + "@kbn/core-custom-branding-common/*": ["packages/core/custom-branding/core-custom-branding-common/*"], + "@kbn/core-custom-branding-server": ["packages/core/custom-branding/core-custom-branding-server"], + "@kbn/core-custom-branding-server/*": ["packages/core/custom-branding/core-custom-branding-server/*"], + "@kbn/core-custom-branding-server-internal": ["packages/core/custom-branding/core-custom-branding-server-internal"], + "@kbn/core-custom-branding-server-internal/*": ["packages/core/custom-branding/core-custom-branding-server-internal/*"], + "@kbn/core-custom-branding-server-mocks": ["packages/core/custom-branding/core-custom-branding-server-mocks"], + "@kbn/core-custom-branding-server-mocks/*": ["packages/core/custom-branding/core-custom-branding-server-mocks/*"], + "@kbn/core-deprecations-browser": ["packages/core/deprecations/core-deprecations-browser"], + "@kbn/core-deprecations-browser/*": ["packages/core/deprecations/core-deprecations-browser/*"], + "@kbn/core-deprecations-browser-internal": ["packages/core/deprecations/core-deprecations-browser-internal"], + "@kbn/core-deprecations-browser-internal/*": ["packages/core/deprecations/core-deprecations-browser-internal/*"], + "@kbn/core-deprecations-browser-mocks": ["packages/core/deprecations/core-deprecations-browser-mocks"], + "@kbn/core-deprecations-browser-mocks/*": ["packages/core/deprecations/core-deprecations-browser-mocks/*"], + "@kbn/core-deprecations-common": ["packages/core/deprecations/core-deprecations-common"], + "@kbn/core-deprecations-common/*": ["packages/core/deprecations/core-deprecations-common/*"], + "@kbn/core-deprecations-server": ["packages/core/deprecations/core-deprecations-server"], + "@kbn/core-deprecations-server/*": ["packages/core/deprecations/core-deprecations-server/*"], + "@kbn/core-deprecations-server-internal": ["packages/core/deprecations/core-deprecations-server-internal"], + "@kbn/core-deprecations-server-internal/*": ["packages/core/deprecations/core-deprecations-server-internal/*"], + "@kbn/core-deprecations-server-mocks": ["packages/core/deprecations/core-deprecations-server-mocks"], + "@kbn/core-deprecations-server-mocks/*": ["packages/core/deprecations/core-deprecations-server-mocks/*"], + "@kbn/core-doc-links-browser": ["packages/core/doc-links/core-doc-links-browser"], + "@kbn/core-doc-links-browser/*": ["packages/core/doc-links/core-doc-links-browser/*"], + "@kbn/core-doc-links-browser-internal": ["packages/core/doc-links/core-doc-links-browser-internal"], + "@kbn/core-doc-links-browser-internal/*": ["packages/core/doc-links/core-doc-links-browser-internal/*"], + "@kbn/core-doc-links-browser-mocks": ["packages/core/doc-links/core-doc-links-browser-mocks"], + "@kbn/core-doc-links-browser-mocks/*": ["packages/core/doc-links/core-doc-links-browser-mocks/*"], + "@kbn/core-doc-links-server": ["packages/core/doc-links/core-doc-links-server"], + "@kbn/core-doc-links-server/*": ["packages/core/doc-links/core-doc-links-server/*"], + "@kbn/core-doc-links-server-internal": ["packages/core/doc-links/core-doc-links-server-internal"], + "@kbn/core-doc-links-server-internal/*": ["packages/core/doc-links/core-doc-links-server-internal/*"], + "@kbn/core-doc-links-server-mocks": ["packages/core/doc-links/core-doc-links-server-mocks"], + "@kbn/core-doc-links-server-mocks/*": ["packages/core/doc-links/core-doc-links-server-mocks/*"], + "@kbn/core-elasticsearch-client-server-internal": ["packages/core/elasticsearch/core-elasticsearch-client-server-internal"], + "@kbn/core-elasticsearch-client-server-internal/*": ["packages/core/elasticsearch/core-elasticsearch-client-server-internal/*"], + "@kbn/core-elasticsearch-client-server-mocks": ["packages/core/elasticsearch/core-elasticsearch-client-server-mocks"], + "@kbn/core-elasticsearch-client-server-mocks/*": ["packages/core/elasticsearch/core-elasticsearch-client-server-mocks/*"], + "@kbn/core-elasticsearch-server": ["packages/core/elasticsearch/core-elasticsearch-server"], + "@kbn/core-elasticsearch-server/*": ["packages/core/elasticsearch/core-elasticsearch-server/*"], + "@kbn/core-elasticsearch-server-internal": ["packages/core/elasticsearch/core-elasticsearch-server-internal"], + "@kbn/core-elasticsearch-server-internal/*": ["packages/core/elasticsearch/core-elasticsearch-server-internal/*"], + "@kbn/core-elasticsearch-server-mocks": ["packages/core/elasticsearch/core-elasticsearch-server-mocks"], + "@kbn/core-elasticsearch-server-mocks/*": ["packages/core/elasticsearch/core-elasticsearch-server-mocks/*"], + "@kbn/core-environment-server-internal": ["packages/core/environment/core-environment-server-internal"], + "@kbn/core-environment-server-internal/*": ["packages/core/environment/core-environment-server-internal/*"], + "@kbn/core-environment-server-mocks": ["packages/core/environment/core-environment-server-mocks"], + "@kbn/core-environment-server-mocks/*": ["packages/core/environment/core-environment-server-mocks/*"], + "@kbn/core-execution-context-browser": ["packages/core/execution-context/core-execution-context-browser"], + "@kbn/core-execution-context-browser/*": ["packages/core/execution-context/core-execution-context-browser/*"], + "@kbn/core-execution-context-browser-internal": ["packages/core/execution-context/core-execution-context-browser-internal"], + "@kbn/core-execution-context-browser-internal/*": ["packages/core/execution-context/core-execution-context-browser-internal/*"], + "@kbn/core-execution-context-browser-mocks": ["packages/core/execution-context/core-execution-context-browser-mocks"], + "@kbn/core-execution-context-browser-mocks/*": ["packages/core/execution-context/core-execution-context-browser-mocks/*"], + "@kbn/core-execution-context-common": ["packages/core/execution-context/core-execution-context-common"], + "@kbn/core-execution-context-common/*": ["packages/core/execution-context/core-execution-context-common/*"], + "@kbn/core-execution-context-server": ["packages/core/execution-context/core-execution-context-server"], + "@kbn/core-execution-context-server/*": ["packages/core/execution-context/core-execution-context-server/*"], + "@kbn/core-execution-context-server-internal": ["packages/core/execution-context/core-execution-context-server-internal"], + "@kbn/core-execution-context-server-internal/*": ["packages/core/execution-context/core-execution-context-server-internal/*"], + "@kbn/core-execution-context-server-mocks": ["packages/core/execution-context/core-execution-context-server-mocks"], + "@kbn/core-execution-context-server-mocks/*": ["packages/core/execution-context/core-execution-context-server-mocks/*"], + "@kbn/core-fatal-errors-browser": ["packages/core/fatal-errors/core-fatal-errors-browser"], + "@kbn/core-fatal-errors-browser/*": ["packages/core/fatal-errors/core-fatal-errors-browser/*"], + "@kbn/core-fatal-errors-browser-internal": ["packages/core/fatal-errors/core-fatal-errors-browser-internal"], + "@kbn/core-fatal-errors-browser-internal/*": ["packages/core/fatal-errors/core-fatal-errors-browser-internal/*"], + "@kbn/core-fatal-errors-browser-mocks": ["packages/core/fatal-errors/core-fatal-errors-browser-mocks"], + "@kbn/core-fatal-errors-browser-mocks/*": ["packages/core/fatal-errors/core-fatal-errors-browser-mocks/*"], + "@kbn/core-history-block-plugin": ["test/plugin_functional/plugins/core_history_block"], + "@kbn/core-history-block-plugin/*": ["test/plugin_functional/plugins/core_history_block/*"], + "@kbn/core-http-browser": ["packages/core/http/core-http-browser"], + "@kbn/core-http-browser/*": ["packages/core/http/core-http-browser/*"], + "@kbn/core-http-browser-internal": ["packages/core/http/core-http-browser-internal"], + "@kbn/core-http-browser-internal/*": ["packages/core/http/core-http-browser-internal/*"], + "@kbn/core-http-browser-mocks": ["packages/core/http/core-http-browser-mocks"], + "@kbn/core-http-browser-mocks/*": ["packages/core/http/core-http-browser-mocks/*"], + "@kbn/core-http-common": ["packages/core/http/core-http-common"], + "@kbn/core-http-common/*": ["packages/core/http/core-http-common/*"], + "@kbn/core-http-context-server-internal": ["packages/core/http/core-http-context-server-internal"], + "@kbn/core-http-context-server-internal/*": ["packages/core/http/core-http-context-server-internal/*"], + "@kbn/core-http-context-server-mocks": ["packages/core/http/core-http-context-server-mocks"], + "@kbn/core-http-context-server-mocks/*": ["packages/core/http/core-http-context-server-mocks/*"], + "@kbn/core-http-plugin": ["test/plugin_functional/plugins/core_http"], + "@kbn/core-http-plugin/*": ["test/plugin_functional/plugins/core_http/*"], + "@kbn/core-http-request-handler-context-server": ["packages/core/http/core-http-request-handler-context-server"], + "@kbn/core-http-request-handler-context-server/*": ["packages/core/http/core-http-request-handler-context-server/*"], + "@kbn/core-http-request-handler-context-server-internal": ["packages/core/http/core-http-request-handler-context-server-internal"], + "@kbn/core-http-request-handler-context-server-internal/*": ["packages/core/http/core-http-request-handler-context-server-internal/*"], + "@kbn/core-http-resources-server": ["packages/core/http/core-http-resources-server"], + "@kbn/core-http-resources-server/*": ["packages/core/http/core-http-resources-server/*"], + "@kbn/core-http-resources-server-internal": ["packages/core/http/core-http-resources-server-internal"], + "@kbn/core-http-resources-server-internal/*": ["packages/core/http/core-http-resources-server-internal/*"], + "@kbn/core-http-resources-server-mocks": ["packages/core/http/core-http-resources-server-mocks"], + "@kbn/core-http-resources-server-mocks/*": ["packages/core/http/core-http-resources-server-mocks/*"], + "@kbn/core-http-router-server-internal": ["packages/core/http/core-http-router-server-internal"], + "@kbn/core-http-router-server-internal/*": ["packages/core/http/core-http-router-server-internal/*"], + "@kbn/core-http-router-server-mocks": ["packages/core/http/core-http-router-server-mocks"], + "@kbn/core-http-router-server-mocks/*": ["packages/core/http/core-http-router-server-mocks/*"], + "@kbn/core-http-server": ["packages/core/http/core-http-server"], + "@kbn/core-http-server/*": ["packages/core/http/core-http-server/*"], + "@kbn/core-http-server-internal": ["packages/core/http/core-http-server-internal"], + "@kbn/core-http-server-internal/*": ["packages/core/http/core-http-server-internal/*"], + "@kbn/core-http-server-mocks": ["packages/core/http/core-http-server-mocks"], + "@kbn/core-http-server-mocks/*": ["packages/core/http/core-http-server-mocks/*"], + "@kbn/core-i18n-browser": ["packages/core/i18n/core-i18n-browser"], + "@kbn/core-i18n-browser/*": ["packages/core/i18n/core-i18n-browser/*"], + "@kbn/core-i18n-browser-internal": ["packages/core/i18n/core-i18n-browser-internal"], + "@kbn/core-i18n-browser-internal/*": ["packages/core/i18n/core-i18n-browser-internal/*"], + "@kbn/core-i18n-browser-mocks": ["packages/core/i18n/core-i18n-browser-mocks"], + "@kbn/core-i18n-browser-mocks/*": ["packages/core/i18n/core-i18n-browser-mocks/*"], + "@kbn/core-i18n-server": ["packages/core/i18n/core-i18n-server"], + "@kbn/core-i18n-server/*": ["packages/core/i18n/core-i18n-server/*"], + "@kbn/core-i18n-server-internal": ["packages/core/i18n/core-i18n-server-internal"], + "@kbn/core-i18n-server-internal/*": ["packages/core/i18n/core-i18n-server-internal/*"], + "@kbn/core-i18n-server-mocks": ["packages/core/i18n/core-i18n-server-mocks"], + "@kbn/core-i18n-server-mocks/*": ["packages/core/i18n/core-i18n-server-mocks/*"], + "@kbn/core-injected-metadata-browser-internal": ["packages/core/injected-metadata/core-injected-metadata-browser-internal"], + "@kbn/core-injected-metadata-browser-internal/*": ["packages/core/injected-metadata/core-injected-metadata-browser-internal/*"], + "@kbn/core-injected-metadata-browser-mocks": ["packages/core/injected-metadata/core-injected-metadata-browser-mocks"], + "@kbn/core-injected-metadata-browser-mocks/*": ["packages/core/injected-metadata/core-injected-metadata-browser-mocks/*"], + "@kbn/core-injected-metadata-common-internal": ["packages/core/injected-metadata/core-injected-metadata-common-internal"], + "@kbn/core-injected-metadata-common-internal/*": ["packages/core/injected-metadata/core-injected-metadata-common-internal/*"], + "@kbn/core-integrations-browser-internal": ["packages/core/integrations/core-integrations-browser-internal"], + "@kbn/core-integrations-browser-internal/*": ["packages/core/integrations/core-integrations-browser-internal/*"], + "@kbn/core-integrations-browser-mocks": ["packages/core/integrations/core-integrations-browser-mocks"], + "@kbn/core-integrations-browser-mocks/*": ["packages/core/integrations/core-integrations-browser-mocks/*"], + "@kbn/core-lifecycle-browser": ["packages/core/lifecycle/core-lifecycle-browser"], + "@kbn/core-lifecycle-browser/*": ["packages/core/lifecycle/core-lifecycle-browser/*"], + "@kbn/core-lifecycle-browser-internal": ["packages/core/lifecycle/core-lifecycle-browser-internal"], + "@kbn/core-lifecycle-browser-internal/*": ["packages/core/lifecycle/core-lifecycle-browser-internal/*"], + "@kbn/core-lifecycle-browser-mocks": ["packages/core/lifecycle/core-lifecycle-browser-mocks"], + "@kbn/core-lifecycle-browser-mocks/*": ["packages/core/lifecycle/core-lifecycle-browser-mocks/*"], + "@kbn/core-lifecycle-server": ["packages/core/lifecycle/core-lifecycle-server"], + "@kbn/core-lifecycle-server/*": ["packages/core/lifecycle/core-lifecycle-server/*"], + "@kbn/core-lifecycle-server-internal": ["packages/core/lifecycle/core-lifecycle-server-internal"], + "@kbn/core-lifecycle-server-internal/*": ["packages/core/lifecycle/core-lifecycle-server-internal/*"], + "@kbn/core-lifecycle-server-mocks": ["packages/core/lifecycle/core-lifecycle-server-mocks"], + "@kbn/core-lifecycle-server-mocks/*": ["packages/core/lifecycle/core-lifecycle-server-mocks/*"], + "@kbn/core-logging-browser-internal": ["packages/core/logging/core-logging-browser-internal"], + "@kbn/core-logging-browser-internal/*": ["packages/core/logging/core-logging-browser-internal/*"], + "@kbn/core-logging-browser-mocks": ["packages/core/logging/core-logging-browser-mocks"], + "@kbn/core-logging-browser-mocks/*": ["packages/core/logging/core-logging-browser-mocks/*"], + "@kbn/core-logging-common-internal": ["packages/core/logging/core-logging-common-internal"], + "@kbn/core-logging-common-internal/*": ["packages/core/logging/core-logging-common-internal/*"], + "@kbn/core-logging-server": ["packages/core/logging/core-logging-server"], + "@kbn/core-logging-server/*": ["packages/core/logging/core-logging-server/*"], + "@kbn/core-logging-server-internal": ["packages/core/logging/core-logging-server-internal"], + "@kbn/core-logging-server-internal/*": ["packages/core/logging/core-logging-server-internal/*"], + "@kbn/core-logging-server-mocks": ["packages/core/logging/core-logging-server-mocks"], + "@kbn/core-logging-server-mocks/*": ["packages/core/logging/core-logging-server-mocks/*"], + "@kbn/core-metrics-collectors-server-internal": ["packages/core/metrics/core-metrics-collectors-server-internal"], + "@kbn/core-metrics-collectors-server-internal/*": ["packages/core/metrics/core-metrics-collectors-server-internal/*"], + "@kbn/core-metrics-collectors-server-mocks": ["packages/core/metrics/core-metrics-collectors-server-mocks"], + "@kbn/core-metrics-collectors-server-mocks/*": ["packages/core/metrics/core-metrics-collectors-server-mocks/*"], + "@kbn/core-metrics-server": ["packages/core/metrics/core-metrics-server"], + "@kbn/core-metrics-server/*": ["packages/core/metrics/core-metrics-server/*"], + "@kbn/core-metrics-server-internal": ["packages/core/metrics/core-metrics-server-internal"], + "@kbn/core-metrics-server-internal/*": ["packages/core/metrics/core-metrics-server-internal/*"], + "@kbn/core-metrics-server-mocks": ["packages/core/metrics/core-metrics-server-mocks"], + "@kbn/core-metrics-server-mocks/*": ["packages/core/metrics/core-metrics-server-mocks/*"], + "@kbn/core-mount-utils-browser": ["packages/core/mount-utils/core-mount-utils-browser"], + "@kbn/core-mount-utils-browser/*": ["packages/core/mount-utils/core-mount-utils-browser/*"], + "@kbn/core-mount-utils-browser-internal": ["packages/core/mount-utils/core-mount-utils-browser-internal"], + "@kbn/core-mount-utils-browser-internal/*": ["packages/core/mount-utils/core-mount-utils-browser-internal/*"], + "@kbn/core-node-server": ["packages/core/node/core-node-server"], + "@kbn/core-node-server/*": ["packages/core/node/core-node-server/*"], + "@kbn/core-node-server-internal": ["packages/core/node/core-node-server-internal"], + "@kbn/core-node-server-internal/*": ["packages/core/node/core-node-server-internal/*"], + "@kbn/core-node-server-mocks": ["packages/core/node/core-node-server-mocks"], + "@kbn/core-node-server-mocks/*": ["packages/core/node/core-node-server-mocks/*"], + "@kbn/core-notifications-browser": ["packages/core/notifications/core-notifications-browser"], + "@kbn/core-notifications-browser/*": ["packages/core/notifications/core-notifications-browser/*"], + "@kbn/core-notifications-browser-internal": ["packages/core/notifications/core-notifications-browser-internal"], + "@kbn/core-notifications-browser-internal/*": ["packages/core/notifications/core-notifications-browser-internal/*"], + "@kbn/core-notifications-browser-mocks": ["packages/core/notifications/core-notifications-browser-mocks"], + "@kbn/core-notifications-browser-mocks/*": ["packages/core/notifications/core-notifications-browser-mocks/*"], + "@kbn/core-overlays-browser": ["packages/core/overlays/core-overlays-browser"], + "@kbn/core-overlays-browser/*": ["packages/core/overlays/core-overlays-browser/*"], + "@kbn/core-overlays-browser-internal": ["packages/core/overlays/core-overlays-browser-internal"], + "@kbn/core-overlays-browser-internal/*": ["packages/core/overlays/core-overlays-browser-internal/*"], + "@kbn/core-overlays-browser-mocks": ["packages/core/overlays/core-overlays-browser-mocks"], + "@kbn/core-overlays-browser-mocks/*": ["packages/core/overlays/core-overlays-browser-mocks/*"], + "@kbn/core-plugin-a-plugin": ["test/plugin_functional/plugins/core_plugin_a"], + "@kbn/core-plugin-a-plugin/*": ["test/plugin_functional/plugins/core_plugin_a/*"], + "@kbn/core-plugin-appleave-plugin": ["test/plugin_functional/plugins/core_plugin_appleave"], + "@kbn/core-plugin-appleave-plugin/*": ["test/plugin_functional/plugins/core_plugin_appleave/*"], + "@kbn/core-plugin-b-plugin": ["test/plugin_functional/plugins/core_plugin_b"], + "@kbn/core-plugin-b-plugin/*": ["test/plugin_functional/plugins/core_plugin_b/*"], + "@kbn/core-plugin-chromeless-plugin": ["test/plugin_functional/plugins/core_plugin_chromeless"], + "@kbn/core-plugin-chromeless-plugin/*": ["test/plugin_functional/plugins/core_plugin_chromeless/*"], + "@kbn/core-plugin-deep-links-plugin": ["test/plugin_functional/plugins/core_plugin_deep_links"], + "@kbn/core-plugin-deep-links-plugin/*": ["test/plugin_functional/plugins/core_plugin_deep_links/*"], + "@kbn/core-plugin-deprecations-plugin": ["test/plugin_functional/plugins/core_plugin_deprecations"], + "@kbn/core-plugin-deprecations-plugin/*": ["test/plugin_functional/plugins/core_plugin_deprecations/*"], + "@kbn/core-plugin-dynamic-resolving-a": ["test/plugin_functional/plugins/core_dynamic_resolving_a"], + "@kbn/core-plugin-dynamic-resolving-a/*": ["test/plugin_functional/plugins/core_dynamic_resolving_a/*"], + "@kbn/core-plugin-dynamic-resolving-b": ["test/plugin_functional/plugins/core_dynamic_resolving_b"], + "@kbn/core-plugin-dynamic-resolving-b/*": ["test/plugin_functional/plugins/core_dynamic_resolving_b/*"], + "@kbn/core-plugin-execution-context-plugin": ["test/plugin_functional/plugins/core_plugin_execution_context"], + "@kbn/core-plugin-execution-context-plugin/*": ["test/plugin_functional/plugins/core_plugin_execution_context/*"], + "@kbn/core-plugin-helpmenu-plugin": ["test/plugin_functional/plugins/core_plugin_helpmenu"], + "@kbn/core-plugin-helpmenu-plugin/*": ["test/plugin_functional/plugins/core_plugin_helpmenu/*"], + "@kbn/core-plugin-initializer-context-plugin": ["test/node_roles_functional/plugins/core_plugin_initializer_context"], + "@kbn/core-plugin-initializer-context-plugin/*": ["test/node_roles_functional/plugins/core_plugin_initializer_context/*"], + "@kbn/core-plugin-route-timeouts-plugin": ["test/plugin_functional/plugins/core_plugin_route_timeouts"], + "@kbn/core-plugin-route-timeouts-plugin/*": ["test/plugin_functional/plugins/core_plugin_route_timeouts/*"], + "@kbn/core-plugin-static-assets-plugin": ["test/plugin_functional/plugins/core_plugin_static_assets"], + "@kbn/core-plugin-static-assets-plugin/*": ["test/plugin_functional/plugins/core_plugin_static_assets/*"], + "@kbn/core-plugins-base-server-internal": ["packages/core/plugins/core-plugins-base-server-internal"], + "@kbn/core-plugins-base-server-internal/*": ["packages/core/plugins/core-plugins-base-server-internal/*"], + "@kbn/core-plugins-browser": ["packages/core/plugins/core-plugins-browser"], + "@kbn/core-plugins-browser/*": ["packages/core/plugins/core-plugins-browser/*"], + "@kbn/core-plugins-browser-internal": ["packages/core/plugins/core-plugins-browser-internal"], + "@kbn/core-plugins-browser-internal/*": ["packages/core/plugins/core-plugins-browser-internal/*"], + "@kbn/core-plugins-browser-mocks": ["packages/core/plugins/core-plugins-browser-mocks"], + "@kbn/core-plugins-browser-mocks/*": ["packages/core/plugins/core-plugins-browser-mocks/*"], + "@kbn/core-plugins-contracts-browser": ["packages/core/plugins/core-plugins-contracts-browser"], + "@kbn/core-plugins-contracts-browser/*": ["packages/core/plugins/core-plugins-contracts-browser/*"], + "@kbn/core-plugins-contracts-server": ["packages/core/plugins/core-plugins-contracts-server"], + "@kbn/core-plugins-contracts-server/*": ["packages/core/plugins/core-plugins-contracts-server/*"], + "@kbn/core-plugins-server": ["packages/core/plugins/core-plugins-server"], + "@kbn/core-plugins-server/*": ["packages/core/plugins/core-plugins-server/*"], + "@kbn/core-plugins-server-internal": ["packages/core/plugins/core-plugins-server-internal"], + "@kbn/core-plugins-server-internal/*": ["packages/core/plugins/core-plugins-server-internal/*"], + "@kbn/core-plugins-server-mocks": ["packages/core/plugins/core-plugins-server-mocks"], + "@kbn/core-plugins-server-mocks/*": ["packages/core/plugins/core-plugins-server-mocks/*"], + "@kbn/core-preboot-server": ["packages/core/preboot/core-preboot-server"], + "@kbn/core-preboot-server/*": ["packages/core/preboot/core-preboot-server/*"], + "@kbn/core-preboot-server-internal": ["packages/core/preboot/core-preboot-server-internal"], + "@kbn/core-preboot-server-internal/*": ["packages/core/preboot/core-preboot-server-internal/*"], + "@kbn/core-preboot-server-mocks": ["packages/core/preboot/core-preboot-server-mocks"], + "@kbn/core-preboot-server-mocks/*": ["packages/core/preboot/core-preboot-server-mocks/*"], + "@kbn/core-provider-plugin": ["test/plugin_functional/plugins/core_provider_plugin"], + "@kbn/core-provider-plugin/*": ["test/plugin_functional/plugins/core_provider_plugin/*"], + "@kbn/core-rendering-browser-internal": ["packages/core/rendering/core-rendering-browser-internal"], + "@kbn/core-rendering-browser-internal/*": ["packages/core/rendering/core-rendering-browser-internal/*"], + "@kbn/core-rendering-browser-mocks": ["packages/core/rendering/core-rendering-browser-mocks"], + "@kbn/core-rendering-browser-mocks/*": ["packages/core/rendering/core-rendering-browser-mocks/*"], + "@kbn/core-rendering-server-internal": ["packages/core/rendering/core-rendering-server-internal"], + "@kbn/core-rendering-server-internal/*": ["packages/core/rendering/core-rendering-server-internal/*"], + "@kbn/core-rendering-server-mocks": ["packages/core/rendering/core-rendering-server-mocks"], + "@kbn/core-rendering-server-mocks/*": ["packages/core/rendering/core-rendering-server-mocks/*"], + "@kbn/core-root-browser-internal": ["packages/core/root/core-root-browser-internal"], + "@kbn/core-root-browser-internal/*": ["packages/core/root/core-root-browser-internal/*"], + "@kbn/core-root-server-internal": ["packages/core/root/core-root-server-internal"], + "@kbn/core-root-server-internal/*": ["packages/core/root/core-root-server-internal/*"], + "@kbn/core-saved-objects-api-browser": ["packages/core/saved-objects/core-saved-objects-api-browser"], + "@kbn/core-saved-objects-api-browser/*": ["packages/core/saved-objects/core-saved-objects-api-browser/*"], + "@kbn/core-saved-objects-api-server": ["packages/core/saved-objects/core-saved-objects-api-server"], + "@kbn/core-saved-objects-api-server/*": ["packages/core/saved-objects/core-saved-objects-api-server/*"], + "@kbn/core-saved-objects-api-server-internal": ["packages/core/saved-objects/core-saved-objects-api-server-internal"], + "@kbn/core-saved-objects-api-server-internal/*": ["packages/core/saved-objects/core-saved-objects-api-server-internal/*"], + "@kbn/core-saved-objects-api-server-mocks": ["packages/core/saved-objects/core-saved-objects-api-server-mocks"], + "@kbn/core-saved-objects-api-server-mocks/*": ["packages/core/saved-objects/core-saved-objects-api-server-mocks/*"], + "@kbn/core-saved-objects-base-server-internal": ["packages/core/saved-objects/core-saved-objects-base-server-internal"], + "@kbn/core-saved-objects-base-server-internal/*": ["packages/core/saved-objects/core-saved-objects-base-server-internal/*"], + "@kbn/core-saved-objects-base-server-mocks": ["packages/core/saved-objects/core-saved-objects-base-server-mocks"], + "@kbn/core-saved-objects-base-server-mocks/*": ["packages/core/saved-objects/core-saved-objects-base-server-mocks/*"], + "@kbn/core-saved-objects-browser": ["packages/core/saved-objects/core-saved-objects-browser"], + "@kbn/core-saved-objects-browser/*": ["packages/core/saved-objects/core-saved-objects-browser/*"], + "@kbn/core-saved-objects-browser-internal": ["packages/core/saved-objects/core-saved-objects-browser-internal"], + "@kbn/core-saved-objects-browser-internal/*": ["packages/core/saved-objects/core-saved-objects-browser-internal/*"], + "@kbn/core-saved-objects-browser-mocks": ["packages/core/saved-objects/core-saved-objects-browser-mocks"], + "@kbn/core-saved-objects-browser-mocks/*": ["packages/core/saved-objects/core-saved-objects-browser-mocks/*"], + "@kbn/core-saved-objects-common": ["packages/core/saved-objects/core-saved-objects-common"], + "@kbn/core-saved-objects-common/*": ["packages/core/saved-objects/core-saved-objects-common/*"], + "@kbn/core-saved-objects-import-export-server-internal": ["packages/core/saved-objects/core-saved-objects-import-export-server-internal"], + "@kbn/core-saved-objects-import-export-server-internal/*": ["packages/core/saved-objects/core-saved-objects-import-export-server-internal/*"], + "@kbn/core-saved-objects-import-export-server-mocks": ["packages/core/saved-objects/core-saved-objects-import-export-server-mocks"], + "@kbn/core-saved-objects-import-export-server-mocks/*": ["packages/core/saved-objects/core-saved-objects-import-export-server-mocks/*"], + "@kbn/core-saved-objects-migration-server-internal": ["packages/core/saved-objects/core-saved-objects-migration-server-internal"], + "@kbn/core-saved-objects-migration-server-internal/*": ["packages/core/saved-objects/core-saved-objects-migration-server-internal/*"], + "@kbn/core-saved-objects-migration-server-mocks": ["packages/core/saved-objects/core-saved-objects-migration-server-mocks"], + "@kbn/core-saved-objects-migration-server-mocks/*": ["packages/core/saved-objects/core-saved-objects-migration-server-mocks/*"], + "@kbn/core-saved-objects-server": ["packages/core/saved-objects/core-saved-objects-server"], + "@kbn/core-saved-objects-server/*": ["packages/core/saved-objects/core-saved-objects-server/*"], + "@kbn/core-saved-objects-server-internal": ["packages/core/saved-objects/core-saved-objects-server-internal"], + "@kbn/core-saved-objects-server-internal/*": ["packages/core/saved-objects/core-saved-objects-server-internal/*"], + "@kbn/core-saved-objects-server-mocks": ["packages/core/saved-objects/core-saved-objects-server-mocks"], + "@kbn/core-saved-objects-server-mocks/*": ["packages/core/saved-objects/core-saved-objects-server-mocks/*"], + "@kbn/core-saved-objects-utils-server": ["packages/core/saved-objects/core-saved-objects-utils-server"], + "@kbn/core-saved-objects-utils-server/*": ["packages/core/saved-objects/core-saved-objects-utils-server/*"], + "@kbn/core-status-common": ["packages/core/status/core-status-common"], + "@kbn/core-status-common/*": ["packages/core/status/core-status-common/*"], + "@kbn/core-status-common-internal": ["packages/core/status/core-status-common-internal"], + "@kbn/core-status-common-internal/*": ["packages/core/status/core-status-common-internal/*"], + "@kbn/core-status-server": ["packages/core/status/core-status-server"], + "@kbn/core-status-server/*": ["packages/core/status/core-status-server/*"], + "@kbn/core-status-server-internal": ["packages/core/status/core-status-server-internal"], + "@kbn/core-status-server-internal/*": ["packages/core/status/core-status-server-internal/*"], + "@kbn/core-status-server-mocks": ["packages/core/status/core-status-server-mocks"], + "@kbn/core-status-server-mocks/*": ["packages/core/status/core-status-server-mocks/*"], + "@kbn/core-test-helpers-deprecations-getters": ["packages/core/test-helpers/core-test-helpers-deprecations-getters"], + "@kbn/core-test-helpers-deprecations-getters/*": ["packages/core/test-helpers/core-test-helpers-deprecations-getters/*"], + "@kbn/core-test-helpers-http-setup-browser": ["packages/core/test-helpers/core-test-helpers-http-setup-browser"], + "@kbn/core-test-helpers-http-setup-browser/*": ["packages/core/test-helpers/core-test-helpers-http-setup-browser/*"], + "@kbn/core-test-helpers-kbn-server": ["packages/core/test-helpers/core-test-helpers-kbn-server"], + "@kbn/core-test-helpers-kbn-server/*": ["packages/core/test-helpers/core-test-helpers-kbn-server/*"], + "@kbn/core-test-helpers-model-versions": ["packages/core/test-helpers/core-test-helpers-model-versions"], + "@kbn/core-test-helpers-model-versions/*": ["packages/core/test-helpers/core-test-helpers-model-versions/*"], + "@kbn/core-test-helpers-so-type-serializer": ["packages/core/test-helpers/core-test-helpers-so-type-serializer"], + "@kbn/core-test-helpers-so-type-serializer/*": ["packages/core/test-helpers/core-test-helpers-so-type-serializer/*"], + "@kbn/core-test-helpers-test-utils": ["packages/core/test-helpers/core-test-helpers-test-utils"], + "@kbn/core-test-helpers-test-utils/*": ["packages/core/test-helpers/core-test-helpers-test-utils/*"], + "@kbn/core-theme-browser": ["packages/core/theme/core-theme-browser"], + "@kbn/core-theme-browser/*": ["packages/core/theme/core-theme-browser/*"], + "@kbn/core-theme-browser-internal": ["packages/core/theme/core-theme-browser-internal"], + "@kbn/core-theme-browser-internal/*": ["packages/core/theme/core-theme-browser-internal/*"], + "@kbn/core-theme-browser-mocks": ["packages/core/theme/core-theme-browser-mocks"], + "@kbn/core-theme-browser-mocks/*": ["packages/core/theme/core-theme-browser-mocks/*"], + "@kbn/core-ui-settings-browser": ["packages/core/ui-settings/core-ui-settings-browser"], + "@kbn/core-ui-settings-browser/*": ["packages/core/ui-settings/core-ui-settings-browser/*"], + "@kbn/core-ui-settings-browser-internal": ["packages/core/ui-settings/core-ui-settings-browser-internal"], + "@kbn/core-ui-settings-browser-internal/*": ["packages/core/ui-settings/core-ui-settings-browser-internal/*"], + "@kbn/core-ui-settings-browser-mocks": ["packages/core/ui-settings/core-ui-settings-browser-mocks"], + "@kbn/core-ui-settings-browser-mocks/*": ["packages/core/ui-settings/core-ui-settings-browser-mocks/*"], + "@kbn/core-ui-settings-common": ["packages/core/ui-settings/core-ui-settings-common"], + "@kbn/core-ui-settings-common/*": ["packages/core/ui-settings/core-ui-settings-common/*"], + "@kbn/core-ui-settings-server": ["packages/core/ui-settings/core-ui-settings-server"], + "@kbn/core-ui-settings-server/*": ["packages/core/ui-settings/core-ui-settings-server/*"], + "@kbn/core-ui-settings-server-internal": ["packages/core/ui-settings/core-ui-settings-server-internal"], + "@kbn/core-ui-settings-server-internal/*": ["packages/core/ui-settings/core-ui-settings-server-internal/*"], + "@kbn/core-ui-settings-server-mocks": ["packages/core/ui-settings/core-ui-settings-server-mocks"], + "@kbn/core-ui-settings-server-mocks/*": ["packages/core/ui-settings/core-ui-settings-server-mocks/*"], + "@kbn/core-usage-data-base-server-internal": ["packages/core/usage-data/core-usage-data-base-server-internal"], + "@kbn/core-usage-data-base-server-internal/*": ["packages/core/usage-data/core-usage-data-base-server-internal/*"], + "@kbn/core-usage-data-server": ["packages/core/usage-data/core-usage-data-server"], + "@kbn/core-usage-data-server/*": ["packages/core/usage-data/core-usage-data-server/*"], + "@kbn/core-usage-data-server-internal": ["packages/core/usage-data/core-usage-data-server-internal"], + "@kbn/core-usage-data-server-internal/*": ["packages/core/usage-data/core-usage-data-server-internal/*"], + "@kbn/core-usage-data-server-mocks": ["packages/core/usage-data/core-usage-data-server-mocks"], + "@kbn/core-usage-data-server-mocks/*": ["packages/core/usage-data/core-usage-data-server-mocks/*"], + "@kbn/core-user-settings-server": ["packages/core/user-settings/core-user-settings-server"], + "@kbn/core-user-settings-server/*": ["packages/core/user-settings/core-user-settings-server/*"], + "@kbn/core-user-settings-server-internal": ["packages/core/user-settings/core-user-settings-server-internal"], + "@kbn/core-user-settings-server-internal/*": ["packages/core/user-settings/core-user-settings-server-internal/*"], + "@kbn/core-user-settings-server-mocks": ["packages/core/user-settings/core-user-settings-server-mocks"], + "@kbn/core-user-settings-server-mocks/*": ["packages/core/user-settings/core-user-settings-server-mocks/*"], + "@kbn/cross-cluster-replication-plugin": ["x-pack/plugins/cross_cluster_replication"], + "@kbn/cross-cluster-replication-plugin/*": ["x-pack/plugins/cross_cluster_replication/*"], + "@kbn/crypto": ["packages/kbn-crypto"], + "@kbn/crypto/*": ["packages/kbn-crypto/*"], + "@kbn/crypto-browser": ["packages/kbn-crypto-browser"], + "@kbn/crypto-browser/*": ["packages/kbn-crypto-browser/*"], + "@kbn/custom-branding-plugin": ["x-pack/plugins/custom_branding"], + "@kbn/custom-branding-plugin/*": ["x-pack/plugins/custom_branding/*"], + "@kbn/custom-icons": ["packages/kbn-custom-icons"], + "@kbn/custom-icons/*": ["packages/kbn-custom-icons/*"], + "@kbn/custom-integrations": ["packages/kbn-custom-integrations"], + "@kbn/custom-integrations/*": ["packages/kbn-custom-integrations/*"], + "@kbn/custom-integrations-plugin": ["src/plugins/custom_integrations"], + "@kbn/custom-integrations-plugin/*": ["src/plugins/custom_integrations/*"], + "@kbn/cypress-config": ["packages/kbn-cypress-config"], + "@kbn/cypress-config/*": ["packages/kbn-cypress-config/*"], + "@kbn/dashboard-enhanced-plugin": ["x-pack/plugins/dashboard_enhanced"], + "@kbn/dashboard-enhanced-plugin/*": ["x-pack/plugins/dashboard_enhanced/*"], + "@kbn/dashboard-plugin": ["src/plugins/dashboard"], + "@kbn/dashboard-plugin/*": ["src/plugins/dashboard/*"], + "@kbn/data-plugin": ["src/plugins/data"], + "@kbn/data-plugin/*": ["src/plugins/data/*"], + "@kbn/data-search-plugin": ["test/plugin_functional/plugins/data_search"], + "@kbn/data-search-plugin/*": ["test/plugin_functional/plugins/data_search/*"], + "@kbn/data-service": ["packages/kbn-data-service"], + "@kbn/data-service/*": ["packages/kbn-data-service/*"], + "@kbn/data-view-editor-plugin": ["src/plugins/data_view_editor"], + "@kbn/data-view-editor-plugin/*": ["src/plugins/data_view_editor/*"], + "@kbn/data-view-field-editor-example-plugin": ["examples/data_view_field_editor_example"], + "@kbn/data-view-field-editor-example-plugin/*": ["examples/data_view_field_editor_example/*"], + "@kbn/data-view-field-editor-plugin": ["src/plugins/data_view_field_editor"], + "@kbn/data-view-field-editor-plugin/*": ["src/plugins/data_view_field_editor/*"], + "@kbn/data-view-management-plugin": ["src/plugins/data_view_management"], + "@kbn/data-view-management-plugin/*": ["src/plugins/data_view_management/*"], + "@kbn/data-views-plugin": ["src/plugins/data_views"], + "@kbn/data-views-plugin/*": ["src/plugins/data_views/*"], + "@kbn/data-visualizer-plugin": ["x-pack/plugins/data_visualizer"], + "@kbn/data-visualizer-plugin/*": ["x-pack/plugins/data_visualizer/*"], + "@kbn/dataset-quality-plugin": ["x-pack/plugins/dataset_quality"], + "@kbn/dataset-quality-plugin/*": ["x-pack/plugins/dataset_quality/*"], + "@kbn/datemath": ["packages/kbn-datemath"], + "@kbn/datemath/*": ["packages/kbn-datemath/*"], + "@kbn/deeplinks-analytics": ["packages/deeplinks/analytics"], + "@kbn/deeplinks-analytics/*": ["packages/deeplinks/analytics/*"], + "@kbn/deeplinks-devtools": ["packages/deeplinks/devtools"], + "@kbn/deeplinks-devtools/*": ["packages/deeplinks/devtools/*"], + "@kbn/deeplinks-management": ["packages/deeplinks/management"], + "@kbn/deeplinks-management/*": ["packages/deeplinks/management/*"], + "@kbn/deeplinks-ml": ["packages/deeplinks/ml"], + "@kbn/deeplinks-ml/*": ["packages/deeplinks/ml/*"], + "@kbn/deeplinks-observability": ["packages/deeplinks/observability"], + "@kbn/deeplinks-observability/*": ["packages/deeplinks/observability/*"], + "@kbn/deeplinks-search": ["packages/deeplinks/search"], + "@kbn/deeplinks-search/*": ["packages/deeplinks/search/*"], + "@kbn/default-nav-analytics": ["packages/default-nav/analytics"], + "@kbn/default-nav-analytics/*": ["packages/default-nav/analytics/*"], + "@kbn/default-nav-devtools": ["packages/default-nav/devtools"], + "@kbn/default-nav-devtools/*": ["packages/default-nav/devtools/*"], + "@kbn/default-nav-management": ["packages/default-nav/management"], + "@kbn/default-nav-management/*": ["packages/default-nav/management/*"], + "@kbn/default-nav-ml": ["packages/default-nav/ml"], + "@kbn/default-nav-ml/*": ["packages/default-nav/ml/*"], + "@kbn/dev-cli-errors": ["packages/kbn-dev-cli-errors"], + "@kbn/dev-cli-errors/*": ["packages/kbn-dev-cli-errors/*"], + "@kbn/dev-cli-runner": ["packages/kbn-dev-cli-runner"], + "@kbn/dev-cli-runner/*": ["packages/kbn-dev-cli-runner/*"], + "@kbn/dev-proc-runner": ["packages/kbn-dev-proc-runner"], + "@kbn/dev-proc-runner/*": ["packages/kbn-dev-proc-runner/*"], + "@kbn/dev-tools-plugin": ["src/plugins/dev_tools"], + "@kbn/dev-tools-plugin/*": ["src/plugins/dev_tools/*"], + "@kbn/dev-utils": ["packages/kbn-dev-utils"], + "@kbn/dev-utils/*": ["packages/kbn-dev-utils/*"], + "@kbn/developer-examples-plugin": ["examples/developer_examples"], + "@kbn/developer-examples-plugin/*": ["examples/developer_examples/*"], + "@kbn/discover-customization-examples-plugin": ["examples/discover_customization_examples"], + "@kbn/discover-customization-examples-plugin/*": ["examples/discover_customization_examples/*"], + "@kbn/discover-enhanced-plugin": ["x-pack/plugins/discover_enhanced"], + "@kbn/discover-enhanced-plugin/*": ["x-pack/plugins/discover_enhanced/*"], + "@kbn/discover-plugin": ["src/plugins/discover"], + "@kbn/discover-plugin/*": ["src/plugins/discover/*"], + "@kbn/discover-utils": ["packages/kbn-discover-utils"], + "@kbn/discover-utils/*": ["packages/kbn-discover-utils/*"], + "@kbn/doc-links": ["packages/kbn-doc-links"], + "@kbn/doc-links/*": ["packages/kbn-doc-links/*"], + "@kbn/docs-utils": ["packages/kbn-docs-utils"], + "@kbn/docs-utils/*": ["packages/kbn-docs-utils/*"], + "@kbn/dom-drag-drop": ["packages/kbn-dom-drag-drop"], + "@kbn/dom-drag-drop/*": ["packages/kbn-dom-drag-drop/*"], + "@kbn/ebt-tools": ["packages/kbn-ebt-tools"], + "@kbn/ebt-tools/*": ["packages/kbn-ebt-tools/*"], + "@kbn/ecs": ["packages/kbn-ecs"], + "@kbn/ecs/*": ["packages/kbn-ecs/*"], + "@kbn/ecs-data-quality-dashboard": ["x-pack/packages/security-solution/ecs_data_quality_dashboard"], + "@kbn/ecs-data-quality-dashboard/*": ["x-pack/packages/security-solution/ecs_data_quality_dashboard/*"], + "@kbn/ecs-data-quality-dashboard-plugin": ["x-pack/plugins/ecs_data_quality_dashboard"], + "@kbn/ecs-data-quality-dashboard-plugin/*": ["x-pack/plugins/ecs_data_quality_dashboard/*"], + "@kbn/elastic-agent-utils": ["packages/kbn-elastic-agent-utils"], + "@kbn/elastic-agent-utils/*": ["packages/kbn-elastic-agent-utils/*"], + "@kbn/elastic-assistant": ["x-pack/packages/kbn-elastic-assistant"], + "@kbn/elastic-assistant/*": ["x-pack/packages/kbn-elastic-assistant/*"], + "@kbn/elastic-assistant-common": ["x-pack/packages/kbn-elastic-assistant-common"], + "@kbn/elastic-assistant-common/*": ["x-pack/packages/kbn-elastic-assistant-common/*"], + "@kbn/elastic-assistant-plugin": ["x-pack/plugins/elastic_assistant"], + "@kbn/elastic-assistant-plugin/*": ["x-pack/plugins/elastic_assistant/*"], + "@kbn/elasticsearch-client-plugin": ["test/plugin_functional/plugins/elasticsearch_client_plugin"], + "@kbn/elasticsearch-client-plugin/*": ["test/plugin_functional/plugins/elasticsearch_client_plugin/*"], + "@kbn/elasticsearch-client-xpack-plugin": ["x-pack/test/plugin_api_integration/plugins/elasticsearch_client"], + "@kbn/elasticsearch-client-xpack-plugin/*": ["x-pack/test/plugin_api_integration/plugins/elasticsearch_client/*"], + "@kbn/embeddable-enhanced-plugin": ["x-pack/plugins/embeddable_enhanced"], + "@kbn/embeddable-enhanced-plugin/*": ["x-pack/plugins/embeddable_enhanced/*"], + "@kbn/embeddable-examples-plugin": ["examples/embeddable_examples"], + "@kbn/embeddable-examples-plugin/*": ["examples/embeddable_examples/*"], + "@kbn/embeddable-explorer-plugin": ["examples/embeddable_explorer"], + "@kbn/embeddable-explorer-plugin/*": ["examples/embeddable_explorer/*"], + "@kbn/embeddable-plugin": ["src/plugins/embeddable"], + "@kbn/embeddable-plugin/*": ["src/plugins/embeddable/*"], + "@kbn/embedded-lens-example-plugin": ["x-pack/examples/embedded_lens_example"], + "@kbn/embedded-lens-example-plugin/*": ["x-pack/examples/embedded_lens_example/*"], + "@kbn/encrypted-saved-objects-plugin": ["x-pack/plugins/encrypted_saved_objects"], + "@kbn/encrypted-saved-objects-plugin/*": ["x-pack/plugins/encrypted_saved_objects/*"], + "@kbn/enterprise-search-plugin": ["x-pack/plugins/enterprise_search"], + "@kbn/enterprise-search-plugin/*": ["x-pack/plugins/enterprise_search/*"], + "@kbn/error-boundary-example-plugin": ["examples/error_boundary"], + "@kbn/error-boundary-example-plugin/*": ["examples/error_boundary/*"], + "@kbn/es": ["packages/kbn-es"], + "@kbn/es/*": ["packages/kbn-es/*"], + "@kbn/es-archiver": ["packages/kbn-es-archiver"], + "@kbn/es-archiver/*": ["packages/kbn-es-archiver/*"], + "@kbn/es-errors": ["packages/kbn-es-errors"], + "@kbn/es-errors/*": ["packages/kbn-es-errors/*"], + "@kbn/es-query": ["packages/kbn-es-query"], + "@kbn/es-query/*": ["packages/kbn-es-query/*"], + "@kbn/es-types": ["packages/kbn-es-types"], + "@kbn/es-types/*": ["packages/kbn-es-types/*"], + "@kbn/es-ui-shared-plugin": ["src/plugins/es_ui_shared"], + "@kbn/es-ui-shared-plugin/*": ["src/plugins/es_ui_shared/*"], + "@kbn/eslint-config": ["packages/kbn-eslint-config"], + "@kbn/eslint-config/*": ["packages/kbn-eslint-config/*"], + "@kbn/eslint-plugin-disable": ["packages/kbn-eslint-plugin-disable"], + "@kbn/eslint-plugin-disable/*": ["packages/kbn-eslint-plugin-disable/*"], + "@kbn/eslint-plugin-eslint": ["packages/kbn-eslint-plugin-eslint"], + "@kbn/eslint-plugin-eslint/*": ["packages/kbn-eslint-plugin-eslint/*"], + "@kbn/eslint-plugin-i18n": ["packages/kbn-eslint-plugin-i18n"], + "@kbn/eslint-plugin-i18n/*": ["packages/kbn-eslint-plugin-i18n/*"], + "@kbn/eslint-plugin-imports": ["packages/kbn-eslint-plugin-imports"], + "@kbn/eslint-plugin-imports/*": ["packages/kbn-eslint-plugin-imports/*"], + "@kbn/eslint-plugin-telemetry": ["packages/kbn-eslint-plugin-telemetry"], + "@kbn/eslint-plugin-telemetry/*": ["packages/kbn-eslint-plugin-telemetry/*"], + "@kbn/eso-model-version-example": ["examples/eso_model_version_example"], + "@kbn/eso-model-version-example/*": ["examples/eso_model_version_example/*"], + "@kbn/eso-plugin": ["x-pack/test/encrypted_saved_objects_api_integration/plugins/api_consumer_plugin"], + "@kbn/eso-plugin/*": ["x-pack/test/encrypted_saved_objects_api_integration/plugins/api_consumer_plugin/*"], + "@kbn/event-annotation-common": ["packages/kbn-event-annotation-common"], + "@kbn/event-annotation-common/*": ["packages/kbn-event-annotation-common/*"], + "@kbn/event-annotation-components": ["packages/kbn-event-annotation-components"], + "@kbn/event-annotation-components/*": ["packages/kbn-event-annotation-components/*"], + "@kbn/event-annotation-listing-plugin": ["src/plugins/event_annotation_listing"], + "@kbn/event-annotation-listing-plugin/*": ["src/plugins/event_annotation_listing/*"], + "@kbn/event-annotation-plugin": ["src/plugins/event_annotation"], + "@kbn/event-annotation-plugin/*": ["src/plugins/event_annotation/*"], + "@kbn/event-log-fixture-plugin": ["x-pack/test/plugin_api_integration/plugins/event_log"], + "@kbn/event-log-fixture-plugin/*": ["x-pack/test/plugin_api_integration/plugins/event_log/*"], + "@kbn/event-log-plugin": ["x-pack/plugins/event_log"], + "@kbn/event-log-plugin/*": ["x-pack/plugins/event_log/*"], + "@kbn/expandable-flyout": ["packages/kbn-expandable-flyout"], + "@kbn/expandable-flyout/*": ["packages/kbn-expandable-flyout/*"], + "@kbn/expect": ["packages/kbn-expect"], + "@kbn/expect/*": ["packages/kbn-expect/*"], + "@kbn/exploratory-view-example-plugin": ["x-pack/examples/exploratory_view_example"], + "@kbn/exploratory-view-example-plugin/*": ["x-pack/examples/exploratory_view_example/*"], + "@kbn/exploratory-view-plugin": ["x-pack/plugins/exploratory_view"], + "@kbn/exploratory-view-plugin/*": ["x-pack/plugins/exploratory_view/*"], + "@kbn/expression-error-plugin": ["src/plugins/expression_error"], + "@kbn/expression-error-plugin/*": ["src/plugins/expression_error/*"], + "@kbn/expression-gauge-plugin": ["src/plugins/chart_expressions/expression_gauge"], + "@kbn/expression-gauge-plugin/*": ["src/plugins/chart_expressions/expression_gauge/*"], + "@kbn/expression-heatmap-plugin": ["src/plugins/chart_expressions/expression_heatmap"], + "@kbn/expression-heatmap-plugin/*": ["src/plugins/chart_expressions/expression_heatmap/*"], + "@kbn/expression-image-plugin": ["src/plugins/expression_image"], + "@kbn/expression-image-plugin/*": ["src/plugins/expression_image/*"], + "@kbn/expression-legacy-metric-vis-plugin": ["src/plugins/chart_expressions/expression_legacy_metric"], + "@kbn/expression-legacy-metric-vis-plugin/*": ["src/plugins/chart_expressions/expression_legacy_metric/*"], + "@kbn/expression-metric-plugin": ["src/plugins/expression_metric"], + "@kbn/expression-metric-plugin/*": ["src/plugins/expression_metric/*"], + "@kbn/expression-metric-vis-plugin": ["src/plugins/chart_expressions/expression_metric"], + "@kbn/expression-metric-vis-plugin/*": ["src/plugins/chart_expressions/expression_metric/*"], + "@kbn/expression-partition-vis-plugin": ["src/plugins/chart_expressions/expression_partition_vis"], + "@kbn/expression-partition-vis-plugin/*": ["src/plugins/chart_expressions/expression_partition_vis/*"], + "@kbn/expression-repeat-image-plugin": ["src/plugins/expression_repeat_image"], + "@kbn/expression-repeat-image-plugin/*": ["src/plugins/expression_repeat_image/*"], + "@kbn/expression-reveal-image-plugin": ["src/plugins/expression_reveal_image"], + "@kbn/expression-reveal-image-plugin/*": ["src/plugins/expression_reveal_image/*"], + "@kbn/expression-shape-plugin": ["src/plugins/expression_shape"], + "@kbn/expression-shape-plugin/*": ["src/plugins/expression_shape/*"], + "@kbn/expression-tagcloud-plugin": ["src/plugins/chart_expressions/expression_tagcloud"], + "@kbn/expression-tagcloud-plugin/*": ["src/plugins/chart_expressions/expression_tagcloud/*"], + "@kbn/expression-xy-plugin": ["src/plugins/chart_expressions/expression_xy"], + "@kbn/expression-xy-plugin/*": ["src/plugins/chart_expressions/expression_xy/*"], + "@kbn/expressions-explorer-plugin": ["examples/expressions_explorer"], + "@kbn/expressions-explorer-plugin/*": ["examples/expressions_explorer/*"], + "@kbn/expressions-plugin": ["src/plugins/expressions"], + "@kbn/expressions-plugin/*": ["src/plugins/expressions/*"], + "@kbn/failed-test-reporter-cli": ["packages/kbn-failed-test-reporter-cli"], + "@kbn/failed-test-reporter-cli/*": ["packages/kbn-failed-test-reporter-cli/*"], + "@kbn/feature-controls-examples-plugin": ["examples/feature_control_examples"], + "@kbn/feature-controls-examples-plugin/*": ["examples/feature_control_examples/*"], + "@kbn/feature-usage-test-plugin": ["x-pack/test/plugin_api_integration/plugins/feature_usage_test"], + "@kbn/feature-usage-test-plugin/*": ["x-pack/test/plugin_api_integration/plugins/feature_usage_test/*"], + "@kbn/features-plugin": ["x-pack/plugins/features"], + "@kbn/features-plugin/*": ["x-pack/plugins/features/*"], + "@kbn/fec-alerts-test-plugin": ["x-pack/test/functional_execution_context/plugins/alerts"], + "@kbn/fec-alerts-test-plugin/*": ["x-pack/test/functional_execution_context/plugins/alerts/*"], + "@kbn/field-formats-example-plugin": ["examples/field_formats_example"], + "@kbn/field-formats-example-plugin/*": ["examples/field_formats_example/*"], + "@kbn/field-formats-plugin": ["src/plugins/field_formats"], + "@kbn/field-formats-plugin/*": ["src/plugins/field_formats/*"], + "@kbn/field-types": ["packages/kbn-field-types"], + "@kbn/field-types/*": ["packages/kbn-field-types/*"], + "@kbn/field-utils": ["packages/kbn-field-utils"], + "@kbn/field-utils/*": ["packages/kbn-field-utils/*"], + "@kbn/file-upload-plugin": ["x-pack/plugins/file_upload"], + "@kbn/file-upload-plugin/*": ["x-pack/plugins/file_upload/*"], + "@kbn/files-example-plugin": ["examples/files_example"], + "@kbn/files-example-plugin/*": ["examples/files_example/*"], + "@kbn/files-management-plugin": ["src/plugins/files_management"], + "@kbn/files-management-plugin/*": ["src/plugins/files_management/*"], + "@kbn/files-plugin": ["src/plugins/files"], + "@kbn/files-plugin/*": ["src/plugins/files/*"], + "@kbn/find-used-node-modules": ["packages/kbn-find-used-node-modules"], + "@kbn/find-used-node-modules/*": ["packages/kbn-find-used-node-modules/*"], + "@kbn/fleet-plugin": ["x-pack/plugins/fleet"], + "@kbn/fleet-plugin/*": ["x-pack/plugins/fleet/*"], + "@kbn/flot-charts": ["packages/kbn-flot-charts"], + "@kbn/flot-charts/*": ["packages/kbn-flot-charts/*"], + "@kbn/foo-plugin": ["x-pack/test/ui_capabilities/common/plugins/foo_plugin"], + "@kbn/foo-plugin/*": ["x-pack/test/ui_capabilities/common/plugins/foo_plugin/*"], + "@kbn/ftr-apis-plugin": ["src/plugins/ftr_apis"], + "@kbn/ftr-apis-plugin/*": ["src/plugins/ftr_apis/*"], + "@kbn/ftr-common-functional-services": ["packages/kbn-ftr-common-functional-services"], + "@kbn/ftr-common-functional-services/*": ["packages/kbn-ftr-common-functional-services/*"], + "@kbn/ftr-common-functional-ui-services": ["packages/kbn-ftr-common-functional-ui-services"], + "@kbn/ftr-common-functional-ui-services/*": ["packages/kbn-ftr-common-functional-ui-services/*"], + "@kbn/ftr-screenshot-filename": ["packages/kbn-ftr-screenshot-filename"], + "@kbn/ftr-screenshot-filename/*": ["packages/kbn-ftr-screenshot-filename/*"], + "@kbn/functional-with-es-ssl-cases-test-plugin": ["x-pack/test/functional_with_es_ssl/plugins/cases"], + "@kbn/functional-with-es-ssl-cases-test-plugin/*": ["x-pack/test/functional_with_es_ssl/plugins/cases/*"], + "@kbn/gen-ai-streaming-response-example-plugin": ["x-pack/examples/gen_ai_streaming_response_example"], + "@kbn/gen-ai-streaming-response-example-plugin/*": ["x-pack/examples/gen_ai_streaming_response_example/*"], + "@kbn/generate": ["packages/kbn-generate"], + "@kbn/generate/*": ["packages/kbn-generate/*"], + "@kbn/generate-console-definitions": ["packages/kbn-generate-console-definitions"], + "@kbn/generate-console-definitions/*": ["packages/kbn-generate-console-definitions/*"], + "@kbn/generate-csv": ["packages/kbn-generate-csv"], + "@kbn/generate-csv/*": ["packages/kbn-generate-csv/*"], + "@kbn/get-repo-files": ["packages/kbn-get-repo-files"], + "@kbn/get-repo-files/*": ["packages/kbn-get-repo-files/*"], + "@kbn/global-search-bar-plugin": ["x-pack/plugins/global_search_bar"], + "@kbn/global-search-bar-plugin/*": ["x-pack/plugins/global_search_bar/*"], + "@kbn/global-search-plugin": ["x-pack/plugins/global_search"], + "@kbn/global-search-plugin/*": ["x-pack/plugins/global_search/*"], + "@kbn/global-search-providers-plugin": ["x-pack/plugins/global_search_providers"], + "@kbn/global-search-providers-plugin/*": ["x-pack/plugins/global_search_providers/*"], + "@kbn/global-search-test-plugin": ["x-pack/test/plugin_functional/plugins/global_search_test"], + "@kbn/global-search-test-plugin/*": ["x-pack/test/plugin_functional/plugins/global_search_test/*"], + "@kbn/graph-plugin": ["x-pack/plugins/graph"], + "@kbn/graph-plugin/*": ["x-pack/plugins/graph/*"], + "@kbn/grokdebugger-plugin": ["x-pack/plugins/grokdebugger"], + "@kbn/grokdebugger-plugin/*": ["x-pack/plugins/grokdebugger/*"], + "@kbn/guided-onboarding": ["packages/kbn-guided-onboarding"], + "@kbn/guided-onboarding/*": ["packages/kbn-guided-onboarding/*"], + "@kbn/guided-onboarding-example-plugin": ["examples/guided_onboarding_example"], + "@kbn/guided-onboarding-example-plugin/*": ["examples/guided_onboarding_example/*"], + "@kbn/guided-onboarding-plugin": ["src/plugins/guided_onboarding"], + "@kbn/guided-onboarding-plugin/*": ["src/plugins/guided_onboarding/*"], + "@kbn/handlebars": ["packages/kbn-handlebars"], + "@kbn/handlebars/*": ["packages/kbn-handlebars/*"], + "@kbn/hapi-mocks": ["packages/kbn-hapi-mocks"], + "@kbn/hapi-mocks/*": ["packages/kbn-hapi-mocks/*"], + "@kbn/health-gateway-server": ["packages/kbn-health-gateway-server"], + "@kbn/health-gateway-server/*": ["packages/kbn-health-gateway-server/*"], + "@kbn/hello-world-plugin": ["examples/hello_world"], + "@kbn/hello-world-plugin/*": ["examples/hello_world/*"], + "@kbn/home-plugin": ["src/plugins/home"], + "@kbn/home-plugin/*": ["src/plugins/home/*"], + "@kbn/home-sample-data-card": ["packages/home/sample_data_card"], + "@kbn/home-sample-data-card/*": ["packages/home/sample_data_card/*"], + "@kbn/home-sample-data-tab": ["packages/home/sample_data_tab"], + "@kbn/home-sample-data-tab/*": ["packages/home/sample_data_tab/*"], + "@kbn/home-sample-data-types": ["packages/home/sample_data_types"], + "@kbn/home-sample-data-types/*": ["packages/home/sample_data_types/*"], + "@kbn/i18n": ["packages/kbn-i18n"], + "@kbn/i18n/*": ["packages/kbn-i18n/*"], + "@kbn/i18n-react": ["packages/kbn-i18n-react"], + "@kbn/i18n-react/*": ["packages/kbn-i18n-react/*"], + "@kbn/iframe-embedded-plugin": ["x-pack/test/functional_embedded/plugins/iframe_embedded"], + "@kbn/iframe-embedded-plugin/*": ["x-pack/test/functional_embedded/plugins/iframe_embedded/*"], + "@kbn/image-embeddable-plugin": ["src/plugins/image_embeddable"], + "@kbn/image-embeddable-plugin/*": ["src/plugins/image_embeddable/*"], + "@kbn/import-locator": ["packages/kbn-import-locator"], + "@kbn/import-locator/*": ["packages/kbn-import-locator/*"], + "@kbn/import-resolver": ["packages/kbn-import-resolver"], + "@kbn/import-resolver/*": ["packages/kbn-import-resolver/*"], + "@kbn/index-lifecycle-management-plugin": ["x-pack/plugins/index_lifecycle_management"], + "@kbn/index-lifecycle-management-plugin/*": ["x-pack/plugins/index_lifecycle_management/*"], + "@kbn/index-management-plugin": ["x-pack/plugins/index_management"], + "@kbn/index-management-plugin/*": ["x-pack/plugins/index_management/*"], + "@kbn/index-patterns-test-plugin": ["test/plugin_functional/plugins/index_patterns"], + "@kbn/index-patterns-test-plugin/*": ["test/plugin_functional/plugins/index_patterns/*"], + "@kbn/infra-forge": ["x-pack/packages/kbn-infra-forge"], + "@kbn/infra-forge/*": ["x-pack/packages/kbn-infra-forge/*"], + "@kbn/infra-plugin": ["x-pack/plugins/infra"], + "@kbn/infra-plugin/*": ["x-pack/plugins/infra/*"], + "@kbn/ingest-pipelines-plugin": ["x-pack/plugins/ingest_pipelines"], + "@kbn/ingest-pipelines-plugin/*": ["x-pack/plugins/ingest_pipelines/*"], + "@kbn/input-control-vis-plugin": ["src/plugins/input_control_vis"], + "@kbn/input-control-vis-plugin/*": ["src/plugins/input_control_vis/*"], + "@kbn/inspector-plugin": ["src/plugins/inspector"], + "@kbn/inspector-plugin/*": ["src/plugins/inspector/*"], + "@kbn/interactive-setup-plugin": ["src/plugins/interactive_setup"], + "@kbn/interactive-setup-plugin/*": ["src/plugins/interactive_setup/*"], + "@kbn/interactive-setup-test-endpoints-plugin": ["test/interactive_setup_api_integration/plugins/test_endpoints"], + "@kbn/interactive-setup-test-endpoints-plugin/*": ["test/interactive_setup_api_integration/plugins/test_endpoints/*"], + "@kbn/interpreter": ["packages/kbn-interpreter"], + "@kbn/interpreter/*": ["packages/kbn-interpreter/*"], + "@kbn/io-ts-utils": ["packages/kbn-io-ts-utils"], + "@kbn/io-ts-utils/*": ["packages/kbn-io-ts-utils/*"], + "@kbn/jest-serializers": ["packages/kbn-jest-serializers"], + "@kbn/jest-serializers/*": ["packages/kbn-jest-serializers/*"], + "@kbn/journeys": ["packages/kbn-journeys"], + "@kbn/journeys/*": ["packages/kbn-journeys/*"], + "@kbn/json-ast": ["packages/kbn-json-ast"], + "@kbn/json-ast/*": ["packages/kbn-json-ast/*"], + "@kbn/kbn-health-gateway-status-plugin": ["test/health_gateway/plugins/status"], + "@kbn/kbn-health-gateway-status-plugin/*": ["test/health_gateway/plugins/status/*"], + "@kbn/kbn-sample-panel-action-plugin": ["test/plugin_functional/plugins/kbn_sample_panel_action"], + "@kbn/kbn-sample-panel-action-plugin/*": ["test/plugin_functional/plugins/kbn_sample_panel_action/*"], + "@kbn/kbn-top-nav-plugin": ["test/plugin_functional/plugins/kbn_top_nav"], + "@kbn/kbn-top-nav-plugin/*": ["test/plugin_functional/plugins/kbn_top_nav/*"], + "@kbn/kbn-tp-custom-visualizations-plugin": ["test/plugin_functional/plugins/kbn_tp_custom_visualizations"], + "@kbn/kbn-tp-custom-visualizations-plugin/*": ["test/plugin_functional/plugins/kbn_tp_custom_visualizations/*"], + "@kbn/kbn-tp-run-pipeline-plugin": ["test/interpreter_functional/plugins/kbn_tp_run_pipeline"], + "@kbn/kbn-tp-run-pipeline-plugin/*": ["test/interpreter_functional/plugins/kbn_tp_run_pipeline/*"], + "@kbn/kibana-cors-test-plugin": ["x-pack/test/functional_cors/plugins/kibana_cors_test"], + "@kbn/kibana-cors-test-plugin/*": ["x-pack/test/functional_cors/plugins/kibana_cors_test/*"], + "@kbn/kibana-manifest-schema": ["packages/kbn-kibana-manifest-schema"], + "@kbn/kibana-manifest-schema/*": ["packages/kbn-kibana-manifest-schema/*"], + "@kbn/kibana-overview-plugin": ["src/plugins/kibana_overview"], + "@kbn/kibana-overview-plugin/*": ["src/plugins/kibana_overview/*"], + "@kbn/kibana-react-plugin": ["src/plugins/kibana_react"], + "@kbn/kibana-react-plugin/*": ["src/plugins/kibana_react/*"], + "@kbn/kibana-usage-collection-plugin": ["src/plugins/kibana_usage_collection"], + "@kbn/kibana-usage-collection-plugin/*": ["src/plugins/kibana_usage_collection/*"], + "@kbn/kibana-utils-plugin": ["src/plugins/kibana_utils"], + "@kbn/kibana-utils-plugin/*": ["src/plugins/kibana_utils/*"], + "@kbn/kubernetes-security-plugin": ["x-pack/plugins/kubernetes_security"], + "@kbn/kubernetes-security-plugin/*": ["x-pack/plugins/kubernetes_security/*"], + "@kbn/language-documentation-popover": ["packages/kbn-language-documentation-popover"], + "@kbn/language-documentation-popover/*": ["packages/kbn-language-documentation-popover/*"], + "@kbn/lens-embeddable-utils": ["packages/kbn-lens-embeddable-utils"], + "@kbn/lens-embeddable-utils/*": ["packages/kbn-lens-embeddable-utils/*"], + "@kbn/lens-formula-docs": ["packages/kbn-lens-formula-docs"], + "@kbn/lens-formula-docs/*": ["packages/kbn-lens-formula-docs/*"], + "@kbn/lens-plugin": ["x-pack/plugins/lens"], + "@kbn/lens-plugin/*": ["x-pack/plugins/lens/*"], + "@kbn/license-api-guard-plugin": ["x-pack/plugins/license_api_guard"], + "@kbn/license-api-guard-plugin/*": ["x-pack/plugins/license_api_guard/*"], + "@kbn/license-management-plugin": ["x-pack/plugins/license_management"], + "@kbn/license-management-plugin/*": ["x-pack/plugins/license_management/*"], + "@kbn/licensing-plugin": ["x-pack/plugins/licensing"], + "@kbn/licensing-plugin/*": ["x-pack/plugins/licensing/*"], + "@kbn/links-plugin": ["src/plugins/links"], + "@kbn/links-plugin/*": ["src/plugins/links/*"], + "@kbn/lint-packages-cli": ["packages/kbn-lint-packages-cli"], + "@kbn/lint-packages-cli/*": ["packages/kbn-lint-packages-cli/*"], + "@kbn/lint-ts-projects-cli": ["packages/kbn-lint-ts-projects-cli"], + "@kbn/lint-ts-projects-cli/*": ["packages/kbn-lint-ts-projects-cli/*"], + "@kbn/lists-plugin": ["x-pack/plugins/lists"], + "@kbn/lists-plugin/*": ["x-pack/plugins/lists/*"], + "@kbn/locator-examples-plugin": ["examples/locator_examples"], + "@kbn/locator-examples-plugin/*": ["examples/locator_examples/*"], + "@kbn/locator-explorer-plugin": ["examples/locator_explorer"], + "@kbn/locator-explorer-plugin/*": ["examples/locator_explorer/*"], + "@kbn/logging": ["packages/kbn-logging"], + "@kbn/logging/*": ["packages/kbn-logging/*"], + "@kbn/logging-mocks": ["packages/kbn-logging-mocks"], + "@kbn/logging-mocks/*": ["packages/kbn-logging-mocks/*"], + "@kbn/logs-explorer-plugin": ["x-pack/plugins/logs_explorer"], + "@kbn/logs-explorer-plugin/*": ["x-pack/plugins/logs_explorer/*"], + "@kbn/logs-shared-plugin": ["x-pack/plugins/logs_shared"], + "@kbn/logs-shared-plugin/*": ["x-pack/plugins/logs_shared/*"], + "@kbn/logstash-plugin": ["x-pack/plugins/logstash"], + "@kbn/logstash-plugin/*": ["x-pack/plugins/logstash/*"], + "@kbn/managed-vscode-config": ["packages/kbn-managed-vscode-config"], + "@kbn/managed-vscode-config/*": ["packages/kbn-managed-vscode-config/*"], + "@kbn/managed-vscode-config-cli": ["packages/kbn-managed-vscode-config-cli"], + "@kbn/managed-vscode-config-cli/*": ["packages/kbn-managed-vscode-config-cli/*"], + "@kbn/management-cards-navigation": ["packages/kbn-management/cards_navigation"], + "@kbn/management-cards-navigation/*": ["packages/kbn-management/cards_navigation/*"], + "@kbn/management-plugin": ["src/plugins/management"], + "@kbn/management-plugin/*": ["src/plugins/management/*"], + "@kbn/management-settings-application": ["packages/kbn-management/settings/application"], + "@kbn/management-settings-application/*": ["packages/kbn-management/settings/application/*"], + "@kbn/management-settings-components-field-category": ["packages/kbn-management/settings/components/field_category"], + "@kbn/management-settings-components-field-category/*": ["packages/kbn-management/settings/components/field_category/*"], + "@kbn/management-settings-components-field-input": ["packages/kbn-management/settings/components/field_input"], + "@kbn/management-settings-components-field-input/*": ["packages/kbn-management/settings/components/field_input/*"], + "@kbn/management-settings-components-field-row": ["packages/kbn-management/settings/components/field_row"], + "@kbn/management-settings-components-field-row/*": ["packages/kbn-management/settings/components/field_row/*"], + "@kbn/management-settings-components-form": ["packages/kbn-management/settings/components/form"], + "@kbn/management-settings-components-form/*": ["packages/kbn-management/settings/components/form/*"], + "@kbn/management-settings-field-definition": ["packages/kbn-management/settings/field_definition"], + "@kbn/management-settings-field-definition/*": ["packages/kbn-management/settings/field_definition/*"], + "@kbn/management-settings-ids": ["packages/kbn-management/settings/setting_ids"], + "@kbn/management-settings-ids/*": ["packages/kbn-management/settings/setting_ids/*"], + "@kbn/management-settings-section-registry": ["packages/kbn-management/settings/section_registry"], + "@kbn/management-settings-section-registry/*": ["packages/kbn-management/settings/section_registry/*"], + "@kbn/management-settings-types": ["packages/kbn-management/settings/types"], + "@kbn/management-settings-types/*": ["packages/kbn-management/settings/types/*"], + "@kbn/management-settings-utilities": ["packages/kbn-management/settings/utilities"], + "@kbn/management-settings-utilities/*": ["packages/kbn-management/settings/utilities/*"], + "@kbn/management-storybook-config": ["packages/kbn-management/storybook/config"], + "@kbn/management-storybook-config/*": ["packages/kbn-management/storybook/config/*"], + "@kbn/management-test-plugin": ["test/plugin_functional/plugins/management_test_plugin"], + "@kbn/management-test-plugin/*": ["test/plugin_functional/plugins/management_test_plugin/*"], + "@kbn/mapbox-gl": ["packages/kbn-mapbox-gl"], + "@kbn/mapbox-gl/*": ["packages/kbn-mapbox-gl/*"], + "@kbn/maps-custom-raster-source-plugin": ["x-pack/examples/third_party_maps_source_example"], + "@kbn/maps-custom-raster-source-plugin/*": ["x-pack/examples/third_party_maps_source_example/*"], + "@kbn/maps-ems-plugin": ["src/plugins/maps_ems"], + "@kbn/maps-ems-plugin/*": ["src/plugins/maps_ems/*"], + "@kbn/maps-plugin": ["x-pack/plugins/maps"], + "@kbn/maps-plugin/*": ["x-pack/plugins/maps/*"], + "@kbn/maps-vector-tile-utils": ["x-pack/packages/maps/vector_tile_utils"], + "@kbn/maps-vector-tile-utils/*": ["x-pack/packages/maps/vector_tile_utils/*"], + "@kbn/metrics-data-access-plugin": ["x-pack/plugins/metrics_data_access"], + "@kbn/metrics-data-access-plugin/*": ["x-pack/plugins/metrics_data_access/*"], + "@kbn/ml-agg-utils": ["x-pack/packages/ml/agg_utils"], + "@kbn/ml-agg-utils/*": ["x-pack/packages/ml/agg_utils/*"], + "@kbn/ml-anomaly-utils": ["x-pack/packages/ml/anomaly_utils"], + "@kbn/ml-anomaly-utils/*": ["x-pack/packages/ml/anomaly_utils/*"], + "@kbn/ml-category-validator": ["x-pack/packages/ml/category_validator"], + "@kbn/ml-category-validator/*": ["x-pack/packages/ml/category_validator/*"], + "@kbn/ml-chi2test": ["x-pack/packages/ml/chi2test"], + "@kbn/ml-chi2test/*": ["x-pack/packages/ml/chi2test/*"], + "@kbn/ml-creation-wizard-utils": ["x-pack/packages/ml/creation_wizard_utils"], + "@kbn/ml-creation-wizard-utils/*": ["x-pack/packages/ml/creation_wizard_utils/*"], + "@kbn/ml-data-frame-analytics-utils": ["x-pack/packages/ml/data_frame_analytics_utils"], + "@kbn/ml-data-frame-analytics-utils/*": ["x-pack/packages/ml/data_frame_analytics_utils/*"], + "@kbn/ml-data-grid": ["x-pack/packages/ml/data_grid"], + "@kbn/ml-data-grid/*": ["x-pack/packages/ml/data_grid/*"], + "@kbn/ml-data-view-utils": ["x-pack/packages/ml/data_view_utils"], + "@kbn/ml-data-view-utils/*": ["x-pack/packages/ml/data_view_utils/*"], + "@kbn/ml-date-picker": ["x-pack/packages/ml/date_picker"], + "@kbn/ml-date-picker/*": ["x-pack/packages/ml/date_picker/*"], + "@kbn/ml-date-utils": ["x-pack/packages/ml/date_utils"], + "@kbn/ml-date-utils/*": ["x-pack/packages/ml/date_utils/*"], + "@kbn/ml-error-utils": ["x-pack/packages/ml/error_utils"], + "@kbn/ml-error-utils/*": ["x-pack/packages/ml/error_utils/*"], + "@kbn/ml-in-memory-table": ["x-pack/packages/ml/in_memory_table"], + "@kbn/ml-in-memory-table/*": ["x-pack/packages/ml/in_memory_table/*"], + "@kbn/ml-is-defined": ["x-pack/packages/ml/is_defined"], + "@kbn/ml-is-defined/*": ["x-pack/packages/ml/is_defined/*"], + "@kbn/ml-is-populated-object": ["x-pack/packages/ml/is_populated_object"], + "@kbn/ml-is-populated-object/*": ["x-pack/packages/ml/is_populated_object/*"], + "@kbn/ml-kibana-theme": ["x-pack/packages/ml/kibana_theme"], + "@kbn/ml-kibana-theme/*": ["x-pack/packages/ml/kibana_theme/*"], + "@kbn/ml-local-storage": ["x-pack/packages/ml/local_storage"], + "@kbn/ml-local-storage/*": ["x-pack/packages/ml/local_storage/*"], + "@kbn/ml-nested-property": ["x-pack/packages/ml/nested_property"], + "@kbn/ml-nested-property/*": ["x-pack/packages/ml/nested_property/*"], + "@kbn/ml-number-utils": ["x-pack/packages/ml/number_utils"], + "@kbn/ml-number-utils/*": ["x-pack/packages/ml/number_utils/*"], + "@kbn/ml-plugin": ["x-pack/plugins/ml"], + "@kbn/ml-plugin/*": ["x-pack/plugins/ml/*"], + "@kbn/ml-query-utils": ["x-pack/packages/ml/query_utils"], + "@kbn/ml-query-utils/*": ["x-pack/packages/ml/query_utils/*"], + "@kbn/ml-random-sampler-utils": ["x-pack/packages/ml/random_sampler_utils"], + "@kbn/ml-random-sampler-utils/*": ["x-pack/packages/ml/random_sampler_utils/*"], + "@kbn/ml-response-stream": ["x-pack/packages/ml/response_stream"], + "@kbn/ml-response-stream/*": ["x-pack/packages/ml/response_stream/*"], + "@kbn/ml-route-utils": ["x-pack/packages/ml/route_utils"], + "@kbn/ml-route-utils/*": ["x-pack/packages/ml/route_utils/*"], + "@kbn/ml-runtime-field-utils": ["x-pack/packages/ml/runtime_field_utils"], + "@kbn/ml-runtime-field-utils/*": ["x-pack/packages/ml/runtime_field_utils/*"], + "@kbn/ml-string-hash": ["x-pack/packages/ml/string_hash"], + "@kbn/ml-string-hash/*": ["x-pack/packages/ml/string_hash/*"], + "@kbn/ml-trained-models-utils": ["x-pack/packages/ml/trained_models_utils"], + "@kbn/ml-trained-models-utils/*": ["x-pack/packages/ml/trained_models_utils/*"], + "@kbn/ml-ui-actions": ["x-pack/packages/ml/ui_actions"], + "@kbn/ml-ui-actions/*": ["x-pack/packages/ml/ui_actions/*"], + "@kbn/ml-url-state": ["x-pack/packages/ml/url_state"], + "@kbn/ml-url-state/*": ["x-pack/packages/ml/url_state/*"], + "@kbn/mock-idp-plugin": ["packages/kbn-mock-idp-plugin"], + "@kbn/mock-idp-plugin/*": ["packages/kbn-mock-idp-plugin/*"], + "@kbn/monaco": ["packages/kbn-monaco"], + "@kbn/monaco/*": ["packages/kbn-monaco/*"], + "@kbn/monitoring-collection-plugin": ["x-pack/plugins/monitoring_collection"], + "@kbn/monitoring-collection-plugin/*": ["x-pack/plugins/monitoring_collection/*"], + "@kbn/monitoring-plugin": ["x-pack/plugins/monitoring"], + "@kbn/monitoring-plugin/*": ["x-pack/plugins/monitoring/*"], + "@kbn/navigation-plugin": ["src/plugins/navigation"], + "@kbn/navigation-plugin/*": ["src/plugins/navigation/*"], + "@kbn/newsfeed-plugin": ["src/plugins/newsfeed"], + "@kbn/newsfeed-plugin/*": ["src/plugins/newsfeed/*"], + "@kbn/newsfeed-test-plugin": ["test/common/plugins/newsfeed"], + "@kbn/newsfeed-test-plugin/*": ["test/common/plugins/newsfeed/*"], + "@kbn/no-data-page-plugin": ["src/plugins/no_data_page"], + "@kbn/no-data-page-plugin/*": ["src/plugins/no_data_page/*"], + "@kbn/notifications-plugin": ["x-pack/plugins/notifications"], + "@kbn/notifications-plugin/*": ["x-pack/plugins/notifications/*"], + "@kbn/object-versioning": ["packages/kbn-object-versioning"], + "@kbn/object-versioning/*": ["packages/kbn-object-versioning/*"], + "@kbn/observability-ai-assistant-plugin": ["x-pack/plugins/observability_ai_assistant"], + "@kbn/observability-ai-assistant-plugin/*": ["x-pack/plugins/observability_ai_assistant/*"], + "@kbn/observability-alert-details": ["x-pack/packages/observability/alert_details"], + "@kbn/observability-alert-details/*": ["x-pack/packages/observability/alert_details/*"], + "@kbn/observability-alerting-test-data": ["x-pack/packages/observability/alerting_test_data"], + "@kbn/observability-alerting-test-data/*": ["x-pack/packages/observability/alerting_test_data/*"], + "@kbn/observability-fixtures-plugin": ["x-pack/test/cases_api_integration/common/plugins/observability"], + "@kbn/observability-fixtures-plugin/*": ["x-pack/test/cases_api_integration/common/plugins/observability/*"], + "@kbn/observability-get-padded-alert-time-range-util": ["x-pack/packages/observability/get_padded_alert_time_range_util"], + "@kbn/observability-get-padded-alert-time-range-util/*": ["x-pack/packages/observability/get_padded_alert_time_range_util/*"], + "@kbn/observability-logs-explorer-plugin": ["x-pack/plugins/observability_logs_explorer"], + "@kbn/observability-logs-explorer-plugin/*": ["x-pack/plugins/observability_logs_explorer/*"], + "@kbn/observability-onboarding-plugin": ["x-pack/plugins/observability_onboarding"], + "@kbn/observability-onboarding-plugin/*": ["x-pack/plugins/observability_onboarding/*"], + "@kbn/observability-plugin": ["x-pack/plugins/observability"], + "@kbn/observability-plugin/*": ["x-pack/plugins/observability/*"], + "@kbn/observability-shared-plugin": ["x-pack/plugins/observability_shared"], + "@kbn/observability-shared-plugin/*": ["x-pack/plugins/observability_shared/*"], + "@kbn/oidc-provider-plugin": ["x-pack/test/security_api_integration/plugins/oidc_provider"], + "@kbn/oidc-provider-plugin/*": ["x-pack/test/security_api_integration/plugins/oidc_provider/*"], + "@kbn/open-telemetry-instrumented-plugin": ["test/common/plugins/otel_metrics"], + "@kbn/open-telemetry-instrumented-plugin/*": ["test/common/plugins/otel_metrics/*"], + "@kbn/openapi-bundler": ["packages/kbn-openapi-bundler"], + "@kbn/openapi-bundler/*": ["packages/kbn-openapi-bundler/*"], + "@kbn/openapi-generator": ["packages/kbn-openapi-generator"], + "@kbn/openapi-generator/*": ["packages/kbn-openapi-generator/*"], + "@kbn/optimizer": ["packages/kbn-optimizer"], + "@kbn/optimizer/*": ["packages/kbn-optimizer/*"], + "@kbn/optimizer-webpack-helpers": ["packages/kbn-optimizer-webpack-helpers"], + "@kbn/optimizer-webpack-helpers/*": ["packages/kbn-optimizer-webpack-helpers/*"], + "@kbn/osquery-io-ts-types": ["packages/kbn-osquery-io-ts-types"], + "@kbn/osquery-io-ts-types/*": ["packages/kbn-osquery-io-ts-types/*"], + "@kbn/osquery-plugin": ["x-pack/plugins/osquery"], + "@kbn/osquery-plugin/*": ["x-pack/plugins/osquery/*"], + "@kbn/paertial-results-example-plugin": ["examples/partial_results_example"], + "@kbn/paertial-results-example-plugin/*": ["examples/partial_results_example/*"], + "@kbn/painless-lab-plugin": ["x-pack/plugins/painless_lab"], + "@kbn/painless-lab-plugin/*": ["x-pack/plugins/painless_lab/*"], + "@kbn/panel-loader": ["packages/kbn-panel-loader"], + "@kbn/panel-loader/*": ["packages/kbn-panel-loader/*"], + "@kbn/peggy": ["packages/kbn-peggy"], + "@kbn/peggy/*": ["packages/kbn-peggy/*"], + "@kbn/peggy-loader": ["packages/kbn-peggy-loader"], + "@kbn/peggy-loader/*": ["packages/kbn-peggy-loader/*"], + "@kbn/performance-testing-dataset-extractor": ["packages/kbn-performance-testing-dataset-extractor"], + "@kbn/performance-testing-dataset-extractor/*": ["packages/kbn-performance-testing-dataset-extractor/*"], + "@kbn/picomatcher": ["packages/kbn-picomatcher"], + "@kbn/picomatcher/*": ["packages/kbn-picomatcher/*"], + "@kbn/plugin-generator": ["packages/kbn-plugin-generator"], + "@kbn/plugin-generator/*": ["packages/kbn-plugin-generator/*"], + "@kbn/plugin-helpers": ["packages/kbn-plugin-helpers"], + "@kbn/plugin-helpers/*": ["packages/kbn-plugin-helpers/*"], + "@kbn/portable-dashboards-example": ["examples/portable_dashboards_example"], + "@kbn/portable-dashboards-example/*": ["examples/portable_dashboards_example/*"], + "@kbn/preboot-example-plugin": ["examples/preboot_example"], + "@kbn/preboot-example-plugin/*": ["examples/preboot_example/*"], + "@kbn/presentation-util-plugin": ["src/plugins/presentation_util"], + "@kbn/presentation-util-plugin/*": ["src/plugins/presentation_util/*"], + "@kbn/profiling-data-access-plugin": ["x-pack/plugins/profiling_data_access"], + "@kbn/profiling-data-access-plugin/*": ["x-pack/plugins/profiling_data_access/*"], + "@kbn/profiling-plugin": ["x-pack/plugins/profiling"], + "@kbn/profiling-plugin/*": ["x-pack/plugins/profiling/*"], + "@kbn/profiling-utils": ["packages/kbn-profiling-utils"], + "@kbn/profiling-utils/*": ["packages/kbn-profiling-utils/*"], + "@kbn/random-sampling": ["x-pack/packages/kbn-random-sampling"], + "@kbn/random-sampling/*": ["x-pack/packages/kbn-random-sampling/*"], + "@kbn/react-field": ["packages/kbn-react-field"], + "@kbn/react-field/*": ["packages/kbn-react-field/*"], + "@kbn/react-kibana-context-common": ["packages/react/kibana_context/common"], + "@kbn/react-kibana-context-common/*": ["packages/react/kibana_context/common/*"], + "@kbn/react-kibana-context-render": ["packages/react/kibana_context/render"], + "@kbn/react-kibana-context-render/*": ["packages/react/kibana_context/render/*"], + "@kbn/react-kibana-context-root": ["packages/react/kibana_context/root"], + "@kbn/react-kibana-context-root/*": ["packages/react/kibana_context/root/*"], + "@kbn/react-kibana-context-styled": ["packages/react/kibana_context/styled"], + "@kbn/react-kibana-context-styled/*": ["packages/react/kibana_context/styled/*"], + "@kbn/react-kibana-context-theme": ["packages/react/kibana_context/theme"], + "@kbn/react-kibana-context-theme/*": ["packages/react/kibana_context/theme/*"], + "@kbn/react-kibana-mount": ["packages/react/kibana_mount"], + "@kbn/react-kibana-mount/*": ["packages/react/kibana_mount/*"], + "@kbn/remote-clusters-plugin": ["x-pack/plugins/remote_clusters"], + "@kbn/remote-clusters-plugin/*": ["x-pack/plugins/remote_clusters/*"], + "@kbn/rendering-plugin": ["test/plugin_functional/plugins/rendering_plugin"], + "@kbn/rendering-plugin/*": ["test/plugin_functional/plugins/rendering_plugin/*"], + "@kbn/repo-file-maps": ["packages/kbn-repo-file-maps"], + "@kbn/repo-file-maps/*": ["packages/kbn-repo-file-maps/*"], + "@kbn/repo-info": ["packages/kbn-repo-info"], + "@kbn/repo-info/*": ["packages/kbn-repo-info/*"], + "@kbn/repo-linter": ["packages/kbn-repo-linter"], + "@kbn/repo-linter/*": ["packages/kbn-repo-linter/*"], + "@kbn/repo-packages": ["packages/kbn-repo-packages"], + "@kbn/repo-packages/*": ["packages/kbn-repo-packages/*"], + "@kbn/repo-path": ["packages/kbn-repo-path"], + "@kbn/repo-path/*": ["packages/kbn-repo-path/*"], + "@kbn/repo-source-classifier": ["packages/kbn-repo-source-classifier"], + "@kbn/repo-source-classifier/*": ["packages/kbn-repo-source-classifier/*"], + "@kbn/repo-source-classifier-cli": ["packages/kbn-repo-source-classifier-cli"], + "@kbn/repo-source-classifier-cli/*": ["packages/kbn-repo-source-classifier-cli/*"], + "@kbn/reporting-common": ["packages/kbn-reporting/common"], + "@kbn/reporting-common/*": ["packages/kbn-reporting/common/*"], + "@kbn/reporting-example-plugin": ["x-pack/examples/reporting_example"], + "@kbn/reporting-example-plugin/*": ["x-pack/examples/reporting_example/*"], + "@kbn/reporting-export-types-csv": ["packages/kbn-reporting/export_types/csv"], + "@kbn/reporting-export-types-csv/*": ["packages/kbn-reporting/export_types/csv/*"], + "@kbn/reporting-export-types-csv-common": ["packages/kbn-reporting/export_types/csv_common"], + "@kbn/reporting-export-types-csv-common/*": ["packages/kbn-reporting/export_types/csv_common/*"], + "@kbn/reporting-export-types-pdf": ["packages/kbn-reporting/export_types/pdf"], + "@kbn/reporting-export-types-pdf/*": ["packages/kbn-reporting/export_types/pdf/*"], + "@kbn/reporting-export-types-pdf-common": ["packages/kbn-reporting/export_types/pdf_common"], + "@kbn/reporting-export-types-pdf-common/*": ["packages/kbn-reporting/export_types/pdf_common/*"], + "@kbn/reporting-export-types-png": ["packages/kbn-reporting/export_types/png"], + "@kbn/reporting-export-types-png/*": ["packages/kbn-reporting/export_types/png/*"], + "@kbn/reporting-export-types-png-common": ["packages/kbn-reporting/export_types/png_common"], + "@kbn/reporting-export-types-png-common/*": ["packages/kbn-reporting/export_types/png_common/*"], + "@kbn/reporting-mocks-server": ["packages/kbn-reporting/mocks_server"], + "@kbn/reporting-mocks-server/*": ["packages/kbn-reporting/mocks_server/*"], + "@kbn/reporting-plugin": ["x-pack/plugins/reporting"], + "@kbn/reporting-plugin/*": ["x-pack/plugins/reporting/*"], + "@kbn/reporting-public": ["packages/kbn-reporting/public"], + "@kbn/reporting-public/*": ["packages/kbn-reporting/public/*"], + "@kbn/reporting-server": ["packages/kbn-reporting/server"], + "@kbn/reporting-server/*": ["packages/kbn-reporting/server/*"], + "@kbn/resizable-layout": ["packages/kbn-resizable-layout"], + "@kbn/resizable-layout/*": ["packages/kbn-resizable-layout/*"], + "@kbn/resizable-layout-examples-plugin": ["examples/resizable_layout_examples"], + "@kbn/resizable-layout-examples-plugin/*": ["examples/resizable_layout_examples/*"], + "@kbn/resolver-test-plugin": ["x-pack/test/plugin_functional/plugins/resolver_test"], + "@kbn/resolver-test-plugin/*": ["x-pack/test/plugin_functional/plugins/resolver_test/*"], + "@kbn/response-stream-plugin": ["examples/response_stream"], + "@kbn/response-stream-plugin/*": ["examples/response_stream/*"], + "@kbn/rison": ["packages/kbn-rison"], + "@kbn/rison/*": ["packages/kbn-rison/*"], + "@kbn/rollup-plugin": ["x-pack/plugins/rollup"], + "@kbn/rollup-plugin/*": ["x-pack/plugins/rollup/*"], + "@kbn/router-utils": ["packages/kbn-router-utils"], + "@kbn/router-utils/*": ["packages/kbn-router-utils/*"], + "@kbn/routing-example-plugin": ["examples/routing_example"], + "@kbn/routing-example-plugin/*": ["examples/routing_example/*"], + "@kbn/rrule": ["packages/kbn-rrule"], + "@kbn/rrule/*": ["packages/kbn-rrule/*"], + "@kbn/rule-data-utils": ["packages/kbn-rule-data-utils"], + "@kbn/rule-data-utils/*": ["packages/kbn-rule-data-utils/*"], + "@kbn/rule-registry-plugin": ["x-pack/plugins/rule_registry"], + "@kbn/rule-registry-plugin/*": ["x-pack/plugins/rule_registry/*"], + "@kbn/runtime-fields-plugin": ["x-pack/plugins/runtime_fields"], + "@kbn/runtime-fields-plugin/*": ["x-pack/plugins/runtime_fields/*"], + "@kbn/safer-lodash-set": ["packages/kbn-safer-lodash-set"], + "@kbn/safer-lodash-set/*": ["packages/kbn-safer-lodash-set/*"], + "@kbn/saml-provider-plugin": ["x-pack/test/security_api_integration/plugins/saml_provider"], + "@kbn/saml-provider-plugin/*": ["x-pack/test/security_api_integration/plugins/saml_provider/*"], + "@kbn/sample-task-plugin": ["x-pack/test/plugin_api_integration/plugins/sample_task_plugin"], + "@kbn/sample-task-plugin/*": ["x-pack/test/plugin_api_integration/plugins/sample_task_plugin/*"], + "@kbn/saved-object-export-transforms-plugin": ["test/plugin_functional/plugins/saved_object_export_transforms"], + "@kbn/saved-object-export-transforms-plugin/*": ["test/plugin_functional/plugins/saved_object_export_transforms/*"], + "@kbn/saved-object-import-warnings-plugin": ["test/plugin_functional/plugins/saved_object_import_warnings"], + "@kbn/saved-object-import-warnings-plugin/*": ["test/plugin_functional/plugins/saved_object_import_warnings/*"], + "@kbn/saved-object-test-plugin": ["x-pack/test/saved_object_api_integration/common/plugins/saved_object_test_plugin"], + "@kbn/saved-object-test-plugin/*": ["x-pack/test/saved_object_api_integration/common/plugins/saved_object_test_plugin/*"], + "@kbn/saved-objects-finder-plugin": ["src/plugins/saved_objects_finder"], + "@kbn/saved-objects-finder-plugin/*": ["src/plugins/saved_objects_finder/*"], + "@kbn/saved-objects-hidden-from-http-apis-type-plugin": ["test/plugin_functional/plugins/saved_objects_hidden_from_http_apis_type"], + "@kbn/saved-objects-hidden-from-http-apis-type-plugin/*": ["test/plugin_functional/plugins/saved_objects_hidden_from_http_apis_type/*"], + "@kbn/saved-objects-hidden-type-plugin": ["test/plugin_functional/plugins/saved_objects_hidden_type"], + "@kbn/saved-objects-hidden-type-plugin/*": ["test/plugin_functional/plugins/saved_objects_hidden_type/*"], + "@kbn/saved-objects-management-plugin": ["src/plugins/saved_objects_management"], + "@kbn/saved-objects-management-plugin/*": ["src/plugins/saved_objects_management/*"], + "@kbn/saved-objects-plugin": ["src/plugins/saved_objects"], + "@kbn/saved-objects-plugin/*": ["src/plugins/saved_objects/*"], + "@kbn/saved-objects-settings": ["packages/kbn-saved-objects-settings"], + "@kbn/saved-objects-settings/*": ["packages/kbn-saved-objects-settings/*"], + "@kbn/saved-objects-tagging-oss-plugin": ["src/plugins/saved_objects_tagging_oss"], + "@kbn/saved-objects-tagging-oss-plugin/*": ["src/plugins/saved_objects_tagging_oss/*"], + "@kbn/saved-objects-tagging-plugin": ["x-pack/plugins/saved_objects_tagging"], + "@kbn/saved-objects-tagging-plugin/*": ["x-pack/plugins/saved_objects_tagging/*"], + "@kbn/saved-search-plugin": ["src/plugins/saved_search"], + "@kbn/saved-search-plugin/*": ["src/plugins/saved_search/*"], + "@kbn/screenshot-mode-example-plugin": ["examples/screenshot_mode_example"], + "@kbn/screenshot-mode-example-plugin/*": ["examples/screenshot_mode_example/*"], + "@kbn/screenshot-mode-plugin": ["src/plugins/screenshot_mode"], + "@kbn/screenshot-mode-plugin/*": ["src/plugins/screenshot_mode/*"], + "@kbn/screenshotting-example-plugin": ["x-pack/examples/screenshotting_example"], + "@kbn/screenshotting-example-plugin/*": ["x-pack/examples/screenshotting_example/*"], + "@kbn/screenshotting-plugin": ["x-pack/plugins/screenshotting"], + "@kbn/screenshotting-plugin/*": ["x-pack/plugins/screenshotting/*"], + "@kbn/search-api-panels": ["packages/kbn-search-api-panels"], + "@kbn/search-api-panels/*": ["packages/kbn-search-api-panels/*"], + "@kbn/search-connectors": ["packages/kbn-search-connectors"], + "@kbn/search-connectors/*": ["packages/kbn-search-connectors/*"], + "@kbn/search-errors": ["packages/kbn-search-errors"], + "@kbn/search-errors/*": ["packages/kbn-search-errors/*"], + "@kbn/search-examples-plugin": ["examples/search_examples"], + "@kbn/search-examples-plugin/*": ["examples/search_examples/*"], + "@kbn/search-index-documents": ["packages/kbn-search-index-documents"], + "@kbn/search-index-documents/*": ["packages/kbn-search-index-documents/*"], + "@kbn/search-response-warnings": ["packages/kbn-search-response-warnings"], + "@kbn/search-response-warnings/*": ["packages/kbn-search-response-warnings/*"], + "@kbn/searchprofiler-plugin": ["x-pack/plugins/searchprofiler"], + "@kbn/searchprofiler-plugin/*": ["x-pack/plugins/searchprofiler/*"], + "@kbn/security-api-integration-helpers": ["x-pack/test/security_api_integration/packages/helpers"], + "@kbn/security-api-integration-helpers/*": ["x-pack/test/security_api_integration/packages/helpers/*"], + "@kbn/security-plugin": ["x-pack/plugins/security"], + "@kbn/security-plugin/*": ["x-pack/plugins/security/*"], + "@kbn/security-plugin-types-common": ["x-pack/packages/security/plugin_types_common"], + "@kbn/security-plugin-types-common/*": ["x-pack/packages/security/plugin_types_common/*"], + "@kbn/security-plugin-types-public": ["x-pack/packages/security/plugin_types_public"], + "@kbn/security-plugin-types-public/*": ["x-pack/packages/security/plugin_types_public/*"], + "@kbn/security-plugin-types-server": ["x-pack/packages/security/plugin_types_server"], + "@kbn/security-plugin-types-server/*": ["x-pack/packages/security/plugin_types_server/*"], + "@kbn/security-solution-ess": ["x-pack/plugins/security_solution_ess"], + "@kbn/security-solution-ess/*": ["x-pack/plugins/security_solution_ess/*"], + "@kbn/security-solution-features": ["x-pack/packages/security-solution/features"], + "@kbn/security-solution-features/*": ["x-pack/packages/security-solution/features/*"], + "@kbn/security-solution-fixtures-plugin": ["x-pack/test/cases_api_integration/common/plugins/security_solution"], + "@kbn/security-solution-fixtures-plugin/*": ["x-pack/test/cases_api_integration/common/plugins/security_solution/*"], + "@kbn/security-solution-navigation": ["x-pack/packages/security-solution/navigation"], + "@kbn/security-solution-navigation/*": ["x-pack/packages/security-solution/navigation/*"], + "@kbn/security-solution-plugin": ["x-pack/plugins/security_solution"], + "@kbn/security-solution-plugin/*": ["x-pack/plugins/security_solution/*"], + "@kbn/security-solution-serverless": ["x-pack/plugins/security_solution_serverless"], + "@kbn/security-solution-serverless/*": ["x-pack/plugins/security_solution_serverless/*"], + "@kbn/security-solution-side-nav": ["x-pack/packages/security-solution/side_nav"], + "@kbn/security-solution-side-nav/*": ["x-pack/packages/security-solution/side_nav/*"], + "@kbn/security-solution-storybook-config": ["x-pack/packages/security-solution/storybook/config"], + "@kbn/security-solution-storybook-config/*": ["x-pack/packages/security-solution/storybook/config/*"], + "@kbn/security-solution-upselling": ["x-pack/packages/security-solution/upselling"], + "@kbn/security-solution-upselling/*": ["x-pack/packages/security-solution/upselling/*"], + "@kbn/security-test-endpoints-plugin": ["x-pack/test/security_functional/plugins/test_endpoints"], + "@kbn/security-test-endpoints-plugin/*": ["x-pack/test/security_functional/plugins/test_endpoints/*"], + "@kbn/securitysolution-autocomplete": ["packages/kbn-securitysolution-autocomplete"], + "@kbn/securitysolution-autocomplete/*": ["packages/kbn-securitysolution-autocomplete/*"], + "@kbn/securitysolution-data-table": ["x-pack/packages/security-solution/data_table"], + "@kbn/securitysolution-data-table/*": ["x-pack/packages/security-solution/data_table/*"], + "@kbn/securitysolution-ecs": ["packages/kbn-securitysolution-ecs"], + "@kbn/securitysolution-ecs/*": ["packages/kbn-securitysolution-ecs/*"], + "@kbn/securitysolution-es-utils": ["packages/kbn-securitysolution-es-utils"], + "@kbn/securitysolution-es-utils/*": ["packages/kbn-securitysolution-es-utils/*"], + "@kbn/securitysolution-exception-list-components": ["packages/kbn-securitysolution-exception-list-components"], + "@kbn/securitysolution-exception-list-components/*": ["packages/kbn-securitysolution-exception-list-components/*"], + "@kbn/securitysolution-grouping": ["packages/kbn-securitysolution-grouping"], + "@kbn/securitysolution-grouping/*": ["packages/kbn-securitysolution-grouping/*"], + "@kbn/securitysolution-hook-utils": ["packages/kbn-securitysolution-hook-utils"], + "@kbn/securitysolution-hook-utils/*": ["packages/kbn-securitysolution-hook-utils/*"], + "@kbn/securitysolution-io-ts-alerting-types": ["packages/kbn-securitysolution-io-ts-alerting-types"], + "@kbn/securitysolution-io-ts-alerting-types/*": ["packages/kbn-securitysolution-io-ts-alerting-types/*"], + "@kbn/securitysolution-io-ts-list-types": ["packages/kbn-securitysolution-io-ts-list-types"], + "@kbn/securitysolution-io-ts-list-types/*": ["packages/kbn-securitysolution-io-ts-list-types/*"], + "@kbn/securitysolution-io-ts-types": ["packages/kbn-securitysolution-io-ts-types"], + "@kbn/securitysolution-io-ts-types/*": ["packages/kbn-securitysolution-io-ts-types/*"], + "@kbn/securitysolution-io-ts-utils": ["packages/kbn-securitysolution-io-ts-utils"], + "@kbn/securitysolution-io-ts-utils/*": ["packages/kbn-securitysolution-io-ts-utils/*"], + "@kbn/securitysolution-list-api": ["packages/kbn-securitysolution-list-api"], + "@kbn/securitysolution-list-api/*": ["packages/kbn-securitysolution-list-api/*"], + "@kbn/securitysolution-list-constants": ["packages/kbn-securitysolution-list-constants"], + "@kbn/securitysolution-list-constants/*": ["packages/kbn-securitysolution-list-constants/*"], + "@kbn/securitysolution-list-hooks": ["packages/kbn-securitysolution-list-hooks"], + "@kbn/securitysolution-list-hooks/*": ["packages/kbn-securitysolution-list-hooks/*"], + "@kbn/securitysolution-list-utils": ["packages/kbn-securitysolution-list-utils"], + "@kbn/securitysolution-list-utils/*": ["packages/kbn-securitysolution-list-utils/*"], + "@kbn/securitysolution-rules": ["packages/kbn-securitysolution-rules"], + "@kbn/securitysolution-rules/*": ["packages/kbn-securitysolution-rules/*"], + "@kbn/securitysolution-t-grid": ["packages/kbn-securitysolution-t-grid"], + "@kbn/securitysolution-t-grid/*": ["packages/kbn-securitysolution-t-grid/*"], + "@kbn/securitysolution-utils": ["packages/kbn-securitysolution-utils"], + "@kbn/securitysolution-utils/*": ["packages/kbn-securitysolution-utils/*"], + "@kbn/server-http-tools": ["packages/kbn-server-http-tools"], + "@kbn/server-http-tools/*": ["packages/kbn-server-http-tools/*"], + "@kbn/server-route-repository": ["packages/kbn-server-route-repository"], + "@kbn/server-route-repository/*": ["packages/kbn-server-route-repository/*"], + "@kbn/serverless": ["x-pack/plugins/serverless"], + "@kbn/serverless/*": ["x-pack/plugins/serverless/*"], + "@kbn/serverless-common-settings": ["packages/serverless/settings/common"], + "@kbn/serverless-common-settings/*": ["packages/serverless/settings/common/*"], + "@kbn/serverless-observability": ["x-pack/plugins/serverless_observability"], + "@kbn/serverless-observability/*": ["x-pack/plugins/serverless_observability/*"], + "@kbn/serverless-observability-settings": ["packages/serverless/settings/observability_project"], + "@kbn/serverless-observability-settings/*": ["packages/serverless/settings/observability_project/*"], + "@kbn/serverless-project-switcher": ["packages/serverless/project_switcher"], + "@kbn/serverless-project-switcher/*": ["packages/serverless/project_switcher/*"], + "@kbn/serverless-search": ["x-pack/plugins/serverless_search"], + "@kbn/serverless-search/*": ["x-pack/plugins/serverless_search/*"], + "@kbn/serverless-search-settings": ["packages/serverless/settings/search_project"], + "@kbn/serverless-search-settings/*": ["packages/serverless/settings/search_project/*"], + "@kbn/serverless-security-settings": ["packages/serverless/settings/security_project"], + "@kbn/serverless-security-settings/*": ["packages/serverless/settings/security_project/*"], + "@kbn/serverless-storybook-config": ["packages/serverless/storybook/config"], + "@kbn/serverless-storybook-config/*": ["packages/serverless/storybook/config/*"], + "@kbn/serverless-types": ["packages/serverless/types"], + "@kbn/serverless-types/*": ["packages/serverless/types/*"], + "@kbn/session-notifications-plugin": ["test/plugin_functional/plugins/session_notifications"], + "@kbn/session-notifications-plugin/*": ["test/plugin_functional/plugins/session_notifications/*"], + "@kbn/session-view-plugin": ["x-pack/plugins/session_view"], + "@kbn/session-view-plugin/*": ["x-pack/plugins/session_view/*"], + "@kbn/set-map": ["packages/kbn-set-map"], + "@kbn/set-map/*": ["packages/kbn-set-map/*"], + "@kbn/share-examples-plugin": ["examples/share_examples"], + "@kbn/share-examples-plugin/*": ["examples/share_examples/*"], + "@kbn/share-plugin": ["src/plugins/share"], + "@kbn/share-plugin/*": ["src/plugins/share/*"], + "@kbn/shared-svg": ["packages/kbn-shared-svg"], + "@kbn/shared-svg/*": ["packages/kbn-shared-svg/*"], + "@kbn/shared-ux-avatar-solution": ["packages/shared-ux/avatar/solution"], + "@kbn/shared-ux-avatar-solution/*": ["packages/shared-ux/avatar/solution/*"], + "@kbn/shared-ux-button-exit-full-screen": ["packages/shared-ux/button/exit_full_screen"], + "@kbn/shared-ux-button-exit-full-screen/*": ["packages/shared-ux/button/exit_full_screen/*"], + "@kbn/shared-ux-button-toolbar": ["packages/shared-ux/button_toolbar"], + "@kbn/shared-ux-button-toolbar/*": ["packages/shared-ux/button_toolbar/*"], + "@kbn/shared-ux-card-no-data": ["packages/shared-ux/card/no_data/impl"], + "@kbn/shared-ux-card-no-data/*": ["packages/shared-ux/card/no_data/impl/*"], + "@kbn/shared-ux-card-no-data-mocks": ["packages/shared-ux/card/no_data/mocks"], + "@kbn/shared-ux-card-no-data-mocks/*": ["packages/shared-ux/card/no_data/mocks/*"], + "@kbn/shared-ux-card-no-data-types": ["packages/shared-ux/card/no_data/types"], + "@kbn/shared-ux-card-no-data-types/*": ["packages/shared-ux/card/no_data/types/*"], + "@kbn/shared-ux-chrome-navigation": ["packages/shared-ux/chrome/navigation"], + "@kbn/shared-ux-chrome-navigation/*": ["packages/shared-ux/chrome/navigation/*"], + "@kbn/shared-ux-error-boundary": ["packages/shared-ux/error_boundary"], + "@kbn/shared-ux-error-boundary/*": ["packages/shared-ux/error_boundary/*"], + "@kbn/shared-ux-file-context": ["packages/shared-ux/file/context"], + "@kbn/shared-ux-file-context/*": ["packages/shared-ux/file/context/*"], + "@kbn/shared-ux-file-image": ["packages/shared-ux/file/image/impl"], + "@kbn/shared-ux-file-image/*": ["packages/shared-ux/file/image/impl/*"], + "@kbn/shared-ux-file-image-mocks": ["packages/shared-ux/file/image/mocks"], + "@kbn/shared-ux-file-image-mocks/*": ["packages/shared-ux/file/image/mocks/*"], + "@kbn/shared-ux-file-mocks": ["packages/shared-ux/file/mocks"], + "@kbn/shared-ux-file-mocks/*": ["packages/shared-ux/file/mocks/*"], + "@kbn/shared-ux-file-picker": ["packages/shared-ux/file/file_picker/impl"], + "@kbn/shared-ux-file-picker/*": ["packages/shared-ux/file/file_picker/impl/*"], + "@kbn/shared-ux-file-types": ["packages/shared-ux/file/types"], + "@kbn/shared-ux-file-types/*": ["packages/shared-ux/file/types/*"], + "@kbn/shared-ux-file-upload": ["packages/shared-ux/file/file_upload/impl"], + "@kbn/shared-ux-file-upload/*": ["packages/shared-ux/file/file_upload/impl/*"], + "@kbn/shared-ux-file-util": ["packages/shared-ux/file/util"], + "@kbn/shared-ux-file-util/*": ["packages/shared-ux/file/util/*"], + "@kbn/shared-ux-link-redirect-app": ["packages/shared-ux/link/redirect_app/impl"], + "@kbn/shared-ux-link-redirect-app/*": ["packages/shared-ux/link/redirect_app/impl/*"], + "@kbn/shared-ux-link-redirect-app-mocks": ["packages/shared-ux/link/redirect_app/mocks"], + "@kbn/shared-ux-link-redirect-app-mocks/*": ["packages/shared-ux/link/redirect_app/mocks/*"], + "@kbn/shared-ux-link-redirect-app-types": ["packages/shared-ux/link/redirect_app/types"], + "@kbn/shared-ux-link-redirect-app-types/*": ["packages/shared-ux/link/redirect_app/types/*"], + "@kbn/shared-ux-markdown": ["packages/shared-ux/markdown/impl"], + "@kbn/shared-ux-markdown/*": ["packages/shared-ux/markdown/impl/*"], + "@kbn/shared-ux-markdown-mocks": ["packages/shared-ux/markdown/mocks"], + "@kbn/shared-ux-markdown-mocks/*": ["packages/shared-ux/markdown/mocks/*"], + "@kbn/shared-ux-markdown-types": ["packages/shared-ux/markdown/types"], + "@kbn/shared-ux-markdown-types/*": ["packages/shared-ux/markdown/types/*"], + "@kbn/shared-ux-page-analytics-no-data": ["packages/shared-ux/page/analytics_no_data/impl"], + "@kbn/shared-ux-page-analytics-no-data/*": ["packages/shared-ux/page/analytics_no_data/impl/*"], + "@kbn/shared-ux-page-analytics-no-data-mocks": ["packages/shared-ux/page/analytics_no_data/mocks"], + "@kbn/shared-ux-page-analytics-no-data-mocks/*": ["packages/shared-ux/page/analytics_no_data/mocks/*"], + "@kbn/shared-ux-page-analytics-no-data-types": ["packages/shared-ux/page/analytics_no_data/types"], + "@kbn/shared-ux-page-analytics-no-data-types/*": ["packages/shared-ux/page/analytics_no_data/types/*"], + "@kbn/shared-ux-page-kibana-no-data": ["packages/shared-ux/page/kibana_no_data/impl"], + "@kbn/shared-ux-page-kibana-no-data/*": ["packages/shared-ux/page/kibana_no_data/impl/*"], + "@kbn/shared-ux-page-kibana-no-data-mocks": ["packages/shared-ux/page/kibana_no_data/mocks"], + "@kbn/shared-ux-page-kibana-no-data-mocks/*": ["packages/shared-ux/page/kibana_no_data/mocks/*"], + "@kbn/shared-ux-page-kibana-no-data-types": ["packages/shared-ux/page/kibana_no_data/types"], + "@kbn/shared-ux-page-kibana-no-data-types/*": ["packages/shared-ux/page/kibana_no_data/types/*"], + "@kbn/shared-ux-page-kibana-template": ["packages/shared-ux/page/kibana_template/impl"], + "@kbn/shared-ux-page-kibana-template/*": ["packages/shared-ux/page/kibana_template/impl/*"], + "@kbn/shared-ux-page-kibana-template-mocks": ["packages/shared-ux/page/kibana_template/mocks"], + "@kbn/shared-ux-page-kibana-template-mocks/*": ["packages/shared-ux/page/kibana_template/mocks/*"], + "@kbn/shared-ux-page-kibana-template-types": ["packages/shared-ux/page/kibana_template/types"], + "@kbn/shared-ux-page-kibana-template-types/*": ["packages/shared-ux/page/kibana_template/types/*"], + "@kbn/shared-ux-page-no-data": ["packages/shared-ux/page/no_data/impl"], + "@kbn/shared-ux-page-no-data/*": ["packages/shared-ux/page/no_data/impl/*"], + "@kbn/shared-ux-page-no-data-config": ["packages/shared-ux/page/no_data_config/impl"], + "@kbn/shared-ux-page-no-data-config/*": ["packages/shared-ux/page/no_data_config/impl/*"], + "@kbn/shared-ux-page-no-data-config-mocks": ["packages/shared-ux/page/no_data_config/mocks"], + "@kbn/shared-ux-page-no-data-config-mocks/*": ["packages/shared-ux/page/no_data_config/mocks/*"], + "@kbn/shared-ux-page-no-data-config-types": ["packages/shared-ux/page/no_data_config/types"], + "@kbn/shared-ux-page-no-data-config-types/*": ["packages/shared-ux/page/no_data_config/types/*"], + "@kbn/shared-ux-page-no-data-mocks": ["packages/shared-ux/page/no_data/mocks"], + "@kbn/shared-ux-page-no-data-mocks/*": ["packages/shared-ux/page/no_data/mocks/*"], + "@kbn/shared-ux-page-no-data-types": ["packages/shared-ux/page/no_data/types"], + "@kbn/shared-ux-page-no-data-types/*": ["packages/shared-ux/page/no_data/types/*"], + "@kbn/shared-ux-page-solution-nav": ["packages/shared-ux/page/solution_nav"], + "@kbn/shared-ux-page-solution-nav/*": ["packages/shared-ux/page/solution_nav/*"], + "@kbn/shared-ux-prompt-no-data-views": ["packages/shared-ux/prompt/no_data_views/impl"], + "@kbn/shared-ux-prompt-no-data-views/*": ["packages/shared-ux/prompt/no_data_views/impl/*"], + "@kbn/shared-ux-prompt-no-data-views-mocks": ["packages/shared-ux/prompt/no_data_views/mocks"], + "@kbn/shared-ux-prompt-no-data-views-mocks/*": ["packages/shared-ux/prompt/no_data_views/mocks/*"], + "@kbn/shared-ux-prompt-no-data-views-types": ["packages/shared-ux/prompt/no_data_views/types"], + "@kbn/shared-ux-prompt-no-data-views-types/*": ["packages/shared-ux/prompt/no_data_views/types/*"], + "@kbn/shared-ux-prompt-not-found": ["packages/shared-ux/prompt/not_found"], + "@kbn/shared-ux-prompt-not-found/*": ["packages/shared-ux/prompt/not_found/*"], + "@kbn/shared-ux-router": ["packages/shared-ux/router/impl"], + "@kbn/shared-ux-router/*": ["packages/shared-ux/router/impl/*"], + "@kbn/shared-ux-router-mocks": ["packages/shared-ux/router/mocks"], + "@kbn/shared-ux-router-mocks/*": ["packages/shared-ux/router/mocks/*"], + "@kbn/shared-ux-router-types": ["packages/shared-ux/router/types"], + "@kbn/shared-ux-router-types/*": ["packages/shared-ux/router/types/*"], + "@kbn/shared-ux-storybook-config": ["packages/shared-ux/storybook/config"], + "@kbn/shared-ux-storybook-config/*": ["packages/shared-ux/storybook/config/*"], + "@kbn/shared-ux-storybook-mock": ["packages/shared-ux/storybook/mock"], + "@kbn/shared-ux-storybook-mock/*": ["packages/shared-ux/storybook/mock/*"], + "@kbn/shared-ux-utility": ["packages/kbn-shared-ux-utility"], + "@kbn/shared-ux-utility/*": ["packages/kbn-shared-ux-utility/*"], + "@kbn/slo-schema": ["x-pack/packages/kbn-slo-schema"], + "@kbn/slo-schema/*": ["x-pack/packages/kbn-slo-schema/*"], + "@kbn/snapshot-restore-plugin": ["x-pack/plugins/snapshot_restore"], + "@kbn/snapshot-restore-plugin/*": ["x-pack/plugins/snapshot_restore/*"], + "@kbn/some-dev-log": ["packages/kbn-some-dev-log"], + "@kbn/some-dev-log/*": ["packages/kbn-some-dev-log/*"], + "@kbn/sort-package-json": ["packages/kbn-sort-package-json"], + "@kbn/sort-package-json/*": ["packages/kbn-sort-package-json/*"], + "@kbn/spaces-plugin": ["x-pack/plugins/spaces"], + "@kbn/spaces-plugin/*": ["x-pack/plugins/spaces/*"], + "@kbn/spaces-test-plugin": ["x-pack/test/spaces_api_integration/common/plugins/spaces_test_plugin"], + "@kbn/spaces-test-plugin/*": ["x-pack/test/spaces_api_integration/common/plugins/spaces_test_plugin/*"], + "@kbn/spec-to-console": ["packages/kbn-spec-to-console"], + "@kbn/spec-to-console/*": ["packages/kbn-spec-to-console/*"], + "@kbn/stack-alerts-plugin": ["x-pack/plugins/stack_alerts"], + "@kbn/stack-alerts-plugin/*": ["x-pack/plugins/stack_alerts/*"], + "@kbn/stack-connectors-plugin": ["x-pack/plugins/stack_connectors"], + "@kbn/stack-connectors-plugin/*": ["x-pack/plugins/stack_connectors/*"], + "@kbn/stack-management-usage-test-plugin": ["x-pack/test/usage_collection/plugins/stack_management_usage_test"], + "@kbn/stack-management-usage-test-plugin/*": ["x-pack/test/usage_collection/plugins/stack_management_usage_test/*"], + "@kbn/state-containers-examples-plugin": ["examples/state_containers_examples"], + "@kbn/state-containers-examples-plugin/*": ["examples/state_containers_examples/*"], + "@kbn/status-plugin-a-plugin": ["test/server_integration/plugins/status_plugin_a"], + "@kbn/status-plugin-a-plugin/*": ["test/server_integration/plugins/status_plugin_a/*"], + "@kbn/status-plugin-b-plugin": ["test/server_integration/plugins/status_plugin_b"], + "@kbn/status-plugin-b-plugin/*": ["test/server_integration/plugins/status_plugin_b/*"], + "@kbn/std": ["packages/kbn-std"], + "@kbn/std/*": ["packages/kbn-std/*"], + "@kbn/stdio-dev-helpers": ["packages/kbn-stdio-dev-helpers"], + "@kbn/stdio-dev-helpers/*": ["packages/kbn-stdio-dev-helpers/*"], + "@kbn/storybook": ["packages/kbn-storybook"], + "@kbn/storybook/*": ["packages/kbn-storybook/*"], + "@kbn/synthetics-plugin": ["x-pack/plugins/synthetics"], + "@kbn/synthetics-plugin/*": ["x-pack/plugins/synthetics/*"], + "@kbn/task-manager-fixture-plugin": ["x-pack/test/alerting_api_integration/common/plugins/task_manager_fixture"], + "@kbn/task-manager-fixture-plugin/*": ["x-pack/test/alerting_api_integration/common/plugins/task_manager_fixture/*"], + "@kbn/task-manager-performance-plugin": ["x-pack/test/plugin_api_perf/plugins/task_manager_performance"], + "@kbn/task-manager-performance-plugin/*": ["x-pack/test/plugin_api_perf/plugins/task_manager_performance/*"], + "@kbn/task-manager-plugin": ["x-pack/plugins/task_manager"], + "@kbn/task-manager-plugin/*": ["x-pack/plugins/task_manager/*"], + "@kbn/telemetry-collection-manager-plugin": ["src/plugins/telemetry_collection_manager"], + "@kbn/telemetry-collection-manager-plugin/*": ["src/plugins/telemetry_collection_manager/*"], + "@kbn/telemetry-collection-xpack-plugin": ["x-pack/plugins/telemetry_collection_xpack"], + "@kbn/telemetry-collection-xpack-plugin/*": ["x-pack/plugins/telemetry_collection_xpack/*"], + "@kbn/telemetry-management-section-plugin": ["src/plugins/telemetry_management_section"], + "@kbn/telemetry-management-section-plugin/*": ["src/plugins/telemetry_management_section/*"], + "@kbn/telemetry-plugin": ["src/plugins/telemetry"], + "@kbn/telemetry-plugin/*": ["src/plugins/telemetry/*"], + "@kbn/telemetry-test-plugin": ["test/plugin_functional/plugins/telemetry"], + "@kbn/telemetry-test-plugin/*": ["test/plugin_functional/plugins/telemetry/*"], + "@kbn/telemetry-tools": ["packages/kbn-telemetry-tools"], + "@kbn/telemetry-tools/*": ["packages/kbn-telemetry-tools/*"], + "@kbn/test": ["packages/kbn-test"], + "@kbn/test/*": ["packages/kbn-test/*"], + "@kbn/test-feature-usage-plugin": ["x-pack/test/licensing_plugin/plugins/test_feature_usage"], + "@kbn/test-feature-usage-plugin/*": ["x-pack/test/licensing_plugin/plugins/test_feature_usage/*"], + "@kbn/test-jest-helpers": ["packages/kbn-test-jest-helpers"], + "@kbn/test-jest-helpers/*": ["packages/kbn-test-jest-helpers/*"], + "@kbn/test-subj-selector": ["packages/kbn-test-subj-selector"], + "@kbn/test-subj-selector/*": ["packages/kbn-test-subj-selector/*"], + "@kbn/testing-embedded-lens-plugin": ["x-pack/examples/testing_embedded_lens"], + "@kbn/testing-embedded-lens-plugin/*": ["x-pack/examples/testing_embedded_lens/*"], + "@kbn/text-based-editor": ["packages/kbn-text-based-editor"], + "@kbn/text-based-editor/*": ["packages/kbn-text-based-editor/*"], + "@kbn/text-based-languages": ["src/plugins/text_based_languages"], + "@kbn/text-based-languages/*": ["src/plugins/text_based_languages/*"], + "@kbn/third-party-lens-navigation-prompt-plugin": ["x-pack/examples/third_party_lens_navigation_prompt"], + "@kbn/third-party-lens-navigation-prompt-plugin/*": ["x-pack/examples/third_party_lens_navigation_prompt/*"], + "@kbn/third-party-vis-lens-example-plugin": ["x-pack/examples/third_party_vis_lens_example"], + "@kbn/third-party-vis-lens-example-plugin/*": ["x-pack/examples/third_party_vis_lens_example/*"], + "@kbn/threat-intelligence-plugin": ["x-pack/plugins/threat_intelligence"], + "@kbn/threat-intelligence-plugin/*": ["x-pack/plugins/threat_intelligence/*"], + "@kbn/timelines-plugin": ["x-pack/plugins/timelines"], + "@kbn/timelines-plugin/*": ["x-pack/plugins/timelines/*"], + "@kbn/timelion-grammar": ["packages/kbn-timelion-grammar"], + "@kbn/timelion-grammar/*": ["packages/kbn-timelion-grammar/*"], + "@kbn/tinymath": ["packages/kbn-tinymath"], + "@kbn/tinymath/*": ["packages/kbn-tinymath/*"], + "@kbn/tooling-log": ["packages/kbn-tooling-log"], + "@kbn/tooling-log/*": ["packages/kbn-tooling-log/*"], + "@kbn/transform-plugin": ["x-pack/plugins/transform"], + "@kbn/transform-plugin/*": ["x-pack/plugins/transform/*"], + "@kbn/translations-plugin": ["x-pack/plugins/translations"], + "@kbn/translations-plugin/*": ["x-pack/plugins/translations/*"], + "@kbn/triggers-actions-ui-example-plugin": ["x-pack/examples/triggers_actions_ui_example"], + "@kbn/triggers-actions-ui-example-plugin/*": ["x-pack/examples/triggers_actions_ui_example/*"], + "@kbn/triggers-actions-ui-plugin": ["x-pack/plugins/triggers_actions_ui"], + "@kbn/triggers-actions-ui-plugin/*": ["x-pack/plugins/triggers_actions_ui/*"], + "@kbn/triggers-actions-ui-types": ["packages/kbn-triggers-actions-ui-types"], + "@kbn/triggers-actions-ui-types/*": ["packages/kbn-triggers-actions-ui-types/*"], + "@kbn/ts-projects": ["packages/kbn-ts-projects"], + "@kbn/ts-projects/*": ["packages/kbn-ts-projects/*"], + "@kbn/ts-type-check-cli": ["packages/kbn-ts-type-check-cli"], + "@kbn/ts-type-check-cli/*": ["packages/kbn-ts-type-check-cli/*"], + "@kbn/typed-react-router-config": ["packages/kbn-typed-react-router-config"], + "@kbn/typed-react-router-config/*": ["packages/kbn-typed-react-router-config/*"], + "@kbn/ui-actions-browser": ["packages/kbn-ui-actions-browser"], + "@kbn/ui-actions-browser/*": ["packages/kbn-ui-actions-browser/*"], + "@kbn/ui-actions-enhanced-examples-plugin": ["x-pack/examples/ui_actions_enhanced_examples"], + "@kbn/ui-actions-enhanced-examples-plugin/*": ["x-pack/examples/ui_actions_enhanced_examples/*"], + "@kbn/ui-actions-enhanced-plugin": ["src/plugins/ui_actions_enhanced"], + "@kbn/ui-actions-enhanced-plugin/*": ["src/plugins/ui_actions_enhanced/*"], + "@kbn/ui-actions-examples-plugin": ["examples/ui_action_examples"], + "@kbn/ui-actions-examples-plugin/*": ["examples/ui_action_examples/*"], + "@kbn/ui-actions-explorer-plugin": ["examples/ui_actions_explorer"], + "@kbn/ui-actions-explorer-plugin/*": ["examples/ui_actions_explorer/*"], + "@kbn/ui-actions-plugin": ["src/plugins/ui_actions"], + "@kbn/ui-actions-plugin/*": ["src/plugins/ui_actions/*"], + "@kbn/ui-settings-plugin": ["test/plugin_functional/plugins/ui_settings_plugin"], + "@kbn/ui-settings-plugin/*": ["test/plugin_functional/plugins/ui_settings_plugin/*"], + "@kbn/ui-shared-deps-npm": ["packages/kbn-ui-shared-deps-npm"], + "@kbn/ui-shared-deps-npm/*": ["packages/kbn-ui-shared-deps-npm/*"], + "@kbn/ui-shared-deps-src": ["packages/kbn-ui-shared-deps-src"], + "@kbn/ui-shared-deps-src/*": ["packages/kbn-ui-shared-deps-src/*"], + "@kbn/ui-theme": ["packages/kbn-ui-theme"], + "@kbn/ui-theme/*": ["packages/kbn-ui-theme/*"], + "@kbn/unified-data-table": ["packages/kbn-unified-data-table"], + "@kbn/unified-data-table/*": ["packages/kbn-unified-data-table/*"], + "@kbn/unified-doc-viewer": ["packages/kbn-unified-doc-viewer"], + "@kbn/unified-doc-viewer/*": ["packages/kbn-unified-doc-viewer/*"], + "@kbn/unified-doc-viewer-examples": ["examples/unified_doc_viewer"], + "@kbn/unified-doc-viewer-examples/*": ["examples/unified_doc_viewer/*"], + "@kbn/unified-doc-viewer-plugin": ["src/plugins/unified_doc_viewer"], + "@kbn/unified-doc-viewer-plugin/*": ["src/plugins/unified_doc_viewer/*"], + "@kbn/unified-field-list": ["packages/kbn-unified-field-list"], + "@kbn/unified-field-list/*": ["packages/kbn-unified-field-list/*"], + "@kbn/unified-field-list-examples-plugin": ["examples/unified_field_list_examples"], + "@kbn/unified-field-list-examples-plugin/*": ["examples/unified_field_list_examples/*"], + "@kbn/unified-histogram-plugin": ["src/plugins/unified_histogram"], + "@kbn/unified-histogram-plugin/*": ["src/plugins/unified_histogram/*"], + "@kbn/unified-search-plugin": ["src/plugins/unified_search"], + "@kbn/unified-search-plugin/*": ["src/plugins/unified_search/*"], + "@kbn/unsaved-changes-badge": ["packages/kbn-unsaved-changes-badge"], + "@kbn/unsaved-changes-badge/*": ["packages/kbn-unsaved-changes-badge/*"], + "@kbn/upgrade-assistant-plugin": ["x-pack/plugins/upgrade_assistant"], + "@kbn/upgrade-assistant-plugin/*": ["x-pack/plugins/upgrade_assistant/*"], + "@kbn/uptime-plugin": ["x-pack/plugins/uptime"], + "@kbn/uptime-plugin/*": ["x-pack/plugins/uptime/*"], + "@kbn/url-drilldown-plugin": ["x-pack/plugins/drilldowns/url_drilldown"], + "@kbn/url-drilldown-plugin/*": ["x-pack/plugins/drilldowns/url_drilldown/*"], + "@kbn/url-forwarding-plugin": ["src/plugins/url_forwarding"], + "@kbn/url-forwarding-plugin/*": ["src/plugins/url_forwarding/*"], + "@kbn/url-state": ["packages/kbn-url-state"], + "@kbn/url-state/*": ["packages/kbn-url-state/*"], + "@kbn/usage-collection-plugin": ["src/plugins/usage_collection"], + "@kbn/usage-collection-plugin/*": ["src/plugins/usage_collection/*"], + "@kbn/usage-collection-test-plugin": ["test/plugin_functional/plugins/usage_collection"], + "@kbn/usage-collection-test-plugin/*": ["test/plugin_functional/plugins/usage_collection/*"], + "@kbn/use-tracked-promise": ["packages/kbn-use-tracked-promise"], + "@kbn/use-tracked-promise/*": ["packages/kbn-use-tracked-promise/*"], + "@kbn/user-profile-components": ["packages/kbn-user-profile-components"], + "@kbn/user-profile-components/*": ["packages/kbn-user-profile-components/*"], + "@kbn/user-profile-examples-plugin": ["examples/user_profile_examples"], + "@kbn/user-profile-examples-plugin/*": ["examples/user_profile_examples/*"], + "@kbn/user-profiles-consumer-plugin": ["x-pack/test/security_api_integration/plugins/user_profiles_consumer"], + "@kbn/user-profiles-consumer-plugin/*": ["x-pack/test/security_api_integration/plugins/user_profiles_consumer/*"], + "@kbn/utility-types": ["packages/kbn-utility-types"], + "@kbn/utility-types/*": ["packages/kbn-utility-types/*"], + "@kbn/utility-types-jest": ["packages/kbn-utility-types-jest"], + "@kbn/utility-types-jest/*": ["packages/kbn-utility-types-jest/*"], + "@kbn/utils": ["packages/kbn-utils"], + "@kbn/utils/*": ["packages/kbn-utils/*"], + "@kbn/ux-plugin": ["x-pack/plugins/ux"], + "@kbn/ux-plugin/*": ["x-pack/plugins/ux/*"], + "@kbn/v8-profiler-examples-plugin": ["examples/v8_profiler_examples"], + "@kbn/v8-profiler-examples-plugin/*": ["examples/v8_profiler_examples/*"], + "@kbn/validate-next-docs-cli": ["packages/kbn-validate-next-docs-cli"], + "@kbn/validate-next-docs-cli/*": ["packages/kbn-validate-next-docs-cli/*"], + "@kbn/vis-default-editor-plugin": ["src/plugins/vis_default_editor"], + "@kbn/vis-default-editor-plugin/*": ["src/plugins/vis_default_editor/*"], + "@kbn/vis-type-gauge-plugin": ["src/plugins/vis_types/gauge"], + "@kbn/vis-type-gauge-plugin/*": ["src/plugins/vis_types/gauge/*"], + "@kbn/vis-type-heatmap-plugin": ["src/plugins/vis_types/heatmap"], + "@kbn/vis-type-heatmap-plugin/*": ["src/plugins/vis_types/heatmap/*"], + "@kbn/vis-type-markdown-plugin": ["src/plugins/vis_type_markdown"], + "@kbn/vis-type-markdown-plugin/*": ["src/plugins/vis_type_markdown/*"], + "@kbn/vis-type-metric-plugin": ["src/plugins/vis_types/metric"], + "@kbn/vis-type-metric-plugin/*": ["src/plugins/vis_types/metric/*"], + "@kbn/vis-type-pie-plugin": ["src/plugins/vis_types/pie"], + "@kbn/vis-type-pie-plugin/*": ["src/plugins/vis_types/pie/*"], + "@kbn/vis-type-table-plugin": ["src/plugins/vis_types/table"], + "@kbn/vis-type-table-plugin/*": ["src/plugins/vis_types/table/*"], + "@kbn/vis-type-tagcloud-plugin": ["src/plugins/vis_types/tagcloud"], + "@kbn/vis-type-tagcloud-plugin/*": ["src/plugins/vis_types/tagcloud/*"], + "@kbn/vis-type-timelion-plugin": ["src/plugins/vis_types/timelion"], + "@kbn/vis-type-timelion-plugin/*": ["src/plugins/vis_types/timelion/*"], + "@kbn/vis-type-timeseries-plugin": ["src/plugins/vis_types/timeseries"], + "@kbn/vis-type-timeseries-plugin/*": ["src/plugins/vis_types/timeseries/*"], + "@kbn/vis-type-vega-plugin": ["src/plugins/vis_types/vega"], + "@kbn/vis-type-vega-plugin/*": ["src/plugins/vis_types/vega/*"], + "@kbn/vis-type-vislib-plugin": ["src/plugins/vis_types/vislib"], + "@kbn/vis-type-vislib-plugin/*": ["src/plugins/vis_types/vislib/*"], + "@kbn/vis-type-xy-plugin": ["src/plugins/vis_types/xy"], + "@kbn/vis-type-xy-plugin/*": ["src/plugins/vis_types/xy/*"], + "@kbn/visualization-ui-components": ["packages/kbn-visualization-ui-components"], + "@kbn/visualization-ui-components/*": ["packages/kbn-visualization-ui-components/*"], + "@kbn/visualization-utils": ["packages/kbn-visualization-utils"], + "@kbn/visualization-utils/*": ["packages/kbn-visualization-utils/*"], + "@kbn/visualizations-plugin": ["src/plugins/visualizations"], + "@kbn/visualizations-plugin/*": ["src/plugins/visualizations/*"], + "@kbn/watcher-plugin": ["x-pack/plugins/watcher"], + "@kbn/watcher-plugin/*": ["x-pack/plugins/watcher/*"], + "@kbn/web-worker-stub": ["packages/kbn-web-worker-stub"], + "@kbn/web-worker-stub/*": ["packages/kbn-web-worker-stub/*"], + "@kbn/whereis-pkg-cli": ["packages/kbn-whereis-pkg-cli"], + "@kbn/whereis-pkg-cli/*": ["packages/kbn-whereis-pkg-cli/*"], + "@kbn/xstate-utils": ["packages/kbn-xstate-utils"], + "@kbn/xstate-utils/*": ["packages/kbn-xstate-utils/*"], + "@kbn/yarn-lock-validator": ["packages/kbn-yarn-lock-validator"], + "@kbn/yarn-lock-validator/*": ["packages/kbn-yarn-lock-validator/*"], + "@kbn/zod-helpers": ["packages/kbn-zod-helpers"], + "@kbn/zod-helpers/*": ["packages/kbn-zod-helpers/*"], // END AUTOMATED PACKAGE LISTING // Allows for importing from `kibana` package for the exported types. "@emotion/core": [ diff --git a/x-pack/.i18nrc.json b/x-pack/.i18nrc.json index 1573d3b0e154c..48ebad6d5a120 100644 --- a/x-pack/.i18nrc.json +++ b/x-pack/.i18nrc.json @@ -82,7 +82,7 @@ "plugins/monitoring" ], "xpack.observability": "plugins/observability", - "xpack.observabilityLogExplorer": "plugins/observability_logs_explorer", + "xpack.observabilityLogsExplorer": "plugins/observability_logs_explorer", "xpack.observabilityShared": "plugins/observability_shared", "xpack.observability_onboarding": "plugins/observability_onboarding", "xpack.observabilityAiAssistant": "plugins/observability_ai_assistant", diff --git a/x-pack/plugins/dataset_quality/public/components/dataset_quality/columns.tsx b/x-pack/plugins/dataset_quality/public/components/dataset_quality/columns.tsx index cdda4dfa004b1..ee4bc4268048e 100644 --- a/x-pack/plugins/dataset_quality/public/components/dataset_quality/columns.tsx +++ b/x-pack/plugins/dataset_quality/public/components/dataset_quality/columns.tsx @@ -27,7 +27,7 @@ import { } from '../../../common/constants'; import { DataStreamStat } from '../../../common/data_streams_stats/data_stream_stat'; import loggingIcon from '../../icons/logging.svg'; -import { LogExplorerLink } from '../log_explorer_link'; +import { LogExplorerLink } from '../logs_explorer_link'; import { QualityIndicator, QualityPercentageIndicator } from '../quality_indicator'; const nameColumnName = i18n.translate('xpack.datasetQuality.nameColumnName', { diff --git a/x-pack/plugins/dataset_quality/public/components/log_explorer_link.tsx b/x-pack/plugins/dataset_quality/public/components/logs_explorer_link.tsx similarity index 100% rename from x-pack/plugins/dataset_quality/public/components/log_explorer_link.tsx rename to x-pack/plugins/dataset_quality/public/components/logs_explorer_link.tsx diff --git a/x-pack/plugins/infra/public/plugin.ts b/x-pack/plugins/infra/public/plugin.ts index a25e553faa2cf..2fe4b1da8f91d 100644 --- a/x-pack/plugins/infra/public/plugin.ts +++ b/x-pack/plugins/infra/public/plugin.ts @@ -128,7 +128,7 @@ export class Plugin implements InfraClientPluginClass { entries: [ { label: 'Explorer', - app: 'observability-log-explorer', + app: 'observability-logs-explorer', path: '/', isBetaFeature: true, }, diff --git a/x-pack/plugins/logs_explorer/README.md b/x-pack/plugins/logs_explorer/README.md index 2743b47ab4c5a..f1034af2a31d6 100755 --- a/x-pack/plugins/logs_explorer/README.md +++ b/x-pack/plugins/logs_explorer/README.md @@ -1,6 +1,6 @@ # Logs Explorer -This plugin is home to the `` component and related types. It implements several of the underlying concepts that the [Observability Logs Explorer app](../observability_log_explorer) builds upon. +This plugin is home to the `` component and related types. It implements several of the underlying concepts that the [Observability Logs Explorer app](../observability_logs_explorer) builds upon. ## Developing the `` component diff --git a/x-pack/plugins/logs_explorer/common/locators/index.ts b/x-pack/plugins/logs_explorer/common/locators/index.ts index ebcd27baa5543..9a82a6975b997 100644 --- a/x-pack/plugins/logs_explorer/common/locators/index.ts +++ b/x-pack/plugins/logs_explorer/common/locators/index.ts @@ -5,9 +5,9 @@ * 2.0. */ -import { LogExplorerLocator } from './log_explorer/log_explorer_locator'; +import { LogExplorerLocator } from './logs_explorer/logs_explorer_locator'; -export * from './log_explorer'; +export * from './logs_explorer'; export interface LogExplorerLocators { logExplorerLocator: LogExplorerLocator; diff --git a/x-pack/plugins/logs_explorer/common/locators/log_explorer/index.ts b/x-pack/plugins/logs_explorer/common/locators/logs_explorer/index.ts similarity index 86% rename from x-pack/plugins/logs_explorer/common/locators/log_explorer/index.ts rename to x-pack/plugins/logs_explorer/common/locators/logs_explorer/index.ts index 738ad7cea2f39..85834bf50ac64 100644 --- a/x-pack/plugins/logs_explorer/common/locators/log_explorer/index.ts +++ b/x-pack/plugins/logs_explorer/common/locators/logs_explorer/index.ts @@ -5,4 +5,4 @@ * 2.0. */ -export * from './log_explorer_locator'; +export * from './logs_explorer_locator'; diff --git a/x-pack/plugins/logs_explorer/common/locators/log_explorer/log_explorer_locator.test.ts b/x-pack/plugins/logs_explorer/common/locators/logs_explorer/logs_explorer_locator.test.ts similarity index 96% rename from x-pack/plugins/logs_explorer/common/locators/log_explorer/log_explorer_locator.test.ts rename to x-pack/plugins/logs_explorer/common/locators/logs_explorer/logs_explorer_locator.test.ts index 0b241f4502f77..2274a56d4bc44 100644 --- a/x-pack/plugins/logs_explorer/common/locators/log_explorer/log_explorer_locator.test.ts +++ b/x-pack/plugins/logs_explorer/common/locators/logs_explorer/logs_explorer_locator.test.ts @@ -6,7 +6,7 @@ */ import { sharePluginMock } from '@kbn/share-plugin/public/mocks'; -import { LogExplorerLocatorDefinition } from './log_explorer_locator'; +import { LogExplorerLocatorDefinition } from './logs_explorer_locator'; import { LogExplorerLocatorDependencies } from './types'; const setup = async () => { diff --git a/x-pack/plugins/logs_explorer/common/locators/log_explorer/log_explorer_locator.ts b/x-pack/plugins/logs_explorer/common/locators/logs_explorer/logs_explorer_locator.ts similarity index 100% rename from x-pack/plugins/logs_explorer/common/locators/log_explorer/log_explorer_locator.ts rename to x-pack/plugins/logs_explorer/common/locators/logs_explorer/logs_explorer_locator.ts diff --git a/x-pack/plugins/logs_explorer/common/locators/log_explorer/types.ts b/x-pack/plugins/logs_explorer/common/locators/logs_explorer/types.ts similarity index 100% rename from x-pack/plugins/logs_explorer/common/locators/log_explorer/types.ts rename to x-pack/plugins/logs_explorer/common/locators/logs_explorer/types.ts diff --git a/x-pack/plugins/logs_explorer/kibana.jsonc b/x-pack/plugins/logs_explorer/kibana.jsonc index 8832fc834b24e..eb37a9993416b 100644 --- a/x-pack/plugins/logs_explorer/kibana.jsonc +++ b/x-pack/plugins/logs_explorer/kibana.jsonc @@ -4,12 +4,12 @@ "owner": "@elastic/obs-ux-logs-team", "description": "This plugin provides a LogExplorer component using the Discover customization framework, offering several affordances specifically designed for log consumption.", "plugin": { - "id": "logExplorer", + "id": "logsExplorer", "server": true, "browser": true, "configPath": [ "xpack", - "logExplorer" + "logsExplorer" ], "requiredPlugins": [ "controls", diff --git a/x-pack/plugins/logs_explorer/public/components/log_explorer/index.ts b/x-pack/plugins/logs_explorer/public/components/logs_explorer/index.ts similarity index 88% rename from x-pack/plugins/logs_explorer/public/components/log_explorer/index.ts rename to x-pack/plugins/logs_explorer/public/components/logs_explorer/index.ts index b5c2f0f89d545..11f76d3c8786c 100644 --- a/x-pack/plugins/logs_explorer/public/components/log_explorer/index.ts +++ b/x-pack/plugins/logs_explorer/public/components/logs_explorer/index.ts @@ -5,4 +5,4 @@ * 2.0. */ -export * from './log_explorer'; +export * from './logs_explorer'; diff --git a/x-pack/plugins/logs_explorer/public/components/log_explorer/log_explorer.tsx b/x-pack/plugins/logs_explorer/public/components/logs_explorer/logs_explorer.tsx similarity index 97% rename from x-pack/plugins/logs_explorer/public/components/log_explorer/log_explorer.tsx rename to x-pack/plugins/logs_explorer/public/components/logs_explorer/logs_explorer.tsx index 638ca847f6549..e084742506356 100644 --- a/x-pack/plugins/logs_explorer/public/components/log_explorer/log_explorer.tsx +++ b/x-pack/plugins/logs_explorer/public/components/logs_explorer/logs_explorer.tsx @@ -9,7 +9,7 @@ import type { ScopedHistory } from '@kbn/core-application-browser'; import type { CoreStart } from '@kbn/core/public'; import React, { useMemo } from 'react'; import type { LogExplorerController } from '../../controller'; -import { createLogExplorerProfileCustomizations } from '../../customizations/log_explorer_profile'; +import { createLogExplorerProfileCustomizations } from '../../customizations/logs_explorer_profile'; import { LogExplorerStartDeps } from '../../types'; export interface CreateLogExplorerArgs { diff --git a/x-pack/plugins/logs_explorer/public/controller/create_controller.ts b/x-pack/plugins/logs_explorer/public/controller/create_controller.ts index 53260aeb97281..15124eb521603 100644 --- a/x-pack/plugins/logs_explorer/public/controller/create_controller.ts +++ b/x-pack/plugins/logs_explorer/public/controller/create_controller.ts @@ -11,7 +11,7 @@ import equal from 'fast-deep-equal'; import { distinctUntilChanged, EMPTY, from, map, shareReplay } from 'rxjs'; import { interpret } from 'xstate'; import { DatasetsService } from '../services/datasets'; -import { createLogExplorerControllerStateMachine } from '../state_machines/log_explorer_controller'; +import { createLogExplorerControllerStateMachine } from '../state_machines/logs_explorer_controller'; import { LogExplorerStartDeps } from '../types'; import { LogExplorerCustomizations } from './controller_customizations'; import { createDataServiceProxy } from './custom_data_service'; diff --git a/x-pack/plugins/logs_explorer/public/controller/public_state.ts b/x-pack/plugins/logs_explorer/public/controller/public_state.ts index 5f4aad892bcb9..de740e8b4807f 100644 --- a/x-pack/plugins/logs_explorer/public/controller/public_state.ts +++ b/x-pack/plugins/logs_explorer/public/controller/public_state.ts @@ -14,7 +14,7 @@ import { import { DEFAULT_CONTEXT, LogExplorerControllerContext, -} from '../state_machines/log_explorer_controller'; +} from '../state_machines/logs_explorer_controller'; import { LogExplorerPublicState, LogExplorerPublicStateUpdate, OptionsListControl } from './types'; export const getPublicStateFromContext = ( diff --git a/x-pack/plugins/logs_explorer/public/controller/types.ts b/x-pack/plugins/logs_explorer/public/controller/types.ts index 5947051ad2518..8c3ca5642dd80 100644 --- a/x-pack/plugins/logs_explorer/public/controller/types.ts +++ b/x-pack/plugins/logs_explorer/public/controller/types.ts @@ -19,7 +19,7 @@ import { IDatasetsClient } from '../services/datasets'; import { LogExplorerControllerStateMachine, LogExplorerControllerStateService, -} from '../state_machines/log_explorer_controller'; +} from '../state_machines/logs_explorer_controller'; import { LogExplorerCustomizations } from './controller_customizations'; export interface LogExplorerController { diff --git a/x-pack/plugins/logs_explorer/public/customizations/custom_dataset_filters.tsx b/x-pack/plugins/logs_explorer/public/customizations/custom_dataset_filters.tsx index e7b3dc6bbd431..21ad299842693 100644 --- a/x-pack/plugins/logs_explorer/public/customizations/custom_dataset_filters.tsx +++ b/x-pack/plugins/logs_explorer/public/customizations/custom_dataset_filters.tsx @@ -10,7 +10,7 @@ import { Query } from '@kbn/es-query'; import { DataPublicPluginStart } from '@kbn/data-plugin/public'; import { euiStyled } from '@kbn/kibana-react-plugin/common'; import { useControlPanels } from '../hooks/use_control_panels'; -import { LogExplorerControllerStateService } from '../state_machines/log_explorer_controller'; +import { LogExplorerControllerStateService } from '../state_machines/logs_explorer_controller'; const DATASET_FILTERS_CUSTOMIZATION_ID = 'datasetFiltersCustomization'; diff --git a/x-pack/plugins/logs_explorer/public/customizations/custom_dataset_selector.tsx b/x-pack/plugins/logs_explorer/public/customizations/custom_dataset_selector.tsx index a93a893bb20e9..6c69b80e51d7c 100644 --- a/x-pack/plugins/logs_explorer/public/customizations/custom_dataset_selector.tsx +++ b/x-pack/plugins/logs_explorer/public/customizations/custom_dataset_selector.tsx @@ -15,7 +15,7 @@ import { DataViewsProvider, useDataViewsContext } from '../hooks/use_data_views' import { useEsql } from '../hooks/use_esql'; import { IntegrationsProvider, useIntegrationsContext } from '../hooks/use_integrations'; import { IDatasetsClient } from '../services/datasets'; -import { LogExplorerControllerStateService } from '../state_machines/log_explorer_controller'; +import { LogExplorerControllerStateService } from '../state_machines/logs_explorer_controller'; interface CustomDatasetSelectorProps { logExplorerControllerStateService: LogExplorerControllerStateService; diff --git a/x-pack/plugins/logs_explorer/public/customizations/log_explorer_profile.tsx b/x-pack/plugins/logs_explorer/public/customizations/logs_explorer_profile.tsx similarity index 100% rename from x-pack/plugins/logs_explorer/public/customizations/log_explorer_profile.tsx rename to x-pack/plugins/logs_explorer/public/customizations/logs_explorer_profile.tsx diff --git a/x-pack/plugins/logs_explorer/public/hooks/use_control_panels.tsx b/x-pack/plugins/logs_explorer/public/hooks/use_control_panels.tsx index f38b902aaa045..97cb13c2b64da 100644 --- a/x-pack/plugins/logs_explorer/public/hooks/use_control_panels.tsx +++ b/x-pack/plugins/logs_explorer/public/hooks/use_control_panels.tsx @@ -13,7 +13,7 @@ import { Query, TimeRange } from '@kbn/es-query'; import { useQuerySubscriber } from '@kbn/unified-field-list'; import { useSelector } from '@xstate/react'; import { useCallback } from 'react'; -import { LogExplorerControllerStateService } from '../state_machines/log_explorer_controller'; +import { LogExplorerControllerStateService } from '../state_machines/logs_explorer_controller'; export const useControlPanels = ( logExplorerControllerStateService: LogExplorerControllerStateService, diff --git a/x-pack/plugins/logs_explorer/public/hooks/use_dataset_selection.ts b/x-pack/plugins/logs_explorer/public/hooks/use_dataset_selection.ts index 1f611da05c8cc..bacf399786e87 100644 --- a/x-pack/plugins/logs_explorer/public/hooks/use_dataset_selection.ts +++ b/x-pack/plugins/logs_explorer/public/hooks/use_dataset_selection.ts @@ -8,7 +8,7 @@ import { useSelector } from '@xstate/react'; import { useCallback } from 'react'; import { DatasetSelectionChange } from '../../common/dataset_selection'; -import { LogExplorerControllerStateService } from '../state_machines/log_explorer_controller'; +import { LogExplorerControllerStateService } from '../state_machines/logs_explorer_controller'; export const useDatasetSelection = ( logExplorerControllerStateService: LogExplorerControllerStateService diff --git a/x-pack/plugins/logs_explorer/public/index.ts b/x-pack/plugins/logs_explorer/public/index.ts index efd337234ffc6..02f9b2d788729 100644 --- a/x-pack/plugins/logs_explorer/public/index.ts +++ b/x-pack/plugins/logs_explorer/public/index.ts @@ -16,7 +16,7 @@ export type { LogExplorerPublicState, LogExplorerPublicStateUpdate, } from './controller'; -export type { LogExplorerControllerContext } from './state_machines/log_explorer_controller'; +export type { LogExplorerControllerContext } from './state_machines/logs_explorer_controller'; export type { LogExplorerPluginSetup, LogExplorerPluginStart } from './types'; export { getDiscoverColumnsFromDisplayOptions, diff --git a/x-pack/plugins/logs_explorer/public/plugin.ts b/x-pack/plugins/logs_explorer/public/plugin.ts index 8c527c28fb8b2..8d7e576f4a342 100644 --- a/x-pack/plugins/logs_explorer/public/plugin.ts +++ b/x-pack/plugins/logs_explorer/public/plugin.ts @@ -8,7 +8,7 @@ import type { CoreSetup, CoreStart, Plugin, PluginInitializerContext } from '@kbn/core/public'; import { DISCOVER_APP_LOCATOR, DiscoverAppLocatorParams } from '@kbn/discover-plugin/common'; import { LogExplorerLocatorDefinition, LogExplorerLocators } from '../common/locators'; -import { createLogExplorer } from './components/log_explorer'; +import { createLogExplorer } from './components/logs_explorer'; import { createLogExplorerControllerLazyFactory } from './controller/lazy_create_controller'; import type { LogExplorerPluginSetup, diff --git a/x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/index.ts b/x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/index.ts similarity index 100% rename from x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/index.ts rename to x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/index.ts diff --git a/x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/defaults.ts b/x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/defaults.ts similarity index 100% rename from x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/defaults.ts rename to x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/defaults.ts diff --git a/x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/index.ts b/x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/index.ts similarity index 100% rename from x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/index.ts rename to x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/index.ts diff --git a/x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/notifications.ts b/x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/notifications.ts similarity index 100% rename from x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/notifications.ts rename to x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/notifications.ts diff --git a/x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/services/control_panels.ts b/x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/services/control_panels.ts similarity index 100% rename from x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/services/control_panels.ts rename to x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/services/control_panels.ts diff --git a/x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/services/data_view_service.ts b/x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/services/data_view_service.ts similarity index 100% rename from x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/services/data_view_service.ts rename to x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/services/data_view_service.ts diff --git a/x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/services/discover_service.ts b/x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/services/discover_service.ts similarity index 100% rename from x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/services/discover_service.ts rename to x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/services/discover_service.ts diff --git a/x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/services/selection_service.ts b/x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/services/selection_service.ts similarity index 100% rename from x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/services/selection_service.ts rename to x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/services/selection_service.ts diff --git a/x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/services/timefilter_service.ts b/x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/services/timefilter_service.ts similarity index 100% rename from x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/services/timefilter_service.ts rename to x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/services/timefilter_service.ts diff --git a/x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/state_machine.ts b/x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/state_machine.ts similarity index 100% rename from x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/state_machine.ts rename to x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/state_machine.ts diff --git a/x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/types.ts b/x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/types.ts similarity index 100% rename from x-pack/plugins/logs_explorer/public/state_machines/log_explorer_controller/src/types.ts rename to x-pack/plugins/logs_explorer/public/state_machines/logs_explorer_controller/src/types.ts diff --git a/x-pack/plugins/logs_explorer/public/types.ts b/x-pack/plugins/logs_explorer/public/types.ts index 32fcf5315e27c..7d537308d9812 100644 --- a/x-pack/plugins/logs_explorer/public/types.ts +++ b/x-pack/plugins/logs_explorer/public/types.ts @@ -13,7 +13,7 @@ import type { FieldFormatsStart } from '@kbn/field-formats-plugin/public'; import type { NavigationPublicPluginStart } from '@kbn/navigation-plugin/public'; import { UnifiedSearchPublicPluginStart } from '@kbn/unified-search-plugin/public'; import type { LogExplorerLocators } from '../common/locators'; -import type { LogExplorerProps } from './components/log_explorer'; +import type { LogExplorerProps } from './components/logs_explorer'; import type { CreateLogExplorerController } from './controller'; export interface LogExplorerPluginSetup { diff --git a/x-pack/plugins/observability/kibana.jsonc b/x-pack/plugins/observability/kibana.jsonc index d5633ad9f36fe..9aff034455d7c 100644 --- a/x-pack/plugins/observability/kibana.jsonc +++ b/x-pack/plugins/observability/kibana.jsonc @@ -38,7 +38,7 @@ "visualizations", "dashboard", "expressions", - "logExplorer", + "logsExplorer", "licensing" ], "optionalPlugins": [ @@ -63,4 +63,4 @@ "common" ] } -} +} \ No newline at end of file diff --git a/x-pack/plugins/observability_logs_explorer/README.md b/x-pack/plugins/observability_logs_explorer/README.md index 8f366ed4301b6..a95ca8ade485e 100644 --- a/x-pack/plugins/observability_logs_explorer/README.md +++ b/x-pack/plugins/observability_logs_explorer/README.md @@ -8,17 +8,17 @@ This plugin provides an app based on the `LogExplorer` component from the `log_e #### FTR Server ``` -yarn test:ftr:server --config ./x-pack/test/functional/apps/observability_log_explorer/config.ts +yarn test:ftr:server --config ./x-pack/test/functional/apps/observability_logs_explorer/config.ts ``` #### FTR Runner ``` -yarn test:ftr:runner --config ./x-pack/test/functional/apps/observability_log_explorer/config.ts --include ./x-pack/test/functional/apps/observability_log_explorer/index.ts +yarn test:ftr:runner --config ./x-pack/test/functional/apps/observability_logs_explorer/config.ts --include ./x-pack/test/functional/apps/observability_logs_explorer/index.ts ``` #### Running Individual Tests ``` -yarn test:ftr:runner --config ./x-pack/test/functional/apps/observability_log_explorer/config.ts --include ./x-pack/test/functional/apps/observability_log_explorer/$1 +yarn test:ftr:runner --config ./x-pack/test/functional/apps/observability_logs_explorer/config.ts --include ./x-pack/test/functional/apps/observability_logs_explorer/$1 ``` ### Serverless @@ -30,11 +30,11 @@ yarn test:ftr:server --config ./x-pack/test_serverless/functional/test_suites/ob #### Runner ``` -yarn test:ftr:runner --config ./x-pack/test_serverless/functional/test_suites/observability/config.ts --include ./x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/index.ts +yarn test:ftr:runner --config ./x-pack/test_serverless/functional/test_suites/observability/config.ts --include ./x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/index.ts ``` #### Running Individual Tests ``` -yarn test:ftr:runner --config ./x-pack/test_serverless/functional/test_suites/observability/config.ts --include ./x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/$1 +yarn test:ftr:runner --config ./x-pack/test_serverless/functional/test_suites/observability/config.ts --include ./x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/$1 ``` ## Checktypes diff --git a/x-pack/plugins/observability_logs_explorer/common/translations.ts b/x-pack/plugins/observability_logs_explorer/common/translations.ts index fb810311d134d..8bfe1c3eec000 100644 --- a/x-pack/plugins/observability_logs_explorer/common/translations.ts +++ b/x-pack/plugins/observability_logs_explorer/common/translations.ts @@ -7,48 +7,48 @@ import { i18n } from '@kbn/i18n'; -export const logExplorerAppTitle = i18n.translate('xpack.observabilityLogExplorer.appTitle', { +export const logExplorerAppTitle = i18n.translate('xpack.observabilityLogsExplorer.appTitle', { defaultMessage: 'Logs Explorer', }); -export const logsAppTitle = i18n.translate('xpack.observabilityLogExplorer.logsAppTitle', { +export const logsAppTitle = i18n.translate('xpack.observabilityLogsExplorer.logsAppTitle', { defaultMessage: 'Logs', }); export const observabilityAppTitle = i18n.translate( - 'xpack.observabilityLogExplorer.observabilityAppTitle', + 'xpack.observabilityLogsExplorer.observabilityAppTitle', { defaultMessage: 'Observability', } ); -export const betaBadgeTitle = i18n.translate('xpack.observabilityLogExplorer.betaBadgeTitle', { +export const betaBadgeTitle = i18n.translate('xpack.observabilityLogsExplorer.betaBadgeTitle', { defaultMessage: 'Beta', }); export const betaBadgeDescription = i18n.translate( - 'xpack.observabilityLogExplorer.betaBadgeDescription', + 'xpack.observabilityLogsExplorer.betaBadgeDescription', { defaultMessage: 'This application is in beta and therefore subject to change.', } ); export const discoverLinkTitle = i18n.translate( - 'xpack.observabilityLogExplorer.discoverLinkTitle', + 'xpack.observabilityLogsExplorer.discoverLinkTitle', { defaultMessage: 'Open in Discover', } ); export const onboardingLinkTitle = i18n.translate( - 'xpack.observabilityLogExplorer.onboardingLinkTitle', + 'xpack.observabilityLogsExplorer.onboardingLinkTitle', { defaultMessage: 'Add data', } ); export const feedbackLinkTitle = i18n.translate( - 'xpack.observabilityLogExplorer.feedbackLinkTitle', + 'xpack.observabilityLogsExplorer.feedbackLinkTitle', { defaultMessage: 'Give feedback', } diff --git a/x-pack/plugins/observability_logs_explorer/kibana.jsonc b/x-pack/plugins/observability_logs_explorer/kibana.jsonc index ab45965e8d2b4..9f8479b009923 100644 --- a/x-pack/plugins/observability_logs_explorer/kibana.jsonc +++ b/x-pack/plugins/observability_logs_explorer/kibana.jsonc @@ -4,17 +4,17 @@ "owner": "@elastic/obs-ux-logs-team", "description": "This plugin exposes and registers observability log consumption features.", "plugin": { - "id": "observabilityLogExplorer", + "id": "observabilityLogsExplorer", "server": true, "browser": true, "configPath": [ "xpack", - "observabilityLogExplorer" + "observabilityLogsExplorer" ], "requiredPlugins": [ "data", "discover", - "logExplorer", + "logsExplorer", "logsShared", "observabilityShared", "share", diff --git a/x-pack/plugins/observability_logs_explorer/public/applications/observability_log_explorer.tsx b/x-pack/plugins/observability_logs_explorer/public/applications/observability_logs_explorer.tsx similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/applications/observability_log_explorer.tsx rename to x-pack/plugins/observability_logs_explorer/public/applications/observability_logs_explorer.tsx diff --git a/x-pack/plugins/observability_logs_explorer/public/components/discover_link.tsx b/x-pack/plugins/observability_logs_explorer/public/components/discover_link.tsx index a9f50468a8db9..e563031793f8a 100644 --- a/x-pack/plugins/observability_logs_explorer/public/components/discover_link.tsx +++ b/x-pack/plugins/observability_logs_explorer/public/components/discover_link.tsx @@ -21,7 +21,7 @@ import { discoverLinkTitle } from '../../common/translations'; import { ObservabilityLogExplorerService, useObservabilityLogExplorerPageStateContext, -} from '../state_machines/observability_log_explorer/src'; +} from '../state_machines/observability_logs_explorer/src'; import { useKibanaContextForPlugin } from '../utils/use_kibana'; export const ConnectedDiscoverLink = React.memo(() => { diff --git a/x-pack/plugins/observability_logs_explorer/public/components/log_explorer_top_nav_menu.tsx b/x-pack/plugins/observability_logs_explorer/public/components/logs_explorer_top_nav_menu.tsx similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/components/log_explorer_top_nav_menu.tsx rename to x-pack/plugins/observability_logs_explorer/public/components/logs_explorer_top_nav_menu.tsx diff --git a/x-pack/plugins/observability_logs_explorer/public/log_explorer_customizations/flyout_content.tsx b/x-pack/plugins/observability_logs_explorer/public/logs_explorer_customizations/flyout_content.tsx similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/log_explorer_customizations/flyout_content.tsx rename to x-pack/plugins/observability_logs_explorer/public/logs_explorer_customizations/flyout_content.tsx diff --git a/x-pack/plugins/observability_logs_explorer/public/log_explorer_customizations/index.ts b/x-pack/plugins/observability_logs_explorer/public/logs_explorer_customizations/index.ts similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/log_explorer_customizations/index.ts rename to x-pack/plugins/observability_logs_explorer/public/logs_explorer_customizations/index.ts diff --git a/x-pack/plugins/observability_logs_explorer/public/plugin.ts b/x-pack/plugins/observability_logs_explorer/public/plugin.ts index 6af6484e883b5..669c96a0b9141 100644 --- a/x-pack/plugins/observability_logs_explorer/public/plugin.ts +++ b/x-pack/plugins/observability_logs_explorer/public/plugin.ts @@ -59,7 +59,7 @@ export class ObservabilityLogExplorerPlugin mount: async (appMountParams: ObservabilityLogExplorerAppMountParameters) => { const [coreStart, pluginsStart, ownPluginStart] = await core.getStartServices(); const { renderObservabilityLogExplorer } = await import( - './applications/observability_log_explorer' + './applications/observability_logs_explorer' ); return renderObservabilityLogExplorer( diff --git a/x-pack/plugins/observability_logs_explorer/public/routes/main/main_route.tsx b/x-pack/plugins/observability_logs_explorer/public/routes/main/main_route.tsx index 0aaf91995f333..4f39233f7dd41 100644 --- a/x-pack/plugins/observability_logs_explorer/public/routes/main/main_route.tsx +++ b/x-pack/plugins/observability_logs_explorer/public/routes/main/main_route.tsx @@ -12,13 +12,13 @@ import type { } from '@kbn/logs-explorer-plugin/public'; import { useActor } from '@xstate/react'; import React, { useMemo } from 'react'; -import { LogExplorerTopNavMenu } from '../../components/log_explorer_top_nav_menu'; +import { LogExplorerTopNavMenu } from '../../components/logs_explorer_top_nav_menu'; import { ObservabilityLogExplorerPageTemplate } from '../../components/page_template'; -import { createLogExplorerControllerWithCustomizations } from '../../log_explorer_customizations'; +import { createLogExplorerControllerWithCustomizations } from '../../logs_explorer_customizations'; import { ObservabilityLogExplorerPageStateProvider, useObservabilityLogExplorerPageStateContext, -} from '../../state_machines/observability_log_explorer/src'; +} from '../../state_machines/observability_logs_explorer/src'; import { LazyOriginInterpreter } from '../../state_machines/origin_interpreter/src/lazy_component'; import { ObservabilityLogExplorerHistory } from '../../types'; import { noBreadcrumbs, useBreadcrumbs } from '../../utils/breadcrumbs'; @@ -27,7 +27,7 @@ import { useKibanaContextForPlugin } from '../../utils/use_kibana'; export const ObservabilityLogExplorerMainRoute = () => { const { services } = useKibanaContextForPlugin(); - const { logExplorer, serverless, chrome, notifications, appParams } = services; + const { logsExplorer, serverless, chrome, notifications, appParams } = services; const { history } = appParams; useBreadcrumbs(noBreadcrumbs, chrome, serverless); @@ -35,8 +35,8 @@ export const ObservabilityLogExplorerMainRoute = () => { const urlStateStorageContainer = useKbnUrlStateStorageFromRouterContext(); const createLogExplorerController = useMemo( - () => createLogExplorerControllerWithCustomizations(logExplorer.createLogExplorerController), - [logExplorer.createLogExplorerController] + () => createLogExplorerControllerWithCustomizations(logsExplorer.createLogExplorerController), + [logsExplorer.createLogExplorerController] ); return ( @@ -57,7 +57,7 @@ const ConnectedContent = React.memo(() => { const { services: { appParams: { history }, - logExplorer, + logsExplorer: logExplorer, }, } = useKibanaContextForPlugin(); @@ -82,7 +82,7 @@ const InitializingContent = React.memo(() => ( icon={} title={ } diff --git a/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/controller_service.ts b/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/controller_service.ts similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/controller_service.ts rename to x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/controller_service.ts diff --git a/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/defaults.ts b/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/defaults.ts similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/defaults.ts rename to x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/defaults.ts diff --git a/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/index.ts b/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/index.ts similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/index.ts rename to x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/index.ts diff --git a/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/notifications.tsx b/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/notifications.tsx similarity index 88% rename from x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/notifications.tsx rename to x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/notifications.tsx index 050420de8875c..79ad5820ff277 100644 --- a/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/notifications.tsx +++ b/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/notifications.tsx @@ -12,7 +12,7 @@ import React from 'react'; export const createRequestFeedbackNotifier = (toasts: IToasts) => () => { toasts.addInfo({ - title: i18n.translate('xpack.observabilityLogExplorer.feedbackToast.title', { + title: i18n.translate('xpack.observabilityLogsExplorer.feedbackToast.title', { defaultMessage: 'Tell us what you think!', }), text: mountReactNode(<>), diff --git a/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/provider.ts b/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/provider.ts similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/provider.ts rename to x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/provider.ts diff --git a/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/state_machine.ts b/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/state_machine.ts similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/state_machine.ts rename to x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/state_machine.ts diff --git a/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/time_filter_service.ts b/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/time_filter_service.ts similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/time_filter_service.ts rename to x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/time_filter_service.ts diff --git a/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/types.ts b/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/types.ts similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/types.ts rename to x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/types.ts diff --git a/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/url_schema_v1.ts b/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/url_schema_v1.ts similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/url_schema_v1.ts rename to x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/url_schema_v1.ts diff --git a/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/url_state_storage_service.ts b/x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/url_state_storage_service.ts similarity index 100% rename from x-pack/plugins/observability_logs_explorer/public/state_machines/observability_log_explorer/src/url_state_storage_service.ts rename to x-pack/plugins/observability_logs_explorer/public/state_machines/observability_logs_explorer/src/url_state_storage_service.ts diff --git a/x-pack/plugins/observability_logs_explorer/public/state_machines/origin_interpreter/src/notifications.tsx b/x-pack/plugins/observability_logs_explorer/public/state_machines/origin_interpreter/src/notifications.tsx index 64c5dcd157a3d..c5ac00986a185 100644 --- a/x-pack/plugins/observability_logs_explorer/public/state_machines/origin_interpreter/src/notifications.tsx +++ b/x-pack/plugins/observability_logs_explorer/public/state_machines/origin_interpreter/src/notifications.tsx @@ -16,13 +16,13 @@ import { FEEDBACK_TOAST_LIFETIME_MS } from './constants'; export const createRequestFeedbackNotifier = (toasts: IToasts) => () => { toasts.addInfo( { - title: i18n.translate('xpack.observabilityLogExplorer.feedbackToast.title', { + title: i18n.translate('xpack.observabilityLogsExplorer.feedbackToast.title', { defaultMessage: 'Tell us what you think!', }), text: mountReactNode( <>

- {i18n.translate('xpack.observabilityLogExplorer.feedbackToast.text', { + {i18n.translate('xpack.observabilityLogsExplorer.feedbackToast.text', { defaultMessage: 'Share with us your onboarding experience and help us improve it.', })}

@@ -36,7 +36,7 @@ export const createRequestFeedbackNotifier = (toasts: IToasts) => () => { target="_blank" color="primary" > - {i18n.translate('xpack.observabilityLogExplorer.feedbackToast.buttonText', { + {i18n.translate('xpack.observabilityLogsExplorer.feedbackToast.buttonText', { defaultMessage: 'Take a quick survey', })} diff --git a/x-pack/plugins/observability_logs_explorer/public/types.ts b/x-pack/plugins/observability_logs_explorer/public/types.ts index c996bf584fb67..17fa000941eb6 100644 --- a/x-pack/plugins/observability_logs_explorer/public/types.ts +++ b/x-pack/plugins/observability_logs_explorer/public/types.ts @@ -35,7 +35,7 @@ export interface ObservabilityLogExplorerSetupDeps { export interface ObservabilityLogExplorerStartDeps { data: DataPublicPluginStart; discover: DiscoverStart; - logExplorer: LogExplorerPluginStart; + logsExplorer: LogExplorerPluginStart; logsShared: LogsSharedClientStartExports; observabilityShared: ObservabilitySharedPluginStart; serverless?: ServerlessPluginStart; diff --git a/x-pack/plugins/observability_logs_explorer/server/config.ts b/x-pack/plugins/observability_logs_explorer/server/config.ts index 9718345a72a25..9988b101ae53f 100644 --- a/x-pack/plugins/observability_logs_explorer/server/config.ts +++ b/x-pack/plugins/observability_logs_explorer/server/config.ts @@ -26,9 +26,12 @@ export const configSchema = schema.object({ export const config: PluginConfigDescriptor = { schema: configSchema, deprecations: ({ renameFromRoot }) => [ + renameFromRoot('xpack.observabilityLogExplorer', 'xpack.observabilityLogsExplorer', { + level: 'warning', + }), renameFromRoot( 'xpack.discoverLogExplorer.featureFlags.deepLinkVisible', - 'xpack.observabilityLogExplorer.navigation.showAppLink', + 'xpack.observabilityLogsExplorer.navigation.showAppLink', { level: 'warning' } ), ], diff --git a/x-pack/plugins/observability_onboarding/e2e/cypress/e2e/logs/custom_logs/install_elastic_agent.cy.ts b/x-pack/plugins/observability_onboarding/e2e/cypress/e2e/logs/custom_logs/install_elastic_agent.cy.ts index 19e84284b671b..e556c4c99a373 100644 --- a/x-pack/plugins/observability_onboarding/e2e/cypress/e2e/logs/custom_logs/install_elastic_agent.cy.ts +++ b/x-pack/plugins/observability_onboarding/e2e/cypress/e2e/logs/custom_logs/install_elastic_agent.cy.ts @@ -622,7 +622,7 @@ describe('[Logs onboarding] Custom logs - install elastic agent', () => { cy.wait('@checkOnboardingProgress'); cy.getByTestSubj('obltOnboardingExploreLogs').should('exist').click(); - cy.url().should('include', '/app/observability-log-explorer'); + cy.url().should('include', '/app/observability-logs-explorer'); cy.get('button').contains('[Mylogs] mylogs').should('exist'); }); }); diff --git a/x-pack/plugins/observability_onboarding/e2e/cypress/e2e/logs/system_logs.cy.ts b/x-pack/plugins/observability_onboarding/e2e/cypress/e2e/logs/system_logs.cy.ts index 80d5e042c1239..13b3b149cc73c 100644 --- a/x-pack/plugins/observability_onboarding/e2e/cypress/e2e/logs/system_logs.cy.ts +++ b/x-pack/plugins/observability_onboarding/e2e/cypress/e2e/logs/system_logs.cy.ts @@ -677,7 +677,7 @@ describe('[Logs onboarding] System logs', () => { cy.wait('@systemIntegrationInstall'); cy.getByTestSubj('obltOnboardingExploreLogs').should('exist').click(); - cy.url().should('include', '/app/observability-log-explorer'); + cy.url().should('include', '/app/observability-logs-explorer'); cy.get('button').contains('All logs').should('exist'); }); }); @@ -696,7 +696,7 @@ describe('[Logs onboarding] System logs', () => { cy.wait('@systemIntegrationInstall'); cy.getByTestSubj('obltOnboardingExploreLogs').should('exist').click(); - cy.url().should('include', '/app/observability-log-explorer'); + cy.url().should('include', '/app/observability-logs-explorer'); cy.get('button').contains('[System] syslog').should('exist'); }); }); diff --git a/x-pack/plugins/serverless_observability/public/components/side_navigation/index.tsx b/x-pack/plugins/serverless_observability/public/components/side_navigation/index.tsx index 5be456cfd5f3c..28e6d06405822 100644 --- a/x-pack/plugins/serverless_observability/public/components/side_navigation/index.tsx +++ b/x-pack/plugins/serverless_observability/public/components/side_navigation/index.tsx @@ -32,7 +32,7 @@ const navigationTree: NavigationTreeDefinition = { title: i18n.translate('xpack.serverlessObservability.nav.discover', { defaultMessage: 'Discover', }), - link: 'observability-log-explorer', + link: 'observability-logs-explorer', // prevent this entry from ever becoming active, effectively falling through to the obs-log-explorer child getIsActive: () => false, // avoid duplicate "Discover" breadcrumbs @@ -43,7 +43,7 @@ const navigationTree: NavigationTreeDefinition = { link: 'discover', children: [ { - link: 'observability-log-explorer', + link: 'observability-logs-explorer', }, ], }, diff --git a/x-pack/plugins/translations/translations/fr-FR.json b/x-pack/plugins/translations/translations/fr-FR.json index 1996568bbbb47..f9f1428b72090 100644 --- a/x-pack/plugins/translations/translations/fr-FR.json +++ b/x-pack/plugins/translations/translations/fr-FR.json @@ -43203,11 +43203,11 @@ "xpack.features.savedQueryManagementFeatureName": "Gestion des requêtes enregistrées", "xpack.features.savedQueryManagementTooltip": "Si \"All\" (Tout) est défini, les requêtes enregistrées peuvent être gérées grâce à Kibana dans toutes les applications compatibles. Si \"None\" est défini, les privilèges relatifs aux requêtes enregistrées sont fixés indépendamment pour chaque application.", "xpack.features.visualizeFeatureName": "Bibliothèque Visualize", - "xpack.observabilityLogExplorer.appTitle": "Explorateur de log", - "xpack.observabilityLogExplorer.betaBadgeDescription": "Il s'agit du stade bêta de l'application, qui est donc susceptible d'évoluer.", - "xpack.observabilityLogExplorer.betaBadgeTitle": "Bêta", - "xpack.observabilityLogExplorer.discoverLinkTitle": "Ouvrir dans Discover", - "xpack.observabilityLogExplorer.onboardingLinkTitle": "Ajouter des données", + "xpack.observabilityLogsExplorer.appTitle": "Explorateur de log", + "xpack.observabilityLogsExplorer.betaBadgeDescription": "Il s'agit du stade bêta de l'application, qui est donc susceptible d'évoluer.", + "xpack.observabilityLogsExplorer.betaBadgeTitle": "Bêta", + "xpack.observabilityLogsExplorer.discoverLinkTitle": "Ouvrir dans Discover", + "xpack.observabilityLogsExplorer.onboardingLinkTitle": "Ajouter des données", "xpack.painlessLab.apiReferenceButtonLabel": "Référence d'API", "xpack.painlessLab.context.defaultLabel": "Le résultat de script sera converti en chaîne", "xpack.painlessLab.context.filterLabel": "Utiliser le contexte d'une requête de script d'un filtre", @@ -43270,4 +43270,4 @@ "xpack.serverlessObservability.nav.projectSettings": "Paramètres de projet", "xpack.serverlessObservability.nav.visualizations": "Visualisations" } -} +} \ No newline at end of file diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index 376f095421c63..32296d29d4829 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -43194,11 +43194,11 @@ "xpack.features.savedQueryManagementFeatureName": "保存されたクエリ管理", "xpack.features.savedQueryManagementTooltip": "[すべて]に設定すると、保存されたクエリは、クエリをサポートするすべてのアプリケーションのKibana全体で管理できます。[なし]に設定すると、保存されたクエリ権限は各アプリケーションで独自に決定されます。", "xpack.features.visualizeFeatureName": "Visualizeライブラリ", - "xpack.observabilityLogExplorer.appTitle": "ログエクスプローラー", - "xpack.observabilityLogExplorer.betaBadgeDescription": "このアプリケーションはベータ版であるため、変更される場合があります。", - "xpack.observabilityLogExplorer.betaBadgeTitle": "ベータ", - "xpack.observabilityLogExplorer.discoverLinkTitle": "Discoverで開く", - "xpack.observabilityLogExplorer.onboardingLinkTitle": "データの追加", + "xpack.observabilityLogsExplorer.appTitle": "ログエクスプローラー", + "xpack.observabilityLogsExplorer.betaBadgeDescription": "このアプリケーションはベータ版であるため、変更される場合があります。", + "xpack.observabilityLogsExplorer.betaBadgeTitle": "ベータ", + "xpack.observabilityLogsExplorer.discoverLinkTitle": "Discoverで開く", + "xpack.observabilityLogsExplorer.onboardingLinkTitle": "データの追加", "xpack.painlessLab.apiReferenceButtonLabel": "API リファレンス", "xpack.painlessLab.context.defaultLabel": "スクリプト結果は文字列に変換されます", "xpack.painlessLab.context.filterLabel": "フィルターのスクリプトクエリのコンテキストを使用する", @@ -43261,4 +43261,4 @@ "xpack.serverlessObservability.nav.projectSettings": "プロジェクト設定", "xpack.serverlessObservability.nav.visualizations": "ビジュアライゼーション" } -} +} \ No newline at end of file diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index 485ca11b4fbfc..d9fbbbfebd4c7 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -43174,11 +43174,11 @@ "xpack.features.savedQueryManagementFeatureName": "已保存查询管理", "xpack.features.savedQueryManagementTooltip": "如果设置为“全部”,可以在支持已保存查询的所有应用程序中管理整个 Kibana 中的已保存查询。如果设置为“无”,将由每个应用程序单独确定已保存查询权限。", "xpack.features.visualizeFeatureName": "Visualize 库", - "xpack.observabilityLogExplorer.appTitle": "日志浏览器", - "xpack.observabilityLogExplorer.betaBadgeDescription": "此应用程序为公测版,因此可能会进行更改。", - "xpack.observabilityLogExplorer.betaBadgeTitle": "公测版", - "xpack.observabilityLogExplorer.discoverLinkTitle": "在 Discover 中打开", - "xpack.observabilityLogExplorer.onboardingLinkTitle": "添加数据", + "xpack.observabilityLogsExplorer.appTitle": "日志浏览器", + "xpack.observabilityLogsExplorer.betaBadgeDescription": "此应用程序为公测版,因此可能会进行更改。", + "xpack.observabilityLogsExplorer.betaBadgeTitle": "公测版", + "xpack.observabilityLogsExplorer.discoverLinkTitle": "在 Discover 中打开", + "xpack.observabilityLogsExplorer.onboardingLinkTitle": "添加数据", "xpack.painlessLab.apiReferenceButtonLabel": "API 参考", "xpack.painlessLab.context.defaultLabel": "脚本结果将转换成字符串", "xpack.painlessLab.context.filterLabel": "使用筛选脚本查询的上下文", @@ -43241,4 +43241,4 @@ "xpack.serverlessObservability.nav.projectSettings": "项目设置", "xpack.serverlessObservability.nav.visualizations": "可视化" } -} +} \ No newline at end of file diff --git a/x-pack/test/functional/apps/observability_log_explorer/app.ts b/x-pack/test/functional/apps/observability_logs_explorer/app.ts similarity index 98% rename from x-pack/test/functional/apps/observability_log_explorer/app.ts rename to x-pack/test/functional/apps/observability_logs_explorer/app.ts index 5d6c85e3c7518..d5774a3010f27 100644 --- a/x-pack/test/functional/apps/observability_log_explorer/app.ts +++ b/x-pack/test/functional/apps/observability_logs_explorer/app.ts @@ -25,7 +25,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { it('is shown in the observability side navigation', async () => { await PageObjects.observabilityLogExplorer.navigateTo(); - await testSubjects.existOrFail('observability-nav-observability-log-explorer-explorer'); + await testSubjects.existOrFail('observability-nav-observability-logs-explorer-explorer'); }); it('should load logs', async () => { diff --git a/x-pack/test/functional/apps/observability_log_explorer/columns_selection.ts b/x-pack/test/functional/apps/observability_logs_explorer/columns_selection.ts similarity index 91% rename from x-pack/test/functional/apps/observability_log_explorer/columns_selection.ts rename to x-pack/test/functional/apps/observability_logs_explorer/columns_selection.ts index 5da73c3e5ecb5..2d839cabc7605 100644 --- a/x-pack/test/functional/apps/observability_log_explorer/columns_selection.ts +++ b/x-pack/test/functional/apps/observability_logs_explorer/columns_selection.ts @@ -17,13 +17,13 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { describe('Columns selection initialization and update', () => { before(async () => { await esArchiver.load( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); }); after(async () => { await esArchiver.unload( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); }); diff --git a/x-pack/test/functional/apps/observability_log_explorer/config.ts b/x-pack/test/functional/apps/observability_logs_explorer/config.ts similarity index 100% rename from x-pack/test/functional/apps/observability_log_explorer/config.ts rename to x-pack/test/functional/apps/observability_logs_explorer/config.ts diff --git a/x-pack/test/functional/apps/observability_log_explorer/dataset_selection_state.ts b/x-pack/test/functional/apps/observability_logs_explorer/dataset_selection_state.ts similarity index 100% rename from x-pack/test/functional/apps/observability_log_explorer/dataset_selection_state.ts rename to x-pack/test/functional/apps/observability_logs_explorer/dataset_selection_state.ts diff --git a/x-pack/test/functional/apps/observability_log_explorer/dataset_selector.ts b/x-pack/test/functional/apps/observability_logs_explorer/dataset_selector.ts similarity index 99% rename from x-pack/test/functional/apps/observability_log_explorer/dataset_selector.ts rename to x-pack/test/functional/apps/observability_logs_explorer/dataset_selector.ts index d656301a13891..f1863fa788c02 100644 --- a/x-pack/test/functional/apps/observability_log_explorer/dataset_selector.ts +++ b/x-pack/test/functional/apps/observability_logs_explorer/dataset_selector.ts @@ -182,7 +182,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { before(async () => { await esArchiver.load( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); cleanupIntegrationsSetup = await PageObjects.observabilityLogExplorer.setupInitialIntegrations(); @@ -190,7 +190,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { after(async () => { await esArchiver.unload( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); await cleanupIntegrationsSetup(); }); diff --git a/x-pack/test/functional/apps/observability_log_explorer/filter_controls.ts b/x-pack/test/functional/apps/observability_logs_explorer/filter_controls.ts similarity index 100% rename from x-pack/test/functional/apps/observability_log_explorer/filter_controls.ts rename to x-pack/test/functional/apps/observability_logs_explorer/filter_controls.ts diff --git a/x-pack/test/functional/apps/observability_log_explorer/flyout.ts b/x-pack/test/functional/apps/observability_logs_explorer/flyout.ts similarity index 100% rename from x-pack/test/functional/apps/observability_log_explorer/flyout.ts rename to x-pack/test/functional/apps/observability_logs_explorer/flyout.ts diff --git a/x-pack/test/functional/apps/observability_log_explorer/flyout_highlights.ts b/x-pack/test/functional/apps/observability_logs_explorer/flyout_highlights.ts similarity index 100% rename from x-pack/test/functional/apps/observability_log_explorer/flyout_highlights.ts rename to x-pack/test/functional/apps/observability_logs_explorer/flyout_highlights.ts diff --git a/x-pack/test/functional/apps/observability_log_explorer/header_menu.ts b/x-pack/test/functional/apps/observability_logs_explorer/header_menu.ts similarity index 95% rename from x-pack/test/functional/apps/observability_log_explorer/header_menu.ts rename to x-pack/test/functional/apps/observability_logs_explorer/header_menu.ts index f87edc5fc23a5..c5b6d7fd82059 100644 --- a/x-pack/test/functional/apps/observability_log_explorer/header_menu.ts +++ b/x-pack/test/functional/apps/observability_logs_explorer/header_menu.ts @@ -19,7 +19,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { before(async () => { await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/discover'); await esArchiver.load( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); await PageObjects.observabilityLogExplorer.navigateTo(); }); @@ -27,7 +27,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { after(async () => { await kibanaServer.importExport.unload('test/functional/fixtures/kbn_archiver/discover'); await esArchiver.unload( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); }); diff --git a/x-pack/test/functional/apps/observability_log_explorer/index.ts b/x-pack/test/functional/apps/observability_logs_explorer/index.ts similarity index 100% rename from x-pack/test/functional/apps/observability_log_explorer/index.ts rename to x-pack/test/functional/apps/observability_logs_explorer/index.ts diff --git a/x-pack/test/functional/config.base.js b/x-pack/test/functional/config.base.js index 95849312e17da..068b5c9e7fd69 100644 --- a/x-pack/test/functional/config.base.js +++ b/x-pack/test/functional/config.base.js @@ -171,7 +171,7 @@ export default async function ({ readConfigFile }) { pathname: '/app/observability', }, observabilityLogExplorer: { - pathname: '/app/observability-log-explorer', + pathname: '/app/observability-logs-explorer', }, connectors: { pathname: '/app/management/insightsAndAlerting/triggersActionsConnectors/', diff --git a/x-pack/test/functional/es_archives/observability_log_explorer/data_streams/data.json.gz b/x-pack/test/functional/es_archives/observability_logs_explorer/data_streams/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/observability_log_explorer/data_streams/data.json.gz rename to x-pack/test/functional/es_archives/observability_logs_explorer/data_streams/data.json.gz diff --git a/x-pack/test/functional/es_archives/observability_log_explorer/data_streams/mappings.json b/x-pack/test/functional/es_archives/observability_logs_explorer/data_streams/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/observability_log_explorer/data_streams/mappings.json rename to x-pack/test/functional/es_archives/observability_logs_explorer/data_streams/mappings.json diff --git a/x-pack/test/functional/page_objects/index.ts b/x-pack/test/functional/page_objects/index.ts index b4ea0f741e117..01db8e8c41af1 100644 --- a/x-pack/test/functional/page_objects/index.ts +++ b/x-pack/test/functional/page_objects/index.ts @@ -33,7 +33,7 @@ import { LogstashPageObject } from './logstash_page'; import { MaintenanceWindowsPageProvider } from './maintenance_windows_page'; import { MonitoringPageObject } from './monitoring_page'; import { NavigationalSearchPageObject } from './navigational_search'; -import { ObservabilityLogExplorerPageObject } from './observability_log_explorer'; +import { ObservabilityLogExplorerPageObject } from './observability_logs_explorer'; import { ObservabilityPageProvider } from './observability_page'; import { RemoteClustersPageProvider } from './remote_clusters_page'; import { ReportingPageObject } from './reporting_page'; diff --git a/x-pack/test/functional/page_objects/observability_log_explorer.ts b/x-pack/test/functional/page_objects/observability_logs_explorer.ts similarity index 100% rename from x-pack/test/functional/page_objects/observability_log_explorer.ts rename to x-pack/test/functional/page_objects/observability_logs_explorer.ts diff --git a/x-pack/test_serverless/functional/config.base.ts b/x-pack/test_serverless/functional/config.base.ts index 501a23c258046..cd0ed1f48fe48 100644 --- a/x-pack/test_serverless/functional/config.base.ts +++ b/x-pack/test_serverless/functional/config.base.ts @@ -61,7 +61,7 @@ export function createTestConfig(options: CreateTestConfigOptions) { pathname: '/app/observability', }, observabilityLogExplorer: { - pathname: '/app/observability-log-explorer', + pathname: '/app/observability-logs-explorer', }, management: { pathname: '/app/management', diff --git a/x-pack/test_serverless/functional/test_suites/observability/cypress/e2e/navigation.cy.ts b/x-pack/test_serverless/functional/test_suites/observability/cypress/e2e/navigation.cy.ts index 8453042cc7161..88190fa496156 100644 --- a/x-pack/test_serverless/functional/test_suites/observability/cypress/e2e/navigation.cy.ts +++ b/x-pack/test_serverless/functional/test_suites/observability/cypress/e2e/navigation.cy.ts @@ -27,7 +27,7 @@ describe.skip('Serverless', () => { cy.loginAsElasticUser(); cy.contains('Logs Explorer').click(); - cy.url().should('include', '/app/observability-log-explorer'); + cy.url().should('include', '/app/observability-logs-explorer'); cy.contains('Dashboards').click(); cy.url().should('include', '/app/dashboards'); diff --git a/x-pack/test_serverless/functional/test_suites/observability/index.ts b/x-pack/test_serverless/functional/test_suites/observability/index.ts index 992ace677b01c..c8e82d6017636 100644 --- a/x-pack/test_serverless/functional/test_suites/observability/index.ts +++ b/x-pack/test_serverless/functional/test_suites/observability/index.ts @@ -11,7 +11,7 @@ export default function ({ loadTestFile }: FtrProviderContext) { describe('serverless observability UI', function () { loadTestFile(require.resolve('./landing_page')); loadTestFile(require.resolve('./navigation')); - loadTestFile(require.resolve('./observability_log_explorer')); + loadTestFile(require.resolve('./observability_logs_explorer')); loadTestFile(require.resolve('./rules/rules_list')); loadTestFile(require.resolve('./cases')); loadTestFile(require.resolve('./advanced_settings')); diff --git a/x-pack/test_serverless/functional/test_suites/observability/navigation.ts b/x-pack/test_serverless/functional/test_suites/observability/navigation.ts index f899d6760db02..302a786286ae5 100644 --- a/x-pack/test_serverless/functional/test_suites/observability/navigation.ts +++ b/x-pack/test_serverless/functional/test_suites/observability/navigation.ts @@ -42,14 +42,14 @@ export default function ({ getPageObject, getService }: FtrProviderContext) { await svlCommonNavigation.sidenav.expectSectionClosed('project_settings_project_nav'); // navigate to the logs explorer tab by default - await svlCommonNavigation.sidenav.clickLink({ deepLinkId: 'observability-log-explorer' }); + await svlCommonNavigation.sidenav.clickLink({ deepLinkId: 'observability-logs-explorer' }); await svlCommonNavigation.sidenav.expectLinkActive({ - deepLinkId: 'observability-log-explorer', + deepLinkId: 'observability-logs-explorer', }); await svlCommonNavigation.breadcrumbs.expectBreadcrumbExists({ - deepLinkId: 'observability-log-explorer', + deepLinkId: 'observability-logs-explorer', }); - expect(await browser.getCurrentUrl()).contain('/app/observability-log-explorer'); + expect(await browser.getCurrentUrl()).contain('/app/observability-logs-explorer'); // check the aiops subsection await svlCommonNavigation.sidenav.openSection('observability_project_nav.aiops'); // open ai ops subsection diff --git a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/app.ts b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/app.ts similarity index 100% rename from x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/app.ts rename to x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/app.ts diff --git a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/columns_selection.ts b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/columns_selection.ts similarity index 92% rename from x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/columns_selection.ts rename to x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/columns_selection.ts index d19cb269891d7..489cc49cda851 100644 --- a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/columns_selection.ts +++ b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/columns_selection.ts @@ -17,7 +17,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { describe('Columns selection initialization and update', () => { before(async () => { await esArchiver.load( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); await PageObjects.svlCommonPage.login(); }); @@ -25,7 +25,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { after(async () => { await PageObjects.svlCommonPage.forceLogout(); await esArchiver.unload( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); }); diff --git a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/dataset_selection_state.ts b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/dataset_selection_state.ts similarity index 100% rename from x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/dataset_selection_state.ts rename to x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/dataset_selection_state.ts diff --git a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/dataset_selector.ts b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/dataset_selector.ts similarity index 99% rename from x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/dataset_selector.ts rename to x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/dataset_selector.ts index cb9f5f32f6542..266588f370abe 100644 --- a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/dataset_selector.ts +++ b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/dataset_selector.ts @@ -183,7 +183,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { before(async () => { await esArchiver.load( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); cleanupIntegrationsSetup = await PageObjects.observabilityLogExplorer.setupInitialIntegrations(); @@ -191,7 +191,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { after(async () => { await esArchiver.unload( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); await cleanupIntegrationsSetup(); }); diff --git a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/filter_controls.ts b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/filter_controls.ts similarity index 100% rename from x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/filter_controls.ts rename to x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/filter_controls.ts diff --git a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/flyout.ts b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/flyout.ts similarity index 100% rename from x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/flyout.ts rename to x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/flyout.ts diff --git a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/flyout_highlights.ts b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/flyout_highlights.ts similarity index 100% rename from x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/flyout_highlights.ts rename to x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/flyout_highlights.ts diff --git a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/header_menu.ts b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/header_menu.ts similarity index 96% rename from x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/header_menu.ts rename to x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/header_menu.ts index 0bb8da7a911b9..ef0d3a2cc75a7 100644 --- a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/header_menu.ts +++ b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/header_menu.ts @@ -27,7 +27,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { before(async () => { await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/discover'); await esArchiver.load( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional'); await PageObjects.svlCommonPage.login(); @@ -39,7 +39,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.svlCommonPage.forceLogout(); await kibanaServer.importExport.unload('test/functional/fixtures/kbn_archiver/discover'); await esArchiver.unload( - 'x-pack/test/functional/es_archives/observability_log_explorer/data_streams' + 'x-pack/test/functional/es_archives/observability_logs_explorer/data_streams' ); await esArchiver.unload('test/functional/fixtures/es_archiver/logstash_functional'); }); @@ -139,7 +139,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { deepLinkId: 'discover', }); await PageObjects.svlCommonNavigation.breadcrumbs.expectBreadcrumbMissing({ - deepLinkId: 'observability-log-explorer', + deepLinkId: 'observability-logs-explorer', }); expect(await browser.getCurrentUrl()).contain('/app/discover'); @@ -172,9 +172,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { deepLinkId: 'discover', }); await PageObjects.svlCommonNavigation.breadcrumbs.expectBreadcrumbExists({ - deepLinkId: 'observability-log-explorer', + deepLinkId: 'observability-logs-explorer', }); - expect(await browser.getCurrentUrl()).contain('/app/observability-log-explorer'); + expect(await browser.getCurrentUrl()).contain('/app/observability-logs-explorer'); }); }); diff --git a/x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/index.ts b/x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/index.ts similarity index 100% rename from x-pack/test_serverless/functional/test_suites/observability/observability_log_explorer/index.ts rename to x-pack/test_serverless/functional/test_suites/observability/observability_logs_explorer/index.ts